diff --git a/cli/lib/cli.dart b/cli/lib/cli.dart index 4f30256..4d1db6e 100644 --- a/cli/lib/cli.dart +++ b/cli/lib/cli.dart @@ -52,7 +52,7 @@ void main(List args) async { } stdout.writeln("Launching game..."); - var executable = await version.executable; + var executable = version.gameExecutable; if(executable == null){ throw Exception("Missing game executable at: ${version.location.path}"); } diff --git a/cli/lib/src/game.dart b/cli/lib/src/game.dart index 5af0a14..d0acf40 100644 --- a/cli/lib/src/game.dart +++ b/cli/lib/src/game.dart @@ -12,7 +12,7 @@ Future startGame() async { await _startLauncherProcess(version); await _startEacProcess(version); - var executable = await version.executable; + var executable = await version.gameExecutable; if (executable == null) { throw Exception("${version.location.path} no longer contains a Fortnite executable, did you delete or move it?"); } diff --git a/cli/lib/src/reboot.dart b/cli/lib/src/reboot.dart index 57e060a..89a9999 100644 --- a/cli/lib/src/reboot.dart +++ b/cli/lib/src/reboot.dart @@ -42,7 +42,7 @@ Future downloadRequiredDLLs() async { await memoryFixDll.writeAsBytes(response.bodyBytes); } - if(!authenticatorDirectory.existsSync()){ + if(!backendDirectory.existsSync()){ var response = await http.get(Uri.parse(_embeddedConfigDownload)); if(response.statusCode != 200){ throw Exception("Cannot download embedded server config"); @@ -50,6 +50,6 @@ Future downloadRequiredDLLs() async { var tempZip = File("${tempDirectory.path}/reboot_config.zip"); await tempZip.writeAsBytes(response.bodyBytes); - await extractFileToDisk(tempZip.path, authenticatorDirectory.path); + await extractFileToDisk(tempZip.path, backendDirectory.path); } } \ No newline at end of file diff --git a/cli/lib/src/server.dart b/cli/lib/src/server.dart index 1b737e8..879437a 100644 --- a/cli/lib/src/server.dart +++ b/cli/lib/src/server.dart @@ -1,13 +1,13 @@ import 'dart:io'; import 'package:reboot_common/common.dart'; -import 'package:reboot_common/src/util/authenticator.dart' as server; +import 'package:reboot_common/src/util/backend.dart' as server; Future startServerCli(String? host, int? port, ServerType type) async { stdout.writeln("Starting backend server..."); switch(type){ case ServerType.local: - var result = await pingAuthenticator(host ?? kDefaultAuthenticatorHost, port ?? kDefaultAuthenticatorPort); + var result = await pingBackend(host ?? kDefaultBackendHost, port ?? kDefaultBackendPort); if(result == null){ throw Exception("Local backend server is not running"); } @@ -16,8 +16,8 @@ Future startServerCli(String? host, int? port, ServerType type) async { return true; case ServerType.embedded: stdout.writeln("Starting an embedded server..."); - await server.startEmbeddedAuthenticator(false); - var result = await pingAuthenticator(host ?? kDefaultAuthenticatorHost, port ?? kDefaultAuthenticatorPort); + await server.startEmbeddedBackend(false); + var result = await pingBackend(host ?? kDefaultBackendHost, port ?? kDefaultBackendPort); if(result == null){ throw Exception("Cannot start embedded server"); } @@ -39,12 +39,12 @@ Future startServerCli(String? host, int? port, ServerType type) async { Future _changeReverseProxyState(String host, int port) async { try{ - var uri = await pingAuthenticator(host, port); + var uri = await pingBackend(host, port); if(uri == null){ return null; } - return await server.startRemoteAuthenticatorProxy(uri); + return await server.startRemoteBackendProxy(uri); }catch(error){ throw Exception("Cannot start reverse proxy"); } diff --git a/common/lib/common.dart b/common/lib/common.dart index f63802b..38e7c6d 100644 --- a/common/lib/common.dart +++ b/common/lib/common.dart @@ -1,4 +1,4 @@ -export 'package:reboot_common/src/constant/authenticator.dart'; +export 'package:reboot_common/src/constant/backend.dart'; export 'package:reboot_common/src/constant/game.dart'; export 'package:reboot_common/src/constant/matchmaker.dart'; export 'package:reboot_common/src/constant/supabase.dart'; @@ -9,8 +9,7 @@ export 'package:reboot_common/src/model/server_result.dart'; export 'package:reboot_common/src/model/server_type.dart'; export 'package:reboot_common/src/model/update_status.dart'; export 'package:reboot_common/src/model/update_timer.dart'; -export 'package:reboot_common/src/model/process.dart'; -export 'package:reboot_common/src/util/authenticator.dart'; +export 'package:reboot_common/src/util/backend.dart'; export 'package:reboot_common/src/util/build.dart'; export 'package:reboot_common/src/util/dll.dart'; export 'package:reboot_common/src/util/matchmaker.dart'; diff --git a/common/lib/src/constant/authenticator.dart b/common/lib/src/constant/authenticator.dart deleted file mode 100644 index 37cbad7..0000000 --- a/common/lib/src/constant/authenticator.dart +++ /dev/null @@ -1,2 +0,0 @@ -const String kDefaultAuthenticatorHost = "127.0.0.1"; -const int kDefaultAuthenticatorPort = 3551; \ No newline at end of file diff --git a/common/lib/src/constant/backend.dart b/common/lib/src/constant/backend.dart new file mode 100644 index 0000000..8a2a1be --- /dev/null +++ b/common/lib/src/constant/backend.dart @@ -0,0 +1,2 @@ +const String kDefaultBackendHost = "127.0.0.1"; +const int kDefaultBackendPort = 3551; \ No newline at end of file diff --git a/common/lib/src/constant/game.dart b/common/lib/src/constant/game.dart index 85ca690..240c074 100644 --- a/common/lib/src/constant/game.dart +++ b/common/lib/src/constant/game.dart @@ -1,11 +1,17 @@ const String kDefaultPlayerName = "Player"; const String kDefaultGameServerHost = "127.0.0.1"; const String kDefaultGameServerPort = "7777"; -const String kConsoleLine = "Region "; +const String kInitializedLine = "Game Engine Initialized"; +const List kLoggedInLines = [ + "[UOnlineAccountCommon::ContinueLoggingIn]", + "(Completed)" +]; const String kShutdownLine = "FOnlineSubsystemGoogleCommon::Shutdown()"; const List kCorruptedBuildErrors = [ + "Critical error", "when 0 bytes remain", - "Pak chunk signature verification failed!" + "Pak chunk signature verification failed!", + "Couldn't find pak signature file" ]; const List kCannotConnectErrors = [ "port 3551 failed: Connection refused", diff --git a/common/lib/src/model/fortnite_build.dart b/common/lib/src/model/fortnite_build.dart index cde2518..e2d6906 100644 --- a/common/lib/src/model/fortnite_build.dart +++ b/common/lib/src/model/fortnite_build.dart @@ -20,7 +20,11 @@ class FortniteBuildDownloadProgress { final int? minutesLeft; final bool extracting; - FortniteBuildDownloadProgress(this.progress, this.minutesLeft, this.extracting); + FortniteBuildDownloadProgress({ + required this.progress, + required this.extracting, + this.minutesLeft, + }); } class FortniteBuildDownloadOptions { diff --git a/common/lib/src/model/game_instance.dart b/common/lib/src/model/game_instance.dart index f29a843..cb2061c 100644 --- a/common/lib/src/model/game_instance.dart +++ b/common/lib/src/model/game_instance.dart @@ -6,7 +6,6 @@ class GameInstance { final int gamePid; final int? launcherPid; final int? eacPid; - int? observerPid; bool hosting; bool launched; bool tokenError; @@ -29,9 +28,18 @@ class GameInstance { if(eacPid != null) { Process.killPid(eacPid!, ProcessSignal.sigabrt); } - if(observerPid != null) { - Process.killPid(observerPid!, ProcessSignal.sigabrt); + } + + bool get nestedHosting { + GameInstance? child = this; + while(child != null) { + if(child.hosting) { + return true; + } + + child = child.child; } - child?.kill(); + + return false; } } diff --git a/common/lib/src/model/process.dart b/common/lib/src/model/process.dart deleted file mode 100644 index 574b90c..0000000 --- a/common/lib/src/model/process.dart +++ /dev/null @@ -1,23 +0,0 @@ -class Win32Process { - final int pid; - final Stream stdOutput; - final Stream errorOutput; - - Win32Process({ - required this.pid, - required this.stdOutput, - required this.errorOutput - }); -} - -class PrimitiveWin32Process { - final int pid; - final int stdOutputHandle; - final int errorOutputHandle; - - PrimitiveWin32Process({ - required this.pid, - required this.stdOutputHandle, - required this.errorOutputHandle - }); -} \ No newline at end of file diff --git a/common/lib/src/model/server_result.dart b/common/lib/src/model/server_result.dart index 845d381..509c7e3 100644 --- a/common/lib/src/model/server_result.dart +++ b/common/lib/src/model/server_result.dart @@ -24,4 +24,6 @@ enum ServerResultType { pingError; bool get isError => name.contains("Error"); + + bool get isSuccess => this == ServerResultType.startSuccess || this == ServerResultType.stopSuccess; } \ No newline at end of file diff --git a/common/lib/src/util/authenticator.dart b/common/lib/src/util/authenticator.dart deleted file mode 100644 index cbbc6b8..0000000 --- a/common/lib/src/util/authenticator.dart +++ /dev/null @@ -1,53 +0,0 @@ -import 'dart:io'; - -import 'package:reboot_common/common.dart'; -import 'package:shelf/shelf_io.dart'; -import 'package:shelf_proxy/shelf_proxy.dart'; - -final authenticatorDirectory = Directory("${assetsDirectory.path}\\authenticator"); -final authenticatorStartExecutable = File("${authenticatorDirectory.path}\\lawinserver.exe"); - -Future startEmbeddedAuthenticator(bool detached) async => startProcess( - executable: authenticatorStartExecutable, - window: detached, - -); - -Future startRemoteAuthenticatorProxy(Uri uri) async => await serve(proxyHandler(uri), kDefaultAuthenticatorHost, kDefaultAuthenticatorPort); - -Future isAuthenticatorPortFree() async => await pingAuthenticator(kDefaultAuthenticatorHost, kDefaultAuthenticatorPort) == null; - -Future freeAuthenticatorPort() async { - await killProcessByPort(kDefaultAuthenticatorPort); - final standardResult = await isAuthenticatorPortFree(); - if(standardResult) { - return true; - } - - return false; -} - -Future pingAuthenticator(String host, int port, [bool https=false]) async { - var hostName = _getHostName(host); - var declaredScheme = _getScheme(host); - try{ - var uri = Uri( - scheme: declaredScheme ?? (https ? "https" : "http"), - host: hostName, - port: port, - path: "unknown" - ); - var client = HttpClient() - ..connectionTimeout = const Duration(seconds: 5); - var request = await client.getUrl(uri); - var response = await request.close(); - return response.statusCode == 200 || response.statusCode == 404 ? uri : null; - }catch(_){ - return https || declaredScheme != null || isLocalHost(host) ? null : await pingAuthenticator(host, port, true); - } -} - -String? _getHostName(String host) => host.replaceFirst("http://", "").replaceFirst("https://", ""); - -String? _getScheme(String host) => host.startsWith("http://") ? "http" : host.startsWith("https://") ? "https" : null; - diff --git a/common/lib/src/util/matchmaker.dart b/common/lib/src/util/backend.dart similarity index 62% rename from common/lib/src/util/matchmaker.dart rename to common/lib/src/util/backend.dart index 36ad4be..d3e06db 100644 --- a/common/lib/src/util/matchmaker.dart +++ b/common/lib/src/util/backend.dart @@ -1,24 +1,61 @@ -import 'dart:async'; import 'dart:io'; import 'package:ini/ini.dart'; import 'package:reboot_common/common.dart'; +import 'package:shelf/shelf_io.dart'; +import 'package:shelf_proxy/shelf_proxy.dart'; import 'package:sync/semaphore.dart'; -final matchmakerDirectory = Directory("${assetsDirectory.path}\\matchmaker"); -final matchmakerStartExecutable = File("${matchmakerDirectory.path}\\fortmatchmaker.exe"); -final matchmakerKillExecutable = File("${authenticatorDirectory.path}\\kill.bat"); -final matchmakerConfigFile = File("${authenticatorDirectory.path}\\Config\\config.ini"); +final Directory backendDirectory = Directory("${assetsDirectory.path}\\backend"); +final File backendStartExecutable = File("${backendDirectory.path}\\lawinserver.exe"); +final File matchmakerConfigFile = File("${backendDirectory.path}\\Config\\config.ini"); +final Semaphore _semaphore = Semaphore(); String? _lastIp; String? _lastPort; -Semaphore _semaphore = Semaphore(); -Future startEmbeddedMatchmaker(bool detached) async => startProcess( - executable: matchmakerStartExecutable, +Future startEmbeddedBackend(bool detached) async => startProcess( + executable: backendStartExecutable, window: detached, - ); +Future startRemoteBackendProxy(Uri uri) async => await serve(proxyHandler(uri), kDefaultBackendHost, kDefaultBackendPort); + +Future isBackendPortFree() async => await pingBackend(kDefaultBackendHost, kDefaultBackendPort) == null; + +Future freeBackendPort() async { + await killProcessByPort(kDefaultBackendPort); + final standardResult = await isBackendPortFree(); + if(standardResult) { + return true; + } + + return false; +} + +Future pingBackend(String host, int port, [bool https=false]) async { + var hostName = _getHostName(host); + var declaredScheme = _getScheme(host); + try{ + var uri = Uri( + scheme: declaredScheme ?? (https ? "https" : "http"), + host: hostName, + port: port, + path: "unknown" + ); + var client = HttpClient() + ..connectionTimeout = const Duration(seconds: 5); + var request = await client.getUrl(uri); + var response = await request.close(); + return response.statusCode == 200 || response.statusCode == 404 ? uri : null; + }catch(_){ + return https || declaredScheme != null || isLocalHost(host) ? null : await pingBackend(host, port, true); + } +} + +String? _getHostName(String host) => host.replaceFirst("http://", "").replaceFirst("https://", ""); + +String? _getScheme(String host) => host.startsWith("http://") ? "http" : host.startsWith("https://") ? "https" : null; + Stream watchMatchmakingIp() async* { if(!matchmakerConfigFile.existsSync()){ return; @@ -99,7 +136,7 @@ Future pingMatchmaker(String host, int port, [bool wss=false]) async { var completer = Completer(); var socket = await WebSocket.connect(uri.toString()); socket.listen( - (data) { + (data) { if(!completer.isCompleted) { completer.complete(true); } @@ -125,20 +162,4 @@ Future pingMatchmaker(String host, int port, [bool wss=false]) async { String? _getHostName(String host) => host.replaceFirst("ws://", "").replaceFirst("wss://", ""); -String? _getScheme(String host) => host.startsWith("ws://") ? "ws" : host.startsWith("wss://") ? "wss" : null; - -extension StringExtension on String { - bool get isBlank { - if(isEmpty) { - return true; - } - - for(var char in this.split("")) { - if(char != " ") { - return false; - } - } - - return true; - } -} \ No newline at end of file +String? _getScheme(String host) => host.startsWith("ws://") ? "ws" : host.startsWith("wss://") ? "wss" : null; \ No newline at end of file diff --git a/common/lib/src/util/build.dart b/common/lib/src/util/build.dart index fec2db5..594168d 100644 --- a/common/lib/src/util/build.dart +++ b/common/lib/src/util/build.dart @@ -25,8 +25,11 @@ Dio _buildDioInstance() { final String _archiveSourceUrl = "https://raw.githubusercontent.com/simplyblk/Fortnitebuilds/main/README.md"; final RegExp _rarProgressRegex = RegExp("^((100)|(\\d{1,2}(.\\d*)?))%\$"); -const String _manifestSourceUrl = "https://manifest.fnbuilds.services"; -const int _maxDownloadErrors = 30; +const String _manifestSourceUrl = "http://manifest.simplyblk.xyz"; +const String _deniedConnectionError = "The connection was denied: your firewall might be blocking the download"; +const String _unavailableError = "The build downloader is not available right now"; +const String _genericError = "The build downloader is not working correctly"; +const int _maxErrors = 100; Future> fetchBuilds(ignored) async { (_dio.httpClientAdapter as IOHttpClientAdapter).createHttpClient = () => @@ -35,7 +38,7 @@ Future> fetchBuilds(ignored) async { (X509Certificate cert, String host, int port) => true; final results = await Future.wait([_fetchManifestBuilds(), _fetchArchiveBuilds()]); - final data = []; + final data = []; for(final result in results) { data.addAll(result); } @@ -45,7 +48,15 @@ Future> fetchBuilds(ignored) async { Future> _fetchManifestBuilds() async { try { - final response = await _dio.get("$_manifestSourceUrl/versions.json"); + final response = await _dio.get( + "$_manifestSourceUrl/versions.json", + options: Options( + headers: { + "Accept-Encoding": "*", + "Cookie": "_c_t_c=1" + } + ) + ); final body = response.data; return jsonDecode(body!).map((version) { final nameParts = version.split("-"); @@ -131,7 +142,14 @@ Future downloadArchiveBuild(FortniteBuildDownloadOptions options) async { delete(outputDir); break; case FortniteBuildSource.manifest: - final response = await _dio.get(options.build.link); + final response = await _dio.get( + options.build.link, + options: Options( + headers: { + "Cookie": "_c_t_c=1" + } + ) + ); final manifest = FortniteBuildManifestFile.fromJson(jsonDecode(response.data!)); final totalBytes = manifest.size; @@ -171,7 +189,8 @@ Future downloadArchiveBuild(FortniteBuildDownloadOptions options) async { options: Options( responseType: ResponseType.bytes, headers: { - "Accept-Encoding": "gzip" + "Accept-Encoding": "gzip", + "Cookie": "_c_t_c=1" } ), ); @@ -201,24 +220,23 @@ Future downloadArchiveBuild(FortniteBuildDownloadOptions options) async { } }); await Future.any([stopped.future, Future.wait(writers)]); - options.port.send(FortniteBuildDownloadProgress(100, 0, true)); break; } - }catch(error, stackTrace) { - options.port.send("$error\n$stackTrace"); + }catch(error) { + _onError(error, options); } } -Future _downloadArchive(FortniteBuildDownloadOptions options, File tempFile, int startTime, [int? byteStart = null, int errorsCount = 0]) async { +Future _downloadArchive(FortniteBuildDownloadOptions options, File tempFile, int startTime, [int? byteStart = null, int errorsCount = 0]) async { var received = byteStart ?? 0; try { - return await _dio.download( + await _dio.download( options.build.link, tempFile.path, onReceiveProgress: (data, length) { received = data; final percentage = (received / length) * 100; - _onProgress(startTime, DateTime.now().millisecondsSinceEpoch, percentage, false, options); + _onProgress(startTime, percentage < 1 ? null : DateTime.now().millisecondsSinceEpoch, percentage, false, options); }, deleteOnError: false, options: Options( @@ -228,10 +246,14 @@ Future _downloadArchive(FortniteBuildDownloadOptions options, File tem } if(statusCode == 403 || statusCode == 503) { - throw Exception("The connection was denied: your firewall might be blocking the download"); + throw _deniedConnectionError; } - throw Exception("The build downloader is not available right now"); + if(statusCode == 404) { + throw _unavailableError; + } + + throw _genericError; }, headers: byteStart == null || byteStart <= 0 ? { "Cookie": "_c_t_c=1" @@ -242,17 +264,18 @@ Future _downloadArchive(FortniteBuildDownloadOptions options, File tem ) ); }catch(error) { - if(errorsCount >= _maxDownloadErrors) { - throw error; + if(errorsCount > _maxErrors || error.toString().contains(_deniedConnectionError) || error.toString().contains(_unavailableError)) { + _onError(error, options); + return; } - return await _downloadArchive(options, tempFile, startTime, received, errorsCount + 1); + await _downloadArchive(options, tempFile, startTime, received, errorsCount + 1); } } Future _extractArchive(Completer stopped, String extension, File tempFile, FortniteBuildDownloadOptions options) async { final startTime = DateTime.now().millisecondsSinceEpoch; - Win32Process? process; + Process? process; switch (extension.toLowerCase()) { case ".zip": final sevenZip = File("${assetsDirectory.path}\\build\\7zip.exe"); @@ -271,10 +294,10 @@ Future _extractArchive(Completer stopped, String extension, File ], ); process.stdOutput.listen((data) { - print(data); final now = DateTime.now().millisecondsSinceEpoch; - if(data == "Everything is Ok") { - options.port.send(FortniteBuildDownloadProgress(100, 0, true)); + if(data.toLowerCase().contains("everything is ok")) { + _onProgress(startTime, now, 100, true, options); + process?.kill(ProcessSignal.sigabrt); return; } @@ -286,6 +309,11 @@ Future _extractArchive(Completer stopped, String extension, File final percentage = int.parse(element.substring(0, element.length - 1)).toDouble(); _onProgress(startTime, now, percentage, true, options); }); + process.stdError.listen((data) { + if(!data.isBlank) { + _onError(data, options); + } + }); break; case ".rar": final winrar = File("${assetsDirectory.path}\\build\\winrar.exe"); @@ -298,17 +326,17 @@ Future _extractArchive(Completer stopped, String extension, File args: [ "x", "-o+", - tempFile.path, + '"${tempFile.path}"', "*.*", - options.destination.path + '"${options.destination.path}"' ] ); process.stdOutput.listen((data) { - print(data); final now = DateTime.now().millisecondsSinceEpoch; - data.replaceAll("\r", "").replaceAll("\b", "").trim(); + data = data.replaceAll("\r", "").replaceAll("\b", "").trim(); if(data == "All OK") { - options.port.send(FortniteBuildDownloadProgress(100, 0, true)); + _onProgress(startTime, now, 100, true, options); + process?.kill(ProcessSignal.sigabrt); return; } @@ -320,7 +348,11 @@ Future _extractArchive(Completer stopped, String extension, File final percentage = int.parse(element).toDouble(); _onProgress(startTime, now, percentage, true, options); }); - process.errorOutput.listen((data) => options.port.send(data)); + process.stdError.listen((data) { + if(!data.isBlank) { + _onError(data, options); + } + }); break; default: throw ArgumentError("Unexpected file extension: $extension}"); @@ -329,17 +361,31 @@ Future _extractArchive(Completer stopped, String extension, File await Future.any([stopped.future, watchProcess(process.pid)]); } -void _onProgress(int startTime, int now, double percentage, bool extracting, FortniteBuildDownloadOptions options) { +void _onProgress(int startTime, int? now, double percentage, bool extracting, FortniteBuildDownloadOptions options) { if(percentage == 0) { - options.port.send(FortniteBuildDownloadProgress(percentage, null, extracting)); + options.port.send(FortniteBuildDownloadProgress( + progress: percentage, + extracting: extracting + )); return; } - final msLeft = startTime + (now - startTime) * 100 / percentage - now; - final minutesLeft = (msLeft / 1000 / 60).round(); - options.port.send(FortniteBuildDownloadProgress(percentage, minutesLeft, extracting)); + final msLeft = now == null ? null : startTime + (now - startTime) * 100 / percentage - now; + final minutesLeft = msLeft == null ? null : (msLeft / 1000 / 60).round(); + options.port.send(FortniteBuildDownloadProgress( + progress: percentage, + extracting: extracting, + minutesLeft: minutesLeft + )); } +void _onError(Object? error, FortniteBuildDownloadOptions options) { + if(error != null) { + options.port.send(error.toString()); + } +} + + Completer _setupLifecycle(FortniteBuildDownloadOptions options) { var stopped = Completer(); var lifecyclePort = ReceivePort(); diff --git a/common/lib/src/util/dll.dart b/common/lib/src/util/dll.dart index a719b7d..7aac733 100644 --- a/common/lib/src/util/dll.dart +++ b/common/lib/src/util/dll.dart @@ -8,7 +8,7 @@ import 'package:reboot_common/common.dart'; bool _watcher = false; final File rebootDllFile = File("${assetsDirectory.path}\\dlls\\reboot.dll"); const String kRebootDownloadUrl = - "https://nightly.link/Milxnor/Project-Reboot-3.0/workflows/msbuild/master/Release.zip"; + "http://nightly.link/Milxnor/Project-Reboot-3.0/workflows/msbuild/master/Release.zip"; Future hasRebootDllUpdate(int? lastUpdateMs, {int hours = 24, bool force = false}) async { final lastUpdate = await _getLastUpdate(lastUpdateMs); @@ -18,7 +18,7 @@ Future hasRebootDllUpdate(int? lastUpdateMs, {int hours = 24, bool force = } Future downloadCriticalDll(String name, String outputPath) async { - final response = await http.get(Uri.parse("https://github.com/Auties00/reboot_launcher/tree/master/gui/assets/dlls/$name")); + final response = await http.get(Uri.parse("https://github.com/Auties00/reboot_launcher/raw/master/gui/assets/dlls/$name")); if(response.statusCode != 200) { throw Exception("Cannot download $name: status code ${response.statusCode}"); } @@ -64,7 +64,6 @@ Stream watchDlls() async* { _watcher = true; await for(final event in rebootDllFile.parent.watch(events: FileSystemEvent.delete | FileSystemEvent.move)) { - print(event); if (event.path.endsWith(".dll")) { yield event.path; } diff --git a/common/lib/src/util/patcher.dart b/common/lib/src/util/patcher.dart index 94e4d61..143b3ac 100644 --- a/common/lib/src/util/patcher.dart +++ b/common/lib/src/util/patcher.dart @@ -31,27 +31,36 @@ Future _patch(File file, Uint8List original, Uint8List patched) async { var read = await file.readAsBytes(); var length = await file.length(); - var offset = 0; - var counter = 0; - while(offset < length){ - if(read[offset] == original[counter]){ - counter++; - }else { - counter = 0; - } - - offset++; - if(counter == original.length){ - for(var index = 0; index < patched.length; index++){ - read[offset - counter + index] = patched[index]; + var readOffset = 0; + var patchOffset = -1; + var patchCount = 0; + while(readOffset < length){ + if(read[readOffset] == original[patchCount]){ + if(patchOffset == -1) { + patchOffset = readOffset; } - await file.writeAsBytes(read, mode: FileMode.write); - return true; + if(++patchCount == original.length) { + break; + } + }else { + patchOffset = -1; } + + readOffset++; } - return false; + print("Offset: $patchOffset"); + if(patchOffset == -1) { + return false; + } + + for(var i = 0; i < patched.length; i++) { + read[patchOffset + i] = patched[i]; + } + + await file.writeAsBytes(read, flush: true); + return true; }catch(_){ return false; } diff --git a/common/lib/src/util/path.dart b/common/lib/src/util/path.dart index 07ab079..e4eb028 100644 --- a/common/lib/src/util/path.dart +++ b/common/lib/src/util/path.dart @@ -52,8 +52,10 @@ extension FortniteVersionExtension on FortniteVersion { } } - Future get executable async { - var result = findExecutable(location, "FortniteClient-Win64-Shipping-Reboot.exe"); + File? get gameExecutable => findExecutable(location, "FortniteClient-Win64-Shipping.exe"); + + Future get headlessGameExecutable async { + var result = findExecutable(location, "FortniteClient-Win64-Shipping-Headless.exe"); if(result != null) { return result; } @@ -63,12 +65,9 @@ extension FortniteVersionExtension on FortniteVersion { return null; } - var output = File("${original.parent.path}\\FortniteClient-Win64-Shipping-Reboot.exe"); + var output = File("${original.parent.path}\\FortniteClient-Win64-Shipping-Headless.exe"); await original.copy(output.path); - await Future.wait([ - Isolate.run(() => patchMatchmaking(output)), - Isolate.run(() => patchHeadless(output)), - ]); + await Isolate.run(() => patchHeadless(output)); return output; } diff --git a/common/lib/src/util/process.dart b/common/lib/src/util/process.dart index 40e9569..883048c 100644 --- a/common/lib/src/util/process.dart +++ b/common/lib/src/util/process.dart @@ -6,13 +6,13 @@ import 'dart:ffi'; import 'dart:io'; import 'dart:isolate'; import 'dart:math'; +import 'package:path/path.dart' as path; import 'package:ffi/ffi.dart'; -import 'package:reboot_common/src/model/process.dart'; +import 'package:reboot_common/common.dart'; +import 'package:sync/semaphore.dart'; import 'package:win32/win32.dart'; -import '../constant/game.dart'; - final _ntdll = DynamicLibrary.open('ntdll.dll'); final _kernel32 = DynamicLibrary.open('kernel32.dll'); final _CreateRemoteThread = _kernel32.lookupFunction< @@ -90,139 +90,53 @@ Future injectDll(int pid, String dll) async { } } -void _startProcess(_ProcessParameters params) { - final args = params.args; - final port = params.port; - final concatenatedArgs = args == null ? "" : " ${args.join(" ")}"; - final command = params.window ? 'cmd.exe /k ""${params.executable.path}"$concatenatedArgs"' : '"${params.executable.path}"$concatenatedArgs'; - print(command); - final processInfo = calloc(); - final lpStartupInfo = calloc(); - lpStartupInfo.ref.cb = sizeOf(); - lpStartupInfo.ref.dwFlags |= STARTF_USESTDHANDLES; - final securityAttributes = calloc(); - securityAttributes.ref.nLength = sizeOf(); - securityAttributes.ref.bInheritHandle = TRUE; - final hStdOutRead = calloc(); - final hStdOutWrite = calloc(); - final hStdErrRead = calloc(); - final hStdErrWrite = calloc(); - if (CreatePipe(hStdOutRead, hStdOutWrite, securityAttributes, 0) == 0 || CreatePipe(hStdErrRead, hStdErrWrite, securityAttributes, 0) == 0) { - final error = GetLastError(); - port.send("Cannot create process pipe: $error"); - return; - } - - if(SetHandleInformation(hStdOutRead.value, HANDLE_FLAG_INHERIT, 0) == 0 || SetHandleInformation(hStdErrRead.value, HANDLE_FLAG_INHERIT, 0) == 0) { - final error = GetLastError(); - port.send("Cannot set process pipe information: $error"); - return; +Future startProcess({required File executable, List? args, bool wrapProcess = true, bool window = false, String? name}) async { + final argsOrEmpty = args ?? []; + if(wrapProcess) { + final tempScriptDirectory = await tempDirectory.createTemp("reboot_launcher_process"); + final tempScriptFile = File("${tempScriptDirectory.path}/process.bat"); + final command = window ? 'cmd.exe /k ""${executable.path}" ${argsOrEmpty.join(" ")}"' : '"${executable.path}" ${argsOrEmpty.join(" ")}'; + await tempScriptFile.writeAsString(command, flush: true); + final process = await Process.start( + tempScriptFile.path, + [], + workingDirectory: executable.parent.path, + mode: window ? ProcessStartMode.detachedWithStdio : ProcessStartMode.normal, + runInShell: window + ); + return _withLogger(name, executable, process, window); } - lpStartupInfo.ref.hStdOutput = hStdOutWrite.value; - lpStartupInfo.ref.hStdError = hStdErrWrite.value; - final success = CreateProcess( - nullptr, - TEXT(command), - nullptr, - nullptr, - TRUE, - NORMAL_PRIORITY_CLASS | (params.window ? CREATE_NEW_CONSOLE : CREATE_NO_WINDOW) | CREATE_NEW_PROCESS_GROUP, - nullptr, - TEXT(params.executable.parent.path), - lpStartupInfo, - processInfo + final process = await Process.start( + executable.path, + args ?? [], + workingDirectory: executable.parent.path, + mode: window ? ProcessStartMode.detachedWithStdio : ProcessStartMode.normal, + runInShell: window ); - if (success == 0) { - final error = GetLastError(); - port.send("Cannot start process: $error"); - return; - } - - CloseHandle(processInfo.ref.hProcess); - CloseHandle(processInfo.ref.hThread); - CloseHandle(hStdOutWrite.value); - CloseHandle(hStdErrWrite.value); - final pid = processInfo.ref.dwProcessId; - free(lpStartupInfo); - free(processInfo); - port.send(PrimitiveWin32Process( - pid: pid, - stdOutputHandle: hStdOutRead.value, - errorOutputHandle: hStdErrRead.value - )); + return _withLogger(name, executable, process, window); } -class _PipeReaderParams { - final int handle; - final SendPort port; - - _PipeReaderParams(this.handle, this.port); -} - -void _pipeToStreamChannelled(_PipeReaderParams params) { - final buf = calloc(chunkSize); - while(true) { - final bytesReadPtr = calloc(); - final success = ReadFile(params.handle, buf, chunkSize, bytesReadPtr, nullptr); - if (success == FALSE) { - break; - } - - final bytesRead = bytesReadPtr.value; - if (bytesRead == 0) { - break; - } - - final lines = utf8.decode(buf.asTypedList(bytesRead)).split('\n'); - for(final line in lines) { - params.port.send(line); - } +_ExtendedProcess _withLogger(String? name, File executable, Process process, bool window) { + final extendedProcess = _ExtendedProcess(process, true); + final loggingFile = File("${logsDirectory.path}\\${name ?? path.basenameWithoutExtension(executable.path)}-${DateTime.now().millisecondsSinceEpoch}.log"); + loggingFile.parent.createSync(recursive: true); + if(loggingFile.existsSync()) { + loggingFile.deleteSync(); } - CloseHandle(params.handle); - free(buf); - Isolate.current.kill(); -} - -Stream _pipeToStream(int pipeHandle) { - final port = ReceivePort(); - Isolate.spawn( - _pipeToStreamChannelled, - _PipeReaderParams(pipeHandle, port.sendPort) - ); - return port.map((event) => event as String); -} - -class _ProcessParameters { - File executable; - List? args; - bool window; - SendPort port; - - _ProcessParameters(this.executable, this.args, this.window, this.port); -} - -Future startProcess({required File executable, List? args, bool output = true, bool window = false}) async { - final completer = Completer(); - final port = ReceivePort(); - port.listen((message) { - if(message is PrimitiveWin32Process) { - completer.complete(Win32Process( - pid: message.pid, - stdOutput: _pipeToStream(message.stdOutputHandle), - errorOutput: _pipeToStream(message.errorOutputHandle) - )); - } else { - completer.completeError(message); - } - }); - Isolate.spawn( - _startProcess, - _ProcessParameters(executable, args, window, port.sendPort), - errorsAreFatal: true - ); - return await completer.future; + final semaphore = Semaphore(1); + void logEvent(String event) async { + await semaphore.acquire(); + await loggingFile.writeAsString("$event\n", mode: FileMode.append, flush: true); + semaphore.release(); + } + extendedProcess.stdOutput.listen(logEvent); + extendedProcess.stdError.listen(logEvent); + if(!window) { + extendedProcess.exitCode.then((value) => logEvent("Process terminated with exit code: $value\n")); + } + return extendedProcess; } final _NtResumeProcess = _ntdll.lookupFunction watchProcess(int pid) async { @@ -261,16 +178,14 @@ Future watchProcess(int pid) async { }); var errorPort = ReceivePort(); errorPort.listen((_) => completer.complete(false)); - var isolate = await Isolate.spawn( + await Isolate.spawn( _watchProcess, pid, onExit: exitPort.sendPort, onError: errorPort.sendPort, errorsAreFatal: true ); - var result = await completer.future; - isolate.kill(priority: Isolate.immediate); - return result; + return await completer.future; } List createRebootArgs(String username, String password, bool host, bool headless, String additionalArgs) { @@ -324,4 +239,53 @@ String _parseUsername(String username, bool host) { } return username; +} + +class _ExtendedProcess extends Process { + final Process _delegate; + final Stream>? _stdout; + final Stream>? _stderr; + _ExtendedProcess(Process delegate, bool attached) : + _delegate = delegate, + _stdout = attached ? delegate.stdout.asBroadcastStream() : null, + _stderr = attached ? delegate.stderr.asBroadcastStream() : null; + + + @override + Future get exitCode => _delegate.exitCode; + + @override + bool kill([ProcessSignal signal = ProcessSignal.sigterm]) => _delegate.kill(signal); + + @override + int get pid => _delegate.pid; + + @override + IOSink get stdin => _delegate.stdin; + + @override + Stream> get stdout { + final out = _stdout; + if(out == null) { + throw StateError("Output is not attached"); + } + + return out; + } + + @override + Stream> get stderr { + final err = _stderr; + if(err == null) { + throw StateError("Output is not attached"); + } + + return err; + } +} + +extension ProcessExtension on Process { + Stream get stdOutput => this.stdout.expand((event) => utf8.decode(event).split("\n")); + + Stream get stdError => this.stderr.expand((event) => utf8.decode(event).split("\n")); } \ No newline at end of file diff --git a/common/pubspec.yaml b/common/pubspec.yaml index 6fa9176..9314965 100644 --- a/common/pubspec.yaml +++ b/common/pubspec.yaml @@ -17,6 +17,8 @@ dependencies: ini: ^2.1.0 shelf_proxy: ^1.0.2 sync: ^0.3.0 + uuid: ^3.0.6 + shelf_web_socket: ^2.0.0 dev_dependencies: flutter_lints: ^2.0.1 \ No newline at end of file diff --git a/daemon/lib/watch.dart b/daemon/lib/watch.dart deleted file mode 100644 index f73f809..0000000 --- a/daemon/lib/watch.dart +++ /dev/null @@ -1,29 +0,0 @@ -import 'dart:io'; - -import 'package:reboot_common/common.dart'; -import 'package:supabase/supabase.dart'; - -void main(List args) async { - if(args.length != 5){ - stderr.writeln("Wrong args length: $args"); - return; - } - - var supabase = SupabaseClient(supabaseUrl, supabaseAnonKey); - var uuid = args[0]; - var gamePid = int.parse(args[1]); - var launcherPid = int.parse(args[2]); - var eacPid = int.parse(args[3]); - var hosting = args[4].toLowerCase() == "true"; - await watchProcess(gamePid); - Process.killPid(gamePid, ProcessSignal.sigabrt); - Process.killPid(launcherPid, ProcessSignal.sigabrt); - Process.killPid(eacPid, ProcessSignal.sigabrt); - if(hosting) { - await supabase.from("hosting") - .delete() - .match({'id': uuid}); - } - - exit(0); -} \ No newline at end of file diff --git a/daemon/pubspec.yaml b/daemon/pubspec.yaml deleted file mode 100644 index fa25c39..0000000 --- a/daemon/pubspec.yaml +++ /dev/null @@ -1,15 +0,0 @@ -name: reboot_watch -version: "1.0.0" - -publish_to: 'none' - -environment: - sdk: ">=2.19.0 <=3.3.4" - -dependencies: - supabase: ^1.9.1 - reboot_common: - path: ./../common - -dev_dependencies: - flutter_lints: ^2.0.1 \ No newline at end of file diff --git a/documentation/ar/1. Info.md b/documentation/ar/1. Info.md deleted file mode 100644 index ff38642..0000000 --- a/documentation/ar/1. Info.md +++ /dev/null @@ -1,13 +0,0 @@ -# ما هو مشروع Reboot؟ -[Project Reboot](https://github.com/Milxnor/Project-Reboot-3.0) هو خادم ألعاب لـ Fortnite S3-S15 - -### من الذي بدأ المشروع؟ -بدأ المشروع على Discord بواسطة Milxnor -[انضم إلى الديسكورد!](https://discord.gg/reboot) - -### من قام بتطوير الانشر؟ -تم تطوير المشغل بالكامل بواسطة [Auties00](https://github.com/Auties00/reboot_launcher) -شكرًا لكل من ساهم في ترجمة المشغل إلى لغات أخرى! - -### هل تتم صيانة المشروع بشكل نشط؟ -لم تعد تتم صيانة المشروع بشكل نشط بعد الآن، ولكن لا يزال بإمكان المجتمع المساهمة في تطويره. \ No newline at end of file diff --git a/documentation/ar/2. Bugs.md b/documentation/ar/2. Bugs.md deleted file mode 100644 index 5c4e0b8..0000000 --- a/documentation/ar/2. Bugs.md +++ /dev/null @@ -1,19 +0,0 @@ -# أين يمكنني الإبلاغ عن الأخطاء؟ - -## خادم اللعبة - -### 1. جيثب - -افتح مشكلة على [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. الديسكورد -اسأل في [#help](https://discord.gg/reboot) - -## الانشر - -### 1. جيثب - -افتح مشكلة على [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. الديسكورد -ضع علامة علىAuties في [#launcher-issues](https://discord.gg/reboot) \ No newline at end of file diff --git a/documentation/ar/3. PortForwarding.md b/documentation/ar/3. PortForwarding.md deleted file mode 100644 index 854c499..0000000 --- a/documentation/ar/3. PortForwarding.md +++ /dev/null @@ -1,37 +0,0 @@ -# كيف يمكنني جعل الخادم الخاص بي في مفتوح اللاعبين الآخرين؟ - -### 1. قم بتعيين عنوان IP ثابت - -قم بتعيين عنوان IP ثابت على جهاز الكمبيوتر الذي يستضيف خادم اللعبة وانسخه لوقت لاحق: - -- [ويندوز 11](https://pureinfotech.com/set-static-ip-address-windows-11/) -- [ويندوز 10](https://pureinfotech.com/set-static-ip-address-windows-10/) - - -### 2. قم بتسجيل الدخول إلى جهاز التوجيه الخاص بك - -ستحتاج إلى الوصول إلى واجهة الويب الخاصة بجهاز التوجيه الخاص بك على 192.168.1.1. -قد تحتاج إلى اسم مستخدم وكلمة مرور لتسجيل الدخول: راجع دليل جهاز التوجيه الخاص بك للحصول على تعليمات دقيقة. - -### 3. ابحث عن قسم إعادة توجيه المنفذ - -بمجرد تسجيل الدخول، انتقل إلى قسم إعادة توجيه المنفذ في إعدادات جهاز التوجيه الخاص بك. -قد يختلف هذا الموقع من جهاز توجيه إلى آخر، ولكن يُطلق عليه عادةً اسم "Port Forwarding" أو "Port Mapping" أو "Virtual Server". -ارجع إلى دليل جهاز التوجيه الخاص بك للحصول على تعليمات دقيقة. - -### 4. أضف قاعدة إعادة توجيه المنفذ - -الآن، ستحتاج إلى إنشاء قاعدة جديدة لإعادة توجيه المنفذ. إليك ما ستحتاج عادةً إلى تحديده: - -- **اسم الخدمة:** اختر اسمًا لقاعدة إعادة توجيه المنفذ (على سبيل المثال، "Fortnite Game Server"). -- **رقم المنفذ:** أدخل 7777 لكل من المنافذ الخارجية والداخلية. -- **البروتوكول:** حدد بروتوكول UDP. -- **عنوان IP الداخلي:** أدخل عنوان IP الثابت الذي قمت بتعيينه مسبقًا. -- **تمكين:** تأكد من تمكين قاعدة إعادة توجيه المنفذ. - -### 5. احفظ التغييرات وقم بتطبيقها - -بعد تكوين قاعدة إعادة توجيه المنفذ، احفظ التغييرات وقم بتطبيقها. -قد تتضمن هذه الخطوة النقر فوق الزر "حفظ" أو "تطبيق" الموجود على واجهة الويب الخاصة بجهاز التوجيه الخاص بك. - -### 6. حاول استضافة لعبة! \ No newline at end of file diff --git a/documentation/de/1. Info.md b/documentation/de/1. Info.md deleted file mode 100644 index 041992a..0000000 --- a/documentation/de/1. Info.md +++ /dev/null @@ -1,13 +0,0 @@ -# Was ist Projekt Reboot? -[Projekt Reboot](https://github.com/Milxnor/Project-Reboot-3.0) is a game server for Fortnite S3-S15 - -### Wer hat das Projekt gestartet? -Das Projekt wurde auf Discord von Milxnor gestartet -[Trete dem Discord Server bei!](https://discord.gg/reboot) - -### Wer entwickelt den Launcher? -Der Launcher is komplett von [Auties00](https://github.com/Auties00/reboot_launcher) entwickelt. -Danke an alle, die den Launcher in andere Sprachen übersetzt haben! - -### Wird an dem Projekt noch aktiv gearbeitet? -An dem Projekt wird nicht mehr aktiv gearbeitet, aber die Community kann immer noch zu seiner Entwicklung beitragen. \ No newline at end of file diff --git a/documentation/de/2. Bugs.md b/documentation/de/2. Bugs.md deleted file mode 100644 index ac64be9..0000000 --- a/documentation/de/2. Bugs.md +++ /dev/null @@ -1,22 +0,0 @@ -# Wo kann ich Bugs/Fehler einsenden? - -## Game-Server - -### 1. Github - -Öffne ein Problem auf [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord - -Frag in [#help](https://discord.gg/reboot) - -## Launcher - -### 1. Github - -Öffne ein Problem auf [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord - -Markiere @Auties in [#launcher-issues](https://discord.gg/reboot) - diff --git a/documentation/de/3. PortForwarding.md b/documentation/de/3. PortForwarding.md deleted file mode 100644 index 3b6bce6..0000000 --- a/documentation/de/3. PortForwarding.md +++ /dev/null @@ -1,37 +0,0 @@ -# Wie kann ich andere Spieler auf meinen Server lassen? - -### 1. Setze eine statische IP-Adresse (Static IP) - -Setze eine statische IP-Adresse auf dem PC, auf dem der Server läuft und kopiere sie für später: - -- [Windows 11](https://pureinfotech.com/set-static-ip-address-windows-11/) -- [Windows 10](https://pureinfotech.com/set-static-ip-address-windows-10/) - - -### 2. Logge dich in deinen Router ein - -Du wirst das Web-Interface von deinem Router öffnen bei 192.168.1.1 müssen. -Vielleicht wirst du einen Benutzernamen und ein Passwort für den Log-In benötigen: Schau auf der Bedienung für deinen Router nach für prezise Vorgehensweisen. - -### 3. Finde die Port-Forwarding Abteilung - -Nachdem Sie sich angemeldet haben, gehen Sie zum Portweiterleitungsbereich der Einstellungen Ihres Routers. -Dieser Ort kann von Router zu Router variieren, ist jedoch normalerweise als "Portweiterleitung," "Portzuordnung" oder "Virtueller Server" gekennzeichnet. -Konsultieren Sie das Handbuch Ihres Routers für genaue Anweisungen. - -### 4. Eine Port-Forwarding Regel hinzufügen - -Nun müssen Sie eine neue Portweiterleitungsregel erstellen. Hier ist, was Sie normalerweise angeben müssen: - -- **Dienstname**: Wählen Sie einen Namen für Ihre Portweiterleitungsregel (z.B. "Fortnite Game Server"). -- **Portnummer**: Geben Sie sowohl für die externen als auch für die internen Ports die Nummer 7777 ein. -- **Protokoll**: Wählen Sie das UDP-Protokoll. -- **Interne IP-Adresse**: Geben Sie die statische IP-Adresse ein, die Sie zuvor festgelegt haben. -- **Aktivieren**: Stellen Sie sicher, dass die Portweiterleitungsregel aktiviert ist. - -### 5. Änderungen speichern - -Nachdem Sie die Portweiterleitungsregel konfiguriert haben, speichern Sie Ihre Änderungen und wenden Sie sie an. -Dieser Schritt kann das Klicken auf eine "Speichern" oder "Anwenden" Schaltfläche auf der Weboberfläche Ihres Routers erfordern. - -### 6. Versuch, ein Spiel zu hosten! diff --git a/documentation/en/1. Info.md b/documentation/en/1. Info.md deleted file mode 100644 index bff53f6..0000000 --- a/documentation/en/1. Info.md +++ /dev/null @@ -1,13 +0,0 @@ -# What is Project Reboot? -[Project Reboot](https://github.com/Milxnor/Project-Reboot-3.0) is a game server for Fortnite S3-S15 - -### Who started the project? -The project was started on Discord by Milxnor -[Join the discord!](https://discord.gg/reboot) - -### Who develops the launcher? -The launcher is entirely developed by [Auties00](https://github.com/Auties00/reboot_launcher) -Thanks to everyone who contributed to translate the launcher in other languages! - -### Is the project being actively maintained? -The project isn't actively maintained anymore, but the community can still contribute to its development. \ No newline at end of file diff --git a/documentation/en/2. Bugs.md b/documentation/en/2. Bugs.md deleted file mode 100644 index d66bfbe..0000000 --- a/documentation/en/2. Bugs.md +++ /dev/null @@ -1,20 +0,0 @@ -# Where can I report bugs? - -## Game server - -### 1. Github - -Open an issue on [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Ask in [#help](https://discord.gg/reboot) - -## Launcher - -### 1. Github - -Open an issue on [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Tag @Auties in [#launcher-issues](https://discord.gg/reboot) - diff --git a/documentation/en/3. PortForwarding.md b/documentation/en/3. PortForwarding.md deleted file mode 100644 index 92b3e1f..0000000 --- a/documentation/en/3. PortForwarding.md +++ /dev/null @@ -1,37 +0,0 @@ -# How can I make my server accessible to other players? - -### 1. Set a static IP - -Set a static IP on the PC hosting the game server and copy it for later: - -- [Windows 11](https://pureinfotech.com/set-static-ip-address-windows-11/) -- [Windows 10](https://pureinfotech.com/set-static-ip-address-windows-10/) - - -### 2. Log into Your Router - -You'll need to access your router's web interface at 192.168.1.1. -You might need a username and a password to log in: refer to your router's manual for precise instructions. - -### 3. Find the Port Forwarding Section - -Once logged in, navigate to the port forwarding section of your router's settings. -This location may vary from router to router, but it's typically labelled as "Port Forwarding," "Port Mapping," or "Virtual Server." -Refer to your router's manual for precise instructions. - -### 4. Add a Port Forwarding Rule - -Now, you'll need to create a new port forwarding rule. Here's what you'll typically need to specify: - -- **Service Name:** Choose a name for your port forwarding rule (e.g., "Fortnite Game Server"). -- **Port Number:** Enter 7777 for both the external and internal ports. -- **Protocol:** Select the UDP protocol. -- **Internal IP Address:** Enter the static IP address you set earlier. -- **Enable:** Make sure the port forwarding rule is enabled. - -### 5. Save and Apply the Changes - -After configuring the port forwarding rule, save your changes and apply them. -This step may involve clicking a "Save" or "Apply" button on your router's web interface. - -### 6. Try hosting a game! diff --git a/documentation/es/1. Info.md b/documentation/es/1. Info.md deleted file mode 100644 index 66d3297..0000000 --- a/documentation/es/1. Info.md +++ /dev/null @@ -1,12 +0,0 @@ -# ¿Qué es Project Reboot? -[Project Reboot](https://github.com/Milxnor/Project-Reboot-3.0) es un servidor de juego para Fortnite que abarca desde la temporada 3 hasta la temporada 15. - -### ¿Quién inició el proyecto? -El proyecto fue iniciado en Discord por Milxnor. -[¡Únete al Discord!](https://discord.gg/reboot) - -### ¿Quién desarrolla el lanzador? -El lanzador está completamente desarrollado por [Auties00](https://github.com/Auties00/reboot_launcher). ¡Agradecemos a todos los que contribuyeron a traducir el lanzador a otros idiomas! - -### ¿El proyecto se mantiene activamente? -El proyecto ya no se encuentra bajo mantenimiento activo, pero la comunidad aún puede contribuir a su desarrollo. \ No newline at end of file diff --git a/documentation/es/2. Bugs.md b/documentation/es/2. Bugs.md deleted file mode 100644 index fc766b4..0000000 --- a/documentation/es/2. Bugs.md +++ /dev/null @@ -1,20 +0,0 @@ -# ¿Dónde puedo reportar errores? - -## Servidor de Juego - -### 1. Github - -Abre un issue en [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Pregunta en [#help](https://discord.gg/reboot) - -## Launcher - -### 1. Github - -Abre un issue en [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Menciona a @Auties en [#launcher-issues](https://discord.gg/reboot) - diff --git a/documentation/es/3. PortForwarding.md b/documentation/es/3. PortForwarding.md deleted file mode 100644 index 00a7f82..0000000 --- a/documentation/es/3. PortForwarding.md +++ /dev/null @@ -1,36 +0,0 @@ -# ¿Cómo puedo hacer que mi servidor sea accesible para otros jugadores? - -### 1. Configurar una IP estática - -Establece una IP estática en la PC que aloja el servidor de juego y cópiala para usarla más tarde: - -- [Windows 11](https://pureinfotech.com/set-static-ip-address-windows-11/) -- [Windows 10](https://pureinfotech.com/set-static-ip-address-windows-10/) - -### 2. Iniciar sesión en tu Router - -Necesitarás acceder a la interfaz web de tu router en 192.168.1.1. -Es posible que necesites un nombre de usuario y una contraseña para iniciar sesión: consulta el manual de tu router para instrucciones precisas. - -### 3. Encuentra la Sección de Reenvío de Puertos - -Una vez iniciada la sesión, ve a la sección de reenvío de puertos en la configuración de tu router. -Esta ubicación puede variar de un router a otro, pero generalmente está etiquetada como "Reenvío de Puertos", "Mapeo de Puertos" o "Servidor Virtual". -Consulta el manual de tu router para instrucciones precisas. - -### 4. Agrega una Regla de Reenvío de Puertos - -Ahora, deberás crear una nueva regla de reenvío de puertos. Esto es lo que normalmente necesitarás especificar: - -- **Nombre del Servicio:** Elige un nombre para tu regla de reenvío de puertos (por ejemplo, "Servidor de Juego Fortnite"). -- **Número de Puerto:** Ingresa 7777 tanto para los puertos externos como internos. -- **Protocolo:** Selecciona el protocolo UDP. -- **Dirección IP Interna:** Ingresa la dirección IP estática que configuraste anteriormente. -- **Habilitar:** Asegúrate de que la regla de reenvío de puertos esté habilitada. - -### 5. Guarda y Aplica los Cambios - -Después de configurar la regla de reenvío de puertos, guarda tus cambios y aplícalos. -Este paso puede implicar hacer clic en un botón "Guardar" o "Aplicar" en la interfaz web de tu router. - -### 6. ¡Intenta hospedar un servidor de juego! diff --git a/documentation/fr/1. Info.md b/documentation/fr/1. Info.md deleted file mode 100644 index 98b7080..0000000 --- a/documentation/fr/1. Info.md +++ /dev/null @@ -1,13 +0,0 @@ -# Qu'est ce que c'est le "Project Reboot" ? -["Project Reboot"](https://github.com/Milxnor/Project-Reboot-3.0) est un serveur de jeu pour Fortnite S3-S15 - -### Qui a lancé le projet ? -Le projet à été lancé sur Discord par Milxnor -[Rejoignez le Discord !](https://discord.gg/reboot) - -### Qui développe le launcher de Reboot? -Le launcher est entièrement développé par [Auties00](https://github.com/Auties00/reboot_launcher) -Merci à tous ceux qui contribue à la traduction du launcher dans d'autres languages ! (🇫🇷 Dj_Mc01 & Dixip) - -### Le projet est-il toujours mis à jour ? -Le projet n'est malheuresement plus activement maintenu, mais la communauté peut toujours contribuer au développement du [projet](https://github.com/Milxnor/Project-Reboot-3.0). \ No newline at end of file diff --git a/documentation/fr/2. Bugs.md b/documentation/fr/2. Bugs.md deleted file mode 100644 index 1931402..0000000 --- a/documentation/fr/2. Bugs.md +++ /dev/null @@ -1,20 +0,0 @@ -# Comment puis-je reporter des Bugs? - -## Serveur de jeu - -### 1. Github - -Ouvrez une "issue" sur le [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Demandez dans [#help](https://discord.gg/reboot) - -## Launcher - -### 1. Github - -Ouvrez une "issue" sur le [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Taggez @Auties dans [#launcher-issues](https://discord.gg/reboot) - diff --git a/documentation/fr/3. PortForwarding.md b/documentation/fr/3. PortForwarding.md deleted file mode 100644 index 0384d54..0000000 --- a/documentation/fr/3. PortForwarding.md +++ /dev/null @@ -1,41 +0,0 @@ -# Comment faire pour que mon serveur puisse être accessible par les autres joueurs ? - -### 1. Définir une adresse IP locale statique (optionnel) - -Définissez une adresse statique puis copiez là pour plus tard: - -- [Windows 11](https://pureinfotech.com/set-static-ip-address-windows-11/) -- [Windows 10](https://pureinfotech.com/set-static-ip-address-windows-10/) - - -### 2. Se connecter sur l'interface de configuration de votre routeur - -Pour y accéder, rendez-vous sur la bonne adresse, cela dépend de votre routeur (Orange & SFR: 192.168.1.1, Free: mafreebox.freebox.fr, Bouygues: 192.168.1.254) - -**!!!Attention!!! certains opérateurs (comme SFR & Free) ne laissent plus accès à une IPv4 propre à leurs clients**, dans le cas de Free, vous devrez commander une ["IP FullStack"](https://subscribe.free.fr/login/) (c'est gratuit). Dans le cas d'SFR, vous devrez batailler avec le support client (ne perdez pas espoir, j'y suis parvenu en une semaine): +33 1023 - -Vous trouverez les informations d'authentifications dans le manuel de votre Box. - -### 3. Trouver la section de configuration des ports - -Une fois connectez sur le panel et votre IPv4 obtenue, cherchez la page des options pour ouvrir vos ports -Ceci varie beacoup en fonction du routeur, mais c'est souvent appelée "NAT/PAT", "Gestion des ports" ou encore "Port Forwarding". -Sinon, réferez vous à des guides sur Google ou autre... - -### 4. Ajouter la règle - -Maintenant, vous devez créer la règle pour autoriser les joueurs à se connecter, rentrez les informations suivantes: - -- **Nom:** Choisissez un nom pour votre règle, "Fortnite serveur" ? Peu importe... -- **Ports:** Entrez 7777 pour le port interne et externe (s'il vous demande une plage, spécifiez 7777 partout). -- **Protocole:** Sélectionnez UDP (ou les deux si possible). -- **IP de destination:** Entrez l'IP locale de votre serveur, celle précédemment spécifiée, ou sélectionnez votre appareil par son nom dans la liste (si disponible). -- **Activation:** Soyez-sûre que la règle est activée, bien évidemment. - -### 5. Sauvegardez et appliquez les changements. - -Après avoir spécifié votre règle, n'oubliez pas de sauvegarder. - -### 6. Essayez de lancer une partie ! - -Si tout s'est correctement déroulé, les joueurs devraient être en possibilité de rejoindre votre serveur. \ No newline at end of file diff --git a/documentation/pl/1. Info.md b/documentation/pl/1. Info.md deleted file mode 100644 index 222e694..0000000 --- a/documentation/pl/1. Info.md +++ /dev/null @@ -1,13 +0,0 @@ -# Czym jest Project Reboot? -[Project Reboot](https://github.com/Milxnor/Project-Reboot-3.0) to serwer gry dla Fortnite S3-S15 - -### Kto rozpoczął projekt? -Projekt został zapoczątkowany na Discordzie przez Milxnora -[Dołącz do Discorda!](https://discord.gg/reboot) - -### Kto rozwija launcher? -Program uruchamiający został w całości opracowany przez [Auties00](https://github.com/Auties00/reboot_launcher). -Dziękujemy wszystkim, którzy przyczynili się do przetłumaczenia launchera na inne języki! (Przetłumaczono na Polski przez: TKD_Kedis) - -### Czy projekt jest aktywnie rozwijany? -Projekt nie jest już aktywnie rozwijany, ale społeczność nadal może przyczyniać się do jego rozwoju. \ No newline at end of file diff --git a/documentation/pl/2. Bugs.md b/documentation/pl/2. Bugs.md deleted file mode 100644 index cbf1c13..0000000 --- a/documentation/pl/2. Bugs.md +++ /dev/null @@ -1,20 +0,0 @@ -# Gdzie mogę zgłaszać błędy? - -## Serwer gry - -### 1. Github - -Otwórz zgłoszenie na [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Zapytaj w [#help](https://discord.gg/reboot) - -## Program uruchamiający - -### 1. Github - -Otwórz zgłoszenie na [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Oznacz @Auties w [#launcher-issues](https://discord.gg/reboot) - diff --git a/documentation/pl/3. PortForwarding.md b/documentation/pl/3. PortForwarding.md deleted file mode 100644 index 3b9c726..0000000 --- a/documentation/pl/3. PortForwarding.md +++ /dev/null @@ -1,37 +0,0 @@ -# Jak mogę udostępnić mój serwer innym graczom? - -### 1. Ustaw statyczny adres IP - -Ustaw statyczny adres IP na komputerze hostującym serwer gry i skopiuj go na później: - -- [Windows 11](https://pureinfotech.com/set-static-ip-address-windows-11/) -- [Windows 10](https://pureinfotech.com/set-static-ip-address-windows-10/) - - -### 2. Zaloguj się do routera - -Musisz uzyskać dostęp do interfejsu internetowego routera pod adresem 192.168.1.1. -Do zalogowania może być potrzebna nazwa użytkownika i hasło: dokładne instrukcje można znaleźć w instrukcji obsługi routera. - -### 3. Znajdź sekcję Przekierowanie portów - -Po zalogowaniu przejdź do sekcji przekierowania portów w ustawieniach routera. -Lokalizacja ta może się różnić w zależności od routera, ale zazwyczaj jest oznaczona jako "Przekierowanie portów", "Mapowanie portów" lub "Serwer wirtualny". -Dokładne instrukcje można znaleźć w instrukcji obsługi routera. - -### 4. Dodaj regułę przekierowania portów - -Teraz musisz utworzyć nową regułę przekierowania portów. Oto, co zazwyczaj należy określić: - -- **Nazwa usługi:** Wybierz nazwę dla swojej reguły przekierowania portów (np. "Fortnite Game Server"). -- **Numer portu:** Wprowadź 7777 dla portów zewnętrznych i wewnętrznych. -- **Protokół:** Wybierz protokół UDP. -- **Wewnętrzny adres IP:** Wprowadź statyczny adres IP, który ustawiłeś wcześniej. -- **Włącz:** Upewnij się, że reguła przekierowania portów jest włączona. - -### 5. Zapisz i zastosuj zmiany - -Po skonfigurowaniu reguły przekierowania portów, zapisz zmiany i zastosuj je. -Ten krok może wymagać kliknięcia przycisku "Zapisz" lub "Zastosuj" na stronie internetowej routera. - -### 6. Spróbuj zhostować grę! diff --git a/documentation/pt/1. Info.md b/documentation/pt/1. Info.md deleted file mode 100644 index 7699a05..0000000 --- a/documentation/pt/1. Info.md +++ /dev/null @@ -1,12 +0,0 @@ -# O que é o Projeto Reboot? -[Projeto Reboot](https://github.com/Milxnor/Project-Reboot-3.0) é um servidor de jogo para Fortnite da temporada 3 à temporada 15. - -### Quem iniciou o projeto? -O projeto foi iniciado no Discord por Milxnor. -[Entre no Discord!](https://discord.gg/reboot) - -### Quem desenvolve o launcher? -O launcher é completamente desenvolvido por [Auties00](https://github.com/Auties00/reboot_launcher). Agradecemos a todos que contribuíram para traduzir o launcher para outros idiomas! - -### O projeto está sendo ativamente mantido? -O projeto não está mais sendo ativamente mantido, mas a comunidade ainda pode contribuir para o seu desenvolvimento. \ No newline at end of file diff --git a/documentation/pt/2. Bugs.md b/documentation/pt/2. Bugs.md deleted file mode 100644 index 8a2df6b..0000000 --- a/documentation/pt/2. Bugs.md +++ /dev/null @@ -1,20 +0,0 @@ -# Onde posso reportar bugs? - -## Servidor de Jogo - -### 1. Github - -Abra um issue no [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Pergunte em [#help](https://discord.gg/reboot) - -## Launcher - -### 1. Github - -Abra um issue no [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Marque @Auties em [#launcher-issues](https://discord.gg/reboot) - diff --git a/documentation/pt/3. PortForwarding.md b/documentation/pt/3. PortForwarding.md deleted file mode 100644 index 5a69856..0000000 --- a/documentation/pt/3. PortForwarding.md +++ /dev/null @@ -1,37 +0,0 @@ -# Como posso tornar meu servidor acessível para outros jogadores? - -### 1. Configure um IP estático - -Configure um IP estático no PC que hospeda o servidor de jogo e copie-o para uso posterior: - -- [Windows 11](https://pureinfotech.com/set-static-ip-address-windows-11/) -- [Windows 10](https://pureinfotech.com/set-static-ip-address-windows-10/) - -### 2. Faça login no seu Roteador - -Você precisará acessar a interface web do seu roteador em 192.168.1.1 ou 192.168.0.1. -Lembre-se que a IP de acesso ao seu roteador pode mudar conforme o seu provedor de internet. -Poderá ser necessário um nome de usuário e senha para fazer o login: consulte o manual do seu roteador para instruções precisas. - -### 3. Encontre a Seção de Redirecionamento de Porta - -Após fazer login, vá para a seção de redirecionamento de porta nas configurações do seu roteador. -A localização pode variar de um roteador para outro, mas geralmente é rotulada como "Redirecionamento de Porta," "Mapeamento de Porta" ou "Servidor Virtual." -Consulte o manual do seu roteador para instruções precisas. - -### 4. Adicione uma Regra de Redirecionamento de Porta - -Agora, você precisará criar uma nova regra de redirecionamento de porta. Eis o que normalmente você precisará especificar: - -- **Nome do Serviço:** Escolha um nome para sua regra de redirecionamento de porta (por exemplo, "Servidor de Jogo Fortnite"). -- **Número da Porta:** Insira 7777 para ambas as portas externa e interna. -- **Protocolo:** Selecione o protocolo UDP. -- **Endereço IP Interno:** Insira o endereço IP estático que você configurou anteriormente. -- **Ativar:** Certifique-se de que a regra de redirecionamento de porta esteja ativada. - -### 5. Salve e Aplique as Alterações - -Após configurar a regra de redirecionamento de porta, salve suas alterações e aplique-as. -Isso pode envolver clicar em um botão "Salvar" ou "Aplicar" na interface web do seu roteador. - -### 6. Tente hospedar um jogo! diff --git a/documentation/ro/1. Info.md b/documentation/ro/1. Info.md deleted file mode 100644 index 761257f..0000000 --- a/documentation/ro/1. Info.md +++ /dev/null @@ -1,13 +0,0 @@ -# Ce este Proiectul Reboot? -[Proiectul Reboot](https://github.com/Milxnor/Project-Reboot-3.0) este un server de joc pentru Fortnite S3-S15 - -### Cine a inițiat proiectul? -Proiectul a fost inițiat pe Discord de Milxnor -[Intrați pe discord!](https://discord.gg/reboot) - -### Cine dezvoltă lansatorul? -Lansatorul este dezvoltat în întregime de [Auties00](https://github.com/Auties00/reboot_launcher) -Mulțumim tuturor celor care au contribuit la traducerea lansatorului în alte limbi! - -### Proiectul este întreținut în mod activ? -Proiectul nu mai este întreținut în mod activ, dar comunitatea poate contribui în continuare la dezvoltarea sa. \ No newline at end of file diff --git a/documentation/ro/2. Bugs.md b/documentation/ro/2. Bugs.md deleted file mode 100644 index dc55d4b..0000000 --- a/documentation/ro/2. Bugs.md +++ /dev/null @@ -1,20 +0,0 @@ -# Unde pot raporta bug-uri? - -## Server de joc - -### 1. Github - -Deschideți o problemă pe [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Întrebați pe canalul [#help](https://discord.gg/reboot) - -## Lansator - -### 1. Github - -Deschideți o problemă pe [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Etichetați @Auties în [#launcher-issues](https://discord.gg/reboot) - diff --git a/documentation/ro/3. PortForwarding.md b/documentation/ro/3. PortForwarding.md deleted file mode 100644 index e5808e5..0000000 --- a/documentation/ro/3. PortForwarding.md +++ /dev/null @@ -1,37 +0,0 @@ -# Cum îmi pot face serverul accesibil altor jucători? - -### 1. Setați un IP static - -Setați un IP static pe PC-ul care găzduiește serverul de joc și copiați-l pentru mai târziu: - -- [Windows 11](https://pureinfotech.com/set-static-ip-address-windows-11/) -- [Windows 10](https://pureinfotech.com/set-static-ip-address-windows-10/) - - -### 2. Conectați-vă la router - -Va trebui să accesați interfața web a routerului la 192.168.1.1. -Este posibil să aveți nevoie de un nume de utilizator și de o parolă pentru a vă conecta: consultați manualul routerului pentru instrucțiuni precise. - -### 3. Găsiți secțiunea Port Forwarding - -Odată ce v-ați conectat, navigați la secțiunea de Port Forwarding din setările routerului. -Această secțiune poate varia de la un router la altul, dar de obicei este etichetată ca "Port Forwarding", "Port Mapping" sau "Virtual Server". -Consultați manualul routerului dumneavoastră pentru instrucțiuni precise. - -### 4. Adăugați o regulă pentru Port Forwarding - -Acum va trebui să creați o nouă regulă pentru "Port Forwarding". Iată ce va trebui să specificați în mod obișnuit: - -- **Denumirea serviciului:** Alegeți un nume pentru Port Forwarding (de exemplu, "Fortnite Game Server"). -- **Numărul portului:** Introduceți 7777 atât pentru portul extern, cât și pentru cel intern. -- **Protocolul:** Selectați protocolul UDP. -- **Adresa IP internă:** Introduceți adresa IP statică pe care ați introdus-o mai devreme. -- **Activați:** Asigurați-vă că regula de redirecționare a portului este activată. - -### 5. Salvați și Aplicați modificările - -După configurarea Port Forwarding-ului, salvați modificările și aplicați-le. -Acest pas poate implica apăsarea butonului "Save" (Salvare) sau "Apply" (Aplicare) pe interfața web a routerului. - -### 6. Încercați să găzduiți un meci! diff --git a/documentation/ru/1. Info.md b/documentation/ru/1. Info.md deleted file mode 100644 index 379dafb..0000000 --- a/documentation/ru/1. Info.md +++ /dev/null @@ -1,13 +0,0 @@ -# Что такое проект Reboot? -[Project Reboot](https://github.com/Milxnor/Project-Reboot-3.0) - это игровой сервер для Fortnite с сезона 3 по 15. - -### Кто начал этот проект? -Проект был начат на сервере Discord пользователем с никнеймом Milxnor. -[Присоединяйтесь к серверу Discord!](https://discord.gg/reboot) - -### Кто разрабатывает лаунчер? -Лаунчер полностью разрабатывается [Auties00](https://github.com/Auties00/reboot_launcher). -Спасибо всем, кто внес свой вклад в перевод лаунчера на другие языки! - -### Проект активно поддерживается? -Проект больше не активно поддерживается, однако сообщество все еще может вносить свой вклад в его развитие. \ No newline at end of file diff --git a/documentation/ru/2. Bugs.md b/documentation/ru/2. Bugs.md deleted file mode 100644 index 6a31e58..0000000 --- a/documentation/ru/2. Bugs.md +++ /dev/null @@ -1,19 +0,0 @@ -# Где я могу сообщить о багах? - -## Сервер - -### 1. Github - -Создайте запрос на [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Задайте вопрос в [#help](https://discord.gg/reboot) - -## Лаунчер - -### 1. Github - -Создайте запрос на [Github](https://github.com/Milxnor/Project-Reboot-3.0/issues) - -### 2. Discord -Отметьте пользователя @Auties в [#launcher-issues](https://discord.gg/reboot) \ No newline at end of file diff --git a/documentation/ru/3. PortForwarding.md b/documentation/ru/3. PortForwarding.md deleted file mode 100644 index 423f146..0000000 --- a/documentation/ru/3. PortForwarding.md +++ /dev/null @@ -1,35 +0,0 @@ -# Как сделать свой сервер доступным для других игроков? - -### 1. Задайте статический IP - -Установите статический IP на ПК, на котором размещен игровой сервер, и скопируйте его для последующего использования: - -- [Windows 11](https://pureinfotech.com/set-static-ip-address-windows-11/) -- [Windows 10](https://pureinfotech.com/set-static-ip-address-windows-10/) - -### 2. Войдите в свой роутер - -Для доступа к веб-интерфейсу вашего роутера перейдите по адресу 192.168.1.1. -Может потребоваться имя пользователя и пароль для входа: обратитесь к руководству вашего роутера за точными инструкциями. - -### 3. Найдите раздел "Перенаправление портов" - -После входа перейдите в раздел настроек роутера, связанный с перенаправлением портов. Местоположение этого раздела может различаться от роутера к роутеру, но обычно он обозначается как "Перенаправление портов", "Назначение портов" или "Виртуальный сервер". -Смотрите в руководстве к роутеру для точных инструкций. - -### 4. Добавьте правило перенаправления портов - -Теперь вам нужно создать новое правило перенаправления портов. Вот что обычно нужно указать: - -- **Имя сервиса:** Выберите имя для вашего правила перенаправления портов (например, "Игровой сервер Fortnite"). -- **Номер порта:** Введите 7777 как для внешнего, так и для внутреннего порта. -- **Протокол:** Выберите протокол UDP. -- **Внутренний IP-адрес:** Введите статический IP-адрес, который вы установили ранее. -- **Включить:** Убедитесь, что правило перенаправления портов включено. - -### 5. Сохраните и примените изменения - -После настройки правила перенаправления портов сохраните ваши изменения и примените их. -Этот шаг может включать в себя нажатие кнопки "Сохранить" или "Применить" на веб-интерфейсе вашего роутера. - -### 6. Попробуйте запустить сервер! diff --git a/gui/assets/authenticator/CloudStorage/DefaultEngine.ini b/gui/assets/authenticator/CloudStorage/DefaultEngine.ini deleted file mode 100644 index 46e8702..0000000 --- a/gui/assets/authenticator/CloudStorage/DefaultEngine.ini +++ /dev/null @@ -1,11 +0,0 @@ -# Do not remove/change, this redirects epicgames xmpp to lawinserver xmpp -[OnlineSubsystemMcp.Xmpp] -bUseSSL=false -ServerAddr="ws://127.0.0.1" -ServerPort=80 - -# Do not remove/change, this redirects epicgames xmpp to lawinserver xmpp -[OnlineSubsystemMcp.Xmpp Prod] -bUseSSL=false -ServerAddr="ws://127.0.0.1" -ServerPort=80 \ No newline at end of file diff --git a/gui/assets/authenticator/responses/Campaign/cardpackLootItemIDS.json b/gui/assets/authenticator/responses/Campaign/cardpackLootItemIDS.json deleted file mode 100644 index 4b68f69..0000000 --- a/gui/assets/authenticator/responses/Campaign/cardpackLootItemIDS.json +++ /dev/null @@ -1,526 +0,0 @@ -[ - "Defender:did_defenderassault_basic_c_t01", - "Defender:did_defenderassault_basic_r_t01", - "Defender:did_defenderassault_basic_sr_t01", - "Defender:did_defenderassault_basic_uc_t01", - "Defender:did_defenderassault_basic_vr_t01", - "Defender:did_defenderassault_founders_vr_t01", - "Defender:did_defendermelee_basic_c_t01", - "Defender:did_defendermelee_basic_r_t01", - "Defender:did_defendermelee_basic_sr_t01", - "Defender:did_defendermelee_basic_uc_t01", - "Defender:did_defendermelee_basic_vr_t01", - "Defender:did_defenderpistol_basic_c_t01", - "Defender:did_defenderpistol_basic_r_t01", - "Defender:did_defenderpistol_basic_sr_t01", - "Defender:did_defenderpistol_basic_uc_t01", - "Defender:did_defenderpistol_basic_vr_t01", - "Defender:did_defenderpistol_founders_vr_t01", - "Defender:did_defendershotgun_basic_c_t01", - "Defender:did_defendershotgun_basic_r_t01", - "Defender:did_defendershotgun_basic_sr_t01", - "Defender:did_defendershotgun_basic_uc_t01", - "Defender:did_defendershotgun_basic_vr_t01", - "Defender:did_defendersniper_basic_c_t01", - "Defender:did_defendersniper_basic_r_t01", - "Defender:did_defendersniper_basic_sr_t01", - "Defender:did_defendersniper_basic_uc_t01", - "Defender:did_defendersniper_basic_vr_t01", - "Hero:hid_commando_007_r_t01", - "Hero:hid_commando_007_sr_t01", - "Hero:hid_commando_007_uc_t01", - "Hero:hid_commando_007_vr_t01", - "Hero:hid_commando_008_foundersf_sr_t01", - "Hero:hid_commando_008_foundersm_sr_t01", - "Hero:hid_commando_008_r_t01", - "Hero:hid_commando_008_sr_t01", - "Hero:hid_commando_008_vr_t01", - "Hero:hid_commando_009_r_t01", - "Hero:hid_commando_009_sr_t01", - "Hero:hid_commando_009_vr_t01", - "Hero:hid_commando_010_sr_t01", - "Hero:hid_commando_010_vr_t01", - "Hero:hid_commando_gcgrenade_r_t01", - "Hero:hid_commando_gcgrenade_sr_t01", - "Hero:hid_commando_gcgrenade_vr_t01", - "Hero:hid_commando_grenadegun_r_t01", - "Hero:hid_commando_grenadegun_sr_t01", - "Hero:hid_commando_grenadegun_uc_t01", - "Hero:hid_commando_grenadegun_vr_t01", - "Hero:hid_commando_grenademaster_sr_t01", - "Hero:hid_commando_gunheadshot_sr_t01", - "Hero:hid_commando_gunheadshot_vr_t01", - "Hero:hid_commando_gunheadshothw_sr_t01", - "Hero:hid_commando_guntough_r_t01", - "Hero:hid_commando_guntough_sr_t01", - "Hero:hid_commando_guntough_uc_t01", - "Hero:hid_commando_guntough_vr_t01", - "Hero:hid_commando_shockdamage_r_t01", - "Hero:hid_commando_shockdamage_sr_t01", - "Hero:hid_commando_shockdamage_vr_t01", - "Hero:hid_commando_sony_r_t01", - "Hero:hid_constructor_007_r_t01", - "Hero:hid_constructor_007_sr_t01", - "Hero:hid_constructor_007_uc_t01", - "Hero:hid_constructor_007_vr_t01", - "Hero:hid_constructor_008_foundersf_sr_t01", - "Hero:hid_constructor_008_foundersm_sr_t01", - "Hero:hid_constructor_008_r_t01", - "Hero:hid_constructor_008_sr_t01", - "Hero:hid_constructor_008_vr_t01", - "Hero:hid_constructor_009_r_t01", - "Hero:hid_constructor_009_sr_t01", - "Hero:hid_constructor_009_vr_t01", - "Hero:hid_constructor_010_sr_t01", - "Hero:hid_constructor_010_vr_t01", - "Hero:hid_constructor_basebig_sr_t01", - "Hero:hid_constructor_basehyper_r_t01", - "Hero:hid_constructor_basehyper_sr_t01", - "Hero:hid_constructor_basehyper_vr_t01", - "Hero:hid_constructor_basehyperhw_sr_t01", - "Hero:hid_constructor_hammerplasma_sr_t01", - "Hero:hid_constructor_hammerplasma_vr_t01", - "Hero:hid_constructor_hammertank_r_t01", - "Hero:hid_constructor_hammertank_sr_t01", - "Hero:hid_constructor_hammertank_uc_t01", - "Hero:hid_constructor_hammertank_vr_t01", - "Hero:hid_constructor_plasmadamage_r_t01", - "Hero:hid_constructor_plasmadamage_sr_t01", - "Hero:hid_constructor_plasmadamage_vr_t01", - "Hero:hid_constructor_rushbase_r_t01", - "Hero:hid_constructor_rushbase_sr_t01", - "Hero:hid_constructor_rushbase_uc_t01", - "Hero:hid_constructor_rushbase_vr_t01", - "Hero:hid_constructor_sony_r_t01", - "Hero:hid_ninja_007_r_t01", - "Hero:hid_ninja_007_sr_t01", - "Hero:hid_ninja_007_uc_t01", - "Hero:hid_ninja_007_vr_t01", - "Hero:hid_ninja_008_r_t01", - "Hero:hid_ninja_008_sr_t01", - "Hero:hid_ninja_008_vr_t01", - "Hero:hid_ninja_009_r_t01", - "Hero:hid_ninja_009_sr_t01", - "Hero:hid_ninja_009_vr_t01", - "Hero:hid_ninja_010_sr_t01", - "Hero:hid_ninja_010_vr_t01", - "Hero:hid_ninja_slashbreath_r_t01", - "Hero:hid_ninja_slashbreath_sr_t01", - "Hero:hid_ninja_slashbreath_vr_t01", - "Hero:hid_ninja_slashtail_r_t01", - "Hero:hid_ninja_slashtail_sr_t01", - "Hero:hid_ninja_slashtail_uc_t01", - "Hero:hid_ninja_slashtail_vr_t01", - "Hero:hid_ninja_smokedimmak_r_t01", - "Hero:hid_ninja_smokedimmak_sr_t01", - "Hero:hid_ninja_smokedimmak_vr_t01", - "Hero:hid_ninja_sony_r_t01", - "Hero:hid_ninja_starsassassin_foundersf_sr_t01", - "Hero:hid_ninja_starsassassin_foundersm_sr_t01", - "Hero:hid_ninja_starsassassin_r_t01", - "Hero:hid_ninja_starsassassin_sr_t01", - "Hero:hid_ninja_starsassassin_uc_t01", - "Hero:hid_ninja_starsassassin_vr_t01", - "Hero:hid_ninja_starsrain_sr_t01", - "Hero:hid_ninja_starsrain_vr_t01", - "Hero:hid_ninja_starsrainhw_sr_t01", - "Hero:hid_ninja_swordmaster_sr_t01", - "Hero:hid_outlander_007_r_t01", - "Hero:hid_outlander_007_sr_t01", - "Hero:hid_outlander_007_uc_t01", - "Hero:hid_outlander_007_vr_t01", - "Hero:hid_outlander_008_foundersf_sr_t01", - "Hero:hid_outlander_008_foundersm_sr_t01", - "Hero:hid_outlander_008_r_t01", - "Hero:hid_outlander_008_sr_t01", - "Hero:hid_outlander_008_vr_t01", - "Hero:hid_outlander_009_r_t01", - "Hero:hid_outlander_009_sr_t01", - "Hero:hid_outlander_009_vr_t01", - "Hero:hid_outlander_010_sr_t01", - "Hero:hid_outlander_010_vr_t01", - "Hero:hid_outlander_punchdamage_sr_t01", - "Hero:hid_outlander_punchdamage_vr_t01", - "Hero:hid_outlander_punchphase_r_t01", - "Hero:hid_outlander_punchphase_sr_t01", - "Hero:hid_outlander_punchphase_uc_t01", - "Hero:hid_outlander_punchphase_vr_t01", - "Hero:hid_outlander_sony_r_t01", - "Hero:hid_outlander_spherefragment_r_t01", - "Hero:hid_outlander_spherefragment_sr_t01", - "Hero:hid_outlander_spherefragment_vr_t01", - "Hero:hid_outlander_zonefragment_sr_t01", - "Hero:hid_outlander_zoneharvest_r_t01", - "Hero:hid_outlander_zoneharvest_sr_t01", - "Hero:hid_outlander_zoneharvest_uc_t01", - "Hero:hid_outlander_zoneharvest_vr_t01", - "Hero:hid_outlander_zonepistol_r_t01", - "Hero:hid_outlander_zonepistol_sr_t01", - "Hero:hid_outlander_zonepistol_vr_t01", - "Hero:hid_outlander_zonepistolhw_sr_t01", - "Schematic:sid_assault_auto_c_ore_t01", - "Schematic:sid_assault_auto_founders_sr_ore_t01", - "Schematic:sid_assault_auto_halloween_sr_ore_t01", - "Schematic:sid_assault_auto_r_ore_t01", - "Schematic:sid_assault_auto_sr_ore_t01", - "Schematic:sid_assault_auto_uc_ore_t01", - "Schematic:sid_assault_auto_vr_ore_t01", - "Schematic:sid_assault_burst_c_ore_t01", - "Schematic:sid_assault_burst_r_ore_t01", - "Schematic:sid_assault_burst_sr_ore_t01", - "Schematic:sid_assault_burst_uc_ore_t01", - "Schematic:sid_assault_burst_vr_ore_t01", - "Schematic:sid_assault_doubleshot_sr_ore_t01", - "Schematic:sid_assault_doubleshot_vr_ore_t01", - "Schematic:sid_assault_hydra_sr_ore_t01", - "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", - "Schematic:sid_assault_lmg_drum_founders_vr_ore_t01", - "Schematic:sid_assault_lmg_r_ore_t01", - "Schematic:sid_assault_lmg_sr_ore_t01", - "Schematic:sid_assault_lmg_vr_ore_t01", - "Schematic:sid_assault_raygun_sr_ore_t01", - "Schematic:sid_assault_raygun_vr_ore_t01", - "Schematic:sid_assault_semiauto_c_ore_t01", - "Schematic:sid_assault_semiauto_founders_vr_ore_t01", - "Schematic:sid_assault_semiauto_r_ore_t01", - "Schematic:sid_assault_semiauto_sr_ore_t01", - "Schematic:sid_assault_semiauto_uc_ore_t01", - "Schematic:sid_assault_semiauto_vr_ore_t01", - "Schematic:sid_assault_singleshot_r_ore_t01", - "Schematic:sid_assault_singleshot_sr_ore_t01", - "Schematic:sid_assault_singleshot_vr_ore_t01", - "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", - "Schematic:sid_assault_surgical_sr_ore_t01", - "Schematic:sid_assault_surgical_vr_ore_t01", - "Schematic:sid_blunt_club_light_sr_ore_t01", - "Schematic:sid_blunt_club_light_vr_ore_t01", - "Schematic:sid_blunt_hammer_heavy_c_ore_t01", - "Schematic:sid_blunt_hammer_heavy_founders_vr_ore_t01", - "Schematic:sid_blunt_hammer_heavy_r_ore_t01", - "Schematic:sid_blunt_hammer_heavy_sr_ore_t01", - "Schematic:sid_blunt_hammer_heavy_uc_ore_t01", - "Schematic:sid_blunt_hammer_heavy_vr_ore_t01", - "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", - "Schematic:sid_blunt_hammer_rocket_vr_ore_t01", - "Schematic:sid_blunt_heavy_paddle_c_ore_t01", - "Schematic:sid_blunt_heavy_paddle_r_ore_t01", - "Schematic:sid_blunt_heavy_paddle_uc_ore_t01", - "Schematic:sid_blunt_light_bat_r_ore_t01", - "Schematic:sid_blunt_light_bat_uc_ore_t01", - "Schematic:sid_blunt_light_c_ore_t01", - "Schematic:sid_blunt_light_r_ore_t01", - "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", - "Schematic:sid_blunt_light_rocketbat_vr_ore_t01", - "Schematic:sid_blunt_light_sr_ore_t01", - "Schematic:sid_blunt_light_uc_ore_t01", - "Schematic:sid_blunt_light_vr_ore_t01", - "Schematic:sid_blunt_medium_c_ore_t01", - "Schematic:sid_blunt_medium_r_ore_t01", - "Schematic:sid_blunt_medium_sr_ore_t01", - "Schematic:sid_blunt_medium_uc_ore_t01", - "Schematic:sid_blunt_medium_vr_ore_t01", - "Schematic:sid_blunt_tool_light_r_ore_t01", - "Schematic:sid_blunt_tool_light_uc_ore_t01", - "Schematic:sid_ceiling_electric_aoe_r_t01", - "Schematic:sid_ceiling_electric_aoe_sr_t01", - "Schematic:sid_ceiling_electric_aoe_vr_t01", - "Schematic:sid_ceiling_electric_single_c_t01", - "Schematic:sid_ceiling_electric_single_r_t01", - "Schematic:sid_ceiling_electric_single_sr_t01", - "Schematic:sid_ceiling_electric_single_uc_t01", - "Schematic:sid_ceiling_electric_single_vr_t01", - "Schematic:sid_ceiling_gas_r_t01", - "Schematic:sid_ceiling_gas_sr_t01", - "Schematic:sid_ceiling_gas_uc_t01", - "Schematic:sid_ceiling_gas_vr_t01", - "Schematic:sid_edged_axe_heavy_c_ore_t01", - "Schematic:sid_edged_axe_heavy_r_ore_t01", - "Schematic:sid_edged_axe_heavy_sr_ore_t01", - "Schematic:sid_edged_axe_heavy_uc_ore_t01", - "Schematic:sid_edged_axe_heavy_vr_ore_t01", - "Schematic:sid_edged_axe_light_c_ore_t01", - "Schematic:sid_edged_axe_light_r_ore_t01", - "Schematic:sid_edged_axe_light_sr_ore_t01", - "Schematic:sid_edged_axe_light_uc_ore_t01", - "Schematic:sid_edged_axe_light_vr_ore_t01", - "Schematic:sid_edged_axe_medium_c_ore_t01", - "Schematic:sid_edged_axe_medium_founders_vr_ore_t01", - "Schematic:sid_edged_axe_medium_laser_sr_ore_t01", - "Schematic:sid_edged_axe_medium_laser_vr_ore_t01", - "Schematic:sid_edged_axe_medium_r_ore_t01", - "Schematic:sid_edged_axe_medium_sr_ore_t01", - "Schematic:sid_edged_axe_medium_uc_ore_t01", - "Schematic:sid_edged_axe_medium_vr_ore_t01", - "Schematic:sid_edged_scythe_c_ore_t01", - "Schematic:sid_edged_scythe_laser_sr_ore_t01", - "Schematic:sid_edged_scythe_laser_vr_ore_t01", - "Schematic:sid_edged_scythe_r_ore_t01", - "Schematic:sid_edged_scythe_sr_ore_t01", - "Schematic:sid_edged_scythe_uc_ore_t01", - "Schematic:sid_edged_scythe_vr_ore_t01", - "Schematic:sid_edged_sword_heavy_c_ore_t01", - "Schematic:sid_edged_sword_heavy_founders_vr_ore_t01", - "Schematic:sid_edged_sword_heavy_r_ore_t01", - "Schematic:sid_edged_sword_heavy_sr_ore_t01", - "Schematic:sid_edged_sword_heavy_uc_ore_t01", - "Schematic:sid_edged_sword_heavy_vr_ore_t01", - "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", - "Schematic:sid_edged_sword_hydraulic_vr_ore_t01", - "Schematic:sid_edged_sword_light_c_ore_t01", - "Schematic:sid_edged_sword_light_founders_vr_ore_t01", - "Schematic:sid_edged_sword_light_r_ore_t01", - "Schematic:sid_edged_sword_light_sr_ore_t01", - "Schematic:sid_edged_sword_light_uc_ore_t01", - "Schematic:sid_edged_sword_light_vr_ore_t01", - "Schematic:sid_edged_sword_medium_c_ore_t01", - "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", - "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", - "Schematic:sid_edged_sword_medium_laser_founders_vr_ore_t01", - "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", - "Schematic:sid_edged_sword_medium_laser_vr_ore_t01", - "Schematic:sid_edged_sword_medium_r_ore_t01", - "Schematic:sid_edged_sword_medium_sr_ore_t01", - "Schematic:sid_edged_sword_medium_uc_ore_t01", - "Schematic:sid_edged_sword_medium_vr_ore_t01", - "Schematic:sid_floor_health_r_t01", - "Schematic:sid_floor_health_sr_t01", - "Schematic:sid_floor_health_uc_t01", - "Schematic:sid_floor_health_vr_t01", - "Schematic:sid_floor_launcher_r_t01", - "Schematic:sid_floor_launcher_sr_t01", - "Schematic:sid_floor_launcher_uc_t01", - "Schematic:sid_floor_launcher_vr_t01", - "Schematic:sid_floor_spikes_r_t01", - "Schematic:sid_floor_spikes_sr_t01", - "Schematic:sid_floor_spikes_uc_t01", - "Schematic:sid_floor_spikes_vr_t01", - "Schematic:sid_floor_spikes_wood_c_t01", - "Schematic:sid_floor_spikes_wood_r_t01", - "Schematic:sid_floor_spikes_wood_sr_t01", - "Schematic:sid_floor_spikes_wood_uc_t01", - "Schematic:sid_floor_spikes_wood_vr_t01", - "Schematic:sid_floor_ward_r_t01", - "Schematic:sid_floor_ward_sr_t01", - "Schematic:sid_floor_ward_uc_t01", - "Schematic:sid_floor_ward_vr_t01", - "Schematic:sid_launcher_grenade_r_ore_t01", - "Schematic:sid_launcher_grenade_sr_ore_t01", - "Schematic:sid_launcher_grenade_vr_ore_t01", - "Schematic:sid_launcher_hydraulic_sr_ore_t01", - "Schematic:sid_launcher_hydraulic_vr_ore_t01", - "Schematic:sid_launcher_pumpkin_rpg_sr_ore_t01", - "Schematic:sid_launcher_rocket_r_ore_t01", - "Schematic:sid_launcher_rocket_sr_ore_t01", - "Schematic:sid_launcher_rocket_vr_ore_t01", - "Schematic:sid_piercing_spear_c_ore_t01", - "Schematic:sid_piercing_spear_laser_sr_ore_t01", - "Schematic:sid_piercing_spear_laser_vr_ore_t01", - "Schematic:sid_piercing_spear_military_r_ore_t01", - "Schematic:sid_piercing_spear_military_sr_ore_t01", - "Schematic:sid_piercing_spear_military_vr_ore_t01", - "Schematic:sid_piercing_spear_r_ore_t01", - "Schematic:sid_piercing_spear_sr_ore_t01", - "Schematic:sid_piercing_spear_uc_ore_t01", - "Schematic:sid_piercing_spear_vr_ore_t01", - "Schematic:sid_pistol_auto_c_ore_t01", - "Schematic:sid_pistol_auto_r_ore_t01", - "Schematic:sid_pistol_auto_sr_ore_t01", - "Schematic:sid_pistol_auto_uc_ore_t01", - "Schematic:sid_pistol_auto_vr_ore_t01", - "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", - "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", - "Schematic:sid_pistol_autoheavy_founders_vr_ore_t01", - "Schematic:sid_pistol_autoheavy_r_ore_t01", - "Schematic:sid_pistol_autoheavy_sr_ore_t01", - "Schematic:sid_pistol_autoheavy_vr_ore_t01", - "Schematic:sid_pistol_bolt_sr_ore_t01", - "Schematic:sid_pistol_bolt_vr_ore_t01", - "Schematic:sid_pistol_boltrevolver_c_ore_t01", - "Schematic:sid_pistol_boltrevolver_r_ore_t01", - "Schematic:sid_pistol_boltrevolver_uc_ore_t01", - "Schematic:sid_pistol_dragon_sr_ore_t01", - "Schematic:sid_pistol_dragon_vr_ore_t01", - "Schematic:sid_pistol_firecracker_r_ore_t01", - "Schematic:sid_pistol_firecracker_sr_ore_t01", - "Schematic:sid_pistol_firecracker_vr_ore_t01", - "Schematic:sid_pistol_gatling_sr_ore_t01", - "Schematic:sid_pistol_gatling_vr_ore_t01", - "Schematic:sid_pistol_handcannon_founders_vr_ore_t01", - "Schematic:sid_pistol_handcannon_r_ore_t01", - "Schematic:sid_pistol_handcannon_semi_r_ore_t01", - "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", - "Schematic:sid_pistol_handcannon_semi_vr_ore_t01", - "Schematic:sid_pistol_handcannon_sr_ore_t01", - "Schematic:sid_pistol_handcannon_vr_ore_t01", - "Schematic:sid_pistol_hydraulic_sr_ore_t01", - "Schematic:sid_pistol_hydraulic_vr_ore_t01", - "Schematic:sid_pistol_rapid_founders_vr_ore_t01", - "Schematic:sid_pistol_rapid_r_ore_t01", - "Schematic:sid_pistol_rapid_sr_ore_t01", - "Schematic:sid_pistol_rapid_vr_ore_t01", - "Schematic:sid_pistol_rocket_sr_ore_t01", - "Schematic:sid_pistol_semiauto_c_ore_t01", - "Schematic:sid_pistol_semiauto_founders_vr_ore_t01", - "Schematic:sid_pistol_semiauto_r_ore_t01", - "Schematic:sid_pistol_semiauto_sr_ore_t01", - "Schematic:sid_pistol_semiauto_uc_ore_t01", - "Schematic:sid_pistol_semiauto_vr_ore_t01", - "Schematic:sid_pistol_sixshooter_c_ore_t01", - "Schematic:sid_pistol_sixshooter_r_ore_t01", - "Schematic:sid_pistol_sixshooter_uc_ore_t01", - "Schematic:sid_pistol_space_sr_ore_t01", - "Schematic:sid_pistol_space_vr_ore_t01", - "Schematic:sid_pistol_zapper_sr_ore_t01", - "Schematic:sid_pistol_zapper_vr_ore_t01", - "Schematic:sid_shotgun_auto_founders_vr_ore_t01", - "Schematic:sid_shotgun_auto_r_ore_t01", - "Schematic:sid_shotgun_auto_sr_ore_t01", - "Schematic:sid_shotgun_auto_uc_ore_t01", - "Schematic:sid_shotgun_auto_vr_ore_t01", - "Schematic:sid_shotgun_break_c_ore_t01", - "Schematic:sid_shotgun_break_ou_r_ore_t01", - "Schematic:sid_shotgun_break_ou_sr_ore_t01", - "Schematic:sid_shotgun_break_ou_uc_ore_t01", - "Schematic:sid_shotgun_break_ou_vr_ore_t01", - "Schematic:sid_shotgun_break_r_ore_t01", - "Schematic:sid_shotgun_break_sr_ore_t01", - "Schematic:sid_shotgun_break_uc_ore_t01", - "Schematic:sid_shotgun_break_vr_ore_t01", - "Schematic:sid_shotgun_heavy_sr_ore_t01", - "Schematic:sid_shotgun_longarm_sr_ore_t01", - "Schematic:sid_shotgun_longarm_vr_ore_t01", - "Schematic:sid_shotgun_minigun_sr_ore_t01", - "Schematic:sid_shotgun_semiauto_r_ore_t01", - "Schematic:sid_shotgun_semiauto_sr_ore_t01", - "Schematic:sid_shotgun_semiauto_uc_ore_t01", - "Schematic:sid_shotgun_semiauto_vr_ore_t01", - "Schematic:sid_shotgun_standard_c_ore_t01", - "Schematic:sid_shotgun_standard_r_ore_t01", - "Schematic:sid_shotgun_standard_sr_ore_t01", - "Schematic:sid_shotgun_standard_uc_ore_t01", - "Schematic:sid_shotgun_standard_vr_ore_t01", - "Schematic:sid_shotgun_tactical_c_ore_t01", - "Schematic:sid_shotgun_tactical_founders_r_ore_t01", - "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", - "Schematic:sid_shotgun_tactical_founders_vr_ore_t01", - "Schematic:sid_shotgun_tactical_precision_r_ore_t01", - "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", - "Schematic:sid_shotgun_tactical_precision_vr_ore_t01", - "Schematic:sid_shotgun_tactical_r_ore_t01", - "Schematic:sid_shotgun_tactical_uc_ore_t01", - "Schematic:sid_sniper_amr_r_ore_t01", - "Schematic:sid_sniper_amr_sr_ore_t01", - "Schematic:sid_sniper_amr_vr_ore_t01", - "Schematic:sid_sniper_auto_founders_vr_ore_t01", - "Schematic:sid_sniper_auto_r_ore_t01", - "Schematic:sid_sniper_auto_sr_ore_t01", - "Schematic:sid_sniper_auto_uc_ore_t01", - "Schematic:sid_sniper_auto_vr_ore_t01", - "Schematic:sid_sniper_boltaction_c_ore_t01", - "Schematic:sid_sniper_boltaction_r_ore_t01", - "Schematic:sid_sniper_boltaction_scope_r_ore_t01", - "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", - "Schematic:sid_sniper_boltaction_scope_vr_ore_t01", - "Schematic:sid_sniper_boltaction_uc_ore_t01", - "Schematic:sid_sniper_hydraulic_sr_ore_t01", - "Schematic:sid_sniper_hydraulic_vr_ore_t01", - "Schematic:sid_sniper_shredder_sr_ore_t01", - "Schematic:sid_sniper_shredder_vr_ore_t01", - "Schematic:sid_sniper_standard_c_ore_t01", - "Schematic:sid_sniper_standard_founders_vr_ore_t01", - "Schematic:sid_sniper_standard_r_ore_t01", - "Schematic:sid_sniper_standard_scope_sr_ore_t01", - "Schematic:sid_sniper_standard_scope_vr_ore_t01", - "Schematic:sid_sniper_standard_sr_ore_t01", - "Schematic:sid_sniper_standard_uc_ore_t01", - "Schematic:sid_sniper_standard_vr_ore_t01", - "Schematic:sid_sniper_tripleshot_sr_ore_t01", - "Schematic:sid_sniper_tripleshot_vr_ore_t01", - "Schematic:sid_wall_darts_r_t01", - "Schematic:sid_wall_darts_sr_t01", - "Schematic:sid_wall_darts_uc_t01", - "Schematic:sid_wall_darts_vr_t01", - "Schematic:sid_wall_electric_r_t01", - "Schematic:sid_wall_electric_sr_t01", - "Schematic:sid_wall_electric_uc_t01", - "Schematic:sid_wall_electric_vr_t01", - "Schematic:sid_wall_launcher_r_t01", - "Schematic:sid_wall_launcher_sr_t01", - "Schematic:sid_wall_launcher_uc_t01", - "Schematic:sid_wall_launcher_vr_t01", - "Schematic:sid_wall_light_r_t01", - "Schematic:sid_wall_light_sr_t01", - "Schematic:sid_wall_light_vr_t01", - "Schematic:sid_wall_wood_spikes_c_t01", - "Schematic:sid_wall_wood_spikes_r_t01", - "Schematic:sid_wall_wood_spikes_sr_t01", - "Schematic:sid_wall_wood_spikes_uc_t01", - "Schematic:sid_wall_wood_spikes_vr_t01", - "Worker:managerdoctor_c_t01", - "Worker:managerdoctor_r_t01", - "Worker:managerdoctor_sr_kingsly_t01", - "Worker:managerdoctor_sr_noctor_t01", - "Worker:managerdoctor_sr_treky_t01", - "Worker:managerdoctor_uc_t01", - "Worker:managerdoctor_vr_t01", - "Worker:managerengineer_c_t01", - "Worker:managerengineer_r_t01", - "Worker:managerengineer_sr_countess_t01", - "Worker:managerengineer_sr_maths_t01", - "Worker:managerengineer_sr_sobs_t01", - "Worker:managerengineer_uc_t01", - "Worker:managerengineer_vr_t01", - "Worker:managerexplorer_c_t01", - "Worker:managerexplorer_r_t01", - "Worker:managerexplorer_sr_birdie_t01", - "Worker:managerexplorer_sr_eagle_t01", - "Worker:managerexplorer_sr_spacebound_t01", - "Worker:managerexplorer_uc_t01", - "Worker:managerexplorer_vr_t01", - "Worker:managergadgeteer_c_t01", - "Worker:managergadgeteer_r_t01", - "Worker:managergadgeteer_sr_fixer_t01", - "Worker:managergadgeteer_sr_flak_t01", - "Worker:managergadgeteer_sr_zapps_t01", - "Worker:managergadgeteer_uc_t01", - "Worker:managergadgeteer_vr_t01", - "Worker:managerinventor_c_t01", - "Worker:managerinventor_r_t01", - "Worker:managerinventor_sr_frequency_t01", - "Worker:managerinventor_sr_rad_t01", - "Worker:managerinventor_sr_square_t01", - "Worker:managerinventor_uc_t01", - "Worker:managerinventor_vr_t01", - "Worker:managermartialartist_c_t01", - "Worker:managermartialartist_r_t01", - "Worker:managermartialartist_sr_dragon_t01", - "Worker:managermartialartist_sr_samurai_t01", - "Worker:managermartialartist_sr_tiger_t01", - "Worker:managermartialartist_uc_t01", - "Worker:managermartialartist_vr_t01", - "Worker:managersoldier_c_t01", - "Worker:managersoldier_r_t01", - "Worker:managersoldier_sr_malcolm_t01", - "Worker:managersoldier_sr_princess_t01", - "Worker:managersoldier_sr_ramsie_t01", - "Worker:managersoldier_uc_t01", - "Worker:managersoldier_vr_t01", - "Worker:managertrainer_c_t01", - "Worker:managertrainer_r_t01", - "Worker:managertrainer_sr_jumpy_t01", - "Worker:managertrainer_sr_raider_t01", - "Worker:managertrainer_sr_yoglattes_t01", - "Worker:managertrainer_uc_t01", - "Worker:managertrainer_vr_t01", - "Worker:workerbasic_c_t01", - "Worker:workerbasic_r_t01", - "Worker:workerbasic_sr_t01", - "Worker:workerbasic_uc_t01", - "Worker:workerbasic_vr_t01", - "Worker:workerhalloween_alt_sr_t01", - "Worker:workerhalloween_c_t01", - "Worker:workerhalloween_r_t01", - "Worker:workerhalloween_sr_t01", - "Worker:workerhalloween_uc_t01", - "Worker:workerhalloween_vr_t01" -] diff --git a/gui/assets/authenticator/responses/friendslist.json b/gui/assets/authenticator/responses/friendslist.json deleted file mode 100644 index 0637a08..0000000 --- a/gui/assets/authenticator/responses/friendslist.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/gui/assets/authenticator/responses/friendslist2.json b/gui/assets/authenticator/responses/friendslist2.json deleted file mode 100644 index 754dc76..0000000 --- a/gui/assets/authenticator/responses/friendslist2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "friends": [], - "incoming": [], - "outgoing": [], - "suggested": [], - "blocklist": [], - "settings": { - "acceptInvites": "public" - } -} \ No newline at end of file diff --git a/gui/assets/backend/CloudStorage/DefaultEngine.ini b/gui/assets/backend/CloudStorage/DefaultEngine.ini new file mode 100644 index 0000000..895948c --- /dev/null +++ b/gui/assets/backend/CloudStorage/DefaultEngine.ini @@ -0,0 +1,28 @@ +# Do not remove/change, this redirects epicgames xmpp to lawinserver xmpp +[OnlineSubsystemMcp.Xmpp] +bUseSSL=false +ServerAddr="ws://127.0.0.1" +ServerPort=80 + +# Do not remove/change, this redirects epicgames xmpp to lawinserver xmpp +[OnlineSubsystemMcp.Xmpp Prod] +bUseSSL=false +ServerAddr="ws://127.0.0.1" +ServerPort=80 + +# Forces fortnite to use the v1 party system to support lawinserver xmpp +[OnlineSubsystemMcp] +bUsePartySystemV2=false + +# Forces fortnite to use the v1 party system to support lawinserver xmpp +[OnlineSubsystemMcp.OnlinePartySystemMcpAdapter] +bUsePartySystemV2=false + +# Fix for XMPP not working on some versions +[XMPP] +bEnableWebsockets=true + +# Fix for long waiting at checking connections to datacenters on Switch & Mobile +[/Script/Qos.QosRegionManager] +NumTestsPerRegion=1 +PingTimeout=0.1 \ No newline at end of file diff --git a/gui/assets/authenticator/CloudStorage/DefaultGame.ini b/gui/assets/backend/CloudStorage/DefaultGame.ini similarity index 99% rename from gui/assets/authenticator/CloudStorage/DefaultGame.ini rename to gui/assets/backend/CloudStorage/DefaultGame.ini index 9aa26c5..246c05f 100644 --- a/gui/assets/authenticator/CloudStorage/DefaultGame.ini +++ b/gui/assets/backend/CloudStorage/DefaultGame.ini @@ -23,3 +23,4 @@ bIsAthenaGlobalChatEnabled=true # Battle royale global chat. [/Script/FortniteGame.FortOnlineAccount] bEnableEulaCheck=false +bShouldCheckIfPlatformAllowed=false diff --git a/gui/assets/backend/CloudStorage/DefaultInput.ini b/gui/assets/backend/CloudStorage/DefaultInput.ini new file mode 100644 index 0000000..25295a1 --- /dev/null +++ b/gui/assets/backend/CloudStorage/DefaultInput.ini @@ -0,0 +1,3 @@ +[/Script/Engine.InputSettings] ++ConsoleKeys=Tilde # Enables console using the tilde key ++ConsoleKeys=F8 # Enables console using the F8 key \ No newline at end of file diff --git a/gui/assets/authenticator/CloudStorage/DefaultRuntimeOptions.ini b/gui/assets/backend/CloudStorage/DefaultRuntimeOptions.ini similarity index 100% rename from gui/assets/authenticator/CloudStorage/DefaultRuntimeOptions.ini rename to gui/assets/backend/CloudStorage/DefaultRuntimeOptions.ini diff --git a/gui/assets/authenticator/Config/catalog_config.json b/gui/assets/backend/Config/catalog_config.json similarity index 100% rename from gui/assets/authenticator/Config/catalog_config.json rename to gui/assets/backend/Config/catalog_config.json diff --git a/gui/assets/authenticator/Config/config.ini b/gui/assets/backend/Config/config.ini similarity index 92% rename from gui/assets/authenticator/Config/config.ini rename to gui/assets/backend/Config/config.ini index eaf1335..b5e4d1a 100644 --- a/gui/assets/authenticator/Config/config.ini +++ b/gui/assets/backend/Config/config.ini @@ -70,3 +70,10 @@ cubeSpawnDate=2020-01-01T00:00:00.000Z ## Blockbuster Contest winner video at Risky Reels event. (v5.30 Only)* bEnableBlockbusterRiskyEvent=false + +## Cube melting in Loot Lake event. (v5.41 Only)* + +# When set to true, the cube will fall into Loot Lake and start melting on the date specified below. +# After the event, Loot Lake will remain purple in new matches. +bEnableCubeLake=false +cubeLakeDate=2020-01-01T00:00:00.000Z diff --git a/gui/assets/authenticator/lawinserver.exe b/gui/assets/backend/lawinserver.exe similarity index 61% rename from gui/assets/authenticator/lawinserver.exe rename to gui/assets/backend/lawinserver.exe index 8274d35..cdeaffc 100644 Binary files a/gui/assets/authenticator/lawinserver.exe and b/gui/assets/backend/lawinserver.exe differ diff --git a/gui/assets/authenticator/profiles/athena.json b/gui/assets/backend/profiles/athena.json similarity index 87% rename from gui/assets/authenticator/profiles/athena.json rename to gui/assets/backend/profiles/athena.json index 8b0fc69..ba24a29 100644 --- a/gui/assets/authenticator/profiles/athena.json +++ b/gui/assets/backend/profiles/athena.json @@ -2,7 +2,7 @@ "_id": "LawinServer", "created": "0001-01-01T00:00:00.000Z", "updated": "0001-01-01T00:00:00.000Z", - "rvn": 1, + "rvn": 10, "wipeNumber": 1, "accountId": "LawinServer", "profileId": "athena", @@ -227,6 +227,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_AuricVine": { + "templateId": "AthenaBackpack:Backpack_AuricVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Ballerina": { "templateId": "AthenaBackpack:Backpack_Ballerina", "attributes": { @@ -248,6 +260,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_BananaAdventure": { + "templateId": "AthenaBackpack:Backpack_BananaAdventure", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_BariumDemon": { "templateId": "AthenaBackpack:Backpack_BariumDemon", "attributes": { @@ -281,6 +305,54 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_BengalBasher": { + "templateId": "AthenaBackpack:Backpack_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BirdNest": { + "templateId": "AthenaBackpack:Backpack_BirdNest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BirdNestGreen": { + "templateId": "AthenaBackpack:Backpack_BirdNestGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BiruFang": { + "templateId": "AthenaBackpack:Backpack_BiruFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Bites": { "templateId": "AthenaBackpack:Backpack_Bites", "attributes": { @@ -302,6 +374,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_BlazerVeil": { + "templateId": "AthenaBackpack:Backpack_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_BlueGlaze": { "templateId": "AthenaBackpack:Backpack_BlueGlaze", "attributes": { @@ -371,6 +455,63 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_BrainMatter": { + "templateId": "AthenaBackpack:Backpack_BrainMatter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BraveBuild": { + "templateId": "AthenaBackpack:Backpack_BraveBuild", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BrawnyBass": { + "templateId": "AthenaBackpack:Backpack_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BrightShimmer": { + "templateId": "AthenaBackpack:Backpack_BrightShimmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_BuffCatCruise": { "templateId": "AthenaBackpack:Backpack_BuffCatCruise", "attributes": { @@ -413,6 +554,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_CameraShake": { + "templateId": "AthenaBackpack:Backpack_CameraShake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Candor": { "templateId": "AthenaBackpack:Backpack_Candor", "attributes": { @@ -446,6 +599,27 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_CeremonialGuard": { + "templateId": "AthenaBackpack:Backpack_CeremonialGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Chainmail": { "templateId": "AthenaBackpack:Backpack_Chainmail", "attributes": { @@ -479,6 +653,27 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_ChicleVeil": { + "templateId": "AthenaBackpack:Backpack_ChicleVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_ChillCat": { "templateId": "AthenaBackpack:Backpack_ChillCat", "attributes": { @@ -581,6 +776,40 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_CleverEdge": { + "templateId": "AthenaBackpack:Backpack_CleverEdge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ConfectionPop": { + "templateId": "AthenaBackpack:Backpack_ConfectionPop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Conscience": { "templateId": "AthenaBackpack:Backpack_Conscience", "attributes": { @@ -593,6 +822,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_CoyoTear": { + "templateId": "AthenaBackpack:Backpack_CoyoTear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_CoyoteTrail": { "templateId": "AthenaBackpack:Backpack_CoyoteTrail", "attributes": { @@ -634,6 +875,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_CraneGame": { + "templateId": "AthenaBackpack:Backpack_CraneGame", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_CrimsonPeak": { "templateId": "AthenaBackpack:Backpack_CrimsonPeak", "attributes": { @@ -688,6 +941,42 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_CubeCoast": { + "templateId": "AthenaBackpack:Backpack_CubeCoast", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CupidEvil": { + "templateId": "AthenaBackpack:Backpack_CupidEvil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CyberRunnerGolden": { + "templateId": "AthenaBackpack:Backpack_CyberRunnerGolden", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_DaggerPack": { "templateId": "AthenaBackpack:Backpack_DaggerPack", "attributes": { @@ -731,6 +1020,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_DapperPunch": { + "templateId": "AthenaBackpack:Backpack_DapperPunch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_DarkAzalea": { "templateId": "AthenaBackpack:Backpack_DarkAzalea", "attributes": { @@ -830,6 +1131,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_DiamondHeart": { + "templateId": "AthenaBackpack:Backpack_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_DistantEchoCastle": { "templateId": "AthenaBackpack:Backpack_DistantEchoCastle", "attributes": { @@ -866,6 +1179,88 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_DracoDueler": { + "templateId": "AthenaBackpack:Backpack_DracoDueler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DriftAvatar": { + "templateId": "AthenaBackpack:Backpack_DriftAvatar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DriftSwat": { + "templateId": "AthenaBackpack:Backpack_DriftSwat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DriftTrooper": { + "templateId": "AthenaBackpack:Backpack_DriftTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DyedDuelist": { + "templateId": "AthenaBackpack:Backpack_DyedDuelist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Ebony": { "templateId": "AthenaBackpack:Backpack_Ebony", "attributes": { @@ -896,6 +1291,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_EctoCat": { + "templateId": "AthenaBackpack:Backpack_EctoCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Elevate": { "templateId": "AthenaBackpack:Backpack_Elevate", "attributes": { @@ -989,6 +1396,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_Ephemeral": { + "templateId": "AthenaBackpack:Backpack_Ephemeral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_FallValleyBlink": { "templateId": "AthenaBackpack:Backpack_FallValleyBlink", "attributes": { @@ -1049,6 +1468,42 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_Firework": { + "templateId": "AthenaBackpack:Backpack_Firework", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FishBowlBone": { + "templateId": "AthenaBackpack:Backpack_FishBowlBone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FloodPlain": { + "templateId": "AthenaBackpack:Backpack_FloodPlain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_FNBirthday5": { "templateId": "AthenaBackpack:Backpack_FNBirthday5", "attributes": { @@ -1061,6 +1516,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_FNBirthdaySix": { + "templateId": "AthenaBackpack:Backpack_FNBirthdaySix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_FNCS22": { "templateId": "AthenaBackpack:Backpack_FNCS22", "attributes": { @@ -1097,6 +1564,102 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_FNCS25": { + "templateId": "AthenaBackpack:Backpack_FNCS25", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FNCS26": { + "templateId": "AthenaBackpack:Backpack_FNCS26", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FNCSShield26": { + "templateId": "AthenaBackpack:Backpack_FNCSShield26", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FNCS_S28": { + "templateId": "AthenaBackpack:Backpack_FNCS_S28", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FolkEvening": { + "templateId": "AthenaBackpack:Backpack_FolkEvening", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FolkEveningSheath": { + "templateId": "AthenaBackpack:Backpack_FolkEveningSheath", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FossilMech": { + "templateId": "AthenaBackpack:Backpack_FossilMech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FrozenReality": { + "templateId": "AthenaBackpack:Backpack_FrozenReality", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_GalaxyKnight": { "templateId": "AthenaBackpack:Backpack_GalaxyKnight", "attributes": { @@ -1109,6 +1672,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_GalaxyLevel": { + "templateId": "AthenaBackpack:Backpack_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_GelatinGummi": { "templateId": "AthenaBackpack:Backpack_GelatinGummi", "attributes": { @@ -1181,6 +1756,30 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_GoldenPleats": { + "templateId": "AthenaBackpack:Backpack_GoldenPleats", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_GoodMood": { + "templateId": "AthenaBackpack:Backpack_GoodMood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_GrandScheme": { "templateId": "AthenaBackpack:Backpack_GrandScheme", "attributes": { @@ -1193,6 +1792,39 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_GroovyReader": { + "templateId": "AthenaBackpack:Backpack_GroovyReader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_GroovyReaderGrid": { + "templateId": "AthenaBackpack:Backpack_GroovyReaderGrid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_HauntKoi": { "templateId": "AthenaBackpack:Backpack_HauntKoi", "attributes": { @@ -1205,6 +1837,27 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_HawtChamp": { + "templateId": "AthenaBackpack:Backpack_HawtChamp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_HeadHunterStar": { "templateId": "AthenaBackpack:Backpack_HeadHunterStar", "attributes": { @@ -1217,6 +1870,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_HeadHunterStarFNCS": { + "templateId": "AthenaBackpack:Backpack_HeadHunterStarFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Headset": { "templateId": "AthenaBackpack:Backpack_Headset", "attributes": { @@ -1239,6 +1904,30 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_HeavyRoar": { + "templateId": "AthenaBackpack:Backpack_HeavyRoar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HeavyRoarCarton": { + "templateId": "AthenaBackpack:Backpack_HeavyRoarCarton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_HeistSleek": { "templateId": "AthenaBackpack:Backpack_HeistSleek", "attributes": { @@ -1251,6 +1940,30 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_HighBeam": { + "templateId": "AthenaBackpack:Backpack_HighBeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HighMotion": { + "templateId": "AthenaBackpack:Backpack_HighMotion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_HitmanCase_Dark": { "templateId": "AthenaBackpack:Backpack_HitmanCase_Dark", "attributes": { @@ -1272,6 +1985,30 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_HornedJudgmentCape": { + "templateId": "AthenaBackpack:Backpack_HornedJudgmentCape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HornettaVine": { + "templateId": "AthenaBackpack:Backpack_HornettaVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_HumanBeing": { "templateId": "AthenaBackpack:Backpack_HumanBeing", "attributes": { @@ -1296,6 +2033,42 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_HydroIgnite": { + "templateId": "AthenaBackpack:Backpack_HydroIgnite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_IceRetreat": { + "templateId": "AthenaBackpack:Backpack_IceRetreat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_IchorIncisor": { + "templateId": "AthenaBackpack:Backpack_IchorIncisor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Imitator": { "templateId": "AthenaBackpack:Backpack_Imitator", "attributes": { @@ -1334,6 +2107,36 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_IndieBucket": { + "templateId": "AthenaBackpack:Backpack_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Inferno": { "templateId": "AthenaBackpack:Backpack_Inferno", "attributes": { @@ -1379,6 +2182,60 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_InstantGravel": { + "templateId": "AthenaBackpack:Backpack_InstantGravel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_InstantGravelNoble": { + "templateId": "AthenaBackpack:Backpack_InstantGravelNoble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_IonVial": { + "templateId": "AthenaBackpack:Backpack_IonVial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_IronBlaze": { "templateId": "AthenaBackpack:Backpack_IronBlaze", "attributes": { @@ -1427,6 +2284,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_JoyfulGrin": { + "templateId": "AthenaBackpack:Backpack_JoyfulGrin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_JumbotronS22": { "templateId": "AthenaBackpack:Backpack_JumbotronS22", "attributes": { @@ -1463,6 +2332,131 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_KnightCatRacket": { + "templateId": "AthenaBackpack:Backpack_KnightCatRacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LastVoiceDive": { + "templateId": "AthenaBackpack:Backpack_LastVoiceDive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LastVoicePresent": { + "templateId": "AthenaBackpack:Backpack_LastVoicePresent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LastVoiceSteel": { + "templateId": "AthenaBackpack:Backpack_LastVoiceSteel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LazarusLens": { + "templateId": "AthenaBackpack:Backpack_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Lazuli": { + "templateId": "AthenaBackpack:Backpack_Lazuli", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LethalVae": { + "templateId": "AthenaBackpack:Backpack_LethalVae", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_LettuceCat": { "templateId": "AthenaBackpack:Backpack_LettuceCat", "attributes": { @@ -1484,6 +2478,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_LexaEarlGrey": { + "templateId": "AthenaBackpack:Backpack_LexaEarlGrey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_LightningDragon": { "templateId": "AthenaBackpack:Backpack_LightningDragon", "attributes": { @@ -1517,6 +2523,54 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_LilSplit": { + "templateId": "AthenaBackpack:Backpack_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LlamaNuggets": { + "templateId": "AthenaBackpack:Backpack_LlamaNuggets", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_LocalZilla": { "templateId": "AthenaBackpack:Backpack_LocalZilla", "attributes": { @@ -1574,6 +2628,39 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_LucidAzalea": { + "templateId": "AthenaBackpack:Backpack_LucidAzalea", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MadameMoth": { + "templateId": "AthenaBackpack:Backpack_MadameMoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_MagicMeadow": { "templateId": "AthenaBackpack:Backpack_MagicMeadow", "attributes": { @@ -1598,6 +2685,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_MelodyUrchin": { + "templateId": "AthenaBackpack:Backpack_MelodyUrchin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_MercurialStorm": { "templateId": "AthenaBackpack:Backpack_MercurialStorm", "attributes": { @@ -1664,6 +2763,54 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_MillionaireCowgirl": { + "templateId": "AthenaBackpack:Backpack_MillionaireCowgirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MillionaireGem": { + "templateId": "AthenaBackpack:Backpack_MillionaireGem", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MillionaireTuna": { + "templateId": "AthenaBackpack:Backpack_MillionaireTuna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MindPinch": { + "templateId": "AthenaBackpack:Backpack_MindPinch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_MirageHike": { "templateId": "AthenaBackpack:Backpack_MirageHike", "attributes": { @@ -1676,6 +2823,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_MoonShock": { + "templateId": "AthenaBackpack:Backpack_MoonShock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Mouse": { "templateId": "AthenaBackpack:Backpack_Mouse", "attributes": { @@ -1697,6 +2856,51 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_Mummy": { + "templateId": "AthenaBackpack:Backpack_Mummy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MusketSlinger": { + "templateId": "AthenaBackpack:Backpack_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MuteRibbon": { + "templateId": "AthenaBackpack:Backpack_MuteRibbon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Nebula": { "templateId": "AthenaBackpack:Backpack_Nebula", "attributes": { @@ -1819,6 +3023,30 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_OpenEnded": { + "templateId": "AthenaBackpack:Backpack_OpenEnded", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_OrinChai": { + "templateId": "AthenaBackpack:Backpack_OrinChai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_OuterGarment": { "templateId": "AthenaBackpack:Backpack_OuterGarment", "attributes": { @@ -1831,6 +3059,30 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_PalmTree": { + "templateId": "AthenaBackpack:Backpack_PalmTree", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ParrotPen": { + "templateId": "AthenaBackpack:Backpack_ParrotPen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Patches": { "templateId": "AthenaBackpack:Backpack_Patches", "attributes": { @@ -1991,6 +3243,51 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_PirouetteWeld": { + "templateId": "AthenaBackpack:Backpack_PirouetteWeld", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PitGlass": { + "templateId": "AthenaBackpack:Backpack_PitGlass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PizzaParty": { + "templateId": "AthenaBackpack:Backpack_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_PlotTwist": { "templateId": "AthenaBackpack:Backpack_PlotTwist", "attributes": { @@ -2015,6 +3312,30 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_PowerFarmer": { + "templateId": "AthenaBackpack:Backpack_PowerFarmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PowerfulDozen": { + "templateId": "AthenaBackpack:Backpack_PowerfulDozen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_PrisonBreak": { "templateId": "AthenaBackpack:Backpack_PrisonBreak", "attributes": { @@ -2027,6 +3348,66 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_PrivateJet": { + "templateId": "AthenaBackpack:Backpack_PrivateJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ProdigyFire": { + "templateId": "AthenaBackpack:Backpack_ProdigyFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ProdigyHaughty": { + "templateId": "AthenaBackpack:Backpack_ProdigyHaughty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ProdigySage": { + "templateId": "AthenaBackpack:Backpack_ProdigySage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_QualityCreek": { + "templateId": "AthenaBackpack:Backpack_QualityCreek", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Quartz": { "templateId": "AthenaBackpack:Backpack_Quartz", "attributes": { @@ -2060,6 +3441,41 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_QuietPeanuts": { + "templateId": "AthenaBackpack:Backpack_QuietPeanuts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_QuietPeanutsStaple": { + "templateId": "AthenaBackpack:Backpack_QuietPeanutsStaple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Radish": { "templateId": "AthenaBackpack:Backpack_Radish", "attributes": { @@ -2072,6 +3488,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_RaiderPink_Sherbert": { + "templateId": "AthenaBackpack:Backpack_RaiderPink_Sherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Ramen": { "templateId": "AthenaBackpack:Backpack_Ramen", "attributes": { @@ -2084,6 +3512,75 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_RankedFaction": { + "templateId": "AthenaBackpack:Backpack_RankedFaction", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RankedHeist": { + "templateId": "AthenaBackpack:Backpack_RankedHeist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RankedRemix": { + "templateId": "AthenaBackpack:Backpack_RankedRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RebelClaw": { + "templateId": "AthenaBackpack:Backpack_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RecordScratch": { + "templateId": "AthenaBackpack:Backpack_RecordScratch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_RedOasis": { "templateId": "AthenaBackpack:Backpack_RedOasis", "attributes": { @@ -2108,6 +3605,50 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_ReliableElk": { + "templateId": "AthenaBackpack:Backpack_ReliableElk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RhombCamo": { + "templateId": "AthenaBackpack:Backpack_RhombCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_RippedHarvester": { "templateId": "AthenaBackpack:Backpack_RippedHarvester", "attributes": { @@ -2129,6 +3670,30 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_RollerBlade": { + "templateId": "AthenaBackpack:Backpack_RollerBlade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RoosterMelt": { + "templateId": "AthenaBackpack:Backpack_RoosterMelt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_RoseDust": { "templateId": "AthenaBackpack:Backpack_RoseDust", "attributes": { @@ -2153,6 +3718,27 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_RoyalDusk": { + "templateId": "AthenaBackpack:Backpack_RoyalDusk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Ruins": { "templateId": "AthenaBackpack:Backpack_Ruins", "attributes": { @@ -2198,6 +3784,27 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_ScareyBeary": { + "templateId": "AthenaBackpack:Backpack_ScareyBeary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_ScarletBionic": { "templateId": "AthenaBackpack:Backpack_ScarletBionic", "attributes": { @@ -2210,6 +3817,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_ScorpionZero": { + "templateId": "AthenaBackpack:Backpack_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Scribble": { "templateId": "AthenaBackpack:Backpack_Scribble", "attributes": { @@ -2222,6 +3841,31 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_SerpentCoil": { + "templateId": "AthenaBackpack:Backpack_SerpentCoil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_SharpFang": { "templateId": "AthenaBackpack:Backpack_SharpFang", "attributes": { @@ -2245,6 +3889,54 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_SharpMagnet": { + "templateId": "AthenaBackpack:Backpack_SharpMagnet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SharpMagnetCape": { + "templateId": "AthenaBackpack:Backpack_SharpMagnetCape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SharpMagnetUniversal": { + "templateId": "AthenaBackpack:Backpack_SharpMagnetUniversal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ShiitakeShaolin_Rouge": { + "templateId": "AthenaBackpack:Backpack_ShiitakeShaolin_Rouge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_ShinyStar": { "templateId": "AthenaBackpack:Backpack_ShinyStar", "attributes": { @@ -2328,6 +4020,127 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_SkeleProbe": { + "templateId": "AthenaBackpack:Backpack_SkeleProbe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SkippingClouds": { + "templateId": "AthenaBackpack:Backpack_SkippingClouds", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SlicedBread": { + "templateId": "AthenaBackpack:Backpack_SlicedBread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SmartHyena": { + "templateId": "AthenaBackpack:Backpack_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SnakeCrest": { + "templateId": "AthenaBackpack:Backpack_SnakeCrest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SnowKnight": { + "templateId": "AthenaBackpack:Backpack_SnowKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SnowSoldierFashion": { + "templateId": "AthenaBackpack:Backpack_SnowSoldierFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SolarTheory": { + "templateId": "AthenaBackpack:Backpack_SolarTheory", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SparkArcher": { + "templateId": "AthenaBackpack:Backpack_SparkArcher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Sparrow": { "templateId": "AthenaBackpack:Backpack_Sparrow", "attributes": { @@ -2340,6 +4153,30 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_Speed": { + "templateId": "AthenaBackpack:Backpack_Speed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SpeedDialBattle": { + "templateId": "AthenaBackpack:Backpack_SpeedDialBattle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_SplitDiamond": { "templateId": "AthenaBackpack:Backpack_SplitDiamond", "attributes": { @@ -2403,6 +4240,42 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_StarStray": { + "templateId": "AthenaBackpack:Backpack_StarStray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_StaticShades": { + "templateId": "AthenaBackpack:Backpack_StaticShades", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SteamPower": { + "templateId": "AthenaBackpack:Backpack_SteamPower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_StreetFashionSpring": { "templateId": "AthenaBackpack:Backpack_StreetFashionSpring", "attributes": { @@ -2415,6 +4288,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_StrontiumSpark": { + "templateId": "AthenaBackpack:Backpack_StrontiumSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_SunbeamQuest": { "templateId": "AthenaBackpack:Backpack_SunbeamQuest", "attributes": { @@ -2422,7 +4307,16 @@ "level": 1, "item_seen": true, "xp": 0, - "variants": [], + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], "favorite": false }, "quantity": 1 @@ -2472,6 +4366,71 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_SunShine": { + "templateId": "AthenaBackpack:Backpack_SunShine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SuperNovaTaro": { + "templateId": "AthenaBackpack:Backpack_SuperNovaTaro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SurfAttackVibe": { + "templateId": "AthenaBackpack:Backpack_SurfAttackVibe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SwampFish": { + "templateId": "AthenaBackpack:Backpack_SwampFish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Takoyaki": { "templateId": "AthenaBackpack:Backpack_Takoyaki", "attributes": { @@ -2484,6 +4443,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_TalonHime": { + "templateId": "AthenaBackpack:Backpack_TalonHime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_TearScar": { "templateId": "AthenaBackpack:Backpack_TearScar", "attributes": { @@ -2559,6 +4530,66 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_TiltedParrot": { + "templateId": "AthenaBackpack:Backpack_TiltedParrot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TiltedParrotFrog": { + "templateId": "AthenaBackpack:Backpack_TiltedParrotFrog", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TimeInterval": { + "templateId": "AthenaBackpack:Backpack_TimeInterval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TimeIntervalCape": { + "templateId": "AthenaBackpack:Backpack_TimeIntervalCape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TimeIntervalUniversal": { + "templateId": "AthenaBackpack:Backpack_TimeIntervalUniversal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Titanium": { "templateId": "AthenaBackpack:Backpack_Titanium", "attributes": { @@ -2580,6 +4611,18 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_TracePaper": { + "templateId": "AthenaBackpack:Backpack_TracePaper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Troops": { "templateId": "AthenaBackpack:Backpack_Troops", "attributes": { @@ -2613,6 +4656,51 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_TungStan": { + "templateId": "AthenaBackpack:Backpack_TungStan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_UndergroundRebel": { + "templateId": "AthenaBackpack:Backpack_UndergroundRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_VectorSpark": { + "templateId": "AthenaBackpack:Backpack_VectorSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_Veiled": { "templateId": "AthenaBackpack:Backpack_Veiled", "attributes": { @@ -2667,6 +4755,48 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_VitalInventor": { + "templateId": "AthenaBackpack:Backpack_VitalInventor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_VitalInventorBlock": { + "templateId": "AthenaBackpack:Backpack_VitalInventorBlock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_VitalPsych": { "templateId": "AthenaBackpack:Backpack_VitalPsych", "attributes": { @@ -2688,6 +4818,60 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_VoidRedemption": { + "templateId": "AthenaBackpack:Backpack_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_WaterMolecules": { + "templateId": "AthenaBackpack:Backpack_WaterMolecules", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_WinterGift": { + "templateId": "AthenaBackpack:Backpack_WinterGift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_WinterHunterFNCS": { "templateId": "AthenaBackpack:Backpack_WinterHunterFNCS", "attributes": { @@ -2700,6 +4884,30 @@ }, "quantity": 1 }, + "AthenaBackpack:Backpack_ZebraScramble_Bacon": { + "templateId": "AthenaBackpack:Backpack_ZebraScramble_Bacon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ZebraScramble_Bone": { + "templateId": "AthenaBackpack:Backpack_ZebraScramble_Bone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaBackpack:Backpack_ZirconSweep": { "templateId": "AthenaBackpack:Backpack_ZirconSweep", "attributes": { @@ -3633,6 +5841,18 @@ }, "quantity": 1 }, + "BannerToken:BannerToken_S26_IWD": { + "templateId": "BannerToken:BannerToken_S26_IWD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "BannerToken:BannerToken_STW001_Starlight1": { "templateId": "BannerToken:BannerToken_STW001_Starlight1", "attributes": { @@ -8491,7 +10711,8 @@ "active": "Mat1", "owned": [ "Mat1", - "Mat2" + "Mat2", + "Mat3" ] } ], @@ -19020,6 +21241,27 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_AbstractMirror_Rogue": { + "templateId": "AthenaCharacter:Character_AbstractMirror_Rogue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_AgentSherbert": { "templateId": "AthenaCharacter:Character_AgentSherbert", "attributes": { @@ -19042,7 +21284,10 @@ "owned": [ "Stage1", "Stage2", - "Stage3" + "Stage3", + "Stage4", + "Stage5", + "Stage6" ] } ], @@ -19222,6 +21467,18 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_BananaAdventure": { + "templateId": "AthenaCharacter:Character_BananaAdventure", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_BariumDemon": { "templateId": "AthenaCharacter:Character_BariumDemon", "attributes": { @@ -19255,6 +21512,40 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_BengalBasher_NPC": { + "templateId": "AthenaCharacter:Character_BengalBasher_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BengalBasher_Suit": { + "templateId": "AthenaCharacter:Character_BengalBasher_Suit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Billy": { "templateId": "AthenaCharacter:Character_Billy", "attributes": { @@ -19267,6 +21558,51 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_BirdNest": { + "templateId": "AthenaCharacter:Character_BirdNest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BirdNestNavy": { + "templateId": "AthenaCharacter:Character_BirdNestNavy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BiruFang": { + "templateId": "AthenaCharacter:Character_BiruFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Bites": { "templateId": "AthenaCharacter:Character_Bites", "attributes": { @@ -19315,6 +21651,47 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_BlazerVeil": { + "templateId": "AthenaCharacter:Character_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Mesh", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_BlingHearts_NPC": { "templateId": "AthenaCharacter:Character_BlingHearts_NPC", "attributes": { @@ -19405,6 +21782,168 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_BrainMatter": { + "templateId": "AthenaCharacter:Character_BrainMatter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BraveBuild": { + "templateId": "AthenaCharacter:Character_BraveBuild", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BraveBuildSuper": { + "templateId": "AthenaCharacter:Character_BraveBuildSuper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BrawnyBass": { + "templateId": "AthenaCharacter:Character_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2", + "Emissive3", + "Emissive4" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BrightShimmer": { + "templateId": "AthenaCharacter:Character_BrightShimmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BriteDino": { + "templateId": "AthenaCharacter:Character_BriteDino", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_BuffCatCruise": { "templateId": "AthenaCharacter:Character_BuffCatCruise", "attributes": { @@ -19468,6 +22007,27 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_CameraShake": { + "templateId": "AthenaCharacter:Character_CameraShake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Candor": { "templateId": "AthenaCharacter:Character_Candor", "attributes": { @@ -19505,6 +22065,30 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_CardboardCrew_Holiday": { + "templateId": "AthenaCharacter:Character_CardboardCrew_Holiday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CasualCherie": { + "templateId": "AthenaCharacter:Character_CasualCherie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_CavalryAlt": { "templateId": "AthenaCharacter:Character_CavalryAlt", "attributes": { @@ -19517,6 +22101,50 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_CeremonialGuard_Fencer": { + "templateId": "AthenaCharacter:Character_CeremonialGuard_Fencer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CeremonialGuard_Fencer_NPC": { + "templateId": "AthenaCharacter:Character_CeremonialGuard_Fencer_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Chainmail": { "templateId": "AthenaCharacter:Character_Chainmail", "attributes": { @@ -19562,6 +22190,27 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_ChicleVeil": { + "templateId": "AthenaCharacter:Character_ChicleVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_ChillCat": { "templateId": "AthenaCharacter:Character_ChillCat", "attributes": { @@ -19620,7 +22269,10 @@ "owned": [ "Stage1", "Stage2", - "Stage3" + "Stage3", + "Stage4", + "Stage5", + "Stage6" ] } ], @@ -19701,6 +22353,28 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_CleverEdge": { + "templateId": "AthenaCharacter:Character_CleverEdge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_CometDeer": { "templateId": "AthenaCharacter:Character_CometDeer", "attributes": { @@ -19725,6 +22399,28 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_ConfectionPop": { + "templateId": "AthenaCharacter:Character_ConfectionPop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Conscience": { "templateId": "AthenaCharacter:Character_Conscience", "attributes": { @@ -19746,6 +22442,18 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_CoyoTear": { + "templateId": "AthenaCharacter:Character_CoyoTear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_CoyoteTrail": { "templateId": "AthenaCharacter:Character_CoyoteTrail", "attributes": { @@ -19854,12 +22562,68 @@ "Stage1", "Stage2" ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] } ], "favorite": false }, "quantity": 1 }, + "AthenaCharacter:Character_CubeCoast": { + "templateId": "AthenaCharacter:Character_CubeCoast", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CupidEvil": { + "templateId": "AthenaCharacter:Character_CupidEvil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DapperPunch": { + "templateId": "AthenaCharacter:Character_DapperPunch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_DarkAzalea": { "templateId": "AthenaCharacter:Character_DarkAzalea", "attributes": { @@ -19989,6 +22753,40 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_DiamondHeart_Chic": { + "templateId": "AthenaCharacter:Character_DiamondHeart_Chic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DiamondHeart_NPC": { + "templateId": "AthenaCharacter:Character_DiamondHeart_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_DistantEchoCastle": { "templateId": "AthenaCharacter:Character_DistantEchoCastle", "attributes": { @@ -20063,6 +22861,94 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_DracoDueler": { + "templateId": "AthenaCharacter:Character_DracoDueler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DriftAvatar": { + "templateId": "AthenaCharacter:Character_DriftAvatar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DriftSwat": { + "templateId": "AthenaCharacter:Character_DriftSwat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DriftTrooper": { + "templateId": "AthenaCharacter:Character_DriftTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_DualParadox": { "templateId": "AthenaCharacter:Character_DualParadox", "attributes": { @@ -20096,6 +22982,27 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_DyedDuelist": { + "templateId": "AthenaCharacter:Character_DyedDuelist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Ebony": { "templateId": "AthenaCharacter:Character_Ebony", "attributes": { @@ -20134,6 +23041,42 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_EchoAngel_NPC": { + "templateId": "AthenaCharacter:Character_EchoAngel_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_EchoNyx_NPC": { + "templateId": "AthenaCharacter:Character_EchoNyx_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_EctoCat": { + "templateId": "AthenaCharacter:Character_EctoCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Elevate": { "templateId": "AthenaCharacter:Character_Elevate", "attributes": { @@ -20233,6 +23176,27 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_Ephemeral": { + "templateId": "AthenaCharacter:Character_Ephemeral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_FallValleyBlink": { "templateId": "AthenaCharacter:Character_FallValleyBlink", "attributes": { @@ -20302,6 +23266,87 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_Firework": { + "templateId": "AthenaCharacter:Character_Firework", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FishBowl": { + "templateId": "AthenaCharacter:Character_FishBowl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FloodPlain": { + "templateId": "AthenaCharacter:Character_FloodPlain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FolkEvening": { + "templateId": "AthenaCharacter:Character_FolkEvening", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FossilMech": { + "templateId": "AthenaCharacter:Character_FossilMech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FrozenReality": { + "templateId": "AthenaCharacter:Character_FrozenReality", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_GalaxyKnight": { "templateId": "AthenaCharacter:Character_GalaxyKnight", "attributes": { @@ -20324,6 +23369,27 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_GalaxyLevel": { + "templateId": "AthenaCharacter:Character_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_GelatinGummi": { "templateId": "AthenaCharacter:Character_GelatinGummi", "attributes": { @@ -20381,6 +23447,39 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_GoldenPleats": { + "templateId": "AthenaCharacter:Character_GoldenPleats", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GoodMood": { + "templateId": "AthenaCharacter:Character_GoodMood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_GrandScheme": { "templateId": "AthenaCharacter:Character_GrandScheme", "attributes": { @@ -20465,6 +23564,40 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_GreenJacketFNCS": { + "templateId": "AthenaCharacter:Character_GreenJacketFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GroovyReader": { + "templateId": "AthenaCharacter:Character_GroovyReader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_HauntKoi": { "templateId": "AthenaCharacter:Character_HauntKoi", "attributes": { @@ -20489,6 +23622,18 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_HeadhunterStarFNCS": { + "templateId": "AthenaCharacter:Character_HeadhunterStarFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Headset": { "templateId": "AthenaCharacter:Character_Headset", "attributes": { @@ -20520,6 +23665,28 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_HeavyRoar": { + "templateId": "AthenaCharacter:Character_HeavyRoar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_HeistSleek": { "templateId": "AthenaCharacter:Character_HeistSleek", "attributes": { @@ -20553,6 +23720,42 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_HenchmanToughDark_Strong": { + "templateId": "AthenaCharacter:Character_HenchmanToughDark_Strong", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HighBeam": { + "templateId": "AthenaCharacter:Character_HighBeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HighMotion": { + "templateId": "AthenaCharacter:Character_HighMotion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Hitman_Dark": { "templateId": "AthenaCharacter:Character_Hitman_Dark", "attributes": { @@ -20574,6 +23777,56 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_HornedJudgment_Midgard": { + "templateId": "AthenaCharacter:Character_HornedJudgment_Midgard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HornettaVine": { + "templateId": "AthenaCharacter:Character_HornettaVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_HumanBeing": { "templateId": "AthenaCharacter:Character_HumanBeing", "attributes": { @@ -20595,6 +23848,51 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_HydroIgnite": { + "templateId": "AthenaCharacter:Character_HydroIgnite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_IceRetreat": { + "templateId": "AthenaCharacter:Character_IceRetreat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_IchorIncisor": { + "templateId": "AthenaCharacter:Character_IchorIncisor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Imitator": { "templateId": "AthenaCharacter:Character_Imitator", "attributes": { @@ -21509,6 +24807,48 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_IndieBucket": { + "templateId": "AthenaCharacter:Character_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat3", + "owned": [ + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Inferno": { "templateId": "AthenaCharacter:Character_Inferno", "attributes": { @@ -21602,6 +24942,102 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_InstantGravel": { + "templateId": "AthenaCharacter:Character_InstantGravel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_InstantGravelNoble": { + "templateId": "AthenaCharacter:Character_InstantGravelNoble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_IonVial": { + "templateId": "AthenaCharacter:Character_IonVial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_IronBlaze": { "templateId": "AthenaCharacter:Character_IronBlaze", "attributes": { @@ -21647,6 +25083,210 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_JoyfulGrin": { + "templateId": "AthenaCharacter:Character_JoyfulGrin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Jumpsuit_Mutable": { + "templateId": "AthenaCharacter:Character_Jumpsuit_Mutable", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat14", + "owned": [ + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Mat26", + "Mat27" + ] + }, + { + "channel": "Parts", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6", + "Particle7", + "Particle8", + "Particle9", + "Particle10", + "Particle11", + "Particle12", + "Particle13" + ] + }, + { + "channel": "Corruption", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + }, + { + "channel": "Mesh", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13" + ] + }, + { + "channel": "RichColor", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Jumpsuit_Scrap_Mutable": { + "templateId": "AthenaCharacter:Character_Jumpsuit_Scrap_Mutable", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat14", + "owned": [ + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Mat26", + "Mat27" + ] + }, + { + "channel": "Parts", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6", + "Particle7", + "Particle8", + "Particle9", + "Particle10", + "Particle11", + "Particle12", + "Particle13" + ] + }, + { + "channel": "Corruption", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + }, + { + "channel": "Mesh", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13" + ] + }, + { + "channel": "RichColor", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_JungleBoss_NPC": { "templateId": "AthenaCharacter:Character_JungleBoss_NPC", "attributes": { @@ -21671,6 +25311,36 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_KnightCatRacket": { + "templateId": "AthenaCharacter:Character_KnightCatRacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Knight_Boss_NPC": { "templateId": "AthenaCharacter:Character_Knight_Boss_NPC", "attributes": { @@ -21683,6 +25353,145 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_LastVoiceDive": { + "templateId": "AthenaCharacter:Character_LastVoiceDive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LastVoiceSteel": { + "templateId": "AthenaCharacter:Character_LastVoiceSteel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LazarusLens": { + "templateId": "AthenaCharacter:Character_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Secondary", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2", + "Emissive3", + "Emissive4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LazarusLensStyle_NPC": { + "templateId": "AthenaCharacter:Character_LazarusLensStyle_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LazarusLensWings_NPC": { + "templateId": "AthenaCharacter:Character_LazarusLensWings_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LethalVae": { + "templateId": "AthenaCharacter:Character_LethalVae", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Lettuce": { "templateId": "AthenaCharacter:Character_Lettuce", "attributes": { @@ -21698,6 +25507,14 @@ "Stage1", "Stage2" ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] } ], "favorite": false @@ -21725,6 +25542,18 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_LexaEarlGrey": { + "templateId": "AthenaCharacter:Character_LexaEarlGrey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_LightningDragon": { "templateId": "AthenaCharacter:Character_LightningDragon", "attributes": { @@ -21758,6 +25587,46 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_LilSplit_Sprinkles": { + "templateId": "AthenaCharacter:Character_LilSplit_Sprinkles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_LocalZilla": { "templateId": "AthenaCharacter:Character_LocalZilla", "attributes": { @@ -21828,6 +25697,67 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_LucidAzalea": { + "templateId": "AthenaCharacter:Character_LucidAzalea", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MadameMoth_NPC": { + "templateId": "AthenaCharacter:Character_MadameMoth_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MadameMoth_Posh": { + "templateId": "AthenaCharacter:Character_MadameMoth_Posh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage2", + "owned": [ + "Stage2", + "Stage1" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_MagicMeadow": { "templateId": "AthenaCharacter:Character_MagicMeadow", "attributes": { @@ -21870,6 +25800,18 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_MastermindSummer": { + "templateId": "AthenaCharacter:Character_MastermindSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_MechanicalEngineerRev": { "templateId": "AthenaCharacter:Character_MechanicalEngineerRev", "attributes": { @@ -21924,6 +25866,18 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_MelodyUrchin": { + "templateId": "AthenaCharacter:Character_MelodyUrchin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_MercurialStorm": { "templateId": "AthenaCharacter:Character_MercurialStorm", "attributes": { @@ -22028,6 +25982,75 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_MillionaireCowgirl": { + "templateId": "AthenaCharacter:Character_MillionaireCowgirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MillionaireGem": { + "templateId": "AthenaCharacter:Character_MillionaireGem", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MillionaireTuna": { + "templateId": "AthenaCharacter:Character_MillionaireTuna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MindPinch": { + "templateId": "AthenaCharacter:Character_MindPinch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MindPinch_NPC": { + "templateId": "AthenaCharacter:Character_MindPinch_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_MirageHike": { "templateId": "AthenaCharacter:Character_MirageHike", "attributes": { @@ -22061,6 +26084,39 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_ModernMilitary_Crisp": { + "templateId": "AthenaCharacter:Character_ModernMilitary_Crisp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MoonShock": { + "templateId": "AthenaCharacter:Character_MoonShock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Mouse": { "templateId": "AthenaCharacter:Character_Mouse", "attributes": { @@ -22082,6 +26138,62 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_Mummy": { + "templateId": "AthenaCharacter:Character_Mummy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MusketSlinger": { + "templateId": "AthenaCharacter:Character_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MuteRibbon": { + "templateId": "AthenaCharacter:Character_MuteRibbon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Nebula": { "templateId": "AthenaCharacter:Character_Nebula", "attributes": { @@ -22179,6 +26291,18 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_NPCHireReward": { + "templateId": "AthenaCharacter:Character_NPCHireReward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_OceanBreeze": { "templateId": "AthenaCharacter:Character_OceanBreeze", "attributes": { @@ -22208,6 +26332,30 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_OpenEnded": { + "templateId": "AthenaCharacter:Character_OpenEnded", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_OrinChai": { + "templateId": "AthenaCharacter:Character_OrinChai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_OuterGarment": { "templateId": "AthenaCharacter:Character_OuterGarment", "attributes": { @@ -22220,6 +26368,39 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_PalmTree": { + "templateId": "AthenaCharacter:Character_PalmTree", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ParrotPen": { + "templateId": "AthenaCharacter:Character_ParrotPen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Patches": { "templateId": "AthenaCharacter:Character_Patches", "attributes": { @@ -23169,6 +27350,80 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_PirouetteWeld": { + "templateId": "AthenaCharacter:Character_PirouetteWeld", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PitGlass": { + "templateId": "AthenaCharacter:Character_PitGlass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PizzaParty": { + "templateId": "AthenaCharacter:Character_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Mesh", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_PlotTwist": { "templateId": "AthenaCharacter:Character_PlotTwist", "attributes": { @@ -23214,6 +27469,47 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_PowerFarmer": { + "templateId": "AthenaCharacter:Character_PowerFarmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PowerfulDozen": { + "templateId": "AthenaCharacter:Character_PowerfulDozen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_PrimeOrder": { "templateId": "AthenaCharacter:Character_PrimeOrder", "attributes": { @@ -23378,6 +27674,114 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_PrivateJet": { + "templateId": "AthenaCharacter:Character_PrivateJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ProdigyFire": { + "templateId": "AthenaCharacter:Character_ProdigyFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ProdigyHaughty": { + "templateId": "AthenaCharacter:Character_ProdigyHaughty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ProdigySage": { + "templateId": "AthenaCharacter:Character_ProdigySage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_PumpkinPunk_Glitch": { "templateId": "AthenaCharacter:Character_PumpkinPunk_Glitch", "attributes": { @@ -23392,6 +27796,48 @@ }, "AthenaCharacter:Character_PumpkinSkeleton": { "templateId": "AthenaCharacter:Character_PumpkinSkeleton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_QualityCreek": { + "templateId": "AthenaCharacter:Character_QualityCreek", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_QuietPeanuts": { + "templateId": "AthenaCharacter:Character_QuietPeanuts", "attributes": { "max_level_bonus": 0, "level": 1, @@ -23402,6 +27848,62 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_RaiderPink_Sherbert": { + "templateId": "AthenaCharacter:Character_RaiderPink_Sherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RebelClaw_Aviator": { + "templateId": "AthenaCharacter:Character_RebelClaw_Aviator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_ReconExpert_FNCS": { "templateId": "AthenaCharacter:Character_ReconExpert_FNCS", "attributes": { @@ -23414,6 +27916,27 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_RecordScratch": { + "templateId": "AthenaCharacter:Character_RecordScratch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_RedOasisApricot": { "templateId": "AthenaCharacter:Character_RedOasisApricot", "attributes": { @@ -23547,6 +28070,100 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_RhombCamo": { + "templateId": "AthenaCharacter:Character_RhombCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + }, + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RhombCamo_NPC": { + "templateId": "AthenaCharacter:Character_RhombCamo_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RhombGuard_NPC": { + "templateId": "AthenaCharacter:Character_RhombGuard_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RhombPatrol_NPC": { + "templateId": "AthenaCharacter:Character_RhombPatrol_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_RippedHarvester": { "templateId": "AthenaCharacter:Character_RippedHarvester", "attributes": { @@ -23569,7 +28186,10 @@ "owned": [ "Stage1", "Stage2", - "Stage3" + "Stage3", + "Stage4", + "Stage5", + "Stage6" ] }, { @@ -23609,6 +28229,47 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_RollerBlade": { + "templateId": "AthenaCharacter:Character_RollerBlade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RoosterMelt": { + "templateId": "AthenaCharacter:Character_RoosterMelt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_RoseDust": { "templateId": "AthenaCharacter:Character_RoseDust", "attributes": { @@ -23652,6 +28313,35 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_RoyalDusk": { + "templateId": "AthenaCharacter:Character_RoyalDusk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Ruins": { "templateId": "AthenaCharacter:Character_Ruins", "attributes": { @@ -23705,6 +28395,27 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_ScareyBeary": { + "templateId": "AthenaCharacter:Character_ScareyBeary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_ScarletBionic": { "templateId": "AthenaCharacter:Character_ScarletBionic", "attributes": { @@ -23726,6 +28437,29 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_ScorpionZero": { + "templateId": "AthenaCharacter:Character_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Scribble": { "templateId": "AthenaCharacter:Character_Scribble", "attributes": { @@ -23738,6 +28472,31 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_SerpentCoil": { + "templateId": "AthenaCharacter:Character_SerpentCoil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_SharpFang": { "templateId": "AthenaCharacter:Character_SharpFang", "attributes": { @@ -23770,6 +28529,30 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_SharpMagnet": { + "templateId": "AthenaCharacter:Character_SharpMagnet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ShiitakeShaolin_Rouge": { + "templateId": "AthenaCharacter:Character_ShiitakeShaolin_Rouge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_ShinyStar": { "templateId": "AthenaCharacter:Character_ShinyStar", "attributes": { @@ -23893,6 +28676,185 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_SkeleProbe": { + "templateId": "AthenaCharacter:Character_SkeleProbe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SkippingClouds": { + "templateId": "AthenaCharacter:Character_SkippingClouds", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SlicedBread": { + "templateId": "AthenaCharacter:Character_SlicedBread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SmartHyena": { + "templateId": "AthenaCharacter:Character_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SnakeCrest": { + "templateId": "AthenaCharacter:Character_SnakeCrest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SnowKnight_Helm": { + "templateId": "AthenaCharacter:Character_SnowKnight_Helm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Pattern", + "active": "Stage11", + "owned": [ + "Stage11", + "Stage12", + "Stage13", + "Stage14" + ] + }, + { + "channel": "Particle", + "active": "Stage21", + "owned": [ + "Stage21", + "Stage22", + "Stage23", + "Stage24" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SnowSoldierFashion": { + "templateId": "AthenaCharacter:Character_SnowSoldierFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SolarTheory": { + "templateId": "AthenaCharacter:Character_SolarTheory", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SparkArcher": { + "templateId": "AthenaCharacter:Character_SparkArcher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Sparrow": { "templateId": "AthenaCharacter:Character_Sparrow", "attributes": { @@ -23914,6 +28876,244 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_SpeedBonny": { + "templateId": "AthenaCharacter:Character_SpeedBonny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer_B": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer_C": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer_D": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer_E": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer_F": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer_G": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer_G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedDial": { + "templateId": "AthenaCharacter:Character_SpeedDial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedDialBattle": { + "templateId": "AthenaCharacter:Character_SpeedDialBattle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer_B": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer_C": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer_D": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer_E": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer_F": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer_G": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer_G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_SplitDiamond": { "templateId": "AthenaCharacter:Character_SplitDiamond", "attributes": { @@ -24006,6 +29206,90 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_StarStray": { + "templateId": "AthenaCharacter:Character_StarStray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_StarWalkerFNCS": { + "templateId": "AthenaCharacter:Character_StarWalkerFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_StaticShades": { + "templateId": "AthenaCharacter:Character_StaticShades", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SteamPower": { + "templateId": "AthenaCharacter:Character_SteamPower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_StreetGothSummer": { "templateId": "AthenaCharacter:Character_StreetGothSummer", "attributes": { @@ -24018,6 +29302,27 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_StrontiumSpark": { + "templateId": "AthenaCharacter:Character_StrontiumSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_SunbeamQuest": { "templateId": "AthenaCharacter:Character_SunbeamQuest", "attributes": { @@ -24132,6 +29437,77 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_SunShine": { + "templateId": "AthenaCharacter:Character_SunShine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SuperNovaTaro": { + "templateId": "AthenaCharacter:Character_SuperNovaTaro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SwampFish": { + "templateId": "AthenaCharacter:Character_SwampFish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_SwampKnight": { "templateId": "AthenaCharacter:Character_SwampKnight", "attributes": { @@ -24144,6 +29520,27 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_TalonHime": { + "templateId": "AthenaCharacter:Character_TalonHime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_TheHerald": { "templateId": "AthenaCharacter:Character_TheHerald", "attributes": { @@ -24237,6 +29634,18 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_TimeInterval": { + "templateId": "AthenaCharacter:Character_TimeInterval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Titanium": { "templateId": "AthenaCharacter:Character_Titanium", "attributes": { @@ -24306,6 +29715,60 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_TungStan": { + "templateId": "AthenaCharacter:Character_TungStan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_UndergroundRebel_Fashion": { + "templateId": "AthenaCharacter:Character_UndergroundRebel_Fashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_VectorSpark": { + "templateId": "AthenaCharacter:Character_VectorSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Veiled": { "templateId": "AthenaCharacter:Character_Veiled", "attributes": { @@ -24327,6 +29790,18 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_VelociTeeth": { + "templateId": "AthenaCharacter:Character_VelociTeeth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_Venice": { "templateId": "AthenaCharacter:Character_Venice", "attributes": { @@ -24388,6 +29863,56 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_VitalInventor": { + "templateId": "AthenaCharacter:Character_VitalInventor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_VitalInventorBlock": { + "templateId": "AthenaCharacter:Character_VitalInventorBlock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_VitalPsych": { "templateId": "AthenaCharacter:Character_VitalPsych", "attributes": { @@ -24422,6 +29947,290 @@ }, "quantity": 1 }, + "AthenaCharacter:Character_VoidRedemption_Rebel": { + "templateId": "AthenaCharacter:Character_VoidRedemption_Rebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WaterMolecules": { + "templateId": "AthenaCharacter:Character_WaterMolecules", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WeepingWoodsFestive": { + "templateId": "AthenaCharacter:Character_WeepingWoodsFestive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby_B": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby_C": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby_D": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby_E": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby_F": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby_G": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby_G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby_B": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby_C": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby_D": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby_E": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby_F": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby_G": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby_G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ZebraScramble_Bacon": { + "templateId": "AthenaCharacter:Character_ZebraScramble_Bacon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ZebraScramble_NPC": { + "templateId": "AthenaCharacter:Character_ZebraScramble_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaCharacter:Character_ZirconSweep": { "templateId": "AthenaCharacter:Character_ZirconSweep", "attributes": { @@ -24452,7 +30261,10 @@ "owned": [ "Stage1", "Stage2", - "Stage3" + "Stage3", + "Stage4", + "Stage5", + "Stage6" ] } ], @@ -25740,7 +31552,16 @@ "level": 1, "item_seen": true, "xp": 0, - "variants": [], + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], "favorite": false }, "quantity": 1 @@ -26991,7 +32812,16 @@ "level": 1, "item_seen": true, "xp": 0, - "variants": [], + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], "favorite": false }, "quantity": 1 @@ -31263,7 +37093,9 @@ "active": "Stage1", "owned": [ "Stage1", - "Stage2" + "Stage2", + "Stage3", + "Stage4" ] } ], @@ -31297,7 +37129,8 @@ "owned": [ "Stage1", "Stage2", - "Stage3" + "Stage3", + "Stage4" ] } ], @@ -31917,7 +37750,16 @@ "level": 1, "item_seen": true, "xp": 0, - "variants": [], + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], "favorite": false }, "quantity": 1 @@ -32557,7 +38399,16 @@ "level": 1, "item_seen": true, "xp": 0, - "variants": [], + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], "favorite": false }, "quantity": 1 @@ -33051,7 +38902,8 @@ "owned": [ "Mat1", "Mat2", - "Mat3" + "Mat3", + "Mat4" ] } ], @@ -35366,7 +41218,16 @@ "level": 1, "item_seen": true, "xp": 0, - "variants": [], + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], "favorite": false }, "quantity": 1 @@ -36697,7 +42558,8 @@ "active": "Mat1", "owned": [ "Mat1", - "Mat2" + "Mat2", + "Mat3" ] } ], @@ -37675,6 +43537,14 @@ "Mat1", "Mat2" ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] } ], "favorite": false @@ -37688,7 +43558,16 @@ "level": 1, "item_seen": true, "xp": 0, - "variants": [], + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], "favorite": false }, "quantity": 1 @@ -45460,7 +51339,16 @@ "level": 1, "item_seen": true, "xp": 0, - "variants": [], + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], "favorite": false }, "quantity": 1 @@ -46959,7 +52847,16 @@ "level": 1, "item_seen": true, "xp": 0, - "variants": [], + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], "favorite": false }, "quantity": 1 @@ -50243,7 +56140,8 @@ "active": "Mat1", "owned": [ "Mat1", - "Mat2" + "Mat2", + "Mat3" ] } ], @@ -50825,7 +56723,8 @@ "active": "Mat1", "owned": [ "Mat1", - "Mat2" + "Mat2", + "Mat3" ] } ], @@ -51668,7 +57567,8 @@ "active": "Mat1", "owned": [ "Mat1", - "Mat2" + "Mat2", + "Mat3" ] } ], @@ -53024,7 +58924,8 @@ "active": "Mat1", "owned": [ "Mat1", - "Mat2" + "Mat2", + "Mat3" ] } ], @@ -54176,6 +60077,30 @@ }, "quantity": 1 }, + "AthenaSkyDiveContrail:Contrail_BengalBasher": { + "templateId": "AthenaSkyDiveContrail:Contrail_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_BlazerVeil": { + "templateId": "AthenaSkyDiveContrail:Contrail_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaSkyDiveContrail:Contrail_Chainmail": { "templateId": "AthenaSkyDiveContrail:Contrail_Chainmail", "attributes": { @@ -54212,6 +60137,76 @@ }, "quantity": 1 }, + "AthenaSkyDiveContrail:Contrail_DiamondHeart": { + "templateId": "AthenaSkyDiveContrail:Contrail_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_FNCS_S26": { + "templateId": "AthenaSkyDiveContrail:Contrail_FNCS_S26", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_Hibiscus": { + "templateId": "AthenaSkyDiveContrail:Contrail_Hibiscus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_HornedJudgment": { + "templateId": "AthenaSkyDiveContrail:Contrail_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_IndieBucket": { + "templateId": "AthenaSkyDiveContrail:Contrail_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaSkyDiveContrail:Contrail_Inferno": { "templateId": "AthenaSkyDiveContrail:Contrail_Inferno", "attributes": { @@ -54236,6 +60231,30 @@ }, "quantity": 1 }, + "AthenaSkyDiveContrail:Contrail_LazarusLens": { + "templateId": "AthenaSkyDiveContrail:Contrail_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_LilSplit": { + "templateId": "AthenaSkyDiveContrail:Contrail_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaSkyDiveContrail:Contrail_LoudPhoenix": { "templateId": "AthenaSkyDiveContrail:Contrail_LoudPhoenix", "attributes": { @@ -54248,6 +60267,27 @@ }, "quantity": 1 }, + "AthenaSkyDiveContrail:Contrail_MadameMoth": { + "templateId": "AthenaSkyDiveContrail:Contrail_MadameMoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaSkyDiveContrail:Contrail_Meteorwomen": { "templateId": "AthenaSkyDiveContrail:Contrail_Meteorwomen", "attributes": { @@ -54260,6 +60300,18 @@ }, "quantity": 1 }, + "AthenaSkyDiveContrail:Contrail_MusketSlinger": { + "templateId": "AthenaSkyDiveContrail:Contrail_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaSkyDiveContrail:Contrail_Nebula": { "templateId": "AthenaSkyDiveContrail:Contrail_Nebula", "attributes": { @@ -54306,6 +60358,18 @@ }, "quantity": 1 }, + "AthenaSkyDiveContrail:Contrail_PizzaParty": { + "templateId": "AthenaSkyDiveContrail:Contrail_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaSkyDiveContrail:Contrail_Quartz": { "templateId": "AthenaSkyDiveContrail:Contrail_Quartz", "attributes": { @@ -54401,6 +60465,30 @@ }, "quantity": 1 }, + "AthenaSkyDiveContrail:Contrail_SnowKnight": { + "templateId": "AthenaSkyDiveContrail:Contrail_SnowKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_StinkyCloud": { + "templateId": "AthenaSkyDiveContrail:Contrail_StinkyCloud", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaSkyDiveContrail:Contrail_Sunlit": { "templateId": "AthenaSkyDiveContrail:Contrail_Sunlit", "attributes": { @@ -54413,6 +60501,18 @@ }, "quantity": 1 }, + "AthenaSkyDiveContrail:Contrail_UndergroundRebel": { + "templateId": "AthenaSkyDiveContrail:Contrail_UndergroundRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaSkyDiveContrail:Contrail_VitalPsych": { "templateId": "AthenaSkyDiveContrail:Contrail_VitalPsych", "attributes": { @@ -54425,6 +60525,30 @@ }, "quantity": 1 }, + "AthenaSkyDiveContrail:Contrail_WinterFire": { + "templateId": "AthenaSkyDiveContrail:Contrail_WinterFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_ZebraScramble_Bacon": { + "templateId": "AthenaSkyDiveContrail:Contrail_ZebraScramble_Bacon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaSkyDiveContrail:Contrail_ZirconSweep": { "templateId": "AthenaSkyDiveContrail:Contrail_ZirconSweep", "attributes": { @@ -54521,6 +60645,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Adoration": { + "templateId": "AthenaDance:EID_Adoration", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Aerobics": { "templateId": "AthenaDance:EID_Aerobics", "attributes": { @@ -55085,6 +61221,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_BankNotes": { + "templateId": "AthenaDance:EID_BankNotes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_BannerFlagWave": { "templateId": "AthenaDance:EID_BannerFlagWave", "attributes": { @@ -55277,6 +61425,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_BengalBasher": { + "templateId": "AthenaDance:EID_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_BestMates": { "templateId": "AthenaDance:EID_BestMates", "attributes": { @@ -55409,6 +61569,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_BirdsNestBlue": { + "templateId": "AthenaDance:EID_BirdsNestBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_BistroStyle_P0XFD": { "templateId": "AthenaDance:EID_BistroStyle_P0XFD", "attributes": { @@ -55481,6 +61653,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_BlazerVeil": { + "templateId": "AthenaDance:EID_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_BlowingBubbles": { "templateId": "AthenaDance:EID_BlowingBubbles", "attributes": { @@ -55625,6 +61809,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_BrawnyBass": { + "templateId": "AthenaDance:EID_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Breakboy": { "templateId": "AthenaDance:EID_Breakboy", "attributes": { @@ -55781,6 +61977,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Bulletproof": { + "templateId": "AthenaDance:EID_Bulletproof", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_BunnyFlop": { "templateId": "AthenaDance:EID_BunnyFlop", "attributes": { @@ -55913,6 +62121,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Calico": { + "templateId": "AthenaDance:EID_Calico", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Caller": { "templateId": "AthenaDance:EID_Caller", "attributes": { @@ -55973,6 +62193,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Capital": { + "templateId": "AthenaDance:EID_Capital", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Capoeira": { "templateId": "AthenaDance:EID_Capoeira", "attributes": { @@ -56057,6 +62289,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_CeremonialGuard": { + "templateId": "AthenaDance:EID_CeremonialGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Chainmail": { "templateId": "AthenaDance:EID_Chainmail", "attributes": { @@ -56537,6 +62781,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Competitor": { + "templateId": "AthenaDance:EID_Competitor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Comrade_6O5AK": { "templateId": "AthenaDance:EID_Comrade_6O5AK", "attributes": { @@ -56585,6 +62841,30 @@ }, "quantity": 1 }, + "AthenaDance:EID_Congestion": { + "templateId": "AthenaDance:EID_Congestion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ContortedScowl": { + "templateId": "AthenaDance:EID_ContortedScowl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_CoolOff": { "templateId": "AthenaDance:EID_CoolOff", "attributes": { @@ -56657,6 +62937,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Cottontail": { + "templateId": "AthenaDance:EID_Cottontail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_CowboyDance": { "templateId": "AthenaDance:EID_CowboyDance", "attributes": { @@ -56717,6 +63009,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Crackle": { + "templateId": "AthenaDance:EID_Crackle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_CrackshotClock": { "templateId": "AthenaDance:EID_CrackshotClock", "attributes": { @@ -57149,6 +63453,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Deceiver": { + "templateId": "AthenaDance:EID_Deceiver", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_DeepDab": { "templateId": "AthenaDance:EID_DeepDab", "attributes": { @@ -57197,6 +63513,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_DiamondHeart": { + "templateId": "AthenaDance:EID_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Dinosaur": { "templateId": "AthenaDance:EID_Dinosaur", "attributes": { @@ -57905,6 +64233,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Fishbowl": { + "templateId": "AthenaDance:EID_Fishbowl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_FistPump": { "templateId": "AthenaDance:EID_FistPump", "attributes": { @@ -58013,6 +64353,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Floret": { + "templateId": "AthenaDance:EID_Floret", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Floss": { "templateId": "AthenaDance:EID_Floss", "attributes": { @@ -58109,6 +64461,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Frolic": { + "templateId": "AthenaDance:EID_Frolic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Frontier": { "templateId": "AthenaDance:EID_Frontier", "attributes": { @@ -58121,6 +64485,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_FrozenReality": { + "templateId": "AthenaDance:EID_FrozenReality", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Fuchsia": { "templateId": "AthenaDance:EID_Fuchsia", "attributes": { @@ -58169,6 +64545,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_GalaxyLevel": { + "templateId": "AthenaDance:EID_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Galileo1_B3EX6": { "templateId": "AthenaDance:EID_Galileo1_B3EX6", "attributes": { @@ -58505,6 +64893,30 @@ }, "quantity": 1 }, + "AthenaDance:EID_GroovyPetals": { + "templateId": "AthenaDance:EID_GroovyPetals", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GroovyReader": { + "templateId": "AthenaDance:EID_GroovyReader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_GuitarWalk": { "templateId": "AthenaDance:EID_GuitarWalk", "attributes": { @@ -58685,6 +65097,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_HawtChamp": { + "templateId": "AthenaDance:EID_HawtChamp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Headband": { "templateId": "AthenaDance:EID_Headband", "attributes": { @@ -58805,6 +65229,30 @@ }, "quantity": 1 }, + "AthenaDance:EID_HeavyRoar": { + "templateId": "AthenaDance:EID_HeavyRoar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HeavyRoarDance": { + "templateId": "AthenaDance:EID_HeavyRoarDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_HeelClick": { "templateId": "AthenaDance:EID_HeelClick", "attributes": { @@ -58925,6 +65373,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_HighMotion": { + "templateId": "AthenaDance:EID_HighMotion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_HightowerDate": { "templateId": "AthenaDance:EID_HightowerDate", "attributes": { @@ -59153,6 +65613,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Hoist": { + "templateId": "AthenaDance:EID_Hoist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_HoldOnAMinute": { "templateId": "AthenaDance:EID_HoldOnAMinute", "attributes": { @@ -59249,6 +65721,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_HornedJudgment": { + "templateId": "AthenaDance:EID_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_HotPink": { "templateId": "AthenaDance:EID_HotPink", "attributes": { @@ -59309,6 +65793,42 @@ }, "quantity": 1 }, + "AthenaDance:EID_Hurrah": { + "templateId": "AthenaDance:EID_Hurrah", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Hurrah_Follower": { + "templateId": "AthenaDance:EID_Hurrah_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Hustle": { + "templateId": "AthenaDance:EID_Hustle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Huzzah": { "templateId": "AthenaDance:EID_Huzzah", "attributes": { @@ -59477,6 +65997,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_IndieBucket": { + "templateId": "AthenaDance:EID_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Indigo": { "templateId": "AthenaDance:EID_Indigo", "attributes": { @@ -59549,6 +66081,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_InstantGravel": { + "templateId": "AthenaDance:EID_InstantGravel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Intensity": { "templateId": "AthenaDance:EID_Intensity", "attributes": { @@ -59585,6 +66129,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Intertwine": { + "templateId": "AthenaDance:EID_Intertwine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_IrishJig": { "templateId": "AthenaDance:EID_IrishJig", "attributes": { @@ -59717,6 +66273,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Jockey": { + "templateId": "AthenaDance:EID_Jockey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Jokes": { "templateId": "AthenaDance:EID_Jokes", "attributes": { @@ -59753,6 +66321,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Jovial": { + "templateId": "AthenaDance:EID_Jovial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Juggler": { "templateId": "AthenaDance:EID_Juggler", "attributes": { @@ -60161,6 +66741,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_LastVoice": { + "templateId": "AthenaDance:EID_LastVoice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Lateral_7QJD6": { "templateId": "AthenaDance:EID_Lateral_7QJD6", "attributes": { @@ -60209,6 +66801,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_LazarusLens": { + "templateId": "AthenaDance:EID_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_LazyShuffle": { "templateId": "AthenaDance:EID_LazyShuffle", "attributes": { @@ -60281,6 +66885,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_LilSplit": { + "templateId": "AthenaDance:EID_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_LimaBean": { "templateId": "AthenaDance:EID_LimaBean", "attributes": { @@ -60545,6 +67161,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_MadameMoth": { + "templateId": "AthenaDance:EID_MadameMoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_MagicMan": { "templateId": "AthenaDance:EID_MagicMan", "attributes": { @@ -60617,6 +67245,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Malleable": { + "templateId": "AthenaDance:EID_Malleable", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_ManAndMonster": { "templateId": "AthenaDance:EID_ManAndMonster", "attributes": { @@ -60773,6 +67413,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Marvelous": { + "templateId": "AthenaDance:EID_Marvelous", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_MashedPotato": { "templateId": "AthenaDance:EID_MashedPotato", "attributes": { @@ -60821,6 +67473,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Melancholy": { + "templateId": "AthenaDance:EID_Melancholy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_MercurialStorm": { "templateId": "AthenaDance:EID_MercurialStorm", "attributes": { @@ -61013,6 +67677,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_MusketSlinger": { + "templateId": "AthenaDance:EID_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_MyEffort_BT5Z0": { "templateId": "AthenaDance:EID_MyEffort_BT5Z0", "attributes": { @@ -61325,6 +68001,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_OilPaint": { + "templateId": "AthenaDance:EID_OilPaint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_OneArmFloss": { "templateId": "AthenaDance:EID_OneArmFloss", "attributes": { @@ -61349,6 +68037,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Onward": { + "templateId": "AthenaDance:EID_Onward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_OrbitTeal_1XLAO": { "templateId": "AthenaDance:EID_OrbitTeal_1XLAO", "attributes": { @@ -61647,6 +68347,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_PizzaParty": { + "templateId": "AthenaDance:EID_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Pizzatime": { "templateId": "AthenaDance:EID_Pizzatime", "attributes": { @@ -61731,6 +68443,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Ponder": { + "templateId": "AthenaDance:EID_Ponder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Popcorn": { "templateId": "AthenaDance:EID_Popcorn", "attributes": { @@ -61767,6 +68491,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Potassium": { + "templateId": "AthenaDance:EID_Potassium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_PoutyClap": { "templateId": "AthenaDance:EID_PoutyClap", "attributes": { @@ -61779,6 +68515,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_PowerFarmer": { + "templateId": "AthenaDance:EID_PowerFarmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_PraiseStorm": { "templateId": "AthenaDance:EID_PraiseStorm", "attributes": { @@ -61839,6 +68587,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_PrivateJet": { + "templateId": "AthenaDance:EID_PrivateJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_ProfessorPup": { "templateId": "AthenaDance:EID_ProfessorPup", "attributes": { @@ -61851,6 +68611,42 @@ }, "quantity": 1 }, + "AthenaDance:EID_Promenade": { + "templateId": "AthenaDance:EID_Promenade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Promenade_Follower": { + "templateId": "AthenaDance:EID_Promenade_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Promenade_Sync": { + "templateId": "AthenaDance:EID_Promenade_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_ProVisitorProtest": { "templateId": "AthenaDance:EID_ProVisitorProtest", "attributes": { @@ -62067,6 +68863,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_RebelClaw": { + "templateId": "AthenaDance:EID_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_RedCard": { "templateId": "AthenaDance:EID_RedCard", "attributes": { @@ -62115,6 +68923,78 @@ }, "quantity": 1 }, + "AthenaDance:EID_Reign": { + "templateId": "AthenaDance:EID_Reign", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Reign_Follower": { + "templateId": "AthenaDance:EID_Reign_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Reign_Owned": { + "templateId": "AthenaDance:EID_Reign_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Reign_Sync": { + "templateId": "AthenaDance:EID_Reign_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Reign_Sync_Follower": { + "templateId": "AthenaDance:EID_Reign_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Reign_Sync_Owned_Follower": { + "templateId": "AthenaDance:EID_Reign_Sync_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Relaxed": { "templateId": "AthenaDance:EID_Relaxed", "attributes": { @@ -62199,6 +69079,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_RhymeLockReward": { + "templateId": "AthenaDance:EID_RhymeLockReward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_RhymeLock_5B2Y3": { "templateId": "AthenaDance:EID_RhymeLock_5B2Y3", "attributes": { @@ -62355,6 +69247,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_RollerBlade": { + "templateId": "AthenaDance:EID_RollerBlade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_RoosterMech": { "templateId": "AthenaDance:EID_RoosterMech", "attributes": { @@ -62667,6 +69571,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_ScorpionZero": { + "templateId": "AthenaDance:EID_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Scribe": { "templateId": "AthenaDance:EID_Scribe", "attributes": { @@ -62979,6 +69895,30 @@ }, "quantity": 1 }, + "AthenaDance:EID_SharpMagnet": { + "templateId": "AthenaDance:EID_SharpMagnet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Shimmy": { + "templateId": "AthenaDance:EID_Shimmy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Shindig_8W1AW": { "templateId": "AthenaDance:EID_Shindig_8W1AW", "attributes": { @@ -63183,6 +70123,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_SkippingClouds": { + "templateId": "AthenaDance:EID_SkippingClouds", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_SkirmishFemale_I5OTJ": { "templateId": "AthenaDance:EID_SkirmishFemale_I5OTJ", "attributes": { @@ -63267,6 +70219,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_SmartHyena": { + "templateId": "AthenaDance:EID_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_SmokeBombFail": { "templateId": "AthenaDance:EID_SmokeBombFail", "attributes": { @@ -63339,6 +70303,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_SnowKnight": { + "templateId": "AthenaDance:EID_SnowKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_SoccerJuggling": { "templateId": "AthenaDance:EID_SoccerJuggling", "attributes": { @@ -63375,6 +70351,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_SolarTheory": { + "templateId": "AthenaDance:EID_SolarTheory", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_SomethingStinks": { "templateId": "AthenaDance:EID_SomethingStinks", "attributes": { @@ -63423,6 +70411,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Spectacular": { + "templateId": "AthenaDance:EID_Spectacular", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Spectrum": { "templateId": "AthenaDance:EID_Spectrum", "attributes": { @@ -63435,6 +70435,30 @@ }, "quantity": 1 }, + "AthenaDance:EID_SpeedDial": { + "templateId": "AthenaDance:EID_SpeedDial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SpeedDial_Mask": { + "templateId": "AthenaDance:EID_SpeedDial_Mask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_SpeedRun": { "templateId": "AthenaDance:EID_SpeedRun", "attributes": { @@ -63567,6 +70591,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_StarStray": { + "templateId": "AthenaDance:EID_StarStray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_StatuePose": { "templateId": "AthenaDance:EID_StatuePose", "attributes": { @@ -63579,6 +70615,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_SteamPower": { + "templateId": "AthenaDance:EID_SteamPower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Steep": { "templateId": "AthenaDance:EID_Steep", "attributes": { @@ -63627,6 +70675,30 @@ }, "quantity": 1 }, + "AthenaDance:EID_Studious": { + "templateId": "AthenaDance:EID_Studious", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Success": { + "templateId": "AthenaDance:EID_Success", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_SuckerPunch": { "templateId": "AthenaDance:EID_SuckerPunch", "attributes": { @@ -63639,6 +70711,54 @@ }, "quantity": 1 }, + "AthenaDance:EID_SugarRush": { + "templateId": "AthenaDance:EID_SugarRush", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SugarRush_Owned": { + "templateId": "AthenaDance:EID_SugarRush_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SugarRush_Owned_Follower": { + "templateId": "AthenaDance:EID_SugarRush_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SugarRush_Sync_Follower": { + "templateId": "AthenaDance:EID_SugarRush_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Suits": { "templateId": "AthenaDance:EID_Suits", "attributes": { @@ -63735,6 +70855,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_SunMelt": { + "templateId": "AthenaDance:EID_SunMelt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Sunrise_RPZ6M": { "templateId": "AthenaDance:EID_Sunrise_RPZ6M", "attributes": { @@ -63783,6 +70915,66 @@ }, "quantity": 1 }, + "AthenaDance:EID_Swatch": { + "templateId": "AthenaDance:EID_Swatch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Swatch_Owned": { + "templateId": "AthenaDance:EID_Swatch_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Swatch_Owned_Follower": { + "templateId": "AthenaDance:EID_Swatch_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Swatch_Sync": { + "templateId": "AthenaDance:EID_Swatch_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Swatch_Sync_Follower": { + "templateId": "AthenaDance:EID_Swatch_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_SweetToss": { "templateId": "AthenaDance:EID_SweetToss", "attributes": { @@ -63855,6 +71047,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Swoosh": { + "templateId": "AthenaDance:EID_Swoosh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_TacoTimeDance": { "templateId": "AthenaDance:EID_TacoTimeDance", "attributes": { @@ -64299,6 +71503,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_TracePaper": { + "templateId": "AthenaDance:EID_TracePaper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Traction": { "templateId": "AthenaDance:EID_Traction", "attributes": { @@ -64683,6 +71899,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_UndergroundRebel": { + "templateId": "AthenaDance:EID_UndergroundRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_UnicycleTraversal": { "templateId": "AthenaDance:EID_UnicycleTraversal", "attributes": { @@ -64719,6 +71947,42 @@ }, "quantity": 1 }, + "AthenaDance:EID_VectorSpark": { + "templateId": "AthenaDance:EID_VectorSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_VectorSparkv2": { + "templateId": "AthenaDance:EID_VectorSparkv2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_VectorSparkv3": { + "templateId": "AthenaDance:EID_VectorSparkv3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Veiled": { "templateId": "AthenaDance:EID_Veiled", "attributes": { @@ -64755,6 +72019,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_Victorious": { + "templateId": "AthenaDance:EID_Victorious", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_VikingHorn": { "templateId": "AthenaDance:EID_VikingHorn", "attributes": { @@ -64791,6 +72067,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_VoidRedemption": { + "templateId": "AthenaDance:EID_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_WackyWavy": { "templateId": "AthenaDance:EID_WackyWavy", "attributes": { @@ -65091,6 +72379,18 @@ }, "quantity": 1 }, + "AthenaDance:EID_ZebraScramble": { + "templateId": "AthenaDance:EID_ZebraScramble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:EID_Zest_Q1K5V": { "templateId": "AthenaDance:EID_Zest_Q1K5V", "attributes": { @@ -70335,6 +77635,78 @@ }, "quantity": 1 }, + "AthenaDance:Emoji_S25_DiscordWeekly": { + "templateId": "AthenaDance:Emoji_S25_DiscordWeekly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_DiscordWeekly2": { + "templateId": "AthenaDance:Emoji_S25_DiscordWeekly2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_Event_CL": { + "templateId": "AthenaDance:Emoji_S25_Event_CL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_Event_N": { + "templateId": "AthenaDance:Emoji_S25_Event_N", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_Event_Y": { + "templateId": "AthenaDance:Emoji_S25_Event_Y", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_FNCSDrops": { + "templateId": "AthenaDance:Emoji_S25_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Emoji_S25_FortniteStories": { "templateId": "AthenaDance:Emoji_S25_FortniteStories", "attributes": { @@ -70347,6 +77719,18 @@ }, "quantity": 1 }, + "AthenaDance:Emoji_S25_LastVoice": { + "templateId": "AthenaDance:Emoji_S25_LastVoice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Emoji_S25_LoudPhoenix": { "templateId": "AthenaDance:Emoji_S25_LoudPhoenix", "attributes": { @@ -70359,6 +77743,42 @@ }, "quantity": 1 }, + "AthenaDance:Emoji_S25_Maze": { + "templateId": "AthenaDance:Emoji_S25_Maze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_Maze2": { + "templateId": "AthenaDance:Emoji_S25_Maze2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_RainbowRoyale": { + "templateId": "AthenaDance:Emoji_S25_RainbowRoyale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Emoji_S25_RippedHarvester": { "templateId": "AthenaDance:Emoji_S25_RippedHarvester", "attributes": { @@ -70383,6 +77803,42 @@ }, "quantity": 1 }, + "AthenaDance:Emoji_S25_StarStrayFN": { + "templateId": "AthenaDance:Emoji_S25_StarStrayFN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_Tournament_DD": { + "templateId": "AthenaDance:Emoji_S25_Tournament_DD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_Tournament_Winking": { + "templateId": "AthenaDance:Emoji_S25_Tournament_Winking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Emoji_S25_ZirconSweep_Thinking": { "templateId": "AthenaDance:Emoji_S25_ZirconSweep_Thinking", "attributes": { @@ -70395,6 +77851,450 @@ }, "quantity": 1 }, + "AthenaDance:Emoji_S26_BlazerVeil": { + "templateId": "AthenaDance:Emoji_S26_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_BrawnyBass": { + "templateId": "AthenaDance:Emoji_S26_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_FNCSDrops": { + "templateId": "AthenaDance:Emoji_S26_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_Fortnitemares_Quest": { + "templateId": "AthenaDance:Emoji_S26_Fortnitemares_Quest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_GalaxyLevel": { + "templateId": "AthenaDance:Emoji_S26_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_IndieBucket": { + "templateId": "AthenaDance:Emoji_S26_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_IWD": { + "templateId": "AthenaDance:Emoji_S26_IWD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_LazarusLens": { + "templateId": "AthenaDance:Emoji_S26_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_Leaderboard": { + "templateId": "AthenaDance:Emoji_S26_Leaderboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_MusketSlinger": { + "templateId": "AthenaDance:Emoji_S26_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_PizzaParty": { + "templateId": "AthenaDance:Emoji_S26_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_Ranked": { + "templateId": "AthenaDance:Emoji_S26_Ranked", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_Ranked2": { + "templateId": "AthenaDance:Emoji_S26_Ranked2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_Ranked3": { + "templateId": "AthenaDance:Emoji_S26_Ranked3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_ReferAFriend": { + "templateId": "AthenaDance:Emoji_S26_ReferAFriend", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_ScorpionZero": { + "templateId": "AthenaDance:Emoji_S26_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_SmartHyena": { + "templateId": "AthenaDance:Emoji_S26_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_HornedJudgement": { + "templateId": "AthenaDance:Emoji_S27_HornedJudgement", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_LilSplit": { + "templateId": "AthenaDance:Emoji_S27_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_Ranked1": { + "templateId": "AthenaDance:Emoji_S27_Ranked1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_Ranked2": { + "templateId": "AthenaDance:Emoji_S27_Ranked2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_Ranked3": { + "templateId": "AthenaDance:Emoji_S27_Ranked3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_RebelClaw": { + "templateId": "AthenaDance:Emoji_S27_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_RebootRally": { + "templateId": "AthenaDance:Emoji_S27_RebootRally", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_BengalBasher": { + "templateId": "AthenaDance:Emoji_S28_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_CeremonialGuard": { + "templateId": "AthenaDance:Emoji_S28_CeremonialGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_DiamondHeart": { + "templateId": "AthenaDance:Emoji_S28_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_MadameMoth": { + "templateId": "AthenaDance:Emoji_S28_MadameMoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_Ranked_Biohazard": { + "templateId": "AthenaDance:Emoji_S28_Ranked_Biohazard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_Ranked_Target": { + "templateId": "AthenaDance:Emoji_S28_Ranked_Target", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_Ranked_Trophy": { + "templateId": "AthenaDance:Emoji_S28_Ranked_Trophy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_Sparks_Equalizer": { + "templateId": "AthenaDance:Emoji_S28_Sparks_Equalizer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_Sparks_Llama": { + "templateId": "AthenaDance:Emoji_S28_Sparks_Llama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_Sparks_SpeedDial": { + "templateId": "AthenaDance:Emoji_S28_Sparks_SpeedDial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_UndergroundRebel": { + "templateId": "AthenaDance:Emoji_S28_UndergroundRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_VoidRedemption": { + "templateId": "AthenaDance:Emoji_S28_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_ZebraScramble": { + "templateId": "AthenaDance:Emoji_S28_ZebraScramble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Emoji_S6Lvl100": { "templateId": "AthenaDance:Emoji_S6Lvl100", "attributes": { @@ -71059,6 +78959,30 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_BengalBasher": { + "templateId": "AthenaGlider:Glider_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_BirdNest": { + "templateId": "AthenaGlider:Glider_BirdNest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_Bites": { "templateId": "AthenaGlider:Glider_Bites", "attributes": { @@ -71095,6 +79019,48 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_BraveBuild": { + "templateId": "AthenaGlider:Glider_BraveBuild", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_BrawnyBass": { + "templateId": "AthenaGlider:Glider_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_Broomstick": { "templateId": "AthenaGlider:Glider_Broomstick", "attributes": { @@ -71149,6 +79115,27 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_CeremonialGuard": { + "templateId": "AthenaGlider:Glider_CeremonialGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_Chainmail": { "templateId": "AthenaGlider:Glider_Chainmail", "attributes": { @@ -71227,6 +79214,18 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_CleverEdge": { + "templateId": "AthenaGlider:Glider_CleverEdge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_CoyoteTrail": { "templateId": "AthenaGlider:Glider_CoyoteTrail", "attributes": { @@ -71314,6 +79313,18 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_DiamondHeart": { + "templateId": "AthenaGlider:Glider_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_DistantEchoPro": { "templateId": "AthenaGlider:Glider_DistantEchoPro", "attributes": { @@ -71383,6 +79394,18 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_GalaxyLevel": { + "templateId": "AthenaGlider:Glider_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_Genius": { "templateId": "AthenaGlider:Glider_Genius", "attributes": { @@ -71428,6 +79451,30 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_HighBeam": { + "templateId": "AthenaGlider:Glider_HighBeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_HornedJudgment": { + "templateId": "AthenaGlider:Glider_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_ID_001": { "templateId": "AthenaGlider:Glider_ID_001", "attributes": { @@ -73622,7 +81669,16 @@ "level": 1, "item_seen": true, "xp": 0, - "variants": [], + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], "favorite": false }, "quantity": 1 @@ -76718,6 +84774,36 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_IndieBucket": { + "templateId": "AthenaGlider:Glider_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_Inferno": { "templateId": "AthenaGlider:Glider_Inferno", "attributes": { @@ -76739,6 +84825,27 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_InstantGravel": { + "templateId": "AthenaGlider:Glider_InstantGravel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_IronBlaze": { "templateId": "AthenaGlider:Glider_IronBlaze", "attributes": { @@ -76763,6 +84870,42 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_LastVoiceDive": { + "templateId": "AthenaGlider:Glider_LastVoiceDive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_LazarusLens": { + "templateId": "AthenaGlider:Glider_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Lazuli": { + "templateId": "AthenaGlider:Glider_Lazuli", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_Lettuce": { "templateId": "AthenaGlider:Glider_Lettuce", "attributes": { @@ -76775,6 +84918,28 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_LilSplit": { + "templateId": "AthenaGlider:Glider_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_LocalZilla": { "templateId": "AthenaGlider:Glider_LocalZilla", "attributes": { @@ -76865,6 +85030,39 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_ModernMilitary_Crisp": { + "templateId": "AthenaGlider:Glider_ModernMilitary_Crisp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_MusketSlinger": { + "templateId": "AthenaGlider:Glider_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_Nebula": { "templateId": "AthenaGlider:Glider_Nebula", "attributes": { @@ -76931,6 +85129,27 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_PizzaParty": { + "templateId": "AthenaGlider:Glider_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_PlotTwist": { "templateId": "AthenaGlider:Glider_PlotTwist", "attributes": { @@ -76943,6 +85162,18 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_PowerFarmer": { + "templateId": "AthenaGlider:Glider_PowerFarmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_Prismatic": { "templateId": "AthenaGlider:Glider_Prismatic", "attributes": { @@ -76955,6 +85186,18 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_PrivateJet": { + "templateId": "AthenaGlider:Glider_PrivateJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_ProxyTest": { "templateId": "AthenaGlider:Glider_ProxyTest", "attributes": { @@ -76979,6 +85222,39 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_RankedRemixAsparagus": { + "templateId": "AthenaGlider:Glider_RankedRemixAsparagus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_RebelClaw": { + "templateId": "AthenaGlider:Glider_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_RedPepper": { "templateId": "AthenaGlider:Glider_RedPepper", "attributes": { @@ -77060,6 +85336,30 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_ScorpionZero": { + "templateId": "AthenaGlider:Glider_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Scribble": { + "templateId": "AthenaGlider:Glider_Scribble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_Shark_FNCS": { "templateId": "AthenaGlider:Glider_Shark_FNCS", "attributes": { @@ -77093,6 +85393,42 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_SkullBrite_Cotton": { + "templateId": "AthenaGlider:Glider_SkullBrite_Cotton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_SnowSoldierFashion": { + "templateId": "AthenaGlider:Glider_SnowSoldierFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_SolarTheory": { + "templateId": "AthenaGlider:Glider_SolarTheory", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_Spring": { "templateId": "AthenaGlider:Glider_Spring", "attributes": { @@ -77129,6 +85465,18 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_SteamPower": { + "templateId": "AthenaGlider:Glider_SteamPower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_Sunlit": { "templateId": "AthenaGlider:Glider_Sunlit", "attributes": { @@ -77153,6 +85501,18 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_TiltedParrot": { + "templateId": "AthenaGlider:Glider_TiltedParrot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_Venice": { "templateId": "AthenaGlider:Glider_Venice", "attributes": { @@ -77207,6 +85567,27 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_VoidRedemption": { + "templateId": "AthenaGlider:Glider_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_Voyager": { "templateId": "AthenaGlider:Glider_Voyager", "attributes": { @@ -77231,6 +85612,30 @@ }, "quantity": 1 }, + "AthenaGlider:Glider_WingedMedieval": { + "templateId": "AthenaGlider:Glider_WingedMedieval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ZebraScramble_Bacon": { + "templateId": "AthenaGlider:Glider_ZebraScramble_Bacon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Glider_ZirconSweep": { "templateId": "AthenaGlider:Glider_ZirconSweep", "attributes": { @@ -77276,6 +85681,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_14DaysOfSummer": { + "templateId": "AthenaLoadingScreen:LoadingScreen_14DaysOfSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_28KeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_28KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_8UP": { "templateId": "AthenaLoadingScreen:LoadingScreen_8UP", "attributes": { @@ -77348,6 +85777,18 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_AugCrew": { + "templateId": "AthenaLoadingScreen:LoadingScreen_AugCrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_BadBear": { "templateId": "AthenaLoadingScreen:LoadingScreen_BadBear", "attributes": { @@ -77360,6 +85801,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_BangalBasher_Phone": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BangalBasher_Phone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_BangalBasher_Train": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BangalBasher_Train", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Bites": { "templateId": "AthenaLoadingScreen:LoadingScreen_Bites", "attributes": { @@ -77372,6 +85837,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_BlazerVeil": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_BlazerVeil2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BlazerVeil2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_BoneMarrow": { "templateId": "AthenaLoadingScreen:LoadingScreen_BoneMarrow", "attributes": { @@ -77384,6 +85873,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_BrawnyBass": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_BrawnyBass2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BrawnyBass2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_BuffCatCruise": { "templateId": "AthenaLoadingScreen:LoadingScreen_BuffCatCruise", "attributes": { @@ -77420,6 +85933,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_CeremonialGuard_Orchard": { + "templateId": "AthenaLoadingScreen:LoadingScreen_CeremonialGuard_Orchard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_CeremonialGuard_Prisoner": { + "templateId": "AthenaLoadingScreen:LoadingScreen_CeremonialGuard_Prisoner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Chainmail": { "templateId": "AthenaLoadingScreen:LoadingScreen_Chainmail", "attributes": { @@ -77624,6 +86161,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_DiamondHeart_Car": { + "templateId": "AthenaLoadingScreen:LoadingScreen_DiamondHeart_Car", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_DiamondHeart_SeeingEye": { + "templateId": "AthenaLoadingScreen:LoadingScreen_DiamondHeart_SeeingEye", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_DowntimeMicrosite_Reward": { "templateId": "AthenaLoadingScreen:LoadingScreen_DowntimeMicrosite_Reward", "attributes": { @@ -77636,6 +86197,18 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_DurianKeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_DurianKeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Ebony2": { "templateId": "AthenaLoadingScreen:LoadingScreen_Ebony2", "attributes": { @@ -77684,6 +86257,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_EvergreenArcher": { + "templateId": "AthenaLoadingScreen:LoadingScreen_EvergreenArcher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_EvergreenBattleBus": { + "templateId": "AthenaLoadingScreen:LoadingScreen_EvergreenBattleBus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_EvergreenCompetitive": { "templateId": "AthenaLoadingScreen:LoadingScreen_EvergreenCompetitive", "attributes": { @@ -77696,6 +86293,18 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_EvergreenHand": { + "templateId": "AthenaLoadingScreen:LoadingScreen_EvergreenHand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_EvergreenMap": { "templateId": "AthenaLoadingScreen:LoadingScreen_EvergreenMap", "attributes": { @@ -77708,6 +86317,18 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_Evergreen_BigChuggus": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Evergreen_BigChuggus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_FearlessFlight": { "templateId": "AthenaLoadingScreen:LoadingScreen_FearlessFlight", "attributes": { @@ -77720,6 +86341,18 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_FNCSDrops26": { + "templateId": "AthenaLoadingScreen:LoadingScreen_FNCSDrops26", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Fortnitemares_2022": { "templateId": "AthenaLoadingScreen:LoadingScreen_Fortnitemares_2022", "attributes": { @@ -77744,6 +86377,18 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_FortniteStories": { + "templateId": "AthenaLoadingScreen:LoadingScreen_FortniteStories", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Genius": { "templateId": "AthenaLoadingScreen:LoadingScreen_Genius", "attributes": { @@ -77768,6 +86413,18 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_HeadHunterStar_Remake": { + "templateId": "AthenaLoadingScreen:LoadingScreen_HeadHunterStar_Remake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Headset": { "templateId": "AthenaLoadingScreen:LoadingScreen_Headset", "attributes": { @@ -77780,6 +86437,54 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_HornedJudgment": { + "templateId": "AthenaLoadingScreen:LoadingScreen_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_HornedJudgment2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_HornedJudgment2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_IndieBucket": { + "templateId": "AthenaLoadingScreen:LoadingScreen_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_IndieBucket2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_IndieBucket2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Inferno1": { "templateId": "AthenaLoadingScreen:LoadingScreen_Inferno1", "attributes": { @@ -77840,6 +86545,42 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_LastVoice": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LastVoice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_LazarusLens": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_LazarusLens2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LazarusLens2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Lettuce_Tournament": { "templateId": "AthenaLoadingScreen:LoadingScreen_Lettuce_Tournament", "attributes": { @@ -77864,6 +86605,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_LilSplit": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_LilSplit2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LilSplit2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Lobby_S23": { "templateId": "AthenaLoadingScreen:LoadingScreen_Lobby_S23", "attributes": { @@ -77924,6 +86689,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_MadameMoth_FireStorm": { + "templateId": "AthenaLoadingScreen:LoadingScreen_MadameMoth_FireStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_MadameMoth_Searching": { + "templateId": "AthenaLoadingScreen:LoadingScreen_MadameMoth_Searching", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_MagicMeadow": { "templateId": "AthenaLoadingScreen:LoadingScreen_MagicMeadow", "attributes": { @@ -78020,6 +86809,42 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_MusketSlinger": { + "templateId": "AthenaLoadingScreen:LoadingScreen_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_MusketSlinger2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_MusketSlinger2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_NarrativeTimeMachine": { + "templateId": "AthenaLoadingScreen:LoadingScreen_NarrativeTimeMachine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Nebula_Standing": { "templateId": "AthenaLoadingScreen:LoadingScreen_Nebula_Standing", "attributes": { @@ -78116,6 +86941,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_OctCrew": { + "templateId": "AthenaLoadingScreen:LoadingScreen_OctCrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_OpenEnded": { + "templateId": "AthenaLoadingScreen:LoadingScreen_OpenEnded", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_PeelyAttack": { "templateId": "AthenaLoadingScreen:LoadingScreen_PeelyAttack", "attributes": { @@ -78152,6 +87001,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_PizzaParty": { + "templateId": "AthenaLoadingScreen:LoadingScreen_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_PizzaParty2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_PizzaParty2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Possession": { "templateId": "AthenaLoadingScreen:LoadingScreen_Possession", "attributes": { @@ -78200,6 +87073,18 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_QuotientKeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_QuotientKeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Radish_ConceptArt": { "templateId": "AthenaLoadingScreen:LoadingScreen_Radish_ConceptArt", "attributes": { @@ -78224,6 +87109,42 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_Ranked_CRZ": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Ranked_CRZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_RebelClaw": { + "templateId": "AthenaLoadingScreen:LoadingScreen_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_RebelClaw2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_RebelClaw2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_RedPepper": { "templateId": "AthenaLoadingScreen:LoadingScreen_RedPepper", "attributes": { @@ -78284,6 +87205,18 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_Rufus_KeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Rufus_KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_S23BP_Lineup": { "templateId": "AthenaLoadingScreen:LoadingScreen_S23BP_Lineup", "attributes": { @@ -78356,6 +87289,54 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_S25_FNCSDrops": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S25_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S26_CharacterLineUp": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S26_CharacterLineUp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S26_KeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S26_KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S28_CharacterLineUp": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S28_CharacterLineUp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_S4CH3KeyArt": { "templateId": "AthenaLoadingScreen:LoadingScreen_S4CH3KeyArt", "attributes": { @@ -78380,6 +87361,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_ScorpionZero": { + "templateId": "AthenaLoadingScreen:LoadingScreen_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_ScorpionZero2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_ScorpionZero2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_SCRN_Fortnitemares_2022": { "templateId": "AthenaLoadingScreen:LoadingScreen_SCRN_Fortnitemares_2022", "attributes": { @@ -78416,6 +87421,18 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_SeptCrew": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SeptCrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_SharpFang": { "templateId": "AthenaLoadingScreen:LoadingScreen_SharpFang", "attributes": { @@ -78500,6 +87517,54 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_SmartHyena": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SnowKnight_Helm": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SnowKnight_Helm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SparksKeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SparksKeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Sparks_SpeedDial": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Sparks_SpeedDial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Sparrow": { "templateId": "AthenaLoadingScreen:LoadingScreen_Sparrow", "attributes": { @@ -78596,6 +87661,18 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_TimeMachine": { + "templateId": "AthenaLoadingScreen:LoadingScreen_TimeMachine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Troops": { "templateId": "AthenaLoadingScreen:LoadingScreen_Troops", "attributes": { @@ -78608,6 +87685,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_UndergroundRebel_Estate": { + "templateId": "AthenaLoadingScreen:LoadingScreen_UndergroundRebel_Estate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_UndergroundRebel_HQ": { + "templateId": "AthenaLoadingScreen:LoadingScreen_UndergroundRebel_HQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_Veiled": { "templateId": "AthenaLoadingScreen:LoadingScreen_Veiled", "attributes": { @@ -78668,6 +87769,30 @@ }, "quantity": 1 }, + "AthenaLoadingScreen:LoadingScreen_VoidRedemption_Mural": { + "templateId": "AthenaLoadingScreen:LoadingScreen_VoidRedemption_Mural", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_VoidRedemption_Rooftop": { + "templateId": "AthenaLoadingScreen:LoadingScreen_VoidRedemption_Rooftop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaLoadingScreen:LoadingScreen_ZirconSweep": { "templateId": "AthenaLoadingScreen:LoadingScreen_ZirconSweep", "attributes": { @@ -86336,6 +95461,210 @@ }, "quantity": 1 }, + "AthenaMusicPack:MusicPack_183_LopexSnow": { + "templateId": "AthenaMusicPack:MusicPack_183_LopexSnow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_184_FNCSDrops": { + "templateId": "AthenaMusicPack:MusicPack_184_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_185_BlazerVeil": { + "templateId": "AthenaMusicPack:MusicPack_185_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_186_IndieBucket": { + "templateId": "AthenaMusicPack:MusicPack_186_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_187_PizzaParty": { + "templateId": "AthenaMusicPack:MusicPack_187_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_188_SuperNovaTaro": { + "templateId": "AthenaMusicPack:MusicPack_188_SuperNovaTaro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_189_FNCSGlobal": { + "templateId": "AthenaMusicPack:MusicPack_189_FNCSGlobal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_190_Vampire": { + "templateId": "AthenaMusicPack:MusicPack_190_Vampire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_191_LilSplit": { + "templateId": "AthenaMusicPack:MusicPack_191_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_192_Rufus": { + "templateId": "AthenaMusicPack:MusicPack_192_Rufus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_193_VoidRedemption": { + "templateId": "AthenaMusicPack:MusicPack_193_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_194_BangalBasher": { + "templateId": "AthenaMusicPack:MusicPack_194_BangalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_195_MadameMoth": { + "templateId": "AthenaMusicPack:MusicPack_195_MadameMoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_196_S28DefaultTrack": { + "templateId": "AthenaMusicPack:MusicPack_196_S28DefaultTrack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_197_Winterfest2023": { + "templateId": "AthenaMusicPack:MusicPack_197_Winterfest2023", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_198_JunoDefault": { + "templateId": "AthenaMusicPack:MusicPack_198_JunoDefault", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_199_DelMarDefault": { + "templateId": "AthenaMusicPack:MusicPack_199_DelMarDefault", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaMusicPack:MusicPack_STW001_CannyValley": { "templateId": "AthenaMusicPack:MusicPack_STW001_CannyValley", "attributes": { @@ -87006,6 +96335,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_BananaAdventure": { + "templateId": "AthenaPickaxe:Pickaxe_BananaAdventure", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_BariumDemon": { "templateId": "AthenaPickaxe:Pickaxe_BariumDemon", "attributes": { @@ -87030,6 +96371,42 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_BengalBasher": { + "templateId": "AthenaPickaxe:Pickaxe_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BirdNest": { + "templateId": "AthenaPickaxe:Pickaxe_BirdNest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BiruFang": { + "templateId": "AthenaPickaxe:Pickaxe_BiruFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Bites": { "templateId": "AthenaPickaxe:Pickaxe_Bites", "attributes": { @@ -87057,6 +96434,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_BlazerVeil": { + "templateId": "AthenaPickaxe:Pickaxe_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_BlueGlaze": { "templateId": "AthenaPickaxe:Pickaxe_BlueGlaze", "attributes": { @@ -87117,6 +96506,51 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_BrainMatter": { + "templateId": "AthenaPickaxe:Pickaxe_BrainMatter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BraveBuild": { + "templateId": "AthenaPickaxe:Pickaxe_BraveBuild", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BrawnyBass": { + "templateId": "AthenaPickaxe:Pickaxe_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_BuffCatCruise": { "templateId": "AthenaPickaxe:Pickaxe_BuffCatCruise", "attributes": { @@ -87159,6 +96593,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_CameraShake": { + "templateId": "AthenaPickaxe:Pickaxe_CameraShake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Candor": { "templateId": "AthenaPickaxe:Pickaxe_Candor", "attributes": { @@ -87192,6 +96638,27 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_CeremonialGuard": { + "templateId": "AthenaPickaxe:Pickaxe_CeremonialGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Chainmail": { "templateId": "AthenaPickaxe:Pickaxe_Chainmail", "attributes": { @@ -87225,6 +96692,27 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_ChicleVeil": { + "templateId": "AthenaPickaxe:Pickaxe_ChicleVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_ChillCat": { "templateId": "AthenaPickaxe:Pickaxe_ChillCat", "attributes": { @@ -87294,6 +96782,40 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_CleverEdge": { + "templateId": "AthenaPickaxe:Pickaxe_CleverEdge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ConfectionPop": { + "templateId": "AthenaPickaxe:Pickaxe_ConfectionPop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Conscience": { "templateId": "AthenaPickaxe:Pickaxe_Conscience", "attributes": { @@ -87306,6 +96828,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_CoyoTear": { + "templateId": "AthenaPickaxe:Pickaxe_CoyoTear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_CoyoteTrail": { "templateId": "AthenaPickaxe:Pickaxe_CoyoteTrail", "attributes": { @@ -87375,6 +96909,42 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_CubeCoast": { + "templateId": "AthenaPickaxe:Pickaxe_CubeCoast", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CupidEvil": { + "templateId": "AthenaPickaxe:Pickaxe_CupidEvil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DapperPunch": { + "templateId": "AthenaPickaxe:Pickaxe_DapperPunch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_DarkAzalea": { "templateId": "AthenaPickaxe:Pickaxe_DarkAzalea", "attributes": { @@ -87455,6 +97025,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_DiamondHeart": { + "templateId": "AthenaPickaxe:Pickaxe_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_DistantEchoCastle": { "templateId": "AthenaPickaxe:Pickaxe_DistantEchoCastle", "attributes": { @@ -87491,6 +97073,67 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_DracoDueler": { + "templateId": "AthenaPickaxe:Pickaxe_DracoDueler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DriftAvatar": { + "templateId": "AthenaPickaxe:Pickaxe_DriftAvatar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DriftSwat": { + "templateId": "AthenaPickaxe:Pickaxe_DriftSwat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DriftTrooper": { + "templateId": "AthenaPickaxe:Pickaxe_DriftTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_DualParadox": { "templateId": "AthenaPickaxe:Pickaxe_DualParadox", "attributes": { @@ -87515,6 +97158,27 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_DyedDuelist": { + "templateId": "AthenaPickaxe:Pickaxe_DyedDuelist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Ebony": { "templateId": "AthenaPickaxe:Pickaxe_Ebony", "attributes": { @@ -87536,6 +97200,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_EctoCat": { + "templateId": "AthenaPickaxe:Pickaxe_EctoCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Elevate": { "templateId": "AthenaPickaxe:Pickaxe_Elevate", "attributes": { @@ -87608,6 +97284,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_Ephemeral": { + "templateId": "AthenaPickaxe:Pickaxe_Ephemeral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_FallValleyBlink": { "templateId": "AthenaPickaxe:Pickaxe_FallValleyBlink", "attributes": { @@ -87668,6 +97356,30 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_FireworkFemale1h": { + "templateId": "AthenaPickaxe:Pickaxe_FireworkFemale1h", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FishBowl": { + "templateId": "AthenaPickaxe:Pickaxe_FishBowl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Flamingo": { "templateId": "AthenaPickaxe:Pickaxe_Flamingo", "attributes": { @@ -87692,6 +97404,30 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_FNBirthday6": { + "templateId": "AthenaPickaxe:Pickaxe_FNBirthday6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FolkEvening": { + "templateId": "AthenaPickaxe:Pickaxe_FolkEvening", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Forsake_FNCS": { "templateId": "AthenaPickaxe:Pickaxe_Forsake_FNCS", "attributes": { @@ -87704,6 +97440,30 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_FossilMech": { + "templateId": "AthenaPickaxe:Pickaxe_FossilMech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FrozenReality": { + "templateId": "AthenaPickaxe:Pickaxe_FrozenReality", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_GalaxyKnight": { "templateId": "AthenaPickaxe:Pickaxe_GalaxyKnight", "attributes": { @@ -87716,6 +97476,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_GalaxyLevel": { + "templateId": "AthenaPickaxe:Pickaxe_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_GelatinGummi": { "templateId": "AthenaPickaxe:Pickaxe_GelatinGummi", "attributes": { @@ -87764,6 +97536,54 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_GoldenPleats": { + "templateId": "AthenaPickaxe:Pickaxe_GoldenPleats", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_GoodMood": { + "templateId": "AthenaPickaxe:Pickaxe_GoodMood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_GroovyReaderPierce": { + "templateId": "AthenaPickaxe:Pickaxe_GroovyReaderPierce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_GroovyReaderPoke": { + "templateId": "AthenaPickaxe:Pickaxe_GroovyReaderPoke", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_HauntKoi": { "templateId": "AthenaPickaxe:Pickaxe_HauntKoi", "attributes": { @@ -87788,6 +97608,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_HeadhunterStarFNCS": { + "templateId": "AthenaPickaxe:Pickaxe_HeadhunterStarFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Headset": { "templateId": "AthenaPickaxe:Pickaxe_Headset", "attributes": { @@ -87810,6 +97642,42 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_HeavyRoar": { + "templateId": "AthenaPickaxe:Pickaxe_HeavyRoar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_HighBeam": { + "templateId": "AthenaPickaxe:Pickaxe_HighBeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_HighMotion": { + "templateId": "AthenaPickaxe:Pickaxe_HighMotion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Hitman": { "templateId": "AthenaPickaxe:Pickaxe_Hitman", "attributes": { @@ -87831,6 +97699,30 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_HornedJudgment": { + "templateId": "AthenaPickaxe:Pickaxe_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_HornettaVine": { + "templateId": "AthenaPickaxe:Pickaxe_HornettaVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_HumanBeing": { "templateId": "AthenaPickaxe:Pickaxe_HumanBeing", "attributes": { @@ -87843,6 +97735,42 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_HydroIgnite": { + "templateId": "AthenaPickaxe:Pickaxe_HydroIgnite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_IceRetreat": { + "templateId": "AthenaPickaxe:Pickaxe_IceRetreat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_IchorIncisor": { + "templateId": "AthenaPickaxe:Pickaxe_IchorIncisor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_ID_011_Medieval": { "templateId": "AthenaPickaxe:Pickaxe_ID_011_Medieval", "attributes": { @@ -91280,7 +101208,8 @@ "active": "Particle1", "owned": [ "Particle1", - "Particle2" + "Particle2", + "Particle3" ] } ], @@ -99818,6 +109747,36 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_IndieBucket": { + "templateId": "AthenaPickaxe:Pickaxe_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Inferno": { "templateId": "AthenaPickaxe:Pickaxe_Inferno", "attributes": { @@ -99873,6 +109832,39 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_InstantGravelNoble": { + "templateId": "AthenaPickaxe:Pickaxe_InstantGravelNoble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_IonVial": { + "templateId": "AthenaPickaxe:Pickaxe_IonVial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_IronBlaze": { "templateId": "AthenaPickaxe:Pickaxe_IronBlaze", "attributes": { @@ -99909,6 +109901,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_JoyfulGrin": { + "templateId": "AthenaPickaxe:Pickaxe_JoyfulGrin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_KeyTracker": { "templateId": "AthenaPickaxe:Pickaxe_KeyTracker", "attributes": { @@ -99921,6 +109925,88 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_KnightCatRacket": { + "templateId": "AthenaPickaxe:Pickaxe_KnightCatRacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LastVoiceDive": { + "templateId": "AthenaPickaxe:Pickaxe_LastVoiceDive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LastVoiceSteel": { + "templateId": "AthenaPickaxe:Pickaxe_LastVoiceSteel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LazarusLens": { + "templateId": "AthenaPickaxe:Pickaxe_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Lazuli": { + "templateId": "AthenaPickaxe:Pickaxe_Lazuli", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LethalVae": { + "templateId": "AthenaPickaxe:Pickaxe_LethalVae", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Lettuce": { "templateId": "AthenaPickaxe:Pickaxe_Lettuce", "attributes": { @@ -99934,7 +110020,8 @@ "active": "Particle1", "owned": [ "Particle1", - "Particle2" + "Particle2", + "Particle3" ] } ], @@ -99954,6 +110041,27 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_LexaEarlGrey": { + "templateId": "AthenaPickaxe:Pickaxe_LexaEarlGrey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_LightningDragon": { "templateId": "AthenaPickaxe:Pickaxe_LightningDragon", "attributes": { @@ -99978,6 +110086,28 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_LilSplit": { + "templateId": "AthenaPickaxe:Pickaxe_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_LocalZilla": { "templateId": "AthenaPickaxe:Pickaxe_LocalZilla", "attributes": { @@ -100047,6 +110177,39 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_LucidAzalea": { + "templateId": "AthenaPickaxe:Pickaxe_LucidAzalea", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MadameMoth": { + "templateId": "AthenaPickaxe:Pickaxe_MadameMoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_MagicMeadow": { "templateId": "AthenaPickaxe:Pickaxe_MagicMeadow", "attributes": { @@ -100116,6 +110279,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_MelodyUrchin": { + "templateId": "AthenaPickaxe:Pickaxe_MelodyUrchin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_MercurialStorm": { "templateId": "AthenaPickaxe:Pickaxe_MercurialStorm", "attributes": { @@ -100182,6 +110357,54 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_MillionaireCowgirl": { + "templateId": "AthenaPickaxe:Pickaxe_MillionaireCowgirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MillionaireGem": { + "templateId": "AthenaPickaxe:Pickaxe_MillionaireGem", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MillionaireTuna": { + "templateId": "AthenaPickaxe:Pickaxe_MillionaireTuna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MindPinch": { + "templateId": "AthenaPickaxe:Pickaxe_MindPinch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_MirageHike": { "templateId": "AthenaPickaxe:Pickaxe_MirageHike", "attributes": { @@ -100215,6 +110438,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_MoonShock": { + "templateId": "AthenaPickaxe:Pickaxe_MoonShock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Mouse": { "templateId": "AthenaPickaxe:Pickaxe_Mouse", "attributes": { @@ -100227,6 +110462,51 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_Mummy": { + "templateId": "AthenaPickaxe:Pickaxe_Mummy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MusketSlinger": { + "templateId": "AthenaPickaxe:Pickaxe_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MuteRibbon": { + "templateId": "AthenaPickaxe:Pickaxe_MuteRibbon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Nebula": { "templateId": "AthenaPickaxe:Pickaxe_Nebula", "attributes": { @@ -100314,6 +110594,30 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_OpenEnded": { + "templateId": "AthenaPickaxe:Pickaxe_OpenEnded", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_OrinChai": { + "templateId": "AthenaPickaxe:Pickaxe_OrinChai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_OuterGarment": { "templateId": "AthenaPickaxe:Pickaxe_OuterGarment", "attributes": { @@ -100335,6 +110639,30 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_PalmTree": { + "templateId": "AthenaPickaxe:Pickaxe_PalmTree", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ParrotPen": { + "templateId": "AthenaPickaxe:Pickaxe_ParrotPen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Patches": { "templateId": "AthenaPickaxe:Pickaxe_Patches", "attributes": { @@ -100468,6 +110796,51 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_PirouetteWeld": { + "templateId": "AthenaPickaxe:Pickaxe_PirouetteWeld", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PitGlass": { + "templateId": "AthenaPickaxe:Pickaxe_PitGlass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PizzaParty": { + "templateId": "AthenaPickaxe:Pickaxe_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_PlotTwist": { "templateId": "AthenaPickaxe:Pickaxe_PlotTwist", "attributes": { @@ -100492,6 +110865,132 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_PowerFarmer": { + "templateId": "AthenaPickaxe:Pickaxe_PowerFarmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PowerfulDozen": { + "templateId": "AthenaPickaxe:Pickaxe_PowerfulDozen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PrivateJet": { + "templateId": "AthenaPickaxe:Pickaxe_PrivateJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ProdigyFire": { + "templateId": "AthenaPickaxe:Pickaxe_ProdigyFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ProdigyHaughty": { + "templateId": "AthenaPickaxe:Pickaxe_ProdigyHaughty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ProdigySage": { + "templateId": "AthenaPickaxe:Pickaxe_ProdigySage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PunkDevilVibe": { + "templateId": "AthenaPickaxe:Pickaxe_PunkDevilVibe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_QualityCreek": { + "templateId": "AthenaPickaxe:Pickaxe_QualityCreek", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Quartz": { "templateId": "AthenaPickaxe:Pickaxe_Quartz", "attributes": { @@ -100504,6 +111003,75 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_QuietPeanuts": { + "templateId": "AthenaPickaxe:Pickaxe_QuietPeanuts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RaiderPinkSherbert": { + "templateId": "AthenaPickaxe:Pickaxe_RaiderPinkSherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RankedFaction": { + "templateId": "AthenaPickaxe:Pickaxe_RankedFaction", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RebelClaw": { + "templateId": "AthenaPickaxe:Pickaxe_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RecordScratch": { + "templateId": "AthenaPickaxe:Pickaxe_RecordScratch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_RedPepper": { "templateId": "AthenaPickaxe:Pickaxe_RedPepper", "attributes": { @@ -100528,6 +111096,30 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_RhombCamo": { + "templateId": "AthenaPickaxe:Pickaxe_RhombCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_RippedHarvester": { "templateId": "AthenaPickaxe:Pickaxe_RippedHarvester", "attributes": { @@ -100549,6 +111141,30 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_RollerBlade": { + "templateId": "AthenaPickaxe:Pickaxe_RollerBlade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RoosterMeltMouse": { + "templateId": "AthenaPickaxe:Pickaxe_RoosterMeltMouse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_RoseDust": { "templateId": "AthenaPickaxe:Pickaxe_RoseDust", "attributes": { @@ -100573,6 +111189,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_RoyalDusk": { + "templateId": "AthenaPickaxe:Pickaxe_RoyalDusk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Ruins": { "templateId": "AthenaPickaxe:Pickaxe_Ruins", "attributes": { @@ -100630,6 +111258,27 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_ScareyBeary": { + "templateId": "AthenaPickaxe:Pickaxe_ScareyBeary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_ScarletBionic": { "templateId": "AthenaPickaxe:Pickaxe_ScarletBionic", "attributes": { @@ -100642,6 +111291,43 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_ScorpionZero": { + "templateId": "AthenaPickaxe:Pickaxe_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SerpentCoil": { + "templateId": "AthenaPickaxe:Pickaxe_SerpentCoil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_SharpFang": { "templateId": "AthenaPickaxe:Pickaxe_SharpFang", "attributes": { @@ -100664,6 +111350,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_SharpMagnet": { + "templateId": "AthenaPickaxe:Pickaxe_SharpMagnet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_SharpSilver": { "templateId": "AthenaPickaxe:Pickaxe_SharpSilver", "attributes": { @@ -100676,6 +111374,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_ShiitakeShaolin_Rouge": { + "templateId": "AthenaPickaxe:Pickaxe_ShiitakeShaolin_Rouge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_ShinyStar": { "templateId": "AthenaPickaxe:Pickaxe_ShinyStar", "attributes": { @@ -100760,6 +111470,115 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_SkeleProbe": { + "templateId": "AthenaPickaxe:Pickaxe_SkeleProbe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SkeletonHunterFNCS": { + "templateId": "AthenaPickaxe:Pickaxe_SkeletonHunterFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SkippingClouds": { + "templateId": "AthenaPickaxe:Pickaxe_SkippingClouds", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SkullPunkBlade": { + "templateId": "AthenaPickaxe:Pickaxe_SkullPunkBlade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SlicedBread": { + "templateId": "AthenaPickaxe:Pickaxe_SlicedBread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SmartHyena": { + "templateId": "AthenaPickaxe:Pickaxe_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SnakeCrest": { + "templateId": "AthenaPickaxe:Pickaxe_SnakeCrest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SnowKnight": { + "templateId": "AthenaPickaxe:Pickaxe_SnowKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_SnowSoldierFashion": { "templateId": "AthenaPickaxe:Pickaxe_SnowSoldierFashion", "attributes": { @@ -100772,6 +111591,30 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_SolarTheory": { + "templateId": "AthenaPickaxe:Pickaxe_SolarTheory", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SparkArcher": { + "templateId": "AthenaPickaxe:Pickaxe_SparkArcher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Sparrow": { "templateId": "AthenaPickaxe:Pickaxe_Sparrow", "attributes": { @@ -100794,6 +111637,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_SpeedDial": { + "templateId": "AthenaPickaxe:Pickaxe_SpeedDial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_SpookyNeonBlue": { "templateId": "AthenaPickaxe:Pickaxe_SpookyNeonBlue", "attributes": { @@ -100866,6 +111721,63 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_StarStray": { + "templateId": "AthenaPickaxe:Pickaxe_StarStray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_StaticShades": { + "templateId": "AthenaPickaxe:Pickaxe_StaticShades", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SteamPower": { + "templateId": "AthenaPickaxe:Pickaxe_SteamPower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_StrontiumSpark": { + "templateId": "AthenaPickaxe:Pickaxe_StrontiumSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_SunbeamQuest": { "templateId": "AthenaPickaxe:Pickaxe_SunbeamQuest", "attributes": { @@ -100902,6 +111814,51 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_SunShine": { + "templateId": "AthenaPickaxe:Pickaxe_SunShine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SuperNovaTaro": { + "templateId": "AthenaPickaxe:Pickaxe_SuperNovaTaro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_TalonHime": { + "templateId": "AthenaPickaxe:Pickaxe_TalonHime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_TaxiUpgraded_Vista": { "templateId": "AthenaPickaxe:Pickaxe_TaxiUpgraded_Vista", "attributes": { @@ -100968,6 +111925,30 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_TiltedParrot": { + "templateId": "AthenaPickaxe:Pickaxe_TiltedParrot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_TimeInterval": { + "templateId": "AthenaPickaxe:Pickaxe_TimeInterval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Titanium": { "templateId": "AthenaPickaxe:Pickaxe_Titanium", "attributes": { @@ -100989,6 +111970,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_TracePaper": { + "templateId": "AthenaPickaxe:Pickaxe_TracePaper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Troops": { "templateId": "AthenaPickaxe:Pickaxe_Troops", "attributes": { @@ -101013,6 +112006,51 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_TungStan": { + "templateId": "AthenaPickaxe:Pickaxe_TungStan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_UndergroundRebel": { + "templateId": "AthenaPickaxe:Pickaxe_UndergroundRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_VectorSpark": { + "templateId": "AthenaPickaxe:Pickaxe_VectorSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_Veiled": { "templateId": "AthenaPickaxe:Pickaxe_Veiled", "attributes": { @@ -101079,6 +112117,48 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_VitalInventor": { + "templateId": "AthenaPickaxe:Pickaxe_VitalInventor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_VitalInventorBlock": { + "templateId": "AthenaPickaxe:Pickaxe_VitalInventorBlock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_VitalPsych": { "templateId": "AthenaPickaxe:Pickaxe_VitalPsych", "attributes": { @@ -101100,6 +112180,63 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_VoidRedemption": { + "templateId": "AthenaPickaxe:Pickaxe_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_WaterMolecules": { + "templateId": "AthenaPickaxe:Pickaxe_WaterMolecules", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_WingedMedieval": { + "templateId": "AthenaPickaxe:Pickaxe_WingedMedieval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Winterfest1": { + "templateId": "AthenaPickaxe:Pickaxe_Winterfest1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_WinterHunterFNCS": { "templateId": "AthenaPickaxe:Pickaxe_WinterHunterFNCS", "attributes": { @@ -101112,6 +112249,18 @@ }, "quantity": 1 }, + "AthenaPickaxe:Pickaxe_ZebraScramble_Bacon": { + "templateId": "AthenaPickaxe:Pickaxe_ZebraScramble_Bacon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaPickaxe:Pickaxe_ZirconSweep": { "templateId": "AthenaPickaxe:Pickaxe_ZirconSweep", "attributes": { @@ -106343,6 +117492,18 @@ }, "quantity": 1 }, + "AthenaDance:Spray_14DaysOfSummer": { + "templateId": "AthenaDance:Spray_14DaysOfSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_5thBirthday": { "templateId": "AthenaDance:Spray_5thBirthday", "attributes": { @@ -106355,6 +117516,18 @@ }, "quantity": 1 }, + "AthenaDance:Spray_6thBirthday": { + "templateId": "AthenaDance:Spray_6thBirthday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_AgentSherbert_Green": { "templateId": "AthenaDance:Spray_AgentSherbert_Green", "attributes": { @@ -106475,6 +117648,30 @@ }, "quantity": 1 }, + "AthenaDance:Spray_BangalBasher_Face": { + "templateId": "AthenaDance:Spray_BangalBasher_Face", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BangalBasher_Royale": { + "templateId": "AthenaDance:Spray_BangalBasher_Royale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_BasilStrong_Pickaxe": { "templateId": "AthenaDance:Spray_BasilStrong_Pickaxe", "attributes": { @@ -106511,6 +117708,54 @@ }, "quantity": 1 }, + "AthenaDance:Spray_BlazerVeil": { + "templateId": "AthenaDance:Spray_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BlazerVeil2": { + "templateId": "AthenaDance:Spray_BlazerVeil2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BrawnyBass": { + "templateId": "AthenaDance:Spray_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BrawnyBass2": { + "templateId": "AthenaDance:Spray_BrawnyBass2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_BuffCatCruise": { "templateId": "AthenaDance:Spray_BuffCatCruise", "attributes": { @@ -106547,6 +117792,18 @@ }, "quantity": 1 }, + "AthenaDance:Spray_CeremonialGuard_Portrait": { + "templateId": "AthenaDance:Spray_CeremonialGuard_Portrait", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_Chainmail_Bat": { "templateId": "AthenaDance:Spray_Chainmail_Bat", "attributes": { @@ -106847,6 +118104,30 @@ }, "quantity": 1 }, + "AthenaDance:Spray_DiamondHeart_Portrait": { + "templateId": "AthenaDance:Spray_DiamondHeart_Portrait", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_DiscordWeekly": { + "templateId": "AthenaDance:Spray_DiscordWeekly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_Dizzy_Drip": { "templateId": "AthenaDance:Spray_Dizzy_Drip", "attributes": { @@ -106907,6 +118188,30 @@ }, "quantity": 1 }, + "AthenaDance:Spray_Event_DD": { + "templateId": "AthenaDance:Spray_Event_DD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Event_Y": { + "templateId": "AthenaDance:Spray_Event_Y", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_Evie_CipherReward": { "templateId": "AthenaDance:Spray_Evie_CipherReward", "attributes": { @@ -107003,6 +118308,30 @@ }, "quantity": 1 }, + "AthenaDance:Spray_Fortnitemares_Quest": { + "templateId": "AthenaDance:Spray_Fortnitemares_Quest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_FortniteStories_Triggerfish": { + "templateId": "AthenaDance:Spray_FortniteStories_Triggerfish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_FunBreak": { "templateId": "AthenaDance:Spray_FunBreak", "attributes": { @@ -107015,6 +118344,30 @@ }, "quantity": 1 }, + "AthenaDance:Spray_GalaxyCupReward": { + "templateId": "AthenaDance:Spray_GalaxyCupReward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_GalaxyLevel": { + "templateId": "AthenaDance:Spray_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_GermanCommunityBattle": { "templateId": "AthenaDance:Spray_GermanCommunityBattle", "attributes": { @@ -107075,6 +118428,42 @@ }, "quantity": 1 }, + "AthenaDance:Spray_HornedJudgement2": { + "templateId": "AthenaDance:Spray_HornedJudgement2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_IndieBucket": { + "templateId": "AthenaDance:Spray_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_IndieBucket2": { + "templateId": "AthenaDance:Spray_IndieBucket2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_Inferno": { "templateId": "AthenaDance:Spray_Inferno", "attributes": { @@ -107123,6 +118512,42 @@ }, "quantity": 1 }, + "AthenaDance:Spray_IWD": { + "templateId": "AthenaDance:Spray_IWD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_JoyfulGrin": { + "templateId": "AthenaDance:Spray_JoyfulGrin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_JoyfulGrin_Initial": { + "templateId": "AthenaDance:Spray_JoyfulGrin_Initial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_JumpsuitMasks_1": { "templateId": "AthenaDance:Spray_JumpsuitMasks_1", "attributes": { @@ -107555,6 +118980,54 @@ }, "quantity": 1 }, + "AthenaDance:Spray_LastVoice": { + "templateId": "AthenaDance:Spray_LastVoice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_LazarusLens": { + "templateId": "AthenaDance:Spray_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_LazarusLens2": { + "templateId": "AthenaDance:Spray_LazarusLens2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Leaderboard": { + "templateId": "AthenaDance:Spray_Leaderboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_LettuceGaming": { "templateId": "AthenaDance:Spray_LettuceGaming", "attributes": { @@ -107567,6 +119040,30 @@ }, "quantity": 1 }, + "AthenaDance:Spray_LilSplit2": { + "templateId": "AthenaDance:Spray_LilSplit2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_LilSplit_Extra": { + "templateId": "AthenaDance:Spray_LilSplit_Extra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_LocalZilla_Logo": { "templateId": "AthenaDance:Spray_LocalZilla_Logo", "attributes": { @@ -107627,6 +119124,30 @@ }, "quantity": 1 }, + "AthenaDance:Spray_MadameMoth_Portrait": { + "templateId": "AthenaDance:Spray_MadameMoth_Portrait", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_MadameMoth_Symbol": { + "templateId": "AthenaDance:Spray_MadameMoth_Symbol", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_MagicMeadow": { "templateId": "AthenaDance:Spray_MagicMeadow", "attributes": { @@ -107711,6 +119232,30 @@ }, "quantity": 1 }, + "AthenaDance:Spray_MusketSlinger": { + "templateId": "AthenaDance:Spray_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_MusketSlinger2": { + "templateId": "AthenaDance:Spray_MusketSlinger2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_NarrativeQuest": { "templateId": "AthenaDance:Spray_NarrativeQuest", "attributes": { @@ -107783,6 +119328,54 @@ }, "quantity": 1 }, + "AthenaDance:Spray_PizzaParty": { + "templateId": "AthenaDance:Spray_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_PizzaParty2": { + "templateId": "AthenaDance:Spray_PizzaParty2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_PowerfulDozen": { + "templateId": "AthenaDance:Spray_PowerfulDozen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_PowerfulDozen_Initial": { + "templateId": "AthenaDance:Spray_PowerfulDozen_Initial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_Project_Maze": { "templateId": "AthenaDance:Spray_Project_Maze", "attributes": { @@ -107807,6 +119400,138 @@ }, "quantity": 1 }, + "AthenaDance:Spray_QualityCreek": { + "templateId": "AthenaDance:Spray_QualityCreek", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_QualityCreek_Initial": { + "templateId": "AthenaDance:Spray_QualityCreek_Initial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_QuietPeanuts": { + "templateId": "AthenaDance:Spray_QuietPeanuts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_QuietPeanuts_Initial": { + "templateId": "AthenaDance:Spray_QuietPeanuts_Initial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Ranked": { + "templateId": "AthenaDance:Spray_Ranked", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Ranked2": { + "templateId": "AthenaDance:Spray_Ranked2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Ranked3": { + "templateId": "AthenaDance:Spray_Ranked3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Ranked4": { + "templateId": "AthenaDance:Spray_Ranked4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_RebelClaw": { + "templateId": "AthenaDance:Spray_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_RebelClaw2": { + "templateId": "AthenaDance:Spray_RebelClaw2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_RebootRalley": { + "templateId": "AthenaDance:Spray_RebootRalley", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_RedOasis": { "templateId": "AthenaDance:Spray_RedOasis", "attributes": { @@ -107831,6 +119556,18 @@ }, "quantity": 1 }, + "AthenaDance:Spray_ReferAFriend": { + "templateId": "AthenaDance:Spray_ReferAFriend", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_ReferFriend": { "templateId": "AthenaDance:Spray_ReferFriend", "attributes": { @@ -107843,6 +119580,18 @@ }, "quantity": 1 }, + "AthenaDance:Spray_Rejoice": { + "templateId": "AthenaDance:Spray_Rejoice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_RippedHarvester": { "templateId": "AthenaDance:Spray_RippedHarvester", "attributes": { @@ -107903,6 +119652,102 @@ }, "quantity": 1 }, + "AthenaDance:Spray_S25_FNCSDrops": { + "templateId": "AthenaDance:Spray_S25_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S26_FNCSDrops": { + "templateId": "AthenaDance:Spray_S26_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S26_Ranked": { + "templateId": "AthenaDance:Spray_S26_Ranked", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S26_Ranked2": { + "templateId": "AthenaDance:Spray_S26_Ranked2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S26_Ranked3": { + "templateId": "AthenaDance:Spray_S26_Ranked3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S27_Ranked_HornedJudgment": { + "templateId": "AthenaDance:Spray_S27_Ranked_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S27_Ranked_RebelClaw": { + "templateId": "AthenaDance:Spray_S27_Ranked_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S27_Ranked_ScaryBeary": { + "templateId": "AthenaDance:Spray_S27_Ranked_ScaryBeary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_ScholasticTournament_Spray1": { "templateId": "AthenaDance:Spray_ScholasticTournament_Spray1", "attributes": { @@ -107939,6 +119784,18 @@ }, "quantity": 1 }, + "AthenaDance:Spray_ScorpionZero": { + "templateId": "AthenaDance:Spray_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_SharpFang_Sipping": { "templateId": "AthenaDance:Spray_SharpFang_Sipping", "attributes": { @@ -108023,6 +119880,30 @@ }, "quantity": 1 }, + "AthenaDance:Spray_SmartHyena": { + "templateId": "AthenaDance:Spray_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_SnowKnight_Helm": { + "templateId": "AthenaDance:Spray_SnowKnight_Helm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_SpringFling_2023": { "templateId": "AthenaDance:Spray_SpringFling_2023", "attributes": { @@ -108035,6 +119916,18 @@ }, "quantity": 1 }, + "AthenaDance:Spray_StarStrayFN": { + "templateId": "AthenaDance:Spray_StarStrayFN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_StWHordeModeMVP_Lvl4": { "templateId": "AthenaDance:Spray_StWHordeModeMVP_Lvl4", "attributes": { @@ -108131,6 +120024,66 @@ }, "quantity": 1 }, + "AthenaDance:Spray_Tournament_YB": { + "templateId": "AthenaDance:Spray_Tournament_YB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_UndergroundLogo": { + "templateId": "AthenaDance:Spray_UndergroundLogo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_UndergroundRebel_Griffiti": { + "templateId": "AthenaDance:Spray_UndergroundRebel_Griffiti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_UndergroundRebel_Wanted": { + "templateId": "AthenaDance:Spray_UndergroundRebel_Wanted", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_UndergroundRebel_WantedPeely": { + "templateId": "AthenaDance:Spray_UndergroundRebel_WantedPeely", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_VaultBreakers_Leaderboard": { "templateId": "AthenaDance:Spray_VaultBreakers_Leaderboard", "attributes": { @@ -108215,6 +120168,30 @@ }, "quantity": 1 }, + "AthenaDance:Spray_VoidRedemption_Art": { + "templateId": "AthenaDance:Spray_VoidRedemption_Art", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_VoidRedemption_Portrait": { + "templateId": "AthenaDance:Spray_VoidRedemption_Portrait", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_Winter2022_CreativeQuest_2": { "templateId": "AthenaDance:Spray_Winter2022_CreativeQuest_2", "attributes": { @@ -108275,6 +120252,18 @@ }, "quantity": 1 }, + "AthenaDance:Spray_ZebraScramble": { + "templateId": "AthenaDance:Spray_ZebraScramble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaDance:Spray_ZirconSweep": { "templateId": "AthenaDance:Spray_ZirconSweep", "attributes": { @@ -109689,6 +121678,18 @@ }, "quantity": 1 }, + "AthenaSkyDiveContrail:Trails_ID_120_EnergyNet_Proto": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_120_EnergyNet_Proto", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaSkyDiveContrail:Trails_ID_121_DarkAndLight": { "templateId": "AthenaSkyDiveContrail:Trails_ID_121_DarkAndLight", "attributes": { @@ -110211,6 +122212,45 @@ }, "quantity": 1 }, + "AthenaGlider:Umbrella_RankedFaction": { + "templateId": "AthenaGlider:Umbrella_RankedFaction", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6", + "Particle7", + "Particle8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_RankedRemixCarrot": { + "templateId": "AthenaGlider:Umbrella_RankedRemixCarrot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Umbrella_Season_04": { "templateId": "AthenaGlider:Umbrella_Season_04", "attributes": { @@ -110475,6 +122515,42 @@ }, "quantity": 1 }, + "AthenaGlider:Umbrella_Season_26": { + "templateId": "AthenaGlider:Umbrella_Season_26", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_27": { + "templateId": "AthenaGlider:Umbrella_Season_27", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_28": { + "templateId": "AthenaGlider:Umbrella_Season_28", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaGlider:Umbrella_Silver": { "templateId": "AthenaGlider:Umbrella_Silver", "attributes": { @@ -116655,6 +128731,42 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_BengalBasher": { + "templateId": "AthenaItemWrap:Wrap_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BirdNest": { + "templateId": "AthenaItemWrap:Wrap_BirdNest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BiruFang": { + "templateId": "AthenaItemWrap:Wrap_BiruFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_Bites": { "templateId": "AthenaItemWrap:Wrap_Bites", "attributes": { @@ -116667,6 +128779,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_BlazerVeil": { + "templateId": "AthenaItemWrap:Wrap_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_BlueGlaze": { "templateId": "AthenaItemWrap:Wrap_BlueGlaze", "attributes": { @@ -116691,6 +128815,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_BrawnyBass": { + "templateId": "AthenaItemWrap:Wrap_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_BrightFlames": { "templateId": "AthenaItemWrap:Wrap_BrightFlames", "attributes": { @@ -116727,6 +128863,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_BunnyPurple_Festive": { + "templateId": "AthenaItemWrap:Wrap_BunnyPurple_Festive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_Calavera": { "templateId": "AthenaItemWrap:Wrap_Calavera", "attributes": { @@ -116763,6 +128911,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_CeremonialGuard": { + "templateId": "AthenaItemWrap:Wrap_CeremonialGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_Chainmail": { "templateId": "AthenaItemWrap:Wrap_Chainmail", "attributes": { @@ -116787,6 +128947,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_CheetahBow": { + "templateId": "AthenaItemWrap:Wrap_CheetahBow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_ChillCat": { "templateId": "AthenaItemWrap:Wrap_ChillCat", "attributes": { @@ -117063,6 +129235,30 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_Comp25": { + "templateId": "AthenaItemWrap:Wrap_Comp25", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp26": { + "templateId": "AthenaItemWrap:Wrap_Comp26", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_Conscience": { "templateId": "AthenaItemWrap:Wrap_Conscience", "attributes": { @@ -117075,6 +129271,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_CoyoTear": { + "templateId": "AthenaItemWrap:Wrap_CoyoTear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_CoyoteTrail": { "templateId": "AthenaItemWrap:Wrap_CoyoteTrail", "attributes": { @@ -117123,6 +129331,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_DapperPunch": { + "templateId": "AthenaItemWrap:Wrap_DapperPunch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_DarkAzeala": { "templateId": "AthenaItemWrap:Wrap_DarkAzeala", "attributes": { @@ -117195,6 +129415,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_DiamondHeart": { + "templateId": "AthenaItemWrap:Wrap_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_DiscordQuest": { "templateId": "AthenaItemWrap:Wrap_DiscordQuest", "attributes": { @@ -117219,6 +129451,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_EctoCat": { + "templateId": "AthenaItemWrap:Wrap_EctoCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_EmberRae": { "templateId": "AthenaItemWrap:Wrap_EmberRae", "attributes": { @@ -117231,6 +129475,30 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_Ephemeral": { + "templateId": "AthenaItemWrap:Wrap_Ephemeral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_FolkEvening": { + "templateId": "AthenaItemWrap:Wrap_FolkEvening", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_GalaxyKnight": { "templateId": "AthenaItemWrap:Wrap_GalaxyKnight", "attributes": { @@ -117243,6 +129511,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_GoodMood": { + "templateId": "AthenaItemWrap:Wrap_GoodMood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_GrandSchemeA": { "templateId": "AthenaItemWrap:Wrap_GrandSchemeA", "attributes": { @@ -117375,6 +129655,30 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_HornedJudgment": { + "templateId": "AthenaItemWrap:Wrap_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_IndieBucket": { + "templateId": "AthenaItemWrap:Wrap_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_Inferno": { "templateId": "AthenaItemWrap:Wrap_Inferno", "attributes": { @@ -117387,6 +129691,54 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_InstantGravel": { + "templateId": "AthenaItemWrap:Wrap_InstantGravel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Intertwine": { + "templateId": "AthenaItemWrap:Wrap_Intertwine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_IonVial": { + "templateId": "AthenaItemWrap:Wrap_IonVial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_KnightCatRacket": { + "templateId": "AthenaItemWrap:Wrap_KnightCatRacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_LanternGlass": { "templateId": "AthenaItemWrap:Wrap_LanternGlass", "attributes": { @@ -117399,6 +129751,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_LazarusLens": { + "templateId": "AthenaItemWrap:Wrap_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_Lettuce": { "templateId": "AthenaItemWrap:Wrap_Lettuce", "attributes": { @@ -117423,6 +129787,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_LilSplit_SprinklesFudge": { + "templateId": "AthenaItemWrap:Wrap_LilSplit_SprinklesFudge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_LocalZilla_Blue": { "templateId": "AthenaItemWrap:Wrap_LocalZilla_Blue", "attributes": { @@ -117447,6 +129823,78 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_LowPolyBeach": { + "templateId": "AthenaItemWrap:Wrap_LowPolyBeach", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_LucidAzalea": { + "templateId": "AthenaItemWrap:Wrap_LucidAzalea", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MadameMothA": { + "templateId": "AthenaItemWrap:Wrap_MadameMothA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MadameMothB": { + "templateId": "AthenaItemWrap:Wrap_MadameMothB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MadameMothC": { + "templateId": "AthenaItemWrap:Wrap_MadameMothC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MadameMothD": { + "templateId": "AthenaItemWrap:Wrap_MadameMothD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_MagicMeadow": { "templateId": "AthenaItemWrap:Wrap_MagicMeadow", "attributes": { @@ -117471,6 +129919,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_MelodyUrchin": { + "templateId": "AthenaItemWrap:Wrap_MelodyUrchin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_MetalScout": { "templateId": "AthenaItemWrap:Wrap_MetalScout", "attributes": { @@ -117531,6 +129991,30 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_Mummy": { + "templateId": "AthenaItemWrap:Wrap_Mummy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MusketSlinger": { + "templateId": "AthenaItemWrap:Wrap_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_NebulaV2": { "templateId": "AthenaItemWrap:Wrap_NebulaV2", "attributes": { @@ -117591,6 +130075,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_OpenEnded": { + "templateId": "AthenaItemWrap:Wrap_OpenEnded", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_Pencil": { "templateId": "AthenaItemWrap:Wrap_Pencil", "attributes": { @@ -117615,6 +130111,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_PizzaParty": { + "templateId": "AthenaItemWrap:Wrap_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_PlasmaCore": { "templateId": "AthenaItemWrap:Wrap_PlasmaCore", "attributes": { @@ -117651,6 +130159,90 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_ProdigyFire": { + "templateId": "AthenaItemWrap:Wrap_ProdigyFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ProdigyHaughty": { + "templateId": "AthenaItemWrap:Wrap_ProdigyHaughty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ProdigySage": { + "templateId": "AthenaItemWrap:Wrap_ProdigySage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_PunkDevilVibe": { + "templateId": "AthenaItemWrap:Wrap_PunkDevilVibe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RaiderPink_Sherbet": { + "templateId": "AthenaItemWrap:Wrap_RaiderPink_Sherbet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RainbowClouds": { + "templateId": "AthenaItemWrap:Wrap_RainbowClouds", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RebelClaw": { + "templateId": "AthenaItemWrap:Wrap_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_RedPepper": { "templateId": "AthenaItemWrap:Wrap_RedPepper", "attributes": { @@ -117687,6 +130279,54 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_RhombCamoA": { + "templateId": "AthenaItemWrap:Wrap_RhombCamoA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RhombCamoB": { + "templateId": "AthenaItemWrap:Wrap_RhombCamoB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RhombCamoC": { + "templateId": "AthenaItemWrap:Wrap_RhombCamoC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RhombCamoD": { + "templateId": "AthenaItemWrap:Wrap_RhombCamoD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_RippedHarvester": { "templateId": "AthenaItemWrap:Wrap_RippedHarvester", "attributes": { @@ -117699,6 +130339,30 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_RoosterMelt": { + "templateId": "AthenaItemWrap:Wrap_RoosterMelt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RoyalDusk": { + "templateId": "AthenaItemWrap:Wrap_RoyalDusk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_SailorSquadLeaderKoi": { "templateId": "AthenaItemWrap:Wrap_SailorSquadLeaderKoi", "attributes": { @@ -117723,6 +130387,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_ScorpionZero": { + "templateId": "AthenaItemWrap:Wrap_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_SeventiesDen": { "templateId": "AthenaItemWrap:Wrap_SeventiesDen", "attributes": { @@ -117747,6 +130423,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_ShiitakeShaolin_Rouge": { + "templateId": "AthenaItemWrap:Wrap_ShiitakeShaolin_Rouge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_ShinyStar": { "templateId": "AthenaItemWrap:Wrap_ShinyStar", "attributes": { @@ -117795,6 +130483,66 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_SkullPunkBlade": { + "templateId": "AthenaItemWrap:Wrap_SkullPunkBlade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SlicedBread": { + "templateId": "AthenaItemWrap:Wrap_SlicedBread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Slipstream": { + "templateId": "AthenaItemWrap:Wrap_Slipstream", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SmartHyena": { + "templateId": "AthenaItemWrap:Wrap_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SnowKnight": { + "templateId": "AthenaItemWrap:Wrap_SnowKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_SnowSoldierFashion": { "templateId": "AthenaItemWrap:Wrap_SnowSoldierFashion", "attributes": { @@ -117819,6 +130567,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_SpeedDial": { + "templateId": "AthenaItemWrap:Wrap_SpeedDial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_SquareCells": { "templateId": "AthenaItemWrap:Wrap_SquareCells", "attributes": { @@ -117831,6 +130591,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_StarStray_Galaxy": { + "templateId": "AthenaItemWrap:Wrap_StarStray_Galaxy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_StreetFashionEclipse": { "templateId": "AthenaItemWrap:Wrap_StreetFashionEclipse", "attributes": { @@ -117843,6 +130615,42 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_StreetFashion_Casual": { + "templateId": "AthenaItemWrap:Wrap_StreetFashion_Casual", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Summer23_A": { + "templateId": "AthenaItemWrap:Wrap_Summer23_A", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Summer23_B": { + "templateId": "AthenaItemWrap:Wrap_Summer23_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_SunbeamQuest": { "templateId": "AthenaItemWrap:Wrap_SunbeamQuest", "attributes": { @@ -117879,6 +130687,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_SwampFish": { + "templateId": "AthenaItemWrap:Wrap_SwampFish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_TearScar": { "templateId": "AthenaItemWrap:Wrap_TearScar", "attributes": { @@ -117939,6 +130759,18 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_UndergroundRebel": { + "templateId": "AthenaItemWrap:Wrap_UndergroundRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_Veiled_Glitch": { "templateId": "AthenaItemWrap:Wrap_Veiled_Glitch", "attributes": { @@ -117999,6 +130831,42 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_VoidRedemption": { + "templateId": "AthenaItemWrap:Wrap_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_WingedMedieval": { + "templateId": "AthenaItemWrap:Wrap_WingedMedieval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Winterfest23": { + "templateId": "AthenaItemWrap:Wrap_Winterfest23", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_Winter_Pal": { "templateId": "AthenaItemWrap:Wrap_Winter_Pal", "attributes": { @@ -118011,6 +130879,54 @@ }, "quantity": 1 }, + "AthenaItemWrap:Wrap_WomensDay23": { + "templateId": "AthenaItemWrap:Wrap_WomensDay23", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_WoodsFestive": { + "templateId": "AthenaItemWrap:Wrap_WoodsFestive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Zebra": { + "templateId": "AthenaItemWrap:Wrap_Zebra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ZebraScramble": { + "templateId": "AthenaItemWrap:Wrap_ZebraScramble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, "AthenaItemWrap:Wrap_ZirconSweep": { "templateId": "AthenaItemWrap:Wrap_ZirconSweep", "attributes": { @@ -118812,23 +131728,2788 @@ "completion_impossible_poi_of_permanence_ch3": 9001 }, "quantity": 1 + }, + "Quest:quest_c4_discover_landmarks": { + "templateId": "Quest:quest_c4_discover_landmarks", + "attributes": { + "creation_time": "2018-04-30T00:00:00.000Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-04-30T00:00:00.000Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_quest_c4_discover_landmarks_iodrill": 1, + "completion_quest_c4_discover_landmarks_isolatedknighttower": 1, + "completion_quest_c4_discover_landmarks_cuddletrack": 1, + "completion_quest_c4_discover_landmarks_slapstation": 3, + "completion_quest_c4_discover_landmarks_hiddenruin": 1, + "completion_quest_c4_discover_landmarks_guardedvillage": 1, + "completion_quest_c4_discover_landmarks_smallfarm": 1, + "completion_quest_c4_discover_landmarks_islandhomes": 1, + "completion_quest_c4_discover_landmarks_trailerpark": 1, + "completion_quest_c4_discover_landmarks_smallfarm2": 1, + "completion_quest_c4_discover_landmarks_hillhouse": 1, + "completion_quest_c4_discover_landmarks_amberforest": 1, + "completion_quest_c4_discover_landmarks_coastaltower": 1, + "completion_quest_c4_discover_landmarks_treefragment": 1, + "completion_quest_c4_discover_landmarks_smallquarrydock": 1, + "completion_quest_c4_discover_landmarks_islandtower": 1, + "completion_quest_c4_discover_landmarks_blacksmithspring": 1, + "completion_quest_c4_discover_landmarks_castletower1": 1, + "completion_quest_c4_discover_landmarks_castletower2": 1, + "completion_quest_c4_discover_landmarks_riftgatetower": 1, + "completion_quest_c4_discover_landmarks_village": 1, + "completion_quest_c4_discover_landmarks_battlements": 1, + "completion_quest_c4_discover_landmarks_icecaverns": 1, + "completion_quest_c4_discover_landmarks_denseforest": 1, + "completion_quest_c4_discover_landmarks_windycanyon": 1, + "completion_quest_c4_discover_landmarks_frozenfrog": 1, + "completion_quest_c4_discover_landmarks_frozenwaterfall": 1, + "completion_quest_c4_discover_landmarks_bigicelake": 1, + "completion_quest_c4_discover_landmarks_snowshelter": 1, + "completion_quest_c4_discover_landmarks_buriedvillage": 1, + "completion_quest_c4_discover_landmarks_templeoutpost1": 1, + "completion_quest_c4_discover_landmarks_templeoutpost2": 1, + "completion_quest_c4_discover_landmarks_templeoutpost3": 1, + "completion_quest_c4_discover_landmarks_templeoutpost4": 1, + "completion_quest_c4_discover_landmarks_coastalcontainers": 1, + "completion_quest_c4_discover_landmarks_fueldocks": 1, + "completion_quest_c4_discover_landmarks_mountainsummit": 1, + "completion_quest_c4_discover_landmarks_fishyiceberg": 1, + "completion_quest_c4_discover_landmarks_eyelake": 1, + "completion_quest_c4_discover_landmarks_tinytown": 1, + "completion_quest_c4_discover_landmarks_southernisle": 1, + "completion_quest_c4_discover_landmarks_coastalgas": 1, + "completion_quest_c4_discover_landmarks_knightfuel": 1, + "completion_quest_c4_discover_landmarks_towerpoint": 1, + "completion_quest_c4_discover_landmarks_greengas": 1, + "completion_quest_c4_discover_landmarks_mansion": 1, + "completion_quest_c4_discover_landmarks_icebarge": 1, + "completion_quest_c4_discover_landmarks_crackshotscabin": 1, + "completion_quest_c4_discover_landmarks_windpagoda": 1, + "completion_quest_c4_discover_landmarks_thunderpagoda": 1, + "completion_quest_c4_discover_landmarks_firepagoda": 1, + "completion_quest_c4_discover_landmarks_lighthousewest": 1, + "completion_quest_c4_discover_landmarks_lighthouseeast": 1, + "completion_quest_c4_discover_landmarks_neonbaybridge": 1, + "completion_quest_c4_discover_landmarks_dojovillage": 1, + "completion_quest_c4_discover_landmarks_bambooduelingring": 1, + "completion_quest_c4_discover_landmarks_cherryduelingring": 1, + "completion_quest_c4_discover_landmarks_collabduelingring": 1, + "completion_quest_c4_discover_landmarks_bambooboulders": 1, + "completion_quest_c4_discover_landmarks_windchimes": 1, + "completion_quest_c4_discover_landmarks_cedarduelingring": 1, + "completion_quest_c4_discover_landmarks_genshingas": 1, + "completion_quest_c4_discover_landmarks_muddymounds": 1, + "completion_quest_c4_discover_landmarks_driftcartrack": 1, + "completion_quest_c4_discover_landmarks_lighthousesouth": 1, + "completion_quest_c4_discover_landmarks_bambooisland": 1, + "completion_quest_c4_discover_landmarks_cliffthemountain": 1, + "completion_quest_c4_discover_landmarks_boat": 1, + "completion_quest_c4_discover_landmarks_kazecanyon": 1, + "completion_quest_c4_discover_landmarks_bamboopond": 1, + "completion_quest_c4_discover_landmarks_loggingcamp": 1, + "completion_quest_c4_discover_landmarks_smallisland": 1, + "completion_quest_c4_discover_landmarks_beachduelingring": 1, + "completion_quest_c4_discover_landmarks_bamboolake": 1, + "completion_quest_c4_discover_landmarks_clearradiusbasement": 1, + "completion_quest_c4_discover_landmarks_amanastones2": 1, + "completion_quest_c4_discover_landmarks_amanastones3": 1, + "completion_quest_c4_discover_landmarks_jungletemplenorth": 1, + "completion_quest_c4_discover_landmarks_hiddentemple": 1, + "completion_quest_c4_discover_landmarks_jungletemplesouth": 1, + "completion_quest_c4_discover_landmarks_theapparatus": 1, + "completion_quest_c4_discover_landmarks_cargocrash": 1, + "completion_quest_c4_discover_landmarks_kapokcove": 1, + "completion_quest_c4_discover_landmarks_lagoon": 1, + "completion_quest_c4_discover_landmarks_squadhq": 1, + "completion_quest_c4_discover_landmarks_innersanctum": 1, + "completion_impossible_landmark_of_permanence_ch4": 9001 + }, + "quantity": 1 + }, + "Quest:quest_c4_discover_namedlocations": { + "templateId": "Quest:quest_c4_discover_namedlocations", + "attributes": { + "creation_time": "2018-04-30T00:00:00.000Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-04-30T00:00:00.000Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_visit_location_ch4_industrialtown": 1, + "completion_quest_c4_discover_namedlocations_splittown": 1, + "completion_quest_c4_discover_namedlocations_farm": 1, + "completion_quest_c4_discover_namedlocations_fortaniumquarry": 1, + "completion_quest_c4_discover_namedlocations_medievaltown": 1, + "completion_quest_c4_discover_namedlocations_lightcastle": 1, + "completion_quest_c4_discover_namedlocations_realityfortress": 1, + "completion_quest_c4_discover_namedlocations_researchstation": 1, + "completion_quest_c4_discover_namedlocations_northharbor": 1, + "completion_quest_c4_discover_namedlocations_neoncity": 1, + "completion_quest_c4_discover_namedlocations_mountaindojo": 1, + "completion_quest_c4_discover_namedlocations_cherryblossomforest": 1, + "completion_quest_c4_discover_namedlocations_fishingvillageisland": 1, + "completion_quest_c4_discover_namedlocations_jungletemple": 1, + "completion_quest_c4_discover_namedlocations_jungletown": 1, + "completion_quest_c4_discover_namedlocations_junglecompound": 1, + "completion_quest_c4_discover_namedlocations_estatelair": 1, + "completion_quest_c4_discover_namedlocations_hotel": 1, + "completion_quest_c4_discover_namedlocations_resort": 1, + "completion_impossible_poi_of_permanence_ch4": 9001 + }, + "quantity": 1 + }, + "Quest:quest_rufus_discover_namedlocations": { + "templateId": "Quest:quest_rufus_discover_namedlocations", + "attributes": { + "creation_time": "2018-04-30T00:00:00.000Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-04-30T00:00:00.000Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_quest_rufus_discover_namedlocations_obj0": 1, + "completion_quest_rufus_discover_namedlocations_obj1": 1, + "completion_quest_rufus_discover_namedlocations_obj2": 1, + "completion_quest_rufus_discover_namedlocations_obj3": 1, + "completion_quest_rufus_discover_namedlocations_obj4": 1, + "completion_quest_rufus_discover_namedlocations_obj5": 1, + "completion_quest_rufus_discover_namedlocations_obj6": 1, + "completion_quest_rufus_discover_namedlocations_obj7": 1, + "completion_quest_rufus_discover_namedlocations_obj8": 1, + "completion_quest_rufus_discover_namedlocations_obj9": 1, + "completion_quest_rufus_discover_namedlocations_obj10": 1, + "completion_quest_rufus_discover_namedlocations_obj11": 1, + "completion_quest_rufus_discover_namedlocations_obj12": 1, + "completion_quest_rufus_discover_namedlocations_obj13": 1, + "completion_quest_rufus_discover_namedlocations_obj14": 1, + "completion_quest_rufus_discover_namedlocations_obj15": 1, + "completion_quest_rufus_discover_namedlocations_obj16": 1, + "completion_quest_rufus_discover_namedlocations_obj17": 1, + "completion_quest_rufus_discover_namedlocations_obj18": 1, + "completion_quest_rufus_discover_namedlocations_obj19": 1, + "completion_quest_rufus_discover_namedlocations_obj20": 9001, + "completion_quest_rufus_discover_namedlocations_obj21": 1 + }, + "quantity": 1 + }, + "dc11a493-023d-42dd-a2f9-24fc7b35ecfe": { + "templateId": "Quest:AthenaDailyQuest_PlayerEliminationShotguns", + "attributes": { + "creation_time": "2024-05-23T13:38:51.851Z", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T13:38:51.851Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_daily_kill_players_shotgun_v2": 0 + }, + "quantity": 1 + }, + "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule": { + "templateId": "ChallengeBundleSchedule:Season3_Challenge_Schedule", + "attributes": { + "unlock_epoch": "2024-05-23T20:05:30.124Z", + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false, + "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" + ] + }, + "quantity": 1 + }, + "S3-ChallengeBundleSchedule:Season3_Tier_100_Schedule": { + "templateId": "ChallengeBundleSchedule:Season3_Tier_100_Schedule", + "attributes": { + "unlock_epoch": "2024-05-23T20:05:30.124Z", + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false, + "granted_bundles": [ + "S3-ChallengeBundle:S3_Tier_100_QuestBundle" + ] + }, + "quantity": 1 + }, + "S3-ChallengeBundleSchedule:Season3_Tier_2_Schedule": { + "templateId": "ChallengeBundleSchedule:Season3_Tier_2_Schedule", + "attributes": { + "unlock_epoch": "2024-05-23T20:05:30.124Z", + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false, + "granted_bundles": [ + "S3-ChallengeBundle:S3_Tier_2_QuestBundle" + ] + }, + "quantity": 1 + }, + "S3-ChallengeBundle:S3_Week10_QuestBundle": { + "templateId": "ChallengeBundle:S3_Week10_QuestBundle", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S3-ChallengeBundle:S3_Week1_QuestBundle": { + "templateId": "ChallengeBundle:S3_Week1_QuestBundle", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S3-ChallengeBundle:S3_Week2_QuestBundle": { + "templateId": "ChallengeBundle:S3_Week2_QuestBundle", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S3-ChallengeBundle:S3_Week3_QuestBundle": { + "templateId": "ChallengeBundle:S3_Week3_QuestBundle", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S3-ChallengeBundle:S3_Week4_QuestBundle": { + "templateId": "ChallengeBundle:S3_Week4_QuestBundle", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S3-ChallengeBundle:S3_Week5_QuestBundle": { + "templateId": "ChallengeBundle:S3_Week5_QuestBundle", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S3-ChallengeBundle:S3_Week6_QuestBundle": { + "templateId": "ChallengeBundle:S3_Week6_QuestBundle", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S3-ChallengeBundle:S3_Week7_QuestBundle": { + "templateId": "ChallengeBundle:S3_Week7_QuestBundle", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S3-ChallengeBundle:S3_Week8_QuestBundle": { + "templateId": "ChallengeBundle:S3_Week8_QuestBundle", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S3-ChallengeBundle:S3_Week9_QuestBundle": { + "templateId": "ChallengeBundle:S3_Week9_QuestBundle", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S3-ChallengeBundle:S3_Tier_100_QuestBundle": { + "templateId": "ChallengeBundle:S3_Tier_100_QuestBundle", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Tier_100_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S3-ChallengeBundle:S3_Tier_2_QuestBundle": { + "templateId": "ChallengeBundle:S3_Tier_2_QuestBundle", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S3-ChallengeBundleSchedule:Season3_Tier_2_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Damage_Headshot": { + "templateId": "Quest:Quest_BR_Damage_Headshot", + "attributes": { + "creation_time": "2024-05-23T20:05:30.124Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.124Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_head_shots": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate": { + "templateId": "Quest:Quest_BR_Eliminate", + "attributes": { + "creation_time": "2024-05-23T20:05:30.124Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.124Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_players": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Location_PleasantPark": { + "templateId": "Quest:Quest_BR_Eliminate_Location_PleasantPark", + "attributes": { + "creation_time": "2024-05-23T20:05:30.124Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.124Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_pleasantpark": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_Chests_Locations_Different": { + "templateId": "Quest:Quest_BR_Interact_Chests_Locations_Different", + "attributes": { + "creation_time": "2024-05-23T20:05:30.124Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.124Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_chest_athena_location_different_anarchyacres": 0, + "completion_battlepass_interact_chest_athena_location_different_dustydepot": 0, + "completion_battlepass_interact_chest_athena_location_different_fatalfields": 0, + "completion_battlepass_interact_chest_athena_location_different_flushfactory": 0, + "completion_battlepass_interact_chest_athena_location_different_greasygrove": 0, + "completion_battlepass_interact_chest_athena_location_different_hauntedhills": 0, + "completion_battlepass_interact_chest_athena_location_different_junkjunction": 0, + "completion_battlepass_interact_chest_athena_location_different_luckylanding": 0, + "completion_battlepass_interact_chest_athena_location_different_lonelylodge": 0, + "completion_battlepass_interact_chest_athena_location_different_lootlake": 0, + "completion_battlepass_interact_chest_athena_location_different_moistymire": 0, + "completion_battlepass_interact_chest_athena_location_different_pleasantpark": 0, + "completion_battlepass_interact_chest_athena_location_different_retailrow": 0, + "completion_battlepass_interact_chest_athena_location_different_shiftyshafts": 0, + "completion_battlepass_interact_chest_athena_location_different_saltysprings": 0, + "completion_battlepass_interact_chest_athena_location_different_snobbyshores": 0, + "completion_battlepass_interact_chest_athena_location_different_tiltedtowers": 0, + "completion_battlepass_interact_chest_athena_location_different_tomatotown": 0, + "completion_battlepass_interact_chest_athena_location_different_wailingwoods": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_Chests_Location_FatalFields": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_FatalFields", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_fatalfields": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_04": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_04", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_08": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Skydive_Rings": { + "templateId": "Quest:Quest_BR_Skydive_Rings", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week10_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_skydive_athena_rings": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Damage_Pistol": { + "templateId": "Quest:Quest_BR_Damage_Pistol", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_pistol": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Location_FatalFields": { + "templateId": "Quest:Quest_BR_Eliminate_Location_FatalFields", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_fatalfields": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Weapon_SniperRifle": { + "templateId": "Quest:Quest_BR_Eliminate_Weapon_SniperRifle", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_sniper": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_Chests_Location_PleasantPark": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_PleasantPark", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_pleasantpark": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_01": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Revive": { + "templateId": "Quest:Quest_BR_Revive", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_revive_player": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Visit_ScavengerHunt_LlamaFoxCrab": { + "templateId": "Quest:Quest_BR_Visit_ScavengerHunt_LlamaFoxCrab", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week1_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_visit_location_crab": 0, + "completion_battlepass_visit_location_fox": 0, + "completion_battlepass_visit_location_llama": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Damage_AssaultRifle": { + "templateId": "Quest:Quest_BR_Damage_AssaultRifle", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_asssult": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Dance_ScavengerHunt_Forbidden": { + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_Forbidden", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_dance_athena_location_forbidden_01": 0, + "completion_battlepass_dance_athena_location_forbidden_02": 0, + "completion_battlepass_dance_athena_location_forbidden_03": 0, + "completion_battlepass_dance_athena_location_forbidden_04": 0, + "completion_battlepass_dance_athena_location_forbidden_05": 0, + "completion_battlepass_dance_athena_location_forbidden_06": 0, + "completion_battlepass_dance_athena_location_forbidden_07": 0, + "completion_battlepass_dance_athena_location_forbidden_08": 0, + "completion_battlepass_dance_athena_location_forbidden_09": 0, + "completion_battlepass_dance_athena_location_forbidden_10": 0, + "completion_battlepass_dance_athena_location_forbidden_11": 0, + "completion_battlepass_dance_athena_location_forbidden_12": 0, + "completion_battlepass_dance_athena_location_forbidden_13": 0, + "completion_battlepass_dance_athena_location_forbidden_14": 0, + "completion_battlepass_dance_athena_location_forbidden_15": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Location_GreasyGrove": { + "templateId": "Quest:Quest_BR_Eliminate_Location_GreasyGrove", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_greasygrove": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Weapon_SMG": { + "templateId": "Quest:Quest_BR_Eliminate_Weapon_SMG", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_smg": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_Chests_Location_WailingWoods": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_WailingWoods", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_walingwoods": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_02": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Use_Launchpad": { + "templateId": "Quest:Quest_BR_Use_Launchpad", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_jumppad": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Collect_BuildingResources": { + "templateId": "Quest:Quest_BR_Collect_BuildingResources", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_collect_building_resources": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Damage_SuppressedWeapon": { + "templateId": "Quest:Quest_BR_Damage_SuppressedWeapon", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_suppressed_weapon": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Location_SaltySprings": { + "templateId": "Quest:Quest_BR_Eliminate_Location_SaltySprings", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_saltysprings": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Weapon_Crossbow": { + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Crossbow", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_crossbow": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_Chests_Location_JunkJunction": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_JunkJunction", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_junkjunction": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_03": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Land_Bulleyes_Different": { + "templateId": "Quest:Quest_BR_Land_Bulleyes_Different", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week3_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_land_location_bullseye_01": 0, + "completion_battlepass_athena_land_location_bullseye_02": 0, + "completion_battlepass_athena_land_location_bullseye_03": 0, + "completion_battlepass_athena_land_location_bullseye_04": 0, + "completion_battlepass_athena_land_location_bullseye_05": 0, + "completion_battlepass_athena_land_location_bullseye_06": 0, + "completion_battlepass_athena_land_location_bullseye_07": 0, + "completion_battlepass_athena_land_location_bullseye_08": 0, + "completion_battlepass_athena_land_location_bullseye_09": 0, + "completion_battlepass_athena_land_location_bullseye_10": 0, + "completion_battlepass_athena_land_location_bullseye_11": 0, + "completion_battlepass_athena_land_location_bullseye_12": 0, + "completion_battlepass_athena_land_location_bullseye_13": 0, + "completion_battlepass_athena_land_location_bullseye_14": 0, + "completion_battlepass_athena_land_location_bullseye_15": 0, + "completion_battlepass_athena_land_location_bullseye_16": 0, + "completion_battlepass_athena_land_location_bullseye_17": 0, + "completion_battlepass_athena_land_location_bullseye_18": 0, + "completion_battlepass_athena_land_location_bullseye_19": 0, + "completion_battlepass_athena_land_location_bullseye_20": 0, + "completion_battlepass_athena_land_location_bullseye_21": 0, + "completion_battlepass_athena_land_location_bullseye_22": 0, + "completion_battlepass_athena_land_location_bullseye_23": 0, + "completion_battlepass_athena_land_location_bullseye_24": 0, + "completion_battlepass_athena_land_location_bullseye_25": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Damage_SniperRifle": { + "templateId": "Quest:Quest_BR_Damage_SniperRifle", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_sniper": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Location_TomatoTown": { + "templateId": "Quest:Quest_BR_Eliminate_Location_TomatoTown", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_tomatotown": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Trap": { + "templateId": "Quest:Quest_BR_Eliminate_Trap", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_with_trap": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_Chests_Location_FlushFactory": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_FlushFactory", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_flushfactory": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_04": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_SupplyDrops": { + "templateId": "Quest:Quest_BR_Interact_SupplyDrops", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_supply_drop": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Visit_IceCreamTrucks_Different": { + "templateId": "Quest:Quest_BR_Visit_IceCreamTrucks_Different", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week4_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_visit_athena_location_icream_01": 0, + "completion_battlepass_visit_athena_location_icream_02": 0, + "completion_battlepass_visit_athena_location_icream_03": 0, + "completion_battlepass_visit_athena_location_icream_04": 0, + "completion_battlepass_visit_athena_location_icream_05": 0, + "completion_battlepass_visit_athena_location_icream_06": 0, + "completion_battlepass_visit_athena_location_icream_07": 0, + "completion_battlepass_visit_athena_location_icream_08": 0, + "completion_battlepass_visit_athena_location_icream_09": 0, + "completion_battlepass_visit_athena_location_icream_10": 0, + "completion_battlepass_visit_athena_location_icream_11": 0, + "completion_battlepass_visit_athena_location_icream_12": 0, + "completion_battlepass_visit_athena_location_icream_13": 0, + "completion_battlepass_visit_athena_location_icream_14": 0, + "completion_battlepass_visit_athena_location_icream_15": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Damage_Pickaxe": { + "templateId": "Quest:Quest_BR_Damage_Pickaxe", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_pickaxe": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Location_TiltedTowers": { + "templateId": "Quest:Quest_BR_Eliminate_Location_TiltedTowers", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_tiltedtowers": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Weapon_Pistol": { + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Pistol", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_pistol": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_Chests_Location_MoistyMire": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_MoistyMire", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_moistymire": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_03": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_03", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_05": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Use_Bush": { + "templateId": "Quest:Quest_BR_Use_Bush", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_use_item_bush": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Visit_GasStations_SingleMatch": { + "templateId": "Quest:Quest_BR_Visit_GasStations_SingleMatch", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week5_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_visit_athena_location_gas_station_01": 0, + "completion_battlepass_visit_athena_location_gas_station_02": 0, + "completion_battlepass_visit_athena_location_gas_station_03": 0, + "completion_battlepass_visit_athena_location_gas_station_04": 0, + "completion_battlepass_visit_athena_location_gas_station_05": 0, + "completion_battlepass_visit_athena_location_gas_station_06": 0, + "completion_battlepass_visit_athena_location_gas_station_07": 0, + "completion_battlepass_visit_athena_location_gas_station_08": 0, + "completion_battlepass_visit_athena_location_gas_station_09": 0, + "completion_battlepass_visit_athena_location_gas_station_10": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Damage_SMG": { + "templateId": "Quest:Quest_BR_Damage_SMG", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_smg": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_ExplosiveWeapon": { + "templateId": "Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_with_explosives": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Location_RetailRow": { + "templateId": "Quest:Quest_BR_Eliminate_Location_RetailRow", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_retailrow": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_Chests_Location_AnarchyAcres": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_AnarchyAcres", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_anarchyacres": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_06": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Use_CozyCampfire": { + "templateId": "Quest:Quest_BR_Use_CozyCampfire", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_place_athena_camp_fire": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Visit_MountainPeaks": { + "templateId": "Quest:Quest_BR_Visit_MountainPeaks", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week6_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_visit_athena_location_mountain_summit_01": 0, + "completion_battlepass_visit_athena_location_mountain_summit_02": 0, + "completion_battlepass_visit_athena_location_mountain_summit_03": 0, + "completion_battlepass_visit_athena_location_mountain_summit_04": 0, + "completion_battlepass_visit_athena_location_mountain_summit_05": 0, + "completion_battlepass_visit_athena_location_mountain_summit_06": 0, + "completion_battlepass_visit_athena_location_mountain_summit_07": 0, + "completion_battlepass_visit_athena_location_mountain_summit_08": 0, + "completion_battlepass_visit_athena_location_mountain_summit_09": 0, + "completion_battlepass_visit_athena_location_mountain_summit_10": 0, + "completion_battlepass_visit_athena_location_mountain_summit_11": 0, + "completion_battlepass_visit_athena_location_mountain_summit_12": 0, + "completion_battlepass_visit_athena_location_mountain_summit_13": 0, + "completion_battlepass_visit_athena_location_mountain_summit_14": 0, + "completion_battlepass_visit_athena_location_mountain_summit_15": 0, + "completion_battlepass_visit_athena_location_mountain_summit_16": 0, + "completion_battlepass_visit_athena_location_mountain_summit_17": 0, + "completion_battlepass_visit_athena_location_mountain_summit_18": 0, + "completion_battlepass_visit_athena_location_mountain_summit_19": 0, + "completion_battlepass_visit_athena_location_mountain_summit_20": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Damage_Shotgun": { + "templateId": "Quest:Quest_BR_Damage_Shotgun", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_shotgun": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Location_ShiftyShafts": { + "templateId": "Quest:Quest_BR_Eliminate_Location_ShiftyShafts", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_shiftyshafts": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_SuppressedWeapon": { + "templateId": "Quest:Quest_BR_Eliminate_SuppressedWeapon", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_with_suppressed_weapon": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch": { + "templateId": "Quest:Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest": 0, + "completion_battlepass_interact_athena_ammobox": 0, + "completion_battlepass_interact_athena_supplydrop": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_Chests_Location_LonelyLodge": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_LonelyLodge", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_lonelylodge": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_GniceGnomes": { + "templateId": "Quest:Quest_BR_Interact_GniceGnomes", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_gnice_gnome_01": 0, + "completion_battlepass_interact_athena_gnice_gnome_02": 0, + "completion_battlepass_interact_athena_gnice_gnome_03": 0, + "completion_battlepass_interact_athena_gnice_gnome_04": 0, + "completion_battlepass_interact_athena_gnice_gnome_05": 0, + "completion_battlepass_interact_athena_gnice_gnome_06": 0, + "completion_battlepass_interact_athena_gnice_gnome_07": 0, + "completion_battlepass_interact_athena_gnice_gnome_08": 0, + "completion_battlepass_interact_athena_gnice_gnome_09": 0, + "completion_battlepass_interact_athena_gnice_gnome_10": 0, + "completion_battlepass_interact_athena_gnice_gnome_11": 0, + "completion_battlepass_interact_athena_gnice_gnome_12": 0, + "completion_battlepass_interact_athena_gnice_gnome_13": 0, + "completion_battlepass_interact_athena_gnice_gnome_14": 0, + "completion_battlepass_interact_athena_gnice_gnome_15": 0, + "completion_battlepass_interact_athena_gnice_gnome_16": 0, + "completion_battlepass_interact_athena_gnice_gnome_17": 0, + "completion_battlepass_interact_athena_gnice_gnome_18": 0, + "completion_battlepass_interact_athena_gnice_gnome_19": 0, + "completion_battlepass_interact_athena_gnice_gnome_20": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week7_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_07": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Damage_ExplosiveWeapon": { + "templateId": "Quest:Quest_BR_Damage_ExplosiveWeapon", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_explosives": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Dance_ScavengerHunt_DanceFloors": { + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_DanceFloors", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_dance_athena_location_disco_01": 0, + "completion_battlepass_dance_athena_location_disco_02": 0, + "completion_battlepass_dance_athena_location_disco_03": 0, + "completion_battlepass_dance_athena_location_disco_04": 0, + "completion_battlepass_dance_athena_location_disco_05": 0, + "completion_battlepass_dance_athena_location_disco_06": 0, + "completion_battlepass_dance_athena_location_disco_07": 0, + "completion_battlepass_dance_athena_location_disco_08": 0, + "completion_battlepass_dance_athena_location_disco_09": 0, + "completion_battlepass_dance_athena_location_disco_10": 0, + "completion_battlepass_dance_athena_location_disco_11": 0, + "completion_battlepass_dance_athena_location_disco_12": 0, + "completion_battlepass_dance_athena_location_disco_13": 0, + "completion_battlepass_dance_athena_location_disco_14": 0, + "completion_battlepass_dance_athena_location_disco_15": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Location_DustyDepot": { + "templateId": "Quest:Quest_BR_Eliminate_Location_DustyDepot", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_dustydepot": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Weapon_AssaultRifle": { + "templateId": "Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_assault": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_Chests_Location_SnobbyShores": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_SnobbyShores", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_snobbyshores": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_05": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_05", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_10": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Use_VendingMachine": { + "templateId": "Quest:Quest_BR_Use_VendingMachine", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week8_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_vendingmachine": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Build_Structures": { + "templateId": "Quest:Quest_BR_Build_Structures", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_build_athena_structures_any": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Damage_Enemy_Buildings": { + "templateId": "Quest:Quest_BR_Damage_Enemy_Buildings", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_buildings": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Location_LuckyLanding": { + "templateId": "Quest:Quest_BR_Eliminate_Location_LuckyLanding", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_luckylanding": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Weapon_Shotgun": { + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_shotgun": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_Chests_Location_HauntedHills": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_HauntedHills", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_hauntedhills": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_09": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Visit_TacoShops_SingleMatch": { + "templateId": "Quest:Quest_BR_Visit_TacoShops_SingleMatch", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Week9_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_visit_athena_taco_shop_01": 0, + "completion_battlepass_visit_athena_taco_shop_02": 0, + "completion_battlepass_visit_athena_taco_shop_03": 0, + "completion_battlepass_visit_athena_taco_shop_04": 0, + "completion_battlepass_visit_athena_taco_shop_05": 0, + "completion_battlepass_visit_athena_taco_shop_06": 0, + "completion_battlepass_visit_athena_taco_shop_07": 0, + "completion_battlepass_visit_athena_taco_shop_08": 0, + "completion_battlepass_visit_athena_taco_shop_09": 0, + "completion_battlepass_visit_athena_taco_shop_10": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Damage_SingleMatch": { + "templateId": "Quest:Quest_BR_Damage_SingleMatch", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_single_match": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Singel_Match_Elemeinations": { + "templateId": "Quest:Quest_BR_Eliminate_Singel_Match_Elemeinations", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_killingblow_athena_player_singlematch": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Eliminate_Weapon_Pickaxe": { + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Pickaxe", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_pickaxe": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Interact_Chests_SingleMatch": { + "templateId": "Quest:Quest_BR_Interact_Chests_SingleMatch", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_loot_chest_single_match": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Place_Top10_Solo": { + "templateId": "Quest:Quest_BR_Place_Top10_Solo", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_place_solo_top_10": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Place_Top3_Squad": { + "templateId": "Quest:Quest_BR_Place_Top3_Squad", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_place_squad_top_3": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Play_Min1Elimination": { + "templateId": "Quest:Quest_BR_Play_Min1Elimination", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_100_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_complete_athena_with_killingblow": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Damage": { + "templateId": "Quest:Quest_BR_Damage", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Land_Locations_Different": { + "templateId": "Quest:Quest_BR_Land_Locations_Different", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_land_athena_location_anarchyacres": 0, + "completion_battlepass_land_athena_location_dustydepot": 0, + "completion_battlepass_land_athena_location_fatalfields": 0, + "completion_battlepass_land_athena_location_flushfactory": 0, + "completion_battlepass_land_athena_location_greasygrove": 0, + "completion_battlepass_land_athena_location_hauntedhills": 0, + "completion_battlepass_land_athena_location_junkjunction": 0, + "completion_battlepass_land_athena_location_lonelylodge": 0, + "completion_battlepass_land_athena_location_lootlake": 0, + "completion_battlepass_land_athena_location_moistymire": 0, + "completion_battlepass_land_athena_location_pleasantpark": 0, + "completion_battlepass_land_athena_location_retailrow": 0, + "completion_battlepass_land_athena_location_shiftyshafts": 0, + "completion_battlepass_land_athena_location_saltysprings": 0, + "completion_battlepass_land_athena_location_snobbyshores": 0, + "completion_battlepass_land_athena_location_tiltedtowers": 0, + "completion_battlepass_land_athena_location_tomatotown": 0, + "completion_battlepass_land_athena_location_wailingwoods": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_LevelUp_SeasonLevel_25": { + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_25", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_season_levelup": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Outlive": { + "templateId": "Quest:Quest_BR_Outlive", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_outlive_players": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Place_Win": { + "templateId": "Quest:Quest_BR_Place_Win", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_win_match": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Play": { + "templateId": "Quest:Quest_BR_Play", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_play_matches": 0 + }, + "quantity": 1 + }, + "S3-Quest:Quest_BR_Play_Min1Friend": { + "templateId": "Quest:Quest_BR_Play_Min1Friend", + "attributes": { + "creation_time": "2024-05-23T20:05:30.125Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S3-ChallengeBundle:S3_Tier_2_QuestBundle", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T20:05:30.125Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_friend": 0 + }, + "quantity": 1 } }, "stats": { "attributes": { "past_seasons": [], - "season_match_boost": 999999999, + "season_match_boost": 0, "loadouts": [ "lawin-loadout" ], "favorite_victorypose": "", "mfa_reward_claimed": true, "quest_manager": { - "dailyLoginInterval": "0001-01-01T00:00:00.000Z", + "dailyLoginInterval": "2024-05-23T13:38:51.851Z", "dailyQuestRerolls": 1 }, - "book_level": 100, - "season_num": 0, + "book_level": 1, + "season_num": 2, "favorite_consumableemote": "", "banner_color": "DefaultColor1", "favorite_callingcard": "", @@ -118843,7 +134524,7 @@ "pinned_quest": "", "purchased_bp_offers": [], "favorite_loadingscreen": "", - "book_purchased": true, + "book_purchased": false, "lifetime_wins": 100, "favorite_hat": "", "level": 100, @@ -118867,7 +134548,7 @@ "favorite_glider": "AthenaGlider:DefaultGlider", "daily_rewards": {}, "xp": 0, - "season_friend_match_boost": 999999999, + "season_friend_match_boost": 0, "active_loadout_index": 0, "favorite_musicpack": "", "banner_icon": "StandardBanner1", @@ -118882,5 +134563,5 @@ ] } }, - "commandRevision": 0 + "commandRevision": 9 } \ No newline at end of file diff --git a/gui/assets/authenticator/profiles/campaign.json b/gui/assets/backend/profiles/campaign.json similarity index 99% rename from gui/assets/authenticator/profiles/campaign.json rename to gui/assets/backend/profiles/campaign.json index 1ca761b..31c1c17 100644 --- a/gui/assets/authenticator/profiles/campaign.json +++ b/gui/assets/backend/profiles/campaign.json @@ -44189,6 +44189,98 @@ }, "quantity": 1 }, + "Schematic:SID_Edged_IceSword_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_IceSword_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_IceSword_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_IceSword_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_IceSword_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_IceSword_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_IceSword_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_IceSword_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, "Schematic:Ingredient_Duct_Tape": { "templateId": "Schematic:Ingredient_Duct_Tape", "attributes": { diff --git a/gui/assets/authenticator/profiles/collection_book_people0.json b/gui/assets/backend/profiles/collection_book_people0.json similarity index 100% rename from gui/assets/authenticator/profiles/collection_book_people0.json rename to gui/assets/backend/profiles/collection_book_people0.json diff --git a/gui/assets/authenticator/profiles/collection_book_schematics0.json b/gui/assets/backend/profiles/collection_book_schematics0.json similarity index 100% rename from gui/assets/authenticator/profiles/collection_book_schematics0.json rename to gui/assets/backend/profiles/collection_book_schematics0.json diff --git a/gui/assets/authenticator/profiles/collections.json b/gui/assets/backend/profiles/collections.json similarity index 100% rename from gui/assets/authenticator/profiles/collections.json rename to gui/assets/backend/profiles/collections.json diff --git a/gui/assets/authenticator/profiles/common_core.json b/gui/assets/backend/profiles/common_core.json similarity index 100% rename from gui/assets/authenticator/profiles/common_core.json rename to gui/assets/backend/profiles/common_core.json diff --git a/gui/assets/authenticator/profiles/common_public.json b/gui/assets/backend/profiles/common_public.json similarity index 100% rename from gui/assets/authenticator/profiles/common_public.json rename to gui/assets/backend/profiles/common_public.json diff --git a/gui/assets/authenticator/profiles/creative.json b/gui/assets/backend/profiles/creative.json similarity index 100% rename from gui/assets/authenticator/profiles/creative.json rename to gui/assets/backend/profiles/creative.json diff --git a/gui/assets/authenticator/profiles/metadata.json b/gui/assets/backend/profiles/metadata.json similarity index 100% rename from gui/assets/authenticator/profiles/metadata.json rename to gui/assets/backend/profiles/metadata.json diff --git a/gui/assets/authenticator/profiles/outpost0.json b/gui/assets/backend/profiles/outpost0.json similarity index 100% rename from gui/assets/authenticator/profiles/outpost0.json rename to gui/assets/backend/profiles/outpost0.json diff --git a/gui/assets/authenticator/profiles/profile0.json b/gui/assets/backend/profiles/profile0.json similarity index 98% rename from gui/assets/authenticator/profiles/profile0.json rename to gui/assets/backend/profiles/profile0.json index 25fc34e..27be0f0 100644 --- a/gui/assets/authenticator/profiles/profile0.json +++ b/gui/assets/backend/profiles/profile0.json @@ -2,7 +2,7 @@ "_id": "LawinServer", "created": "0001-01-01T00:00:00.000Z", "updated": "0001-01-01T00:00:00.000Z", - "rvn": 1, + "rvn": 10, "wipeNumber": 1, "accountId": "LawinServer", "profileId": "profile0", @@ -35669,6 +35669,345 @@ "favorite": false }, "quantity": 1 + }, + "507ac4fc-4c0e-412d-8f99-b7dee58e2f76": { + "templateId": "Expedition:expedition_sea_survivorscouting_short_t01", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresRareCommando" + ], + "level": 1, + "expedition_max_target_power": 120, + "expedition_min_target_power": 6, + "expedition_slot_id": "expedition.generation.sea.t01_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "a4b374c2-4e4a-4d1a-b549-6e979f20b415": { + "templateId": "Expedition:expedition_sea_survivorscouting_short_t01", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 120, + "expedition_min_target_power": 6, + "expedition_slot_id": "expedition.generation.sea.t01_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "d73a42be-10cc-4175-823a-b0330ebdac5e": { + "templateId": "Expedition:expedition_air_supplyrun_long_t02", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 330, + "expedition_min_target_power": 16, + "expedition_slot_id": "expedition.generation.air.t02_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "1eac710f-cf80-4de2-bc46-54426a2e3c90": { + "templateId": "Expedition:expedition_air_survivorscouting_long_t02", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresLegendaryConstructor" + ], + "level": 1, + "expedition_max_target_power": 385, + "expedition_min_target_power": 19, + "expedition_slot_id": "expedition.generation.air.t02_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "fabc7237-4d92-4692-8214-82b02aac8514": { + "templateId": "Expedition:expedition_resourcerun_stone_short", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 110, + "expedition_min_target_power": 5, + "expedition_slot_id": "expedition.generation.land.t02_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "1326df1e-fe4d-44d0-aaf9-a86107ff3b76": { + "templateId": "Expedition:expedition_survivorscouting_medium_t02", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresRareConstructor" + ], + "level": 1, + "expedition_max_target_power": 250, + "expedition_min_target_power": 12, + "expedition_slot_id": "expedition.generation.land.t02_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "7888975d-08d3-47c7-8c72-2adc91a0138e": { + "templateId": "Expedition:expedition_sea_supplyrun_medium_t02", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 215, + "expedition_min_target_power": 10, + "expedition_slot_id": "expedition.generation.sea.t02_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "d068b9f2-429d-4d5a-9c0b-5591f13ab22e": { + "templateId": "Expedition:expedition_sea_supplyrun_medium_t02", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresLegendaryNinja" + ], + "level": 1, + "expedition_max_target_power": 215, + "expedition_min_target_power": 10, + "expedition_slot_id": "expedition.generation.sea.t02_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "ae374104-d124-4f8d-8d9e-6a309efe4271": { + "templateId": "Expedition:expedition_sea_survivorscouting_medium_t03", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresEpicCommando" + ], + "level": 1, + "expedition_max_target_power": 370, + "expedition_min_target_power": 18, + "expedition_slot_id": "expedition.generation.sea.t03_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "ca25b234-b23f-4317-a54e-ff8492f6a18b": { + "templateId": "Expedition:expedition_sea_survivorscouting_medium_t03", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 370, + "expedition_min_target_power": 18, + "expedition_slot_id": "expedition.generation.sea.t03_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "35790c16-d6c8-4aac-b861-bfb6e9356f35": { + "templateId": "Expedition:expedition_air_supplyrun_long_t03", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresLegendaryConstructor" + ], + "level": 1, + "expedition_max_target_power": 520, + "expedition_min_target_power": 26, + "expedition_slot_id": "expedition.generation.air.t03_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "f4f13404-6185-4f2f-8987-f65d0522cae1": { + "templateId": "Expedition:expedition_air_supplyrun_long_t03", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresConstructor" + ], + "level": 1, + "expedition_max_target_power": 520, + "expedition_min_target_power": 26, + "expedition_slot_id": "expedition.generation.air.t03_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "1ddb6b83-1687-4f17-a7f0-580b9b4a6310": { + "templateId": "Expedition:expedition_supplyrun_medium_t03", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresEpicOutlander", + "RequiresRareConstructor" + ], + "level": 1, + "expedition_max_target_power": 275, + "expedition_min_target_power": 13, + "expedition_slot_id": "expedition.generation.land.t03_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "267988c1-de32-4cf5-9aeb-4270779953bc": { + "templateId": "Expedition:expedition_craftingrun_short_t03", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresRareOutlander" + ], + "level": 1, + "expedition_max_target_power": 225, + "expedition_min_target_power": 11, + "expedition_slot_id": "expedition.generation.land.t03_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "c7a44a2f-173c-4aed-b229-4f9a8297d4a8": { + "templateId": "Expedition:expedition_supplyrun_long_t04", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresEpicCommando" + ], + "level": 1, + "expedition_max_target_power": 685, + "expedition_min_target_power": 34, + "expedition_slot_id": "expedition.generation.land.t04_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "9bd9ec9a-2d79-451c-9b95-bfd6345c398c": { + "templateId": "Expedition:expedition_craftingrun_long_t04", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresLegendaryConstructor" + ], + "level": 1, + "expedition_max_target_power": 685, + "expedition_min_target_power": 34, + "expedition_slot_id": "expedition.generation.land.t04_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "e5cdf1d3-3bab-4ab8-9bea-e225b0fb60b3": { + "templateId": "Expedition:expedition_sea_survivorscouting_long_t04", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 825, + "expedition_min_target_power": 41, + "expedition_slot_id": "expedition.generation.sea.t04_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "663eb718-757b-4e86-bf0e-1002d4f11396": { + "templateId": "Expedition:expedition_sea_survivorscouting_long_t04", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 825, + "expedition_min_target_power": 41, + "expedition_slot_id": "expedition.generation.sea.t04_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "e948d68d-1c42-480c-ab10-102b16442982": { + "templateId": "Expedition:expedition_air_survivorscouting_long_t04", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresRareConstructor" + ], + "level": 1, + "expedition_max_target_power": 835, + "expedition_min_target_power": 41, + "expedition_slot_id": "expedition.generation.air.t04_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "ea24aa52-dc70-41b5-ba85-83fe81f44d86": { + "templateId": "Expedition:expedition_air_supplyrun_long_t04", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 735, + "expedition_min_target_power": 36, + "expedition_slot_id": "expedition.generation.air.t04_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "0748bf5d-f770-446b-bb14-5b784b399cdd": { + "templateId": "Expedition:expedition_choppingwood_t00", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 20, + "expedition_min_target_power": 1, + "expedition_slot_id": "expedition.generation.miningore", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "ad45e99c-0f8a-4b39-abdb-d2d10daeebcf": { + "templateId": "Expedition:expedition_miningore_t00", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresRareConstructor" + ], + "level": 1, + "expedition_max_target_power": 25, + "expedition_min_target_power": 1, + "expedition_slot_id": "expedition.generation.choppingwood", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "60b692b1-eae8-4029-8fb0-f7ca5aa20dfa": { + "templateId": "Expedition:expedition_resourcerun_wood_medium", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 100, + "expedition_min_target_power": 5, + "expedition_slot_id": "expedition.generation.land.t01_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "4f7ffa01-e7d6-4d13-b8b9-f07e404d7128": { + "templateId": "Expedition:expedition_survivorscouting_short_t01", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 130, + "expedition_min_target_power": 6, + "expedition_slot_id": "expedition.generation.land.t01_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 } }, "stats": { @@ -35793,12 +36132,12 @@ "level": 10, "named_counters": { "SubGameSelectCount_Campaign": { - "current_count": 0, - "last_incremented_time": "" + "current_count": 1, + "last_incremented_time": "2024-05-23T14:03:33.864Z" }, "SubGameSelectCount_Athena": { - "current_count": 0, - "last_incremented_time": "" + "current_count": 7, + "last_incremented_time": "2024-05-23T13:57:38.022Z" } }, "default_hero_squad_id": "", @@ -35945,5 +36284,5 @@ "packs_granted": 13 } }, - "commandRevision": 0 + "commandRevision": 9 } \ No newline at end of file diff --git a/gui/assets/authenticator/profiles/theater0.json b/gui/assets/backend/profiles/theater0.json similarity index 100% rename from gui/assets/authenticator/profiles/theater0.json rename to gui/assets/backend/profiles/theater0.json diff --git a/gui/assets/authenticator/public/images/discord-s.png b/gui/assets/backend/public/images/discord-s.png similarity index 100% rename from gui/assets/authenticator/public/images/discord-s.png rename to gui/assets/backend/public/images/discord-s.png diff --git a/gui/assets/authenticator/public/images/discord.png b/gui/assets/backend/public/images/discord.png similarity index 100% rename from gui/assets/authenticator/public/images/discord.png rename to gui/assets/backend/public/images/discord.png diff --git a/gui/assets/authenticator/public/images/lawin-s.png b/gui/assets/backend/public/images/lawin-s.png similarity index 100% rename from gui/assets/authenticator/public/images/lawin-s.png rename to gui/assets/backend/public/images/lawin-s.png diff --git a/gui/assets/authenticator/public/images/lawin.jpg b/gui/assets/backend/public/images/lawin.jpg similarity index 100% rename from gui/assets/authenticator/public/images/lawin.jpg rename to gui/assets/backend/public/images/lawin.jpg diff --git a/gui/assets/authenticator/public/images/motd-s.png b/gui/assets/backend/public/images/motd-s.png similarity index 100% rename from gui/assets/authenticator/public/images/motd-s.png rename to gui/assets/backend/public/images/motd-s.png diff --git a/gui/assets/authenticator/public/images/motd.png b/gui/assets/backend/public/images/motd.png similarity index 100% rename from gui/assets/authenticator/public/images/motd.png rename to gui/assets/backend/public/images/motd.png diff --git a/gui/assets/authenticator/public/images/seasonx.png b/gui/assets/backend/public/images/seasonx.png similarity index 100% rename from gui/assets/authenticator/public/images/seasonx.png rename to gui/assets/backend/public/images/seasonx.png diff --git a/gui/assets/authenticator/responses/Athena/BattlePass/Season10.json b/gui/assets/backend/responses/Athena/BattlePass/Season10.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/BattlePass/Season10.json rename to gui/assets/backend/responses/Athena/BattlePass/Season10.json diff --git a/gui/assets/authenticator/responses/Athena/BattlePass/Season2.json b/gui/assets/backend/responses/Athena/BattlePass/Season2.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/BattlePass/Season2.json rename to gui/assets/backend/responses/Athena/BattlePass/Season2.json diff --git a/gui/assets/authenticator/responses/Athena/BattlePass/Season3.json b/gui/assets/backend/responses/Athena/BattlePass/Season3.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/BattlePass/Season3.json rename to gui/assets/backend/responses/Athena/BattlePass/Season3.json diff --git a/gui/assets/authenticator/responses/Athena/BattlePass/Season4.json b/gui/assets/backend/responses/Athena/BattlePass/Season4.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/BattlePass/Season4.json rename to gui/assets/backend/responses/Athena/BattlePass/Season4.json diff --git a/gui/assets/authenticator/responses/Athena/BattlePass/Season5.json b/gui/assets/backend/responses/Athena/BattlePass/Season5.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/BattlePass/Season5.json rename to gui/assets/backend/responses/Athena/BattlePass/Season5.json diff --git a/gui/assets/authenticator/responses/Athena/BattlePass/Season6.json b/gui/assets/backend/responses/Athena/BattlePass/Season6.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/BattlePass/Season6.json rename to gui/assets/backend/responses/Athena/BattlePass/Season6.json diff --git a/gui/assets/authenticator/responses/Athena/BattlePass/Season7.json b/gui/assets/backend/responses/Athena/BattlePass/Season7.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/BattlePass/Season7.json rename to gui/assets/backend/responses/Athena/BattlePass/Season7.json diff --git a/gui/assets/authenticator/responses/Athena/BattlePass/Season8.json b/gui/assets/backend/responses/Athena/BattlePass/Season8.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/BattlePass/Season8.json rename to gui/assets/backend/responses/Athena/BattlePass/Season8.json diff --git a/gui/assets/authenticator/responses/Athena/BattlePass/Season9.json b/gui/assets/backend/responses/Athena/BattlePass/Season9.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/BattlePass/Season9.json rename to gui/assets/backend/responses/Athena/BattlePass/Season9.json diff --git a/gui/assets/authenticator/responses/Athena/Discovery/discovery_api_assets.json b/gui/assets/backend/responses/Athena/Discovery/discovery_api_assets.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/Discovery/discovery_api_assets.json rename to gui/assets/backend/responses/Athena/Discovery/discovery_api_assets.json diff --git a/gui/assets/authenticator/responses/Athena/Discovery/discovery_frontend.json b/gui/assets/backend/responses/Athena/Discovery/discovery_frontend.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/Discovery/discovery_frontend.json rename to gui/assets/backend/responses/Athena/Discovery/discovery_frontend.json diff --git a/gui/assets/authenticator/responses/Athena/SeasonData.json b/gui/assets/backend/responses/Athena/SeasonData.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/SeasonData.json rename to gui/assets/backend/responses/Athena/SeasonData.json diff --git a/gui/assets/authenticator/responses/Athena/motdTarget.json b/gui/assets/backend/responses/Athena/motdTarget.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/motdTarget.json rename to gui/assets/backend/responses/Athena/motdTarget.json diff --git a/gui/assets/authenticator/responses/Athena/winterfestrewards.json b/gui/assets/backend/responses/Athena/winterfestRewards.json similarity index 100% rename from gui/assets/authenticator/responses/Athena/winterfestrewards.json rename to gui/assets/backend/responses/Athena/winterfestRewards.json diff --git a/gui/assets/backend/responses/Campaign/cardPackData.json b/gui/assets/backend/responses/Campaign/cardPackData.json new file mode 100644 index 0000000..eb6085f --- /dev/null +++ b/gui/assets/backend/responses/Campaign/cardPackData.json @@ -0,0 +1,1540 @@ +{ + "author": "This list was made by PRO100KatYT", + "choiceCardPacks": [ + "CardPack:cardpack_choice_all_r", + "CardPack:cardpack_choice_all_sr", + "CardPack:cardpack_choice_all_vr", + "CardPack:cardpack_choice_defender_r", + "CardPack:cardpack_choice_defender_sr", + "CardPack:cardpack_choice_defender_vr", + "CardPack:cardpack_choice_hero_r", + "CardPack:cardpack_choice_hero_sr", + "CardPack:cardpack_choice_hero_vr", + "CardPack:cardpack_choice_manager_r", + "CardPack:cardpack_choice_manager_sr", + "CardPack:cardpack_choice_manager_vr", + "CardPack:cardpack_choice_melee_r", + "CardPack:cardpack_choice_melee_sr", + "CardPack:cardpack_choice_melee_vr", + "CardPack:cardpack_choice_ranged_r", + "CardPack:cardpack_choice_ranged_sr", + "CardPack:cardpack_choice_ranged_vr", + "CardPack:cardpack_choice_weapon_r", + "CardPack:cardpack_choice_weapon_sr", + "CardPack:cardpack_choice_weapon_vr" + ], + "cardpack:cardpack_choice_all_r": [ + "Defender:did_defenderassault_basic_r_t01", + "Defender:did_defendermelee_basic_r_t01", + "Defender:did_defenderpistol_basic_r_t01", + "Defender:did_defendershotgun_basic_r_t01", + "Defender:did_defendersniper_basic_r_t01", + "Hero:hid_commando_007_r_t01", + "Hero:hid_commando_008_r_t01", + "Hero:hid_commando_009_r_t01", + "Hero:hid_commando_gcgrenade_r_t01", + "Hero:hid_commando_grenadegun_r_t01", + "Hero:hid_commando_guntough_r_t01", + "Hero:hid_commando_shockdamage_r_t01", + "Hero:hid_commando_sony_r_t01", + "Hero:hid_constructor_007_r_t01", + "Hero:hid_constructor_008_r_t01", + "Hero:hid_constructor_009_r_t01", + "Hero:hid_constructor_basehyper_r_t01", + "Hero:hid_constructor_hammertank_r_t01", + "Hero:hid_constructor_plasmadamage_r_t01", + "Hero:hid_constructor_rushbase_r_t01", + "Hero:hid_constructor_sony_r_t01", + "Hero:hid_ninja_007_r_t01", + "Hero:hid_ninja_008_r_t01", + "Hero:hid_ninja_009_r_t01", + "Hero:hid_ninja_slashbreath_r_t01", + "Hero:hid_ninja_slashtail_r_t01", + "Hero:hid_ninja_smokedimmak_r_t01", + "Hero:hid_ninja_sony_r_t01", + "Hero:hid_ninja_starsassassin_r_t01", + "Hero:hid_outlander_007_r_t01", + "Hero:hid_outlander_008_r_t01", + "Hero:hid_outlander_009_r_t01", + "Hero:hid_outlander_punchphase_r_t01", + "Hero:hid_outlander_sony_r_t01", + "Hero:hid_outlander_spherefragment_r_t01", + "Hero:hid_outlander_zoneharvest_r_t01", + "Hero:hid_outlander_zonepistol_r_t01", + "Schematic:sid_assault_auto_r_ore_t01", + "Schematic:sid_assault_burst_r_ore_t01", + "Schematic:sid_assault_lmg_r_ore_t01", + "Schematic:sid_assault_semiauto_r_ore_t01", + "Schematic:sid_assault_singleshot_r_ore_t01", + "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01", + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_ceiling_electric_aoe_r_t01", + "Schematic:sid_ceiling_electric_single_r_t01", + "Schematic:sid_ceiling_gas_r_t01", + "Schematic:sid_edged_axe_heavy_r_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01", + "Schematic:sid_edged_scythe_r_ore_t01", + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_floor_health_r_t01", + "Schematic:sid_floor_launcher_r_t01", + "Schematic:sid_floor_spikes_r_t01", + "Schematic:sid_floor_spikes_wood_r_t01", + "Schematic:sid_floor_ward_r_t01", + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_boltrevolver_r_ore_t01", + "Schematic:sid_pistol_firecracker_r_ore_t01", + "Schematic:sid_pistol_handcannon_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_r_ore_t01", + "Schematic:sid_pistol_rapid_r_ore_t01", + "Schematic:sid_pistol_semiauto_r_ore_t01", + "Schematic:sid_pistol_sixshooter_r_ore_t01", + "Schematic:sid_shotgun_auto_r_ore_t01", + "Schematic:sid_shotgun_break_ou_r_ore_t01", + "Schematic:sid_shotgun_break_r_ore_t01", + "Schematic:sid_shotgun_semiauto_r_ore_t01", + "Schematic:sid_shotgun_standard_r_ore_t01", + "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "Schematic:sid_shotgun_tactical_precision_r_ore_t01", + "Schematic:sid_shotgun_tactical_r_ore_t01", + "Schematic:sid_sniper_amr_r_ore_t01", + "Schematic:sid_sniper_auto_r_ore_t01", + "Schematic:sid_sniper_boltaction_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "Schematic:sid_sniper_standard_r_ore_t01", + "Schematic:sid_wall_darts_r_t01", + "Schematic:sid_wall_electric_r_t01", + "Schematic:sid_wall_launcher_r_t01", + "Schematic:sid_wall_light_r_t01", + "Schematic:sid_wall_wood_spikes_r_t01", + "Worker:managerdoctor_uc_t01", + "Worker:managerengineer_uc_t01", + "Worker:managerexplorer_uc_t01", + "Worker:managergadgeteer_uc_t01", + "Worker:managerinventor_uc_t01", + "Worker:managermartialartist_uc_t01", + "Worker:managersoldier_uc_t01", + "Worker:managertrainer_uc_t01", + "Worker:workerbasic_r_t01" + ], + "cardpack:cardpack_choice_all_sr": [ + "Defender:did_defenderassault_basic_sr_t01", + "Defender:did_defendermelee_basic_sr_t01", + "Defender:did_defenderpistol_basic_sr_t01", + "Defender:did_defendershotgun_basic_sr_t01", + "Defender:did_defendersniper_basic_sr_t01", + "Hero:hid_commando_007_sr_t01", + "Hero:hid_commando_008_foundersf_sr_t01", + "Hero:hid_commando_008_foundersm_sr_t01", + "Hero:hid_commando_008_sr_t01", + "Hero:hid_commando_009_sr_t01", + "Hero:hid_commando_010_sr_t01", + "Hero:hid_commando_gcgrenade_sr_t01", + "Hero:hid_commando_grenadegun_sr_t01", + "Hero:hid_commando_grenademaster_sr_t01", + "Hero:hid_commando_gunheadshot_sr_t01", + "Hero:hid_commando_gunheadshothw_sr_t01", + "Hero:hid_commando_guntough_sr_t01", + "Hero:hid_commando_shockdamage_sr_t01", + "Hero:hid_constructor_007_sr_t01", + "Hero:hid_constructor_008_foundersf_sr_t01", + "Hero:hid_constructor_008_foundersm_sr_t01", + "Hero:hid_constructor_008_sr_t01", + "Hero:hid_constructor_009_sr_t01", + "Hero:hid_constructor_010_sr_t01", + "Hero:hid_constructor_basebig_sr_t01", + "Hero:hid_constructor_basehyper_sr_t01", + "Hero:hid_constructor_basehyperhw_sr_t01", + "Hero:hid_constructor_hammerplasma_sr_t01", + "Hero:hid_constructor_hammertank_sr_t01", + "Hero:hid_constructor_plasmadamage_sr_t01", + "Hero:hid_constructor_rushbase_sr_t01", + "Hero:hid_ninja_007_sr_t01", + "Hero:hid_ninja_008_sr_t01", + "Hero:hid_ninja_009_sr_t01", + "Hero:hid_ninja_010_sr_t01", + "Hero:hid_ninja_slashbreath_sr_t01", + "Hero:hid_ninja_slashtail_sr_t01", + "Hero:hid_ninja_smokedimmak_sr_t01", + "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "Hero:hid_ninja_starsassassin_sr_t01", + "Hero:hid_ninja_starsrain_sr_t01", + "Hero:hid_ninja_starsrainhw_sr_t01", + "Hero:hid_ninja_swordmaster_sr_t01", + "Hero:hid_outlander_007_sr_t01", + "Hero:hid_outlander_008_foundersf_sr_t01", + "Hero:hid_outlander_008_foundersm_sr_t01", + "Hero:hid_outlander_008_sr_t01", + "Hero:hid_outlander_009_sr_t01", + "Hero:hid_outlander_010_sr_t01", + "Hero:hid_outlander_punchdamage_sr_t01", + "Hero:hid_outlander_punchphase_sr_t01", + "Hero:hid_outlander_spherefragment_sr_t01", + "Hero:hid_outlander_zonefragment_sr_t01", + "Hero:hid_outlander_zoneharvest_sr_t01", + "Hero:hid_outlander_zonepistol_sr_t01", + "Hero:hid_outlander_zonepistolhw_sr_t01", + "Schematic:sid_assault_burst_sr_ore_t01", + "Schematic:sid_assault_doubleshot_sr_ore_t01", + "Schematic:sid_assault_hydra_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", + "Schematic:sid_assault_lmg_sr_ore_t01", + "Schematic:sid_assault_raygun_sr_ore_t01", + "Schematic:sid_assault_semiauto_sr_ore_t01", + "Schematic:sid_assault_singleshot_sr_ore_t01", + "Schematic:sid_assault_surgical_sr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_ceiling_electric_aoe_sr_t01", + "Schematic:sid_ceiling_electric_single_sr_t01", + "Schematic:sid_ceiling_gas_sr_t01", + "Schematic:sid_edged_axe_heavy_sr_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01", + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_floor_health_sr_t01", + "Schematic:sid_floor_launcher_sr_t01", + "Schematic:sid_floor_spikes_sr_t01", + "Schematic:sid_floor_spikes_wood_sr_t01", + "Schematic:sid_floor_ward_sr_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_bolt_sr_ore_t01", + "Schematic:sid_pistol_dragon_sr_ore_t01", + "Schematic:sid_pistol_firecracker_sr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", + "Schematic:sid_pistol_handcannon_sr_ore_t01", + "Schematic:sid_pistol_hydraulic_sr_ore_t01", + "Schematic:sid_pistol_rapid_sr_ore_t01", + "Schematic:sid_pistol_rocket_sr_ore_t01", + "Schematic:sid_pistol_semiauto_sr_ore_t01", + "Schematic:sid_pistol_space_sr_ore_t01", + "Schematic:sid_pistol_zapper_sr_ore_t01", + "Schematic:sid_shotgun_auto_sr_ore_t01", + "Schematic:sid_shotgun_break_ou_sr_ore_t01", + "Schematic:sid_shotgun_break_sr_ore_t01", + "Schematic:sid_shotgun_heavy_sr_ore_t01", + "Schematic:sid_shotgun_longarm_sr_ore_t01", + "Schematic:sid_shotgun_minigun_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_sr_ore_t01", + "Schematic:sid_shotgun_standard_sr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", + "Schematic:sid_sniper_amr_sr_ore_t01", + "Schematic:sid_sniper_auto_sr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", + "Schematic:sid_sniper_hydraulic_sr_ore_t01", + "Schematic:sid_sniper_shredder_sr_ore_t01", + "Schematic:sid_sniper_standard_scope_sr_ore_t01", + "Schematic:sid_sniper_standard_sr_ore_t01", + "Schematic:sid_sniper_tripleshot_sr_ore_t01", + "Schematic:sid_wall_darts_sr_t01", + "Schematic:sid_wall_electric_sr_t01", + "Schematic:sid_wall_launcher_sr_t01", + "Schematic:sid_wall_light_sr_t01", + "Schematic:sid_wall_wood_spikes_sr_t01", + "Worker:managerdoctor_vr_t01", + "Worker:managerengineer_vr_t01", + "Worker:managerexplorer_vr_t01", + "Worker:managergadgeteer_vr_t01", + "Worker:managerinventor_vr_t01", + "Worker:managermartialartist_vr_t01", + "Worker:managersoldier_vr_t01", + "Worker:managertrainer_vr_t01", + "Worker:workerbasic_sr_t01" + ], + "cardpack:cardpack_choice_all_vr": [ + "Defender:did_defenderassault_basic_vr_t01", + "Defender:did_defenderassault_founders_vr_t01", + "Defender:did_defendermelee_basic_vr_t01", + "Defender:did_defenderpistol_basic_vr_t01", + "Defender:did_defenderpistol_founders_vr_t01", + "Defender:did_defendershotgun_basic_vr_t01", + "Defender:did_defendersniper_basic_vr_t01", + "Hero:hid_commando_007_vr_t01", + "Hero:hid_commando_008_vr_t01", + "Hero:hid_commando_009_vr_t01", + "Hero:hid_commando_010_vr_t01", + "Hero:hid_commando_gcgrenade_vr_t01", + "Hero:hid_commando_grenadegun_vr_t01", + "Hero:hid_commando_gunheadshot_vr_t01", + "Hero:hid_commando_guntough_vr_t01", + "Hero:hid_commando_shockdamage_vr_t01", + "Hero:hid_constructor_007_vr_t01", + "Hero:hid_constructor_008_vr_t01", + "Hero:hid_constructor_009_vr_t01", + "Hero:hid_constructor_010_vr_t01", + "Hero:hid_constructor_basehyper_vr_t01", + "Hero:hid_constructor_hammerplasma_vr_t01", + "Hero:hid_constructor_hammertank_vr_t01", + "Hero:hid_constructor_plasmadamage_vr_t01", + "Hero:hid_constructor_rushbase_vr_t01", + "Hero:hid_ninja_007_vr_t01", + "Hero:hid_ninja_008_vr_t01", + "Hero:hid_ninja_009_vr_t01", + "Hero:hid_ninja_010_vr_t01", + "Hero:hid_ninja_slashbreath_vr_t01", + "Hero:hid_ninja_slashtail_vr_t01", + "Hero:hid_ninja_smokedimmak_vr_t01", + "Hero:hid_ninja_starsassassin_vr_t01", + "Hero:hid_ninja_starsrain_vr_t01", + "Hero:hid_outlander_007_vr_t01", + "Hero:hid_outlander_008_vr_t01", + "Hero:hid_outlander_009_vr_t01", + "Hero:hid_outlander_010_vr_t01", + "Hero:hid_outlander_punchdamage_vr_t01", + "Hero:hid_outlander_punchphase_vr_t01", + "Hero:hid_outlander_spherefragment_vr_t01", + "Hero:hid_outlander_zoneharvest_vr_t01", + "Hero:hid_outlander_zonepistol_vr_t01", + "Schematic:sid_assault_auto_vr_ore_t01", + "Schematic:sid_assault_burst_vr_ore_t01", + "Schematic:sid_assault_doubleshot_vr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_vr_ore_t01", + "Schematic:sid_assault_lmg_vr_ore_t01", + "Schematic:sid_assault_raygun_vr_ore_t01", + "Schematic:sid_assault_semiauto_founders_vr_ore_t01", + "Schematic:sid_assault_semiauto_vr_ore_t01", + "Schematic:sid_assault_singleshot_vr_ore_t01", + "Schematic:sid_assault_surgical_vr_ore_t01", + "Schematic:sid_blunt_club_light_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_founders_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_vr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_vr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_vr_ore_t01", + "Schematic:sid_blunt_light_vr_ore_t01", + "Schematic:sid_blunt_medium_vr_ore_t01", + "Schematic:sid_ceiling_electric_aoe_vr_t01", + "Schematic:sid_ceiling_electric_single_vr_t01", + "Schematic:sid_ceiling_gas_vr_t01", + "Schematic:sid_edged_axe_heavy_vr_ore_t01", + "Schematic:sid_edged_axe_light_vr_ore_t01", + "Schematic:sid_edged_axe_medium_founders_vr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_vr_ore_t01", + "Schematic:sid_edged_axe_medium_vr_ore_t01", + "Schematic:sid_edged_scythe_laser_vr_ore_t01", + "Schematic:sid_edged_scythe_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_founders_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_vr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_vr_ore_t01", + "Schematic:sid_edged_sword_light_founders_vr_ore_t01", + "Schematic:sid_edged_sword_light_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_vr_ore_t01", + "Schematic:sid_edged_sword_medium_vr_ore_t01", + "Schematic:sid_floor_health_vr_t01", + "Schematic:sid_floor_launcher_vr_t01", + "Schematic:sid_floor_spikes_vr_t01", + "Schematic:sid_floor_spikes_wood_vr_t01", + "Schematic:sid_floor_ward_vr_t01", + "Schematic:sid_launcher_grenade_vr_ore_t01", + "Schematic:sid_launcher_hydraulic_vr_ore_t01", + "Schematic:sid_launcher_rocket_vr_ore_t01", + "Schematic:sid_piercing_spear_laser_vr_ore_t01", + "Schematic:sid_piercing_spear_military_vr_ore_t01", + "Schematic:sid_piercing_spear_vr_ore_t01", + "Schematic:sid_pistol_auto_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_vr_ore_t01", + "Schematic:sid_pistol_bolt_vr_ore_t01", + "Schematic:sid_pistol_dragon_vr_ore_t01", + "Schematic:sid_pistol_firecracker_vr_ore_t01", + "Schematic:sid_pistol_gatling_vr_ore_t01", + "Schematic:sid_pistol_handcannon_founders_vr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_vr_ore_t01", + "Schematic:sid_pistol_handcannon_vr_ore_t01", + "Schematic:sid_pistol_hydraulic_vr_ore_t01", + "Schematic:sid_pistol_rapid_founders_vr_ore_t01", + "Schematic:sid_pistol_rapid_vr_ore_t01", + "Schematic:sid_pistol_semiauto_founders_vr_ore_t01", + "Schematic:sid_pistol_semiauto_vr_ore_t01", + "Schematic:sid_pistol_space_vr_ore_t01", + "Schematic:sid_pistol_zapper_vr_ore_t01", + "Schematic:sid_shotgun_auto_founders_vr_ore_t01", + "Schematic:sid_shotgun_auto_vr_ore_t01", + "Schematic:sid_shotgun_break_ou_vr_ore_t01", + "Schematic:sid_shotgun_break_vr_ore_t01", + "Schematic:sid_shotgun_longarm_vr_ore_t01", + "Schematic:sid_shotgun_semiauto_vr_ore_t01", + "Schematic:sid_shotgun_standard_vr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_vr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_vr_ore_t01", + "Schematic:sid_sniper_amr_vr_ore_t01", + "Schematic:sid_sniper_auto_founders_vr_ore_t01", + "Schematic:sid_sniper_auto_vr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_vr_ore_t01", + "Schematic:sid_sniper_hydraulic_vr_ore_t01", + "Schematic:sid_sniper_shredder_vr_ore_t01", + "Schematic:sid_sniper_standard_founders_vr_ore_t01", + "Schematic:sid_sniper_standard_scope_vr_ore_t01", + "Schematic:sid_sniper_standard_vr_ore_t01", + "Schematic:sid_sniper_tripleshot_vr_ore_t01", + "Schematic:sid_wall_darts_vr_t01", + "Schematic:sid_wall_electric_vr_t01", + "Schematic:sid_wall_launcher_vr_t01", + "Schematic:sid_wall_light_vr_t01", + "Schematic:sid_wall_wood_spikes_vr_t01", + "Worker:managerdoctor_r_t01", + "Worker:managerengineer_r_t01", + "Worker:managerexplorer_r_t01", + "Worker:managergadgeteer_r_t01", + "Worker:managerinventor_r_t01", + "Worker:managermartialartist_r_t01", + "Worker:managerquestdoctor_r_t01", + "Worker:managersoldier_r_t01", + "Worker:managertrainer_r_t01", + "Worker:workerbasic_vr_t01" + ], + "cardpack:cardpack_choice_defender_r": [ + "Defender:did_defenderassault_basic_r_t01", + "Defender:did_defendermelee_basic_r_t01", + "Defender:did_defenderpistol_basic_r_t01", + "Defender:did_defendershotgun_basic_r_t01", + "Defender:did_defendersniper_basic_r_t01" + ], + "cardpack:cardpack_choice_defender_sr": [ + "Defender:did_defenderassault_basic_sr_t01", + "Defender:did_defendermelee_basic_sr_t01", + "Defender:did_defenderpistol_basic_sr_t01", + "Defender:did_defendershotgun_basic_sr_t01", + "Defender:did_defendersniper_basic_sr_t01" + ], + "cardpack:cardpack_choice_defender_vr": [ + "Defender:did_defenderassault_basic_vr_t01", + "Defender:did_defenderassault_founders_vr_t01", + "Defender:did_defendermelee_basic_vr_t01", + "Defender:did_defenderpistol_basic_vr_t01", + "Defender:did_defenderpistol_founders_vr_t01", + "Defender:did_defendershotgun_basic_vr_t01", + "Defender:did_defendersniper_basic_vr_t01" + ], + "cardpack:cardpack_choice_hero_r": [ + "Hero:hid_outlander_zonepistol_r_t01", + "Hero:hid_outlander_zoneharvest_r_t01", + "Hero:hid_outlander_spherefragment_r_t01", + "Hero:hid_outlander_punchphase_r_t01", + "Hero:hid_outlander_009_r_t01", + "Hero:hid_outlander_008_r_t01", + "Hero:hid_outlander_007_r_t01", + "Hero:hid_outlander_sony_r_t01", + "Hero:hid_ninja_starsassassin_r_t01", + "Hero:hid_ninja_smokedimmak_r_t01", + "Hero:hid_ninja_slashtail_r_t01", + "Hero:hid_ninja_slashbreath_r_t01", + "Hero:hid_ninja_009_r_t01", + "Hero:hid_ninja_008_r_t01", + "Hero:hid_ninja_007_r_t01", + "Hero:hid_ninja_sony_r_t01", + "Hero:hid_constructor_rushbase_r_t01", + "Hero:hid_constructor_plasmadamage_r_t01", + "Hero:hid_constructor_hammertank_r_t01", + "Hero:hid_constructor_basehyper_r_t01", + "Hero:hid_constructor_009_r_t01", + "Hero:hid_constructor_008_r_t01", + "Hero:hid_constructor_007_r_t01", + "Hero:hid_constructor_sony_r_t01", + "Hero:hid_commando_shockdamage_r_t01", + "Hero:hid_commando_guntough_r_t01", + "Hero:hid_commando_grenadegun_r_t01", + "Hero:hid_commando_gcgrenade_r_t01", + "Hero:hid_commando_009_r_t01", + "Hero:hid_commando_008_r_t01", + "Hero:hid_commando_007_r_t01", + "Hero:hid_commando_sony_r_t01" + ], + "cardpack:cardpack_choice_hero_sr": [ + "Hero:hid_outlander_zonepistolhw_sr_t01", + "Hero:hid_outlander_zonepistol_sr_t01", + "Hero:hid_outlander_zoneharvest_sr_t01", + "Hero:hid_outlander_zonefragment_sr_t01", + "Hero:hid_outlander_spherefragment_sr_t01", + "Hero:hid_outlander_punchphase_sr_t01", + "Hero:hid_outlander_punchdamage_sr_t01", + "Hero:hid_outlander_010_sr_t01", + "Hero:hid_outlander_009_sr_t01", + "Hero:hid_outlander_008_sr_t01", + "Hero:hid_outlander_007_sr_t01", + "Hero:hid_outlander_008_foundersf_sr_t01", + "Hero:hid_outlander_008_foundersm_sr_t01", + "Hero:hid_ninja_swordmaster_sr_t01", + "Hero:hid_ninja_starsrainhw_sr_t01", + "Hero:hid_ninja_starsrain_sr_t01", + "Hero:hid_ninja_starsassassin_sr_t01", + "Hero:hid_ninja_smokedimmak_sr_t01", + "Hero:hid_ninja_slashtail_sr_t01", + "Hero:hid_ninja_slashbreath_sr_t01", + "Hero:hid_ninja_010_sr_t01", + "Hero:hid_ninja_009_sr_t01", + "Hero:hid_ninja_008_sr_t01", + "Hero:hid_ninja_007_sr_t01", + "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "Hero:hid_constructor_rushbase_sr_t01", + "Hero:hid_constructor_plasmadamage_sr_t01", + "Hero:hid_constructor_hammertank_sr_t01", + "Hero:hid_constructor_hammerplasma_sr_t01", + "Hero:hid_constructor_basehyperhw_sr_t01", + "Hero:hid_constructor_basehyper_sr_t01", + "Hero:hid_constructor_basebig_sr_t01", + "Hero:hid_constructor_010_sr_t01", + "Hero:hid_constructor_009_sr_t01", + "Hero:hid_constructor_008_sr_t01", + "Hero:hid_constructor_007_sr_t01", + "Hero:hid_constructor_008_foundersf_sr_t01", + "Hero:hid_constructor_008_foundersm_sr_t01", + "Hero:hid_commando_shockdamage_sr_t01", + "Hero:hid_commando_guntough_sr_t01", + "Hero:hid_commando_gunheadshothw_sr_t01", + "Hero:hid_commando_gunheadshot_sr_t01", + "Hero:hid_commando_grenademaster_sr_t01", + "Hero:hid_commando_grenadegun_sr_t01", + "Hero:hid_commando_gcgrenade_sr_t01", + "Hero:hid_commando_010_sr_t01", + "Hero:hid_commando_009_sr_t01", + "Hero:hid_commando_008_sr_t01", + "Hero:hid_commando_007_sr_t01", + "Hero:hid_commando_008_foundersf_sr_t01", + "Hero:hid_commando_008_foundersm_sr_t01" + ], + "cardpack:cardpack_choice_hero_vr": [ + "Hero:hid_outlander_zonepistol_vr_t01", + "Hero:hid_outlander_zoneharvest_vr_t01", + "Hero:hid_outlander_spherefragment_vr_t01", + "Hero:hid_outlander_punchphase_vr_t01", + "Hero:hid_outlander_punchdamage_vr_t01", + "Hero:hid_outlander_010_vr_t01", + "Hero:hid_outlander_009_vr_t01", + "Hero:hid_outlander_008_vr_t01", + "Hero:hid_outlander_007_vr_t01", + "Hero:hid_ninja_starsrain_vr_t01", + "Hero:hid_ninja_starsassassin_vr_t01", + "Hero:hid_ninja_smokedimmak_vr_t01", + "Hero:hid_ninja_slashtail_vr_t01", + "Hero:hid_ninja_slashbreath_vr_t01", + "Hero:hid_ninja_010_vr_t01", + "Hero:hid_ninja_009_vr_t01", + "Hero:hid_ninja_008_vr_t01", + "Hero:hid_ninja_007_vr_t01", + "Hero:hid_constructor_rushbase_vr_t01", + "Hero:hid_constructor_plasmadamage_vr_t01", + "Hero:hid_constructor_hammertank_vr_t01", + "Hero:hid_constructor_hammerplasma_vr_t01", + "Hero:hid_constructor_basehyper_vr_t01", + "Hero:hid_constructor_010_vr_t01", + "Hero:hid_constructor_009_vr_t01", + "Hero:hid_constructor_008_vr_t01", + "Hero:hid_constructor_007_vr_t01", + "Hero:hid_commando_shockdamage_vr_t01", + "Hero:hid_commando_guntough_vr_t01", + "Hero:hid_commando_gunheadshot_vr_t01", + "Hero:hid_commando_grenadegun_vr_t01", + "Hero:hid_commando_gcgrenade_vr_t01", + "Hero:hid_commando_010_vr_t01", + "Hero:hid_commando_009_vr_t01", + "Hero:hid_commando_008_vr_t01", + "Hero:hid_commando_007_vr_t01" + ], + "cardpack:cardpack_choice_manager_r": [ + "Worker:managerquestdoctor_r_t01", + "Worker:managertrainer_r_t01", + "Worker:managersoldier_r_t01", + "Worker:managermartialartist_r_t01", + "Worker:managerinventor_r_t01", + "Worker:managergadgeteer_r_t01", + "Worker:managerexplorer_r_t01", + "Worker:managerengineer_r_t01", + "Worker:managerdoctor_r_t01" + ], + "cardpack:cardpack_choice_manager_sr": [ + "Worker:managerdoctor_sr_kingsly_t01", + "Worker:managerdoctor_sr_noctor_t01", + "Worker:managerdoctor_sr_treky_t01", + "Worker:managerengineer_sr_countess_t01", + "Worker:managerengineer_sr_maths_t01", + "Worker:managerengineer_sr_sobs_t01", + "Worker:managerexplorer_sr_birdie_t01", + "Worker:managerexplorer_sr_eagle_t01", + "Worker:managerexplorer_sr_spacebound_t01", + "Worker:managergadgeteer_sr_fixer_t01", + "Worker:managergadgeteer_sr_flak_t01", + "Worker:managergadgeteer_sr_zapps_t01", + "Worker:managerinventor_sr_frequency_t01", + "Worker:managerinventor_sr_rad_t01", + "Worker:managerinventor_sr_square_t01", + "Worker:managermartialartist_sr_dragon_t01", + "Worker:managermartialartist_sr_samurai_t01", + "Worker:managermartialartist_sr_tiger_t01", + "Worker:managersoldier_sr_malcolm_t01", + "Worker:managersoldier_sr_princess_t01", + "Worker:managersoldier_sr_ramsie_t01", + "Worker:managertrainer_sr_jumpy_t01", + "Worker:managertrainer_sr_raider_t01", + "Worker:managertrainer_sr_yoglattes_t01" + ], + "cardpack:cardpack_choice_manager_vr": [ + "Worker:managertrainer_vr_t01", + "Worker:managersoldier_vr_t01", + "Worker:managermartialartist_vr_t01", + "Worker:managerinventor_vr_t01", + "Worker:managergadgeteer_vr_t01", + "Worker:managerexplorer_vr_t01", + "Worker:managerengineer_vr_t01", + "Worker:managerdoctor_vr_t01" + ], + "cardpack:cardpack_choice_melee_r": [ + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_scythe_r_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_heavy_r_ore_t01", + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01", + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01" + ], + "cardpack:cardpack_choice_melee_sr": [ + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01", + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_heavy_sr_ore_t01", + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01" + ], + "cardpack:cardpack_choice_melee_vr": [ + "Schematic:sid_piercing_spear_military_vr_ore_t01", + "Schematic:sid_piercing_spear_laser_vr_ore_t01", + "Schematic:sid_piercing_spear_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_vr_ore_t01", + "Schematic:sid_edged_sword_medium_vr_ore_t01", + "Schematic:sid_edged_sword_light_vr_ore_t01", + "Schematic:sid_edged_sword_light_founders_vr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_founders_vr_ore_t01", + "Schematic:sid_edged_scythe_laser_vr_ore_t01", + "Schematic:sid_edged_scythe_vr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_vr_ore_t01", + "Schematic:sid_edged_axe_medium_vr_ore_t01", + "Schematic:sid_edged_axe_medium_founders_vr_ore_t01", + "Schematic:sid_edged_axe_light_vr_ore_t01", + "Schematic:sid_edged_axe_heavy_vr_ore_t01", + "Schematic:sid_blunt_medium_vr_ore_t01", + "Schematic:sid_blunt_light_vr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_founders_vr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_vr_ore_t01", + "Schematic:sid_blunt_club_light_vr_ore_t01" + ], + "cardpack:cardpack_choice_ranged_r": [ + "Schematic:sid_assault_auto_r_ore_t01", + "Schematic:sid_assault_singleshot_r_ore_t01", + "Schematic:sid_assault_semiauto_r_ore_t01", + "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "Schematic:sid_assault_lmg_r_ore_t01", + "Schematic:sid_assault_burst_r_ore_t01", + "Schematic:sid_sniper_standard_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "Schematic:sid_sniper_boltaction_r_ore_t01", + "Schematic:sid_sniper_auto_r_ore_t01", + "Schematic:sid_sniper_amr_r_ore_t01", + "Schematic:sid_shotgun_tactical_precision_r_ore_t01", + "Schematic:sid_shotgun_tactical_r_ore_t01", + "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "Schematic:sid_shotgun_standard_r_ore_t01", + "Schematic:sid_shotgun_semiauto_r_ore_t01", + "Schematic:sid_shotgun_break_ou_r_ore_t01", + "Schematic:sid_shotgun_break_r_ore_t01", + "Schematic:sid_shotgun_auto_r_ore_t01", + "Schematic:sid_pistol_sixshooter_r_ore_t01", + "Schematic:sid_pistol_semiauto_r_ore_t01", + "Schematic:sid_pistol_rapid_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_r_ore_t01", + "Schematic:sid_pistol_handcannon_r_ore_t01", + "Schematic:sid_pistol_firecracker_r_ore_t01", + "Schematic:sid_pistol_boltrevolver_r_ore_t01", + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01", + "Schematic:sid_launcher_rocket_r_ore_t01", + "Schematic:sid_launcher_grenade_r_ore_t01" + ], + "cardpack:cardpack_choice_ranged_sr": [ + "Schematic:sid_assault_auto_sr_ore_t01", + "Schematic:sid_assault_auto_halloween_sr_ore_t01", + "Schematic:sid_assault_auto_founders_sr_ore_t01", + "Schematic:sid_assault_surgical_sr_ore_t01", + "Schematic:sid_assault_singleshot_sr_ore_t01", + "Schematic:sid_assault_semiauto_sr_ore_t01", + "Schematic:sid_assault_raygun_sr_ore_t01", + "Schematic:sid_assault_lmg_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", + "Schematic:sid_assault_hydra_sr_ore_t01", + "Schematic:sid_assault_doubleshot_sr_ore_t01", + "Schematic:sid_assault_burst_sr_ore_t01", + "Schematic:sid_sniper_tripleshot_sr_ore_t01", + "Schematic:sid_sniper_standard_scope_sr_ore_t01", + "Schematic:sid_sniper_standard_sr_ore_t01", + "Schematic:sid_sniper_shredder_sr_ore_t01", + "Schematic:sid_sniper_hydraulic_sr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", + "Schematic:sid_sniper_auto_sr_ore_t01", + "Schematic:sid_sniper_amr_sr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "Schematic:sid_shotgun_standard_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_sr_ore_t01", + "Schematic:sid_shotgun_minigun_sr_ore_t01", + "Schematic:sid_shotgun_longarm_sr_ore_t01", + "Schematic:sid_shotgun_heavy_sr_ore_t01", + "Schematic:sid_shotgun_break_ou_sr_ore_t01", + "Schematic:sid_shotgun_break_sr_ore_t01", + "Schematic:sid_shotgun_auto_sr_ore_t01", + "Schematic:sid_pistol_zapper_sr_ore_t01", + "Schematic:sid_pistol_space_sr_ore_t01", + "Schematic:sid_pistol_semiauto_sr_ore_t01", + "Schematic:sid_pistol_rocket_sr_ore_t01", + "Schematic:sid_pistol_rapid_sr_ore_t01", + "Schematic:sid_pistol_hydraulic_sr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", + "Schematic:sid_pistol_handcannon_sr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_firecracker_sr_ore_t01", + "Schematic:sid_pistol_dragon_sr_ore_t01", + "Schematic:sid_pistol_bolt_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01", + "Schematic:sid_launcher_rocket_sr_ore_t01", + "Schematic:sid_launcher_pumpkin_rpg_sr_ore_t01", + "Schematic:sid_launcher_hydraulic_sr_ore_t01", + "Schematic:sid_launcher_grenade_sr_ore_t01" + ], + "cardpack:cardpack_choice_ranged_vr": [ + "Schematic:sid_assault_auto_vr_ore_t01", + "Schematic:sid_assault_surgical_vr_ore_t01", + "Schematic:sid_assault_singleshot_vr_ore_t01", + "Schematic:sid_assault_semiauto_vr_ore_t01", + "Schematic:sid_assault_semiauto_founders_vr_ore_t01", + "Schematic:sid_assault_raygun_vr_ore_t01", + "Schematic:sid_assault_lmg_vr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_vr_ore_t01", + "Schematic:sid_assault_doubleshot_vr_ore_t01", + "Schematic:sid_assault_burst_vr_ore_t01", + "Schematic:sid_sniper_tripleshot_vr_ore_t01", + "Schematic:sid_sniper_standard_scope_vr_ore_t01", + "Schematic:sid_sniper_standard_vr_ore_t01", + "Schematic:sid_sniper_standard_founders_vr_ore_t01", + "Schematic:sid_sniper_shredder_vr_ore_t01", + "Schematic:sid_sniper_hydraulic_vr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_vr_ore_t01", + "Schematic:sid_sniper_auto_vr_ore_t01", + "Schematic:sid_sniper_auto_founders_vr_ore_t01", + "Schematic:sid_sniper_amr_vr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_vr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_vr_ore_t01", + "Schematic:sid_shotgun_standard_vr_ore_t01", + "Schematic:sid_shotgun_semiauto_vr_ore_t01", + "Schematic:sid_shotgun_longarm_vr_ore_t01", + "Schematic:sid_shotgun_break_ou_vr_ore_t01", + "Schematic:sid_shotgun_break_vr_ore_t01", + "Schematic:sid_shotgun_auto_vr_ore_t01", + "Schematic:sid_shotgun_auto_founders_vr_ore_t01", + "Schematic:sid_pistol_zapper_vr_ore_t01", + "Schematic:sid_pistol_space_vr_ore_t01", + "Schematic:sid_pistol_semiauto_vr_ore_t01", + "Schematic:sid_pistol_semiauto_founders_vr_ore_t01", + "Schematic:sid_pistol_rapid_vr_ore_t01", + "Schematic:sid_pistol_rapid_founders_vr_ore_t01", + "Schematic:sid_pistol_hydraulic_vr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_vr_ore_t01", + "Schematic:sid_pistol_handcannon_vr_ore_t01", + "Schematic:sid_pistol_handcannon_founders_vr_ore_t01", + "Schematic:sid_pistol_gatling_vr_ore_t01", + "Schematic:sid_pistol_firecracker_vr_ore_t01", + "Schematic:sid_pistol_dragon_vr_ore_t01", + "Schematic:sid_pistol_bolt_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_vr_ore_t01", + "Schematic:sid_pistol_auto_vr_ore_t01", + "Schematic:sid_launcher_rocket_vr_ore_t01", + "Schematic:sid_launcher_hydraulic_vr_ore_t01", + "Schematic:sid_launcher_grenade_vr_ore_t01" + ], + "cardpack:cardpack_choice_weapon_r": [ + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_scythe_r_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_heavy_r_ore_t01", + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01", + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01", + "Schematic:sid_assault_auto_r_ore_t01", + "Schematic:sid_assault_singleshot_r_ore_t01", + "Schematic:sid_assault_semiauto_r_ore_t01", + "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "Schematic:sid_assault_lmg_r_ore_t01", + "Schematic:sid_assault_burst_r_ore_t01", + "Schematic:sid_sniper_standard_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "Schematic:sid_sniper_boltaction_r_ore_t01", + "Schematic:sid_sniper_auto_r_ore_t01", + "Schematic:sid_sniper_amr_r_ore_t01", + "Schematic:sid_shotgun_tactical_precision_r_ore_t01", + "Schematic:sid_shotgun_tactical_r_ore_t01", + "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "Schematic:sid_shotgun_standard_r_ore_t01", + "Schematic:sid_shotgun_semiauto_r_ore_t01", + "Schematic:sid_shotgun_break_ou_r_ore_t01", + "Schematic:sid_shotgun_break_r_ore_t01", + "Schematic:sid_shotgun_auto_r_ore_t01", + "Schematic:sid_pistol_sixshooter_r_ore_t01", + "Schematic:sid_pistol_semiauto_r_ore_t01", + "Schematic:sid_pistol_rapid_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_r_ore_t01", + "Schematic:sid_pistol_handcannon_r_ore_t01", + "Schematic:sid_pistol_firecracker_r_ore_t01", + "Schematic:sid_pistol_boltrevolver_r_ore_t01", + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01", + "Schematic:sid_launcher_rocket_r_ore_t01", + "Schematic:sid_launcher_grenade_r_ore_t01" + ], + "cardpack:cardpack_choice_weapon_sr": [ + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01", + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_heavy_sr_ore_t01", + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01", + "Schematic:sid_assault_auto_sr_ore_t01", + "Schematic:sid_assault_auto_halloween_sr_ore_t01", + "Schematic:sid_assault_auto_founders_sr_ore_t01", + "Schematic:sid_assault_surgical_sr_ore_t01", + "Schematic:sid_assault_singleshot_sr_ore_t01", + "Schematic:sid_assault_semiauto_sr_ore_t01", + "Schematic:sid_assault_raygun_sr_ore_t01", + "Schematic:sid_assault_lmg_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", + "Schematic:sid_assault_hydra_sr_ore_t01", + "Schematic:sid_assault_doubleshot_sr_ore_t01", + "Schematic:sid_assault_burst_sr_ore_t01", + "Schematic:sid_sniper_tripleshot_sr_ore_t01", + "Schematic:sid_sniper_standard_scope_sr_ore_t01", + "Schematic:sid_sniper_standard_sr_ore_t01", + "Schematic:sid_sniper_shredder_sr_ore_t01", + "Schematic:sid_sniper_hydraulic_sr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", + "Schematic:sid_sniper_auto_sr_ore_t01", + "Schematic:sid_sniper_amr_sr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "Schematic:sid_shotgun_standard_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_sr_ore_t01", + "Schematic:sid_shotgun_minigun_sr_ore_t01", + "Schematic:sid_shotgun_longarm_sr_ore_t01", + "Schematic:sid_shotgun_heavy_sr_ore_t01", + "Schematic:sid_shotgun_break_ou_sr_ore_t01", + "Schematic:sid_shotgun_break_sr_ore_t01", + "Schematic:sid_shotgun_auto_sr_ore_t01", + "Schematic:sid_pistol_zapper_sr_ore_t01", + "Schematic:sid_pistol_space_sr_ore_t01", + "Schematic:sid_pistol_semiauto_sr_ore_t01", + "Schematic:sid_pistol_rocket_sr_ore_t01", + "Schematic:sid_pistol_rapid_sr_ore_t01", + "Schematic:sid_pistol_hydraulic_sr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", + "Schematic:sid_pistol_handcannon_sr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_firecracker_sr_ore_t01", + "Schematic:sid_pistol_dragon_sr_ore_t01", + "Schematic:sid_pistol_bolt_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01", + "Schematic:sid_launcher_rocket_sr_ore_t01", + "Schematic:sid_launcher_pumpkin_rpg_sr_ore_t01", + "Schematic:sid_launcher_hydraulic_sr_ore_t01", + "Schematic:sid_launcher_grenade_sr_ore_t01" + ], + "cardpack:cardpack_choice_weapon_vr": [ + "Schematic:sid_assault_auto_vr_ore_t01", + "Schematic:sid_assault_surgical_vr_ore_t01", + "Schematic:sid_assault_singleshot_vr_ore_t01", + "Schematic:sid_assault_semiauto_vr_ore_t01", + "Schematic:sid_assault_semiauto_founders_vr_ore_t01", + "Schematic:sid_assault_raygun_vr_ore_t01", + "Schematic:sid_assault_lmg_vr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_vr_ore_t01", + "Schematic:sid_assault_doubleshot_vr_ore_t01", + "Schematic:sid_assault_burst_vr_ore_t01", + "Schematic:sid_sniper_tripleshot_vr_ore_t01", + "Schematic:sid_sniper_standard_scope_vr_ore_t01", + "Schematic:sid_sniper_standard_vr_ore_t01", + "Schematic:sid_sniper_standard_founders_vr_ore_t01", + "Schematic:sid_sniper_shredder_vr_ore_t01", + "Schematic:sid_sniper_hydraulic_vr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_vr_ore_t01", + "Schematic:sid_sniper_auto_vr_ore_t01", + "Schematic:sid_sniper_auto_founders_vr_ore_t01", + "Schematic:sid_sniper_amr_vr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_vr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_vr_ore_t01", + "Schematic:sid_shotgun_standard_vr_ore_t01", + "Schematic:sid_shotgun_semiauto_vr_ore_t01", + "Schematic:sid_shotgun_longarm_vr_ore_t01", + "Schematic:sid_shotgun_break_ou_vr_ore_t01", + "Schematic:sid_shotgun_break_vr_ore_t01", + "Schematic:sid_shotgun_auto_vr_ore_t01", + "Schematic:sid_shotgun_auto_founders_vr_ore_t01", + "Schematic:sid_pistol_zapper_vr_ore_t01", + "Schematic:sid_pistol_space_vr_ore_t01", + "Schematic:sid_pistol_semiauto_vr_ore_t01", + "Schematic:sid_pistol_semiauto_founders_vr_ore_t01", + "Schematic:sid_pistol_rapid_vr_ore_t01", + "Schematic:sid_pistol_rapid_founders_vr_ore_t01", + "Schematic:sid_pistol_hydraulic_vr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_vr_ore_t01", + "Schematic:sid_pistol_handcannon_vr_ore_t01", + "Schematic:sid_pistol_handcannon_founders_vr_ore_t01", + "Schematic:sid_pistol_gatling_vr_ore_t01", + "Schematic:sid_pistol_firecracker_vr_ore_t01", + "Schematic:sid_pistol_dragon_vr_ore_t01", + "Schematic:sid_pistol_bolt_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_vr_ore_t01", + "Schematic:sid_pistol_auto_vr_ore_t01", + "Schematic:sid_launcher_rocket_vr_ore_t01", + "Schematic:sid_launcher_hydraulic_vr_ore_t01", + "Schematic:sid_launcher_grenade_vr_ore_t01", + "Schematic:sid_piercing_spear_military_vr_ore_t01", + "Schematic:sid_piercing_spear_laser_vr_ore_t01", + "Schematic:sid_piercing_spear_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_vr_ore_t01", + "Schematic:sid_edged_sword_medium_vr_ore_t01", + "Schematic:sid_edged_sword_light_vr_ore_t01", + "Schematic:sid_edged_sword_light_founders_vr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_founders_vr_ore_t01", + "Schematic:sid_edged_scythe_laser_vr_ore_t01", + "Schematic:sid_edged_scythe_vr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_vr_ore_t01", + "Schematic:sid_edged_axe_medium_vr_ore_t01", + "Schematic:sid_edged_axe_medium_founders_vr_ore_t01", + "Schematic:sid_edged_axe_light_vr_ore_t01", + "Schematic:sid_edged_axe_heavy_vr_ore_t01", + "Schematic:sid_blunt_medium_vr_ore_t01", + "Schematic:sid_blunt_light_vr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_founders_vr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_vr_ore_t01", + "Schematic:sid_blunt_club_light_vr_ore_t01" + ], + "default": [ + "Defender:did_defenderassault_basic_c_t01", + "Defender:did_defenderassault_basic_r_t01", + "Defender:did_defenderassault_basic_sr_t01", + "Defender:did_defenderassault_basic_uc_t01", + "Defender:did_defenderassault_basic_vr_t01", + "Defender:did_defenderassault_founders_vr_t01", + "Defender:did_defendermelee_basic_c_t01", + "Defender:did_defendermelee_basic_r_t01", + "Defender:did_defendermelee_basic_sr_t01", + "Defender:did_defendermelee_basic_uc_t01", + "Defender:did_defendermelee_basic_vr_t01", + "Defender:did_defenderpistol_basic_c_t01", + "Defender:did_defenderpistol_basic_r_t01", + "Defender:did_defenderpistol_basic_sr_t01", + "Defender:did_defenderpistol_basic_uc_t01", + "Defender:did_defenderpistol_basic_vr_t01", + "Defender:did_defenderpistol_founders_vr_t01", + "Defender:did_defendershotgun_basic_c_t01", + "Defender:did_defendershotgun_basic_r_t01", + "Defender:did_defendershotgun_basic_sr_t01", + "Defender:did_defendershotgun_basic_uc_t01", + "Defender:did_defendershotgun_basic_vr_t01", + "Defender:did_defendersniper_basic_c_t01", + "Defender:did_defendersniper_basic_r_t01", + "Defender:did_defendersniper_basic_sr_t01", + "Defender:did_defendersniper_basic_uc_t01", + "Defender:did_defendersniper_basic_vr_t01", + "Hero:hid_commando_007_r_t01", + "Hero:hid_commando_007_sr_t01", + "Hero:hid_commando_007_uc_t01", + "Hero:hid_commando_007_vr_t01", + "Hero:hid_commando_008_foundersf_sr_t01", + "Hero:hid_commando_008_foundersm_sr_t01", + "Hero:hid_commando_008_r_t01", + "Hero:hid_commando_008_sr_t01", + "Hero:hid_commando_008_vr_t01", + "Hero:hid_commando_009_r_t01", + "Hero:hid_commando_009_sr_t01", + "Hero:hid_commando_009_vr_t01", + "Hero:hid_commando_010_sr_t01", + "Hero:hid_commando_010_vr_t01", + "Hero:hid_commando_gcgrenade_r_t01", + "Hero:hid_commando_gcgrenade_sr_t01", + "Hero:hid_commando_gcgrenade_vr_t01", + "Hero:hid_commando_grenadegun_r_t01", + "Hero:hid_commando_grenadegun_sr_t01", + "Hero:hid_commando_grenadegun_uc_t01", + "Hero:hid_commando_grenadegun_vr_t01", + "Hero:hid_commando_grenademaster_sr_t01", + "Hero:hid_commando_gunheadshot_sr_t01", + "Hero:hid_commando_gunheadshot_vr_t01", + "Hero:hid_commando_gunheadshothw_sr_t01", + "Hero:hid_commando_guntough_r_t01", + "Hero:hid_commando_guntough_sr_t01", + "Hero:hid_commando_guntough_uc_t01", + "Hero:hid_commando_guntough_vr_t01", + "Hero:hid_commando_shockdamage_r_t01", + "Hero:hid_commando_shockdamage_sr_t01", + "Hero:hid_commando_shockdamage_vr_t01", + "Hero:hid_commando_sony_r_t01", + "Hero:hid_constructor_007_r_t01", + "Hero:hid_constructor_007_sr_t01", + "Hero:hid_constructor_007_uc_t01", + "Hero:hid_constructor_007_vr_t01", + "Hero:hid_constructor_008_foundersf_sr_t01", + "Hero:hid_constructor_008_foundersm_sr_t01", + "Hero:hid_constructor_008_r_t01", + "Hero:hid_constructor_008_sr_t01", + "Hero:hid_constructor_008_vr_t01", + "Hero:hid_constructor_009_r_t01", + "Hero:hid_constructor_009_sr_t01", + "Hero:hid_constructor_009_vr_t01", + "Hero:hid_constructor_010_sr_t01", + "Hero:hid_constructor_010_vr_t01", + "Hero:hid_constructor_basebig_sr_t01", + "Hero:hid_constructor_basehyper_r_t01", + "Hero:hid_constructor_basehyper_sr_t01", + "Hero:hid_constructor_basehyper_vr_t01", + "Hero:hid_constructor_basehyperhw_sr_t01", + "Hero:hid_constructor_hammerplasma_sr_t01", + "Hero:hid_constructor_hammerplasma_vr_t01", + "Hero:hid_constructor_hammertank_r_t01", + "Hero:hid_constructor_hammertank_sr_t01", + "Hero:hid_constructor_hammertank_uc_t01", + "Hero:hid_constructor_hammertank_vr_t01", + "Hero:hid_constructor_plasmadamage_r_t01", + "Hero:hid_constructor_plasmadamage_sr_t01", + "Hero:hid_constructor_plasmadamage_vr_t01", + "Hero:hid_constructor_rushbase_r_t01", + "Hero:hid_constructor_rushbase_sr_t01", + "Hero:hid_constructor_rushbase_uc_t01", + "Hero:hid_constructor_rushbase_vr_t01", + "Hero:hid_constructor_sony_r_t01", + "Hero:hid_ninja_007_r_t01", + "Hero:hid_ninja_007_sr_t01", + "Hero:hid_ninja_007_uc_t01", + "Hero:hid_ninja_007_vr_t01", + "Hero:hid_ninja_008_r_t01", + "Hero:hid_ninja_008_sr_t01", + "Hero:hid_ninja_008_vr_t01", + "Hero:hid_ninja_009_r_t01", + "Hero:hid_ninja_009_sr_t01", + "Hero:hid_ninja_009_vr_t01", + "Hero:hid_ninja_010_sr_t01", + "Hero:hid_ninja_010_vr_t01", + "Hero:hid_ninja_slashbreath_r_t01", + "Hero:hid_ninja_slashbreath_sr_t01", + "Hero:hid_ninja_slashbreath_vr_t01", + "Hero:hid_ninja_slashtail_r_t01", + "Hero:hid_ninja_slashtail_sr_t01", + "Hero:hid_ninja_slashtail_uc_t01", + "Hero:hid_ninja_slashtail_vr_t01", + "Hero:hid_ninja_smokedimmak_r_t01", + "Hero:hid_ninja_smokedimmak_sr_t01", + "Hero:hid_ninja_smokedimmak_vr_t01", + "Hero:hid_ninja_sony_r_t01", + "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "Hero:hid_ninja_starsassassin_r_t01", + "Hero:hid_ninja_starsassassin_sr_t01", + "Hero:hid_ninja_starsassassin_uc_t01", + "Hero:hid_ninja_starsassassin_vr_t01", + "Hero:hid_ninja_starsrain_sr_t01", + "Hero:hid_ninja_starsrain_vr_t01", + "Hero:hid_ninja_starsrainhw_sr_t01", + "Hero:hid_ninja_swordmaster_sr_t01", + "Hero:hid_outlander_007_r_t01", + "Hero:hid_outlander_007_sr_t01", + "Hero:hid_outlander_007_uc_t01", + "Hero:hid_outlander_007_vr_t01", + "Hero:hid_outlander_008_foundersf_sr_t01", + "Hero:hid_outlander_008_foundersm_sr_t01", + "Hero:hid_outlander_008_r_t01", + "Hero:hid_outlander_008_sr_t01", + "Hero:hid_outlander_008_vr_t01", + "Hero:hid_outlander_009_r_t01", + "Hero:hid_outlander_009_sr_t01", + "Hero:hid_outlander_009_vr_t01", + "Hero:hid_outlander_010_sr_t01", + "Hero:hid_outlander_010_vr_t01", + "Hero:hid_outlander_punchdamage_sr_t01", + "Hero:hid_outlander_punchdamage_vr_t01", + "Hero:hid_outlander_punchphase_r_t01", + "Hero:hid_outlander_punchphase_sr_t01", + "Hero:hid_outlander_punchphase_uc_t01", + "Hero:hid_outlander_punchphase_vr_t01", + "Hero:hid_outlander_sony_r_t01", + "Hero:hid_outlander_spherefragment_r_t01", + "Hero:hid_outlander_spherefragment_sr_t01", + "Hero:hid_outlander_spherefragment_vr_t01", + "Hero:hid_outlander_zonefragment_sr_t01", + "Hero:hid_outlander_zoneharvest_r_t01", + "Hero:hid_outlander_zoneharvest_sr_t01", + "Hero:hid_outlander_zoneharvest_uc_t01", + "Hero:hid_outlander_zoneharvest_vr_t01", + "Hero:hid_outlander_zonepistol_r_t01", + "Hero:hid_outlander_zonepistol_sr_t01", + "Hero:hid_outlander_zonepistol_vr_t01", + "Hero:hid_outlander_zonepistolhw_sr_t01", + "Schematic:sid_assault_auto_c_ore_t01", + "Schematic:sid_assault_auto_founders_sr_ore_t01", + "Schematic:sid_assault_auto_halloween_sr_ore_t01", + "Schematic:sid_assault_auto_r_ore_t01", + "Schematic:sid_assault_auto_sr_ore_t01", + "Schematic:sid_assault_auto_uc_ore_t01", + "Schematic:sid_assault_auto_vr_ore_t01", + "Schematic:sid_assault_burst_c_ore_t01", + "Schematic:sid_assault_burst_r_ore_t01", + "Schematic:sid_assault_burst_sr_ore_t01", + "Schematic:sid_assault_burst_uc_ore_t01", + "Schematic:sid_assault_burst_vr_ore_t01", + "Schematic:sid_assault_doubleshot_sr_ore_t01", + "Schematic:sid_assault_doubleshot_vr_ore_t01", + "Schematic:sid_assault_hydra_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_vr_ore_t01", + "Schematic:sid_assault_lmg_r_ore_t01", + "Schematic:sid_assault_lmg_sr_ore_t01", + "Schematic:sid_assault_lmg_vr_ore_t01", + "Schematic:sid_assault_raygun_sr_ore_t01", + "Schematic:sid_assault_raygun_vr_ore_t01", + "Schematic:sid_assault_semiauto_c_ore_t01", + "Schematic:sid_assault_semiauto_founders_vr_ore_t01", + "Schematic:sid_assault_semiauto_r_ore_t01", + "Schematic:sid_assault_semiauto_sr_ore_t01", + "Schematic:sid_assault_semiauto_uc_ore_t01", + "Schematic:sid_assault_semiauto_vr_ore_t01", + "Schematic:sid_assault_singleshot_r_ore_t01", + "Schematic:sid_assault_singleshot_sr_ore_t01", + "Schematic:sid_assault_singleshot_vr_ore_t01", + "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "Schematic:sid_assault_surgical_sr_ore_t01", + "Schematic:sid_assault_surgical_vr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01", + "Schematic:sid_blunt_club_light_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_c_ore_t01", + "Schematic:sid_blunt_hammer_heavy_founders_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_uc_ore_t01", + "Schematic:sid_blunt_hammer_heavy_vr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_vr_ore_t01", + "Schematic:sid_blunt_heavy_paddle_c_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_uc_ore_t01", + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_bat_uc_ore_t01", + "Schematic:sid_blunt_light_c_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_vr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_light_uc_ore_t01", + "Schematic:sid_blunt_light_vr_ore_t01", + "Schematic:sid_blunt_medium_c_ore_t01", + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_blunt_medium_uc_ore_t01", + "Schematic:sid_blunt_medium_vr_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_blunt_tool_light_uc_ore_t01", + "Schematic:sid_ceiling_electric_aoe_r_t01", + "Schematic:sid_ceiling_electric_aoe_sr_t01", + "Schematic:sid_ceiling_electric_aoe_vr_t01", + "Schematic:sid_ceiling_electric_single_c_t01", + "Schematic:sid_ceiling_electric_single_r_t01", + "Schematic:sid_ceiling_electric_single_sr_t01", + "Schematic:sid_ceiling_electric_single_uc_t01", + "Schematic:sid_ceiling_electric_single_vr_t01", + "Schematic:sid_ceiling_gas_r_t01", + "Schematic:sid_ceiling_gas_sr_t01", + "Schematic:sid_ceiling_gas_uc_t01", + "Schematic:sid_ceiling_gas_vr_t01", + "Schematic:sid_edged_axe_heavy_c_ore_t01", + "Schematic:sid_edged_axe_heavy_r_ore_t01", + "Schematic:sid_edged_axe_heavy_sr_ore_t01", + "Schematic:sid_edged_axe_heavy_uc_ore_t01", + "Schematic:sid_edged_axe_heavy_vr_ore_t01", + "Schematic:sid_edged_axe_light_c_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_light_uc_ore_t01", + "Schematic:sid_edged_axe_light_vr_ore_t01", + "Schematic:sid_edged_axe_medium_c_ore_t01", + "Schematic:sid_edged_axe_medium_founders_vr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_vr_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_axe_medium_uc_ore_t01", + "Schematic:sid_edged_axe_medium_vr_ore_t01", + "Schematic:sid_edged_scythe_c_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_vr_ore_t01", + "Schematic:sid_edged_scythe_r_ore_t01", + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_scythe_uc_ore_t01", + "Schematic:sid_edged_scythe_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_c_ore_t01", + "Schematic:sid_edged_sword_heavy_founders_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_sword_heavy_uc_ore_t01", + "Schematic:sid_edged_sword_heavy_vr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_vr_ore_t01", + "Schematic:sid_edged_sword_light_c_ore_t01", + "Schematic:sid_edged_sword_light_founders_vr_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_light_uc_ore_t01", + "Schematic:sid_edged_sword_light_vr_ore_t01", + "Schematic:sid_edged_sword_medium_c_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_vr_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_edged_sword_medium_uc_ore_t01", + "Schematic:sid_edged_sword_medium_vr_ore_t01", + "Schematic:sid_floor_health_r_t01", + "Schematic:sid_floor_health_sr_t01", + "Schematic:sid_floor_health_uc_t01", + "Schematic:sid_floor_health_vr_t01", + "Schematic:sid_floor_launcher_r_t01", + "Schematic:sid_floor_launcher_sr_t01", + "Schematic:sid_floor_launcher_uc_t01", + "Schematic:sid_floor_launcher_vr_t01", + "Schematic:sid_floor_spikes_r_t01", + "Schematic:sid_floor_spikes_sr_t01", + "Schematic:sid_floor_spikes_uc_t01", + "Schematic:sid_floor_spikes_vr_t01", + "Schematic:sid_floor_spikes_wood_c_t01", + "Schematic:sid_floor_spikes_wood_r_t01", + "Schematic:sid_floor_spikes_wood_sr_t01", + "Schematic:sid_floor_spikes_wood_uc_t01", + "Schematic:sid_floor_spikes_wood_vr_t01", + "Schematic:sid_floor_ward_r_t01", + "Schematic:sid_floor_ward_sr_t01", + "Schematic:sid_floor_ward_uc_t01", + "Schematic:sid_floor_ward_vr_t01", + "Schematic:sid_launcher_grenade_r_ore_t01", + "Schematic:sid_launcher_grenade_sr_ore_t01", + "Schematic:sid_launcher_grenade_vr_ore_t01", + "Schematic:sid_launcher_hydraulic_sr_ore_t01", + "Schematic:sid_launcher_hydraulic_vr_ore_t01", + "Schematic:sid_launcher_pumpkin_rpg_sr_ore_t01", + "Schematic:sid_launcher_rocket_r_ore_t01", + "Schematic:sid_launcher_rocket_sr_ore_t01", + "Schematic:sid_launcher_rocket_vr_ore_t01", + "Schematic:sid_piercing_spear_c_ore_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_laser_vr_ore_t01", + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_military_vr_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01", + "Schematic:sid_piercing_spear_uc_ore_t01", + "Schematic:sid_piercing_spear_vr_ore_t01", + "Schematic:sid_pistol_auto_c_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01", + "Schematic:sid_pistol_auto_uc_ore_t01", + "Schematic:sid_pistol_auto_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_vr_ore_t01", + "Schematic:sid_pistol_bolt_sr_ore_t01", + "Schematic:sid_pistol_bolt_vr_ore_t01", + "Schematic:sid_pistol_boltrevolver_c_ore_t01", + "Schematic:sid_pistol_boltrevolver_r_ore_t01", + "Schematic:sid_pistol_boltrevolver_uc_ore_t01", + "Schematic:sid_pistol_dragon_sr_ore_t01", + "Schematic:sid_pistol_dragon_vr_ore_t01", + "Schematic:sid_pistol_firecracker_r_ore_t01", + "Schematic:sid_pistol_firecracker_sr_ore_t01", + "Schematic:sid_pistol_firecracker_vr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_gatling_vr_ore_t01", + "Schematic:sid_pistol_handcannon_founders_vr_ore_t01", + "Schematic:sid_pistol_handcannon_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_vr_ore_t01", + "Schematic:sid_pistol_handcannon_sr_ore_t01", + "Schematic:sid_pistol_handcannon_vr_ore_t01", + "Schematic:sid_pistol_hydraulic_sr_ore_t01", + "Schematic:sid_pistol_hydraulic_vr_ore_t01", + "Schematic:sid_pistol_rapid_founders_vr_ore_t01", + "Schematic:sid_pistol_rapid_r_ore_t01", + "Schematic:sid_pistol_rapid_sr_ore_t01", + "Schematic:sid_pistol_rapid_vr_ore_t01", + "Schematic:sid_pistol_rocket_sr_ore_t01", + "Schematic:sid_pistol_semiauto_c_ore_t01", + "Schematic:sid_pistol_semiauto_founders_vr_ore_t01", + "Schematic:sid_pistol_semiauto_r_ore_t01", + "Schematic:sid_pistol_semiauto_sr_ore_t01", + "Schematic:sid_pistol_semiauto_uc_ore_t01", + "Schematic:sid_pistol_semiauto_vr_ore_t01", + "Schematic:sid_pistol_sixshooter_c_ore_t01", + "Schematic:sid_pistol_sixshooter_r_ore_t01", + "Schematic:sid_pistol_sixshooter_uc_ore_t01", + "Schematic:sid_pistol_space_sr_ore_t01", + "Schematic:sid_pistol_space_vr_ore_t01", + "Schematic:sid_pistol_zapper_sr_ore_t01", + "Schematic:sid_pistol_zapper_vr_ore_t01", + "Schematic:sid_shotgun_auto_founders_vr_ore_t01", + "Schematic:sid_shotgun_auto_r_ore_t01", + "Schematic:sid_shotgun_auto_sr_ore_t01", + "Schematic:sid_shotgun_auto_uc_ore_t01", + "Schematic:sid_shotgun_auto_vr_ore_t01", + "Schematic:sid_shotgun_break_c_ore_t01", + "Schematic:sid_shotgun_break_ou_r_ore_t01", + "Schematic:sid_shotgun_break_ou_sr_ore_t01", + "Schematic:sid_shotgun_break_ou_uc_ore_t01", + "Schematic:sid_shotgun_break_ou_vr_ore_t01", + "Schematic:sid_shotgun_break_r_ore_t01", + "Schematic:sid_shotgun_break_sr_ore_t01", + "Schematic:sid_shotgun_break_uc_ore_t01", + "Schematic:sid_shotgun_break_vr_ore_t01", + "Schematic:sid_shotgun_heavy_sr_ore_t01", + "Schematic:sid_shotgun_longarm_sr_ore_t01", + "Schematic:sid_shotgun_longarm_vr_ore_t01", + "Schematic:sid_shotgun_minigun_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_r_ore_t01", + "Schematic:sid_shotgun_semiauto_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_uc_ore_t01", + "Schematic:sid_shotgun_semiauto_vr_ore_t01", + "Schematic:sid_shotgun_standard_c_ore_t01", + "Schematic:sid_shotgun_standard_r_ore_t01", + "Schematic:sid_shotgun_standard_sr_ore_t01", + "Schematic:sid_shotgun_standard_uc_ore_t01", + "Schematic:sid_shotgun_standard_vr_ore_t01", + "Schematic:sid_shotgun_tactical_c_ore_t01", + "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_vr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_r_ore_t01", + "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_vr_ore_t01", + "Schematic:sid_shotgun_tactical_r_ore_t01", + "Schematic:sid_shotgun_tactical_uc_ore_t01", + "Schematic:sid_sniper_amr_r_ore_t01", + "Schematic:sid_sniper_amr_sr_ore_t01", + "Schematic:sid_sniper_amr_vr_ore_t01", + "Schematic:sid_sniper_auto_founders_vr_ore_t01", + "Schematic:sid_sniper_auto_r_ore_t01", + "Schematic:sid_sniper_auto_sr_ore_t01", + "Schematic:sid_sniper_auto_uc_ore_t01", + "Schematic:sid_sniper_auto_vr_ore_t01", + "Schematic:sid_sniper_boltaction_c_ore_t01", + "Schematic:sid_sniper_boltaction_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_vr_ore_t01", + "Schematic:sid_sniper_boltaction_uc_ore_t01", + "Schematic:sid_sniper_hydraulic_sr_ore_t01", + "Schematic:sid_sniper_hydraulic_vr_ore_t01", + "Schematic:sid_sniper_shredder_sr_ore_t01", + "Schematic:sid_sniper_shredder_vr_ore_t01", + "Schematic:sid_sniper_standard_c_ore_t01", + "Schematic:sid_sniper_standard_founders_vr_ore_t01", + "Schematic:sid_sniper_standard_r_ore_t01", + "Schematic:sid_sniper_standard_scope_sr_ore_t01", + "Schematic:sid_sniper_standard_scope_vr_ore_t01", + "Schematic:sid_sniper_standard_sr_ore_t01", + "Schematic:sid_sniper_standard_uc_ore_t01", + "Schematic:sid_sniper_standard_vr_ore_t01", + "Schematic:sid_sniper_tripleshot_sr_ore_t01", + "Schematic:sid_sniper_tripleshot_vr_ore_t01", + "Schematic:sid_wall_darts_r_t01", + "Schematic:sid_wall_darts_sr_t01", + "Schematic:sid_wall_darts_uc_t01", + "Schematic:sid_wall_darts_vr_t01", + "Schematic:sid_wall_electric_r_t01", + "Schematic:sid_wall_electric_sr_t01", + "Schematic:sid_wall_electric_uc_t01", + "Schematic:sid_wall_electric_vr_t01", + "Schematic:sid_wall_launcher_r_t01", + "Schematic:sid_wall_launcher_sr_t01", + "Schematic:sid_wall_launcher_uc_t01", + "Schematic:sid_wall_launcher_vr_t01", + "Schematic:sid_wall_light_r_t01", + "Schematic:sid_wall_light_sr_t01", + "Schematic:sid_wall_light_vr_t01", + "Schematic:sid_wall_wood_spikes_c_t01", + "Schematic:sid_wall_wood_spikes_r_t01", + "Schematic:sid_wall_wood_spikes_sr_t01", + "Schematic:sid_wall_wood_spikes_uc_t01", + "Schematic:sid_wall_wood_spikes_vr_t01", + "Worker:managerdoctor_c_t01", + "Worker:managerdoctor_r_t01", + "Worker:managerdoctor_sr_kingsly_t01", + "Worker:managerdoctor_sr_noctor_t01", + "Worker:managerdoctor_sr_treky_t01", + "Worker:managerdoctor_uc_t01", + "Worker:managerdoctor_vr_t01", + "Worker:managerengineer_c_t01", + "Worker:managerengineer_r_t01", + "Worker:managerengineer_sr_countess_t01", + "Worker:managerengineer_sr_maths_t01", + "Worker:managerengineer_sr_sobs_t01", + "Worker:managerengineer_uc_t01", + "Worker:managerengineer_vr_t01", + "Worker:managerexplorer_c_t01", + "Worker:managerexplorer_r_t01", + "Worker:managerexplorer_sr_birdie_t01", + "Worker:managerexplorer_sr_eagle_t01", + "Worker:managerexplorer_sr_spacebound_t01", + "Worker:managerexplorer_uc_t01", + "Worker:managerexplorer_vr_t01", + "Worker:managergadgeteer_c_t01", + "Worker:managergadgeteer_r_t01", + "Worker:managergadgeteer_sr_fixer_t01", + "Worker:managergadgeteer_sr_flak_t01", + "Worker:managergadgeteer_sr_zapps_t01", + "Worker:managergadgeteer_uc_t01", + "Worker:managergadgeteer_vr_t01", + "Worker:managerinventor_c_t01", + "Worker:managerinventor_r_t01", + "Worker:managerinventor_sr_frequency_t01", + "Worker:managerinventor_sr_rad_t01", + "Worker:managerinventor_sr_square_t01", + "Worker:managerinventor_uc_t01", + "Worker:managerinventor_vr_t01", + "Worker:managermartialartist_c_t01", + "Worker:managermartialartist_r_t01", + "Worker:managermartialartist_sr_dragon_t01", + "Worker:managermartialartist_sr_samurai_t01", + "Worker:managermartialartist_sr_tiger_t01", + "Worker:managermartialartist_uc_t01", + "Worker:managermartialartist_vr_t01", + "Worker:managersoldier_c_t01", + "Worker:managersoldier_r_t01", + "Worker:managersoldier_sr_malcolm_t01", + "Worker:managersoldier_sr_princess_t01", + "Worker:managersoldier_sr_ramsie_t01", + "Worker:managersoldier_uc_t01", + "Worker:managersoldier_vr_t01", + "Worker:managertrainer_c_t01", + "Worker:managertrainer_r_t01", + "Worker:managertrainer_sr_jumpy_t01", + "Worker:managertrainer_sr_raider_t01", + "Worker:managertrainer_sr_yoglattes_t01", + "Worker:managertrainer_uc_t01", + "Worker:managertrainer_vr_t01", + "Worker:workerbasic_c_t01", + "Worker:workerbasic_r_t01", + "Worker:workerbasic_sr_t01", + "Worker:workerbasic_uc_t01", + "Worker:workerbasic_vr_t01", + "Worker:workerhalloween_alt_sr_t01", + "Worker:workerhalloween_c_t01", + "Worker:workerhalloween_r_t01", + "Worker:workerhalloween_sr_t01", + "Worker:workerhalloween_uc_t01", + "Worker:workerhalloween_vr_t01" + ] +} \ No newline at end of file diff --git a/gui/assets/authenticator/responses/Campaign/dailyrewards.json b/gui/assets/backend/responses/Campaign/dailyRewards.json similarity index 100% rename from gui/assets/authenticator/responses/Campaign/dailyrewards.json rename to gui/assets/backend/responses/Campaign/dailyRewards.json diff --git a/gui/assets/authenticator/responses/Campaign/expeditionData.json b/gui/assets/backend/responses/Campaign/expeditionData.json similarity index 100% rename from gui/assets/authenticator/responses/Campaign/expeditionData.json rename to gui/assets/backend/responses/Campaign/expeditionData.json diff --git a/gui/assets/authenticator/responses/Campaign/rewards.json b/gui/assets/backend/responses/Campaign/rewards.json similarity index 100% rename from gui/assets/authenticator/responses/Campaign/rewards.json rename to gui/assets/backend/responses/Campaign/rewards.json diff --git a/gui/assets/authenticator/responses/Campaign/survivorData.json b/gui/assets/backend/responses/Campaign/survivorData.json similarity index 100% rename from gui/assets/authenticator/responses/Campaign/survivorData.json rename to gui/assets/backend/responses/Campaign/survivorData.json diff --git a/gui/assets/authenticator/responses/Campaign/transformItemIDS.json b/gui/assets/backend/responses/Campaign/transformItemIDS.json similarity index 100% rename from gui/assets/authenticator/responses/Campaign/transformItemIDS.json rename to gui/assets/backend/responses/Campaign/transformItemIDS.json diff --git a/gui/assets/authenticator/responses/Campaign/worldstw.json b/gui/assets/backend/responses/Campaign/worldstw.json similarity index 100% rename from gui/assets/authenticator/responses/Campaign/worldstw.json rename to gui/assets/backend/responses/Campaign/worldstw.json diff --git a/gui/assets/authenticator/responses/CloudDir/Full.ini b/gui/assets/backend/responses/CloudDir/Full.ini similarity index 100% rename from gui/assets/authenticator/responses/CloudDir/Full.ini rename to gui/assets/backend/responses/CloudDir/Full.ini diff --git a/gui/assets/authenticator/responses/CloudDir/LawinServer.chunk b/gui/assets/backend/responses/CloudDir/LawinServer.chunk similarity index 100% rename from gui/assets/authenticator/responses/CloudDir/LawinServer.chunk rename to gui/assets/backend/responses/CloudDir/LawinServer.chunk diff --git a/gui/assets/authenticator/responses/CloudDir/LawinServer.manifest b/gui/assets/backend/responses/CloudDir/LawinServer.manifest similarity index 100% rename from gui/assets/authenticator/responses/CloudDir/LawinServer.manifest rename to gui/assets/backend/responses/CloudDir/LawinServer.manifest diff --git a/gui/assets/authenticator/responses/SAC.json b/gui/assets/backend/responses/SAC.json similarity index 100% rename from gui/assets/authenticator/responses/SAC.json rename to gui/assets/backend/responses/SAC.json diff --git a/gui/assets/authenticator/responses/catalog.json b/gui/assets/backend/responses/catalog.json similarity index 100% rename from gui/assets/authenticator/responses/catalog.json rename to gui/assets/backend/responses/catalog.json diff --git a/gui/assets/authenticator/responses/contentpages.json b/gui/assets/backend/responses/contentpages.json similarity index 100% rename from gui/assets/authenticator/responses/contentpages.json rename to gui/assets/backend/responses/contentpages.json diff --git a/gui/assets/backend/responses/friendslist.json b/gui/assets/backend/responses/friendslist.json new file mode 100644 index 0000000..ad44771 --- /dev/null +++ b/gui/assets/backend/responses/friendslist.json @@ -0,0 +1,72 @@ +[ + { + "accountId": "Player123", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T13:38:39.614Z", + "favorite": false + }, + { + "accountId": "Player857", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T13:38:45.823Z", + "favorite": false + }, + { + "accountId": "Player955", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T13:42:38.200Z", + "favorite": false + }, + { + "accountId": "Player444", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T13:47:15.982Z", + "favorite": false + }, + { + "accountId": "Player742", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T13:57:03.026Z", + "favorite": false + }, + { + "accountId": "abc", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T13:57:32.044Z", + "favorite": false + }, + { + "accountId": "Player", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T14:35:00.802Z", + "favorite": false + }, + { + "accountId": "Player260", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T18:41:47.035Z", + "favorite": false + }, + { + "accountId": "abce1", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T19:36:22.635Z", + "favorite": false + }, + { + "accountId": "Player231", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T20:05:07.478Z", + "favorite": false + } +] \ No newline at end of file diff --git a/gui/assets/backend/responses/friendslist2.json b/gui/assets/backend/responses/friendslist2.json new file mode 100644 index 0000000..7f12704 --- /dev/null +++ b/gui/assets/backend/responses/friendslist2.json @@ -0,0 +1,101 @@ +{ + "friends": [ + { + "accountId": "Player123", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T13:38:39.614Z" + }, + { + "accountId": "Player857", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T13:38:45.823Z" + }, + { + "accountId": "Player955", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T13:42:38.200Z" + }, + { + "accountId": "Player444", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T13:47:15.982Z" + }, + { + "accountId": "Player742", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T13:57:03.026Z" + }, + { + "accountId": "abc", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T13:57:32.044Z" + }, + { + "accountId": "Player", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T14:35:00.802Z" + }, + { + "accountId": "Player260", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T18:41:47.035Z" + }, + { + "accountId": "abce1", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T19:36:22.635Z" + }, + { + "accountId": "Player231", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T20:05:07.478Z" + } + ], + "incoming": [], + "outgoing": [], + "suggested": [], + "blocklist": [], + "settings": { + "acceptInvites": "public" + } +} \ No newline at end of file diff --git a/gui/assets/authenticator/responses/keychain.json b/gui/assets/backend/responses/keychain.json similarity index 92% rename from gui/assets/authenticator/responses/keychain.json rename to gui/assets/backend/responses/keychain.json index 7e3460b..567d73c 100644 --- a/gui/assets/authenticator/responses/keychain.json +++ b/gui/assets/backend/responses/keychain.json @@ -18,6 +18,8 @@ "D85DFC0115FC3C75A6AD9C5D15B0DBF4:KFp5kuqdJIex+SS95mCy4nETnpzlaY8UHe8X7BSjGxY=:Wrap_080_Blackout1", "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:EID_BasketballDribble_E6OJV", "DB982042FC23E63A912CF079BB11B4D7:XxSdF8FvU6TPmMg2ZFLcxPXFyom3s5IcDpSFz8rcdfQ=:EID_Devotion", + "7F2E96A8331098ACD5BB8DC29D4A3F57:kDTbN2yRZAIwEEQsF2zoJwdhtsK0lcb5zEuon7vziuk=", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage", "010E6ACF85E4A58BF6F551EFE7B85F61:DwCIH5Dw/1wdiS6gFGmWe4HUgD9kMOEzjbzM/1QshM4=:Pickaxe_ID_178_SpeedyMidnight", "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=:EID_Noble", "A92DE306E5174C82739D774151D7B661:RF9sTh7l2tp+ypCb/Lp3WeMfBExvk2LSUbim04xsCJo=", @@ -26,6 +28,7 @@ "DC487286E8C1CD5FE18AC3FE76034EF2:3h9IwK2qQP8PHVuO1aZI1C34JrJxKBnXJOFcSDSj99M=:CID_478_Athena_Commando_F_WorldCup", "CB2F74DD1C6D7FB4560BF4AA6B7460EE:1MXyB7YDAZC+p/2Fl+tefE6s3cCdKs+5tXDHEg1JLfg=:MusicPack_178_S24FNCSDrops", "8A6DABC9AF8B5FE521D365DB605D0AE0:T721SqBTncYsd8Gej01RnLX6sEaCgJoILnRauHaJz+g=:BID_284_NeonLines", + "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=", "B9E8BA33F3FF6F9DB4CA35F51437B433:6gLG1UQHcMeCErfTl6ZNA78CzF2boBxzxfF1GPqnPSE=:EID_Iconic", "73997D156EB0408D62DFD6C98F37F153:sCkek0K/q2DJt8RTMG09RpU0wnr+JWtslnn8Zds4qEM=", "DE4CBA7A27B818D6B299767036C671A9:o7axeOYDdjXZ4MTWM4Io4XRNfQG2WH9qwPvBSJk8vJM=:Wrap_508_ApexWild", @@ -43,10 +46,12 @@ "6DD6F574BA76BD6B68E14FF19181F2B6:Z/OnCtvolWJSaChHeIIVFXB8fptk8QBW8JQD1Gk2w+Y=:EID_Shaka", "D47524F6F863DCCBB2455472F0FEFE2C:cRoiHZin2Lnv6yQ4Zt2WoIpQc1ZjLbfl1Ogid24ydZM=:CID_A_416_Athena_Commando_M_Armadillo", "F60CFFFA32CF6A877B50DA7F0A88326E:OWIopbB4fxaobofPI9lF9hn6BPG9NVLp4Od61uQppfo=:CID_392_Athena_Commando_F_BountyBunny", + "AEE3BAAED938060FA62CF46437980785:AB2FJfGGyKH35KJnl2p6t/85sZYO5gSgbS+ilBA2mX4=:EID_HeavyRoarDance", "6CED8B5F648ED1ACCC8F1194901775AF:qjfCT39FVniEjPj+CvZu5Qz8XHHtdnH8kCsV3P1OaJw=:BID_252_EvilBunny", "6CFF02B6F01FBC306D428E8EE2CA6232:1BaXCMF6dJeORZditLbWRLFKVlvYZerZdvifZuvNTfk=", "20366C09DB19030DD8169A4D7560FCC1:Bt750bLY8a84ai95EQ3JWESQj5jz5Bf5LItpADksD5o=", "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisGooseberry", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Wrap_Comp26", "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:BID_988_Rumble", "80B01346D82C75E9165D30C8D4670D67:vUSIr4/Ld2SstnhJMcWOWEbtPeQ0EOY5g1XV9OWFBW0=", "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:Pickaxe_ID_734_SlitherMale_762K0", @@ -59,11 +64,14 @@ "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=:EID_Sleek_S20CU", "7313591AB9F0A7E46AB016065DE8F65A:NAL0bLW1p+ceLF4lhxfm1vQPaMlv8eNPP6tTizTZEN0=:CID_398_Athena_Commando_M_TreasureHunterFashion", "DC060EA83FE6F9729B19150E40C7987E:zW3d3QhtvhE+q3x/P7/BA9JvyoruVmeACdKt6RPxyLY=:Glider_ID_357_JourneyFemale", + "2A236A35ED4833924DF975CEBE4282AF:e4NpefIqezxUVeH+2INzCV08eK4NvFrojB8z1awxm6Q=:Backpack_BrainMatter", "929B82B3454DF80CC45B11A55400B6E7:jl/KsmshfBxKKnPDHyHNTHOzTE3buCIrBpSUpXJQdL4=:BID_180_IceMaiden", "6BE73A630C01192C39807CEDA006C77C:3MYDxjacnNgSQwxc68DknO3e6TKXSw4tG5TVdSxGdFE=:Pickaxe_ID_327_GalileoKayak_50NFG", "AFCCB7C08EC6957EEDDAAD676C3D3513:MuovEXob241ie6/RP76ImUk+MExLdl+bszvxCHNtg0U=", + "605CA1F4F68E09A4A0784DE3D6E9FB88:TKaxKxc1yoVFdUqQNWdG3bofE78hwuma5x5Go2dnLxQ=:Pickaxe_IonVial", "9261CD0F921EAA3CD6AA8C0716FB042B:W+yzeWWxWnA530lwV8nLi2BE+TD5MCXS11th7UphmPQ=:Pickaxe_ID_542_TyphoonFemale1H_CTEVQ", "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:Glider_ID_153_Banner", + "E242355FF51310B9E4D8C595E9933F91:vLuGAIIz3ZtzLhJV0Qqka3VuhSZ7nB/URRMCoSRKrbM=", "FD0C3696948675DC3C2CBF5098D57D0D:rBWyTh/AVyZxi2oiQxM/OeD/HYZOSdVidEQeKoowV6U=:Pickaxe_ID_589_CavernMale_9U0A8", "001B8CDAE8386ACB5DFE26FA59C10B40:XA9kqeHyWLK/xsRzYLCkooN/dBRNTyjy5sw9Jv+8nRs=", "8AE56A5795250C959CD4357AF32DA563:GL9+gTLkh5vnyzImLDdxGYFksrHsmmJSUfZB9mP9fdM=", @@ -75,6 +83,7 @@ "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:BID_953_Gimmick_1I059", "1937F4ADBC2C38EF4F189DC2B1AE58AB:tWzxKwKEDzI0RsQGl2GvOVqZwxOSOiZaCQkyK1hE+lA=:EID_InspireSpell", "4C8D53A32D85124D08A3DCE6D3474A30:gam5sVciLPzKr+wmWOoctLo5HFqBvBLKKcxh6ZV1kn0=:Pickaxe_ID_532_WombatFemale_CWE2D", + "7F2E96A8331098ACD5BB8DC29D4A3F57:kDTbN2yRZAIwEEQsF2zoJwdhtsK0lcb5zEuon7vziuk=:Pickaxe_FolkEvening", "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=", "AC22C5B2B654FE15BDCC8B664D033140:zE2ddgoXrJ7X0UEkphUtys0CeoTzIDpAZ58beqOkx4M=:CID_A_232_Athena_Commando_F_CritterStreak_YILHR", "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=:Pickaxe_ID_747_ZestMale_3KAEG", @@ -113,6 +122,7 @@ "D8FDE5644FE474C7C3D476AA18426FEB:orzs/Wp9XxE5vpybtd0tOxX6hrMyZZheFZusAw1c+6A=:BID_126_DarkBomber", "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:BID_635_York_Male", "E36F7DC3B2ECE987FC956C3CF7E71F21:+Y1iPDRR7adeEjebuo6DzBiHkgK0c4ZOwgmrnYYx43w=", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Pickaxe_BraveBuild", "28CBBF705C9DB5A88BEC70DAA005E02E:FvtzBBvDkyj8PRLW76169bMFvg65VojYrSmkjUAi4Bc=:Pickaxe_ID_259_CupidFemale1H", "210726DF9DCD78AD95B4D407D5D9157B:cXzvTrgNBBmsa8jR8E4q9NFBasv/zdQSSPQmnKznkJE=:EID_SecurityGuard", "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_236_Athena_Commando_M_Grasshopper_C_47TZ8", @@ -127,6 +137,7 @@ "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:BID_289_Banner", "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_996_Athena_Commando_M_GlobalFB_B_RVED4", "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Backpack_InstantGravel", "EBA3BC7F0023BE91CE5EFB7E1BC001A8:MdKbawNIe4qCuGaB4q7+4cy8keyDnJnxZLa7HLC0W4A=:EID_Feral", "C5188047D9661347FC4483CCB04ACD4C:TlesZ5LgoEoJqkJaz7N2QB43zNWIJdOpx8rOpsbGC48=", "C76299772B1BE272260BF3396F83FC1E:uiBDMtwYhdxktbqTrhYkzEZErlBp5gBtkLM+QFDouT4=:Pickaxe_ID_668_ClashVMale1H_5TA18", @@ -140,8 +151,10 @@ "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:Pickaxe_ID_691_RelishMale_FVCA7", "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=:LoadingScreen_Sunburst_KeyArt", "C7623A35411F3D5FBDE2688C7E4A69EB:qAi49mUKsB2dbfbtJWDf3yO2DfRStA+Ed9XgDjC8Zaw=:Glider_ID_109_StreetGoth", + "ECC8CCC7C241C9B739143FE703D69DDA:AvNIyTB6kImt6X7YtGzzIBC3mPIZNXcMn8B9U2B/dx0=:EID_Hoist", "4755D9C0E2D1DE1C09B77DEA8B830471:9tUO5yVhvp+/sp7icZaEDw05nMAdS6bYAWYyfQNsxBc=:Pickaxe_ID_387_DonutCup", "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:LSID_294_Alchemy_09U3R", + "2E03F4DA95202509D578A5960D35A8A3:UrLxBerp5zeoMJHaXjYqAevNSNP2Jce8sG2zqnvO+NQ=:EID_OilPaint", "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:Pickaxe_ID_690_RelishFemale_DC74M", "7F0F5EB44D49E7563DD5A196121D49E1:CBIvm8gTJLCz6sD05GKbQo6u/Nk4Poni/7wlp724KWc=:BID_146_AnimalJacketsFemale", "D14FDB2BB2FB7746797F25470913BFF1:CQDgIxcNnAoUboQnjafZAYvV7UqX+NefGTXFd3m+oFc=:Glider_ID_327_NucleusMale_55HFK", @@ -157,6 +170,7 @@ "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Backpack_EmeraldGlassStandAlone", "1BEED2926C38652D7287878CB2724D6D:njsOPcs6lEFCruh/YjfHTdcoUJRtIh2hnzHwdkAYQFA=:EID_Viral", "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:EID_Wayfare", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=", "3E89561331A72D226FBF962DA29DBB82:qzWv2zubDSSrpTt3tKc4ZsReqR3QBKjhU1cGzVe7KH4=:CID_387_Athena_Commando_F_Golf", "B3D2793477E5D467475BE403774360E5:HNj5inGk1/2h9f0r4+SGPPY9t69eOwS6w0XGxpTVOTM=", "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_300_Athena_Commando_M_Slither_C_IJ94B", @@ -183,6 +197,7 @@ "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Backpack_EmeraldGlassPink", "57D2C065461284F546C48C971A44C6D0:EOfb/g0hZdMhd5biYOZR69B/mqPU7X+sgQQrp2gQ/s0=:BID_178_Angel", "AC86B4636DC6A3B6D2DF6DA8B5632796:VHknYzsodjamhC3oVkulL7sMpsRkw9ZcCcSguv9bZSM=", + "E4873B9E0B86905E8654D93E9279743E:4xhNKoSupk5mLXYkktaWYWM3NIl1s1iSdmfVIwy9Me0=", "23213D7D8F739DE37BCA56557073DA51:hmmf08PTLeIAJgxwHIFI131jzcy1SbirW6EzJtm1teM=:BID_979_CactusRockerFemale_IF1QA", "514364A06F8C12C3398C5F63D909EF7D:D8/bj3etFg8eJOVZ26L+pMrsdlTusbgvR2CL4WqKl3E=", "8E1887D55A60F69B33B234242FF49653:YofZaW+CRl0jhVhkp9z2CQWhTPwyjQ6dbHtISkLDfVU=:Glider_ID_367_AlfredoMale", @@ -255,10 +270,12 @@ "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=", "E4C183B0EF31ADF061F175068046568E:AF+fNwseLnjCsPKzbFkYDkZE4gyYfGEaifyJjdsMjp0=", "65000C27C3BC5B9B904A0D20050D6B36:JFwQi7tWgJDr+E4GzYU/rgasjjk+1BKRB/N88e7rVvI=", + "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:Backpack_GalaxyLevel", "99B0F5AFB03FFA1BC3B8AFF75267CAD2:d4GffGn7ENqL9SpO5wnhKZzqzpr8S/4LQS2P+QD2wy4=", "457F39EA51FB4C723B442810750CDA4A:V3d05mcuS4uXMBRpy63TIZDLt5hg9njVD0SGhZDsmBw=:EID_Sahara", "63722D44ECCA0F4178B85F5A6BC4C31B:j42UL0bmfBkli6Aj92wWABwFby5rAplP/Ac6nh9kRvA=:EID_Vivid_I434X", "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_938_Athena_Commando_M_Football20_B_I18W6", + "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:Backpack_SpeedDialBattle", "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:EID_Majesty_49JWY", "17F31F416B1B0A73F14F0A7973DDBD76:+hUk8/wD736u5sylQPXcKKREoo5vSPaWPG+3xxT5nFM=:Pickaxe_ID_157_Dumpling", "59AF6C46ABB214024067564F69D6EA37:NtUgzeFVvkbyZQGRVdteWV61HjED9MXquqlVKHo3c/M=:Pickaxe_ID_462_Soy_4CW52", @@ -266,26 +283,32 @@ "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:LSID_328_Quarrel_K4C12", "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:Glider_ID_316_TextileMale_3S90R", "02421097082555483CA9524F79EF7687:e9wZT5/2KHmpbw6KjR8u4uo3iG00O92+PAZMbk09a3w=:BID_545_RenegadeRaiderFire", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Character_BraveBuildSuper", "2981826DE79FF29E18E71842E259C429:8ZvDzw8wgo2ogkeqTm4pYe6fh7ghrOxdZXEwkpaPGOU=", "D49757E2D55451A0D5B341906FE2ABE4:PWMwnjgi/wUDV+yxg02QsU33jA529fxVTRHyqnkv21c=:EID_AshtonSaltLake", "02743CF33556232CE2CDE4BAAE108E2B:fEeB1cPrmwILnnMkELOaIMVfGJXixlOZSzby0xhKPHk=", "B1B800E199A6D4649287C11AE89F67CA:3udFXffIw3c7eM5hljF5mJQA36FbW2PeF8Gx1TcD1vc=:Pickaxe_ID_201_Swashbuckler", "F2E3A44428F24B0E4F481938A8E3D8EE:Vgb58eI7kGPp+Ecr8lhE2RMoKeCLFG0sWAEugWV295A=:LSID_305_Downpour_CHB8O", "23280A6FC0902B6420BB82522AE16D2C:C7o6m2vJJY+XWKd0t1YLBPVLYCMgNbt10d/itx5Wjnc=", + "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:Pickaxe_LastVoiceSteel", + "DC953387B24FC2DCBECCD2CCF61BB973:GT4tz78+PbkMtjcHnlkhmwLG7lQAr7EwMEWIgn59PV0=", "BF344823BEE88FA8760A410311A30150:mcfE7CGJQLRE5dWZTCNPCCPgSBV7CMLl6lvpF+nzqzw=:EID_Astral", "8AE930B0D623C1C2B3926C52ECF6250B:uwtZv87e9DU/Z1ZvYB7Pv4TdRQ4/ZRT9nYJCwYSmlbI=", "CBFF239A1792F25920D863F223368B54:J3N3cUH3M0R3uyzkE0qVK/SouxC/X6VEswcoWb6ViL8=:Pickaxe_ID_215_Pug", "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=:Pickaxe_ID_808_NobleMale", "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_235_Athena_Commando_M_Grasshopper_B_RHQUY", "6838E4BB35C0449D4F66F7E92A960D1F:KOKH3JA+OMliB+f17Pd8OFEtooaCZjehz3CvfqaSbtU=", + "389F29133F5BF2F060F614459FB40A33:QJeT6Tn8kANHABraLv3bT4U+4DU9axx8n7AjG97WvbE=:EID_PrivateJet", "54746F2A874802B87CC5E9307EA76399:nOaYcOb6cOggqwc+mRiJ7LJEs0qvaiMhxH/yWXou+Q4=:EID_LimaBean", "AC74E15ED1B7D4C09EE43D611C96282F:AE5miomI93bx4PzortiojpqTb928k7cf1PqC6YPjvz4=:EID_Prance", "CCFB247DE6ED8DB4856E039A5AE681B8:Z8ixoqcCEiFqUH1qec+yUNQTP1+D1xQjYw6FDpUQa9c=:EID_RhymeLock_5B2Y3", + "B7E28BEF6DBEF8710E68B66900B42430:sHtuRWXH9yrWnwjLhWISF+7+FWXyahhu96R9nTbjlSw=:EID_BankNotes", "82669F5A2F9B703D1A6BEA3BCB922D7D:Leu9rrDPaqZd3izIU+IKpFcP/NNcqSncLkV2lapQL6k=", "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=:Pickaxe_ID_744_SleekGlassesMale_ID69U", "7EE5B905919FC30BA533A9B72266C37D:kAD28wIO613FRtg5cfGz+jb0Ofed2l3NonVGSmeqCAU=", "F33B69585B65C333655C545A038BCEE5:0+gUoAUkiBbY5uqO9rIehUDkvrr/PY3vBY16AMHQASw=:Glider_StallionSmoke", "476EE53C2EAA24FD1950A9875FB4CF59:LQMwgWwsoSqGyYbBouYaMaN8NZ38Vy5r3Tqa7KA71oQ=:Backpack_FallValleyBlink", + "605CA1F4F68E09A4A0784DE3D6E9FB88:TKaxKxc1yoVFdUqQNWdG3bofE78hwuma5x5Go2dnLxQ=:Character_IonVial", "566C4D92AF66F45DF5E2D7EB43CC27AE:EuAYwU5tQBXzGoSj5BMc7S5yFfe9wZ2qrzx/hIHpnqw=:Pickaxe_ID_479_LunchBox1H", "EBFE6788D367D741AF0A4FD098CDFD39:FAeJTGyT49P+dQOmKx+lMYVAxu7qtIPlqSaLAR85zqI=:EID_AssassinVest", "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:BID_428_GalileoFerry_28UZ3", @@ -325,6 +348,7 @@ "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:Glider_ID_341_FoeMale_P8JE8", "5E15C5486CE8E539552D4D3E7682F9E2:+L/tTz+woDFZJEvtxfq8m8tNI1R72sYK7rnYr7sHTis=:BID_311_Multibot", "2A12750AF48FB5468105F255DC537CC1:lKjAansupIjoXjT3/0vH9XeOzVp9S+fBGtyP90Gve60=", + "2F426D86C7E7EDE779E8D62108AB49F4:zVh0R7wazvQUgucmS9AYYNnN2g+oFYv8ZMlhD3WnH0U=:EID_Hurrah", "591DF838AC4B3A6350E40E026B26D5C0:MBvGoHxJQBTxCm2V82s2yHqRWPsYdFyj8xKUhFsUkyE=:CID_745_Athena_Commando_M_RavenQuill", "7E9FAC0F2BFC4AE3A2ED4C87D1A57DBF:xaR/8qp7kFAbILx9i6ANnoam0rZ/tP8Xy3yysuqt8BA=:Pickaxe_ID_231_Flamingo2", "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Wrap_CoyoteTrail", @@ -337,6 +361,7 @@ "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisJackfruit", "A31042B93988941EE77BC1E2DA6AA05E:pDUufUGsOVTv3LuXoq56xwz8HRnzlrHTvTLWbzBaPcU=", "715D5B8D89F01C804C2ED33648157A6C:GbMcQmdpv3ju/P36UQIlDFZ0Q5jr0he7O2oTJ702McY=:BID_446_Barefoot", + "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:Character_SpeedDialBattle", "286270CA017B478C6FF6B5B815428F93:OUbNW00OmQLCd9iLA13soMU4wYtd0RTc+lEkoPdvF4U=", "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:EID_Slither_DAXD6", "7C13D9408B7434500647EEDFE55A63D9:vea6GIIHMHtDB/mVGTp1bTW3tfCM6tLlpI9LiP3bxTo=", @@ -354,6 +379,7 @@ "23280A6FC0902B6420BB82522AE16D2C:C7o6m2vJJY+XWKd0t1YLBPVLYCMgNbt10d/itx5Wjnc=:LSID_367_Paperbag_3WGO8", "E59B013651F078E718F08ECF9E1559EE:rTGy9at5kTfQtu8EwVrUihfzuN8vkFPl3XNyGvqbZX4=:Pickaxe_ID_194_TheBomb", "D2FAE1D098B2B4695EB59FAAD504798D:ZUDIqDvGVcpCVuA3h67vdkVbZwLuC0Z1zX33JLyi5xE=:Pickaxe_ID_727_LateralFemale_D9XJG", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Backpack_FNCS26", "EDF724493161095DB54E9613C243A355:Yp7dsOYO778G7uRZNYhGag2diT70vhu2hAWvkzvtHjg=:EID_Indigo", "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:EID_Lyrical", "8D578CF915DB851F9BE73C937D3565E4:Xk8kUK9cut4tXr0VQjufZdoepp+TzGmlDA7fzYA1rAc=", @@ -373,9 +399,12 @@ "6B0D17A04F83AAF1E4EC1D0D481D7B03:fgSAnECppKmZD1eolFEZOuOpUDPbt1MmvGroMQ0sPFU=:EID_CrabDance", "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_941_Athena_Commando_M_Football20_E_KNWUY", "E1B1A5908EF6377D7FB29F776486A6A0:qaZB3Q+6kKTtlO4aGWBsnjSxCwX3kmr8oOF/2QDZ2qc=:Spray_BasilStrong_Pickaxe", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Pickaxe_HeavyRoar", "BE2C3EF59AB81D812AF5B8153325998F:W7NoICLZt9L2d7XZ5dT9gtI80MyOizk7uA9LtwA/Edw=:Pickaxe_ID_687_GiggleMale_YCQ4S", + "C5E60B749B12EE642D011809C151C105:3beN3XlxtcpmaTa1O6669UmAZ7HHs8UFOzUQSAOSWv4=:EID_SunMelt", "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:LSID_457_Ensemble_Characters", "8E1887D55A60F69B33B234242FF49653:YofZaW+CRl0jhVhkp9z2CQWhTPwyjQ6dbHtISkLDfVU=:AlfredoSet", + "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=:Backpack_PowerFarmer", "B4585A36D49CF15E1E236775B8C659C1:Ced0+UTeTBbDhnHM9mLTk5qxlz3YZK6dEn1U+NTxOko=", "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_997_Athena_Commando_M_GlobalFB_C_N6I4H", "3AA9D1B5DCC39A932C9D6FC201C5F327:kCoO2Hxq4V1uHM9pIfqlMOFRTyGqSeW8MYEiFEen6mc=", @@ -385,6 +414,7 @@ "49034BA1606B1672C8B634D2C6186807:5ujMnF4IKuvumpfNcUA1yi1mXjy5zBGPg00TJkHlG04=", "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=:LSID_440_Noble", "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_301_Athena_Commando_M_Slither_D_O7BM2", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Wrap_InstantGravel", "58388BA7BD1643A85EFD49BF26EF5912:Aru327JJHsGKCD2YlQT+Ejy63//vly9ChTdKsfgL75o=", "BA490514EFDA436A2679E381BD558AA3:3KBKxBOi/52H0feJ/ijKxRHk+lF1zID0uIpjd0T7/Bc=", "1A10A7700C3780E2B1A03037D64E1EE5:IvQikWqraVuMzt8eP1B0cxW5Dcaiv7njo2QHFfZFmY8=:Trails_ID_081_MissingLink", @@ -405,10 +435,12 @@ "F60CFFFA32CF6A877B50DA7F0A88326E:OWIopbB4fxaobofPI9lF9hn6BPG9NVLp4Od61uQppfo=:Wrap_048_Bunny2", "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=:EID_Zest_Q1K5V", "027FFBB49E4285146DA1C5238EBB7DB3:yjcsOd6x9bWnX36cFx2Q3/zgHrCrnuWwiuZexrdcM8s=:EID_Uproar_496SC", + "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=", "8D336ADD3E862004534F4D310F0A681F:Oh4kuy+66NB6gPNkix+oKng0QTO1Dju8k6SxT3HXxe0=", "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:Pickaxe_ID_693_SunriseCastle1H_5XE1U", "EBB742679C34C9D4E056A5EAADF325B9:ousld0RIkeu9L9aTDwr9aNCIt+wOwB7KxGPY9BTfQ7s=", "6ED300E6401C02B19FDF5F82D945C661:OVr0GWPGv86nzWikKzrw2SC4aS+4ApgKKLvQ7d0Nkn0=:CID_336_Athena_Commando_M_DragonMask", + "0A16F03E8DD9C4DAE4F04B2C5D6F829F:5o23YPFPMqv+KS4E4/ybDC25GkBt8ZU52xW7WF4tZbY=:EID_Bulletproof", "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:Wrap_179_HolidayPJs", "9E9072AA036FB1FF6B2AAD7BEFE7BF17:ORHgZOt4Zrtc8dLSx6jCsWZ3Z6AwPJiSiFAkZRMK3kM=:Pickaxe_ID_649_AntiquePalMale1H_GBT24", "63B2E664F9DEE5B42299191174C3B3C3:U1GOSBqPUDAFq3pjEdJg8nHb321IH6571dkhF0nEMss=", @@ -473,6 +505,7 @@ "110D116208C62834812C2EDF2F305E49:MwuF5zX7GpQCGL2w+CwkPmGzH3q05YUoLo5udhVMNPg=:BID_488_LuckyHero", "40E9F547033360DFC0DD09743229B87C:x0/WK54ohwsadmVGHIisJNyHC8MqlU8bg2H+BsaEBtc=:EID_Kilo_VD0PK", "2E539CD42E0594ED4D217ABE4E2B616F:9zdoLMrIZomTGmvDId1RMEGSfktV9gBGgcD2diSSMw4=:EID_NeverGonna", + "5AD8A96807B87D5E2D91EF7714A5432A:FHE540WbcHsqROMXt1E3RQIbKEguG+TVTdOr4IGSslo=:EID_Cottontail", "EB16EA013B751792698E05435797C1ED:y9JgD812Io4mbaJ5i533Ts5SSfyXaGM4JyoimjP+i4M=:Glider_ID_135_Baseball", "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:Wrap_394_TextileSilver_ZUH63", "488F01C34A9A24115776EA801A6E7E1B:WB1TFXsB2Cywzb16hZ2HdBc8X1FsTVqzlDwhyJO8Pcc=:EID_GrilledCheese_N31C9", @@ -497,6 +530,7 @@ "975414A2AAC78A3710C3A47A8E3B7A57:LQWa9K05LB13Fn7Brzi8R3vsMRmFcNyJaoAcmBFZNjg=", "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:Pickaxe_ID_328_GalileoRocket_SNC0L", "4C838738CDC4946786DD7BE341AB05DD:eyjCm9OcFQSvVRVBZizNVyF+8kb9OlNFrvDy8d1QDfo=:Pickaxe_ID_197_HoppityHeist", + "2A236A35ED4833924DF975CEBE4282AF:e4NpefIqezxUVeH+2INzCV08eK4NvFrojB8z1awxm6Q=:Pickaxe_BrainMatter", "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_995_Athena_Commando_M_GlobalFB_H5OIJ", "B66EED5CA4F4ED75170872E30B9B0E23:rHT8/uzcZZ0ENxU9dxKpr+cdAajZ5L5U0geHt6NoZhI=:EID_Fireworks_WKX2W", "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:Pickaxe_TigerRootFame", @@ -506,6 +540,7 @@ "F44BDB2A36AC4B617C7F6421713C656E:SgzCqior1619O71w2yToU+h1Qakb9PXHXYIQN/2UIgc=", "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:BID_986_CactusDancerFemale", "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:BID_991_LyricalFemale", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=", "56FE93367C8B62ADE2A8A1653077C98B:OevQYyBvnT5vwQhOJhu74k5TNwE6pe4gu6okYYBepGc=:Pickaxe_ID_784_CroissantMale", "B4D5B451ED92972585CC2F14FBD89BEA:W5OvELdQtcX+ob61JryiUFRMmKWphagg20Z84qg4auc=", "63516700C5CFA6F1BE71B29214957E33:eR9Otw83jJyrj808CkqElVYzlXztuc14/u2pDtPtooQ=:BID_295_Jellyfish", @@ -514,6 +549,8 @@ "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:Pickaxe_ID_821_EnsembleFemale", "2CB7CC414F921DD774957AAF4AD5F8FE:vi2xluuUw+pFj/tqqfvh7cS9Qnr8gQPEGX0IHyjZVp4=:BID_185_GnomeMale", "476EE53C2EAA24FD1950A9875FB4CF59:LQMwgWwsoSqGyYbBouYaMaN8NZ38Vy5r3Tqa7KA71oQ=:Pickaxe_FallValleyCharge", + "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:Spray_GalaxyLevel", + "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:Pickaxe_LastVoiceDive", "B229884F839295B4B9EDC380B045C64B:SVmPvZenzQ5Si17i8daUFyKoOGDtaH4YZtsF1s2XkxE=:MusicPack_084_BuffCatComic_5JC9Y", "5950552B5A52A97A433715A1FF107BC4:p9RBdPmk5295pRSg0+Ybfwy/kqY6HBYiJEAkvy650O4=:BID_171_Rhino", "7AEE99564551FF8EE98E6887410AE8E2:Cumd3/0knsdwt4bl7zNQw8MKmmIuC/4wYVfVtQq5d2o=", @@ -540,12 +577,15 @@ "16FC688AE41A3E3C518F4DD9F9612EE7:Jd7nRLx/FoonA2dUjtbvJVk3nJoNq9LTedk3u4EdFS8=:Wrap_044_BattlePlane", "D517F2A448CCB9B47E5004894BC62ACF:qOdQUR91sysqDRELOgz/YVZ7Piae8hqcrnYW90fXtvU=:Pickaxe_ID_680_TomcatMale_LOSMX", "7B1151E3094646DFFD37B6492B117FDB:4WxNHdTgHDEpGjzIV2XIjGO41kyiwggFQpdq8y+o1jY=:Pickaxe_ID_577_TheGoldenSkeletonFemale1H_Y6VJG", + "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=:EID_Fishbowl", "57199980522FCA9E80C75A826BEA92ED:aR3U2OO9uGBqAYnJeTrUBFk6Q+OkpdmBavBU26DP0m0=", "6686344942A2886FC4FD4D3763A4890D:CphngqSvpV+b2+WsrC6THVlHtrbln/Gmei4th7IO6VU=", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Pickaxe_InstantGravelNoble", "E1B1A5908EF6377D7FB29F776486A6A0:qaZB3Q+6kKTtlO4aGWBsnjSxCwX3kmr8oOF/2QDZ2qc=:Backpack_Basil", "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_950_Athena_Commando_M_Football20Referee_D_MIHME", "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_944_Athena_Commando_F_Football20_C_FO6IY", "98BA4AE4D7202053DB73B55D8DE72248:6UYqlPIbGSNPZBQWhHR4xZ/l3mJCnJ2O/7SEqRRInLY=", + "DC953387B24FC2DCBECCD2CCF61BB973:GT4tz78+PbkMtjcHnlkhmwLG7lQAr7EwMEWIgn59PV0=:Pickaxe_RollerBlade", "5738A14C7E45E1B405CEF920829CB255:xZHlPTz/dxNahrp9IqTZ+tjOZSYMxQb9KZFXlg9N638=:Pickaxe_ID_330_HolidayTimeMale", "4C546A04EB0E91B7EB4449B672B63900:RhtdrUqq3N21E77X7YatI4oX3wLYyvFH5Wm+eaUX8+w=", "A0926AD8C6EDE29250AC4A0A93156E7B:keN/yZ7qnvcPZeIflsked9TAT867gbPgmnG1QdlSn3E=:EID_Donut1", @@ -555,8 +595,12 @@ "36126C339CEBD31F23562CDCC5DFDD4D:cuLUN7oD/p5BSxuk6pKGY6KtlhGInVti36sV6zSv1n4=", "EDF724493161095DB54E9613C243A355:Yp7dsOYO778G7uRZNYhGag2diT70vhu2hAWvkzvtHjg=:Pickaxe_ID_796_IndigoMale", "8C4383893F90632D5516AD37E0CD5173:JUTInt9XDGH6gUbZ040d4ptJRsuhNppIKKIw+IiYo8k=", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl_C", "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl_D", "566C4D92AF66F45DF5E2D7EB43CC27AE:EuAYwU5tQBXzGoSj5BMc7S5yFfe9wZ2qrzx/hIHpnqw=:BID_629_LunchBox", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl_B", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl_E", "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:BID_427_GalileoSled_ZDWOV", "BF344823BEE88FA8760A410311A30150:mcfE7CGJQLRE5dWZTCNPCCPgSBV7CMLl6lvpF+nzqzw=:Pickaxe_ID_851_AstralFemale", "F6E92DDBC70C8184E837D31905B2F2A7:UCSPatT+yv3YH2x0Ks+2GSXhSSu+3ZvZs6Lai3oOi0Y=:EID_RuckusMini_HW9YF", @@ -565,13 +609,19 @@ "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=:Wrap_298_Embers", "BE2C3EF59AB81D812AF5B8153325998F:W7NoICLZt9L2d7XZ5dT9gtI80MyOizk7uA9LtwA/Edw=", "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisBlackberry", + "10B79AACE97810A1DD02E8A0E6093294:mgf5coTA3W8a87B7ZbnK8dMcRwToBBDjOH4qZoWLw9s=:EID_Adoration", "919FDAB2FDB531820404333B27DC7B06:W9Csp0y6agsgcQXlRGvYUpPGPImNdFfBsZ8yQoUEdGg=:Wrap_092_Sarong", "28C5CD0467F2271365DA8AC4DE122672:I1ujTTKWOz0A5LcFiCwKJXQl9bnMpW9yhvY13UaWo1Y=", "BFE1F518C16A9F061B140D829ADDB0ED:bHkPYjXd71vacoJ4IisL//zEyVLFh+Di8MUqV9KkpFU=:CID_A_139_Athena_Commando_M_Foray_SD8AA", "C348806ECD35F176A5C50306B0A07DB9:x8+m/v+Cn55R+CIZrsqqSKxa5JpkQyQGeLVTJ8evrpw=", "0DD695EB05DDF1067D46B2F758160F3E:H8eacvW3rgmZFvWGGwXfojcIBMrQUL+FJQ1x3dzzVm0=", "857A238C0BA80D892571ACE78CD3187C:eLLEqOAgRjz78Z4YT6dLxL3DetAW1c2BM4oTPp912ak=", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage_B", + "3064E7FF7FD15A1F40230918DF236352:mMcGmrZBjxlJBFmWKqZHgcrcRvZKcHDIn9ampMMA9R4=:EID_Jockey", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage_D", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage_C", "BAEF248980269F569C6E1FFF2B885DF6:2b6DQGIcab1r7zsw5j3MR84iDmt0g1XBquxJVR/8GxM=:Pickaxe_ID_302_TourBus1H", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage_E", "D47DF51158673BE6CD4D32E84C91DF7F:+EzQK4ojNk1DqxceQeArAGZhQPQyuQBKX4gVuGEqSxM=:CID_632_Athena_Commando_F_GalileoZeppelin_SJKPW", "6537263AA4E53B6A7B7D4AE3DE12826C:6WOQR0kXJWBJ4miykyUSj/hcH4u5JTSFpBTwaIeIFxQ=", "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Cherry", @@ -579,10 +629,12 @@ "172B237342C2165A212FEEAC80584DD5:7bGmK+J89yojl49SMoQKA+Zf7ZZ0W3OatE6KZYlGPnU=:CID_254_Athena_Commando_M_Zombie", "504BC0A80EE72DFEEF9CB7EE3FFCE163:eToIGihi0lTVTcHietksl1e6cHBf5h30aYO5YXpWXY4=", "E003ABE22717994943D06FA3F41D1CB1:Z0MoyJ24D89oC5rAOJK09jo5/TLV30z2f+IwDeJ/4GQ=", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Character_BraveBuild", "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:LSID_404_Gimmick_GXP4P", "CBFF239A1792F25920D863F223368B54:J3N3cUH3M0R3uyzkE0qVK/SouxC/X6VEswcoWb6ViL8=:Wrap_071_Pug", "ED088B11311A599D6225CE85545F019A:1NMRh4JMXRL9XW8Kb6zo4/F10dwLJC1+kPm6D6DudCE=:BID_832_Lavish_TV630", "8ED082067AC31EE587FE16E5507E95D3:/uvcdfyt+d1foHxwO3zz+Y0PUr5Jzz/yES0FyaLelc4=", + "03DFE957E1454D5A0486358ED5DE9C56:xz1aeE5HU0Ej/4kp/WXnsZhLBh7+z+aWVz0G1xOrTB8=:EID_Promenade", "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=", "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:Backpack_TigerRootFame", "D47DF51158673BE6CD4D32E84C91DF7F:+EzQK4ojNk1DqxceQeArAGZhQPQyuQBKX4gVuGEqSxM=:Glider_ID_189_GalileoZeppelinFemale_353IC", @@ -594,6 +646,8 @@ "B3D2793477E5D467475BE403774360E5:HNj5inGk1/2h9f0r4+SGPPY9t69eOwS6w0XGxpTVOTM=:EID_FearlessFlight", "F395571A36D2BD888861E61EEBD45AF8:D/35GPTIOKbdfmpxRJmHTkjNXcWv+XdSmTxQt6z1hvI=:BID_702_SkirmishFemale_P9FE3", "DC060EA83FE6F9729B19150E40C7987E:zW3d3QhtvhE+q3x/P7/BA9JvyoruVmeACdKt6RPxyLY=:Pickaxe_ID_769_JourneyMentorFemale", + "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=:Pickaxe_FishBowl", + "9E6F84C908A6CEE29032FB050FBC2EBA:GXZFI6Jhfg/HnSTK1cqbpa5Ay1GzLco5sYtY5RPTcfM=", "7F5ACEFE3F67BC0CCEB59A4E8EB82BAF:iDG2HB2LypEtzw5/EjKVpJmQ1o30BE3nVv01rOTyq64=", "63722D44ECCA0F4178B85F5A6BC4C31B:j42UL0bmfBkli6Aj92wWABwFby5rAplP/Ac6nh9kRvA=:Pickaxe_ID_661_VividMale1H_ZN6Q0", "EBFE6788D367D741AF0A4FD098CDFD39:FAeJTGyT49P+dQOmKx+lMYVAxu7qtIPlqSaLAR85zqI=:EID_AssassinSalute", @@ -609,8 +663,10 @@ "74AF07F9A2908BB2C32C9B07BC998560:V0Oqo/JGdPq3K1fX3JQRzwjCQMK7bV4QoyqQQFsIf0k=:Glider_ID_158_Hairy", "464F39FB64FAF4AB6843449EDD0BE3BE:0yYMEXLHteghUwUW+SThzKXltdNzvA42CssFpAXgxFA=", "ECC9E1F04B18E523B2681C2037A17B56:AoeVhWzK5zFpeJ2yqYKkTaRw4vo9162/EuipYvC+jxA=:CID_602_Athena_Commando_M_NanaSplit", + "4182D3E699CA4C6022FC4CC2C1E6FB90:to8QORwARsWs8Ox6EmJj9V6DvB4yWqTYHlLuNKAawss=:EID_Malleable", "32E8846645441197B80CF8B1C86B01A1:cwJgOQhsrscdiFfLHzS9WudnE9mBMH/C/SAyX81B2fM=:CID_311_Athena_Commando_M_Reindeer", "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Kiwi", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Character_InstantGravelNoble", "B9E5ABB4D4F783F13E7A32B971597F03:HGWfy8LBJu12s5HZeYTZDqP2EI3dJqPXupxd2AzYdUI=", "C7623A35411F3D5FBDE2688C7E4A69EB:qAi49mUKsB2dbfbtJWDf3yO2DfRStA+Ed9XgDjC8Zaw=:BID_190_StreetGothFemale", "234D1D3D37EFF3322E44B31200C1ACEA:T3lGoZ3JIVg7vasMQCr3hjyRo8x+HS1Arh43XvdUKss=", @@ -630,6 +686,7 @@ "0CAB99F6E84D4E4C616B895E243F3B67:DWU31IKjnLsEt8sBBDfWQ3DPbZzpJ2JmfbxYdQ8QPZI=", "61D055FFB6523C2E6B09EEEF500F82EC:mD5hivRGMT21lNyWjRs7eYriBFTVlzoINDBB9DSFPAA=:EID_Clamor", "8DF1F1277DF980247E3117412EEBC87D:zkBSgRftUEdB3dqaelLwaFIxyVv3AwDbdcwc5hsg++k=:EID_DoubleTake", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Character_StarWalkerFNCS", "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_350_Athena_Commando_F_TreyCozy_B_8TH8C", "FC4FC301558D3E9321A55180263EB17B:OXujupiNRNT6+b1g1dg2IXPtdQyfoNPUuvtgqfXnlEY=", "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_445_Athena_Commando_F_BannerD", @@ -641,6 +698,7 @@ "419008D696C27533DFEDB08BE4F6C8F8:5I7VZNrdz8oZdzk1TTNCKkZXokilbXLFy7dQPPPlpuo=:CID_A_314_Athena_Commando_F_NightCapsule_TAK2P", "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_352_Athena_Commando_F_TreyCozy_D_2CLR3", "77C937AE673A9DBFDFA373E0FD928533:JGgyzNZT3oLg4LqA0W+d/caWWhqIpiXNOyYtzSeZ4po=", + "7F2E96A8331098ACD5BB8DC29D4A3F57:kDTbN2yRZAIwEEQsF2zoJwdhtsK0lcb5zEuon7vziuk=:Backpack_FolkEveningSheath", "258AB620A71C14508FB6614003DCD34E:fjPUuwSZbKfHlvSh8RMyVjR2SVTcVrGNpWvyjNVQ8Xw=", "C66F354B49A4389E7636C1BF53CE8D97:BisMzLIPd3AuIv431ryh7DE1h1HYe/NdhBC0wkLq/zQ=:BID_204_TennisFemale", "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_307_Athena_Commando_F_Slither_E_CSPZ8", @@ -653,16 +711,19 @@ "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:BID_A_062_WayfareMaskFemale", "6B91F0DFD2780364EC6FC5E531665208:sBhYta4JrxcssCLVBkFXeJpKa7gQKHepqu9840vo6h4=", "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:Pickaxe_ID_783_CactusDancerMale", + "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:EID_SpeedDial", "5332028CC33C98BF747EEF82B0384D8C:QxdEIZba2DLRx0jYKm8UpIk/K6eKuclfvDSTllMLLrk=", "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:EID_Galileo1_B3EX6", "A758D2324A07ED9DE9E0818F6856693A:ZpzBR4QHXooKIZ6RXd8kp7WBPvsY8PQfKPE4bRfkGks=", "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:EID_BlackMondayMale_E0VSB", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl", "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:BannerToken_015_GalileoA_0W6VH", "72FCE9EE6B90885970CBD74AA2992B68:UvFcOwG78Bx6kVWWHd3NsSarAeWZAht32WLeqs0Opoo=:BannerToken_003_2019WorldCup", "BC3890EAABBF03778EE82AD7DD4F9C12:RvtEdiKkxLJDnXKUaUK933vzLK04veYzbdp8yN8wmxY=", "476EE53C2EAA24FD1950A9875FB4CF59:LQMwgWwsoSqGyYbBouYaMaN8NZ38Vy5r3Tqa7KA71oQ=:Pickaxe_FallValleyBlink", "82669F5A2F9B703D1A6BEA3BCB922D7D:Leu9rrDPaqZd3izIU+IKpFcP/NNcqSncLkV2lapQL6k=:Pickaxe_ID_221_SkullBriteEclipse", "A6E8A0C1D732A1D028B92BE981E0B8E5:3u9E2vAzuE3Vl8sOG4jzX2RiiA+GFyukOLeOakVOf3I=", + "3988E0693BAEB40EB8FB796CF560C182:KjMkLsAOZrfb9xvTWaNmqqceJQz5RSIJwC+1md9kMs0=", "08788A9DA34F4164ADA4F09FBF698CC3:DlhRrdBGDNADUAMRj4oAUwwR2j33Nr2ZNg2CU3i1/Pg=:EID_Quantity_39X5D", "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=", "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_349_Athena_Commando_F_TreyCozy_Y4D2W", @@ -671,6 +732,7 @@ "9944BE1C4E9D73E4FA195380EF0B7BBB:LQxoRi0ktKvKMLk6hauL2Gzs6zf5bcEk3mgfX0We/uc=:Glider_ID_122_Valentines", "340C0957F37B985956E74242A9487B5A:CiISJuNPymcbI3tJAxIaNfGCcHBr1ttSFr++4c5DQx0=", "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:TOY_Basketball_Hookshot_LUWQ6", + "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:EID_GalaxyLevel", "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:Glider_ID_365_RumbleFemale", "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:LSID_456_Ensemble_BusGroup", "88FA70760D757D80F661FA53B4762EC2:7OtV76cpyOq9dNeM5PVD8TOdRcPx1K3weEPXzlCugu0=:MusicPack_106_Bistro_DQZH0", @@ -705,6 +767,7 @@ "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:EID_Gimmick_Male_8ZFCA", "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:BID_952_Gimmick_Female_KM10U", "5BAB7539D98938E909D3541E69214830:IgABlZz2+aRehC7vxw4p63pXUZOZFwdATQWkTfTYP30=:EID_SpectacleWeb", + "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:Pickaxe_GalaxyLevel", "5AD068EB1D56D87706E44EEB3198CF1B:o9Gp08KD/vgq3RTrUbfGJk7rlfUqZMxoRKPiwvdVkXY=:Wrap_431_Logarithm_F8CWD", "E0AEF4894E1283946745F7902F7E105A:7MXKJEs903nNbT1oFzykxoHbQNDnOBm6yfadj+mtBDA=:CID_A_342_Athena_Commando_M_Rover_WKA61", "604C6242EB2BF301BB5D4BC6E3AC5A8C:Y7c2+dviThEDuVsG9kIOjMfnLdJUnPMbdaY5gKiVki0=:BID_772_Lasso_Polo_BL4WE", @@ -712,8 +775,10 @@ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Backpack_PencilCherry", "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_444_Athena_Commando_F_BannerC", "C1C31115267D6802AD699472D2621F25:zAyelFy6RcyGIW/9z9IvgEbmRW9pdAytvgBIPb1/kdk=", + "21F8DE4A4818E3B01693DF33566A179F:5AoumGhlrt+oAo6XUdRDSGHIp3ndAWOf9JGbBZResfk=", "D7EDE7B4CE393235BF4EB8779C55D5AE:tvYJfExMmwMpbWXSe8bxfGkpl1wcJv4B/RBjd8qWcZ4=:Pickaxe_ID_728_OrbitTealMale_3NIST", "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_951_Athena_Commando_M_Football20Referee_E_QBIBA", + "DC953387B24FC2DCBECCD2CCF61BB973:GT4tz78+PbkMtjcHnlkhmwLG7lQAr7EwMEWIgn59PV0=:EID_RollerBlade", "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisApricot", "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:EID_Foe_4EWJV", "C76299772B1BE272260BF3396F83FC1E:uiBDMtwYhdxktbqTrhYkzEZErlBp5gBtkLM+QFDouT4=:Trails_ID_102_HightowerVertigo_G63FW", @@ -744,6 +809,7 @@ "1DF43E667862B117F72B5F39E750853A:Bhjx3mmVxhvadK5bkT+W9RJ0XAaMHawCnf8MfXIpABw=:Glider_ID_150_TechOpsBlue", "6D85E82539341B90944E84FFAAD872FB:mAiBk7KbE2Dnr+yVFyJK1yAwv2eWb+yANFH0z2krQkw=:Glider_ID_156_SummerBomber", "AFCCB7C08EC6957EEDDAAD676C3D3513:MuovEXob241ie6/RP76ImUk+MExLdl+bszvxCHNtg0U=:EID_TwistDaytona", + "0001859EA7AF69EF10A6F7921DD4DD9A:3M92MlWo2b1V04mxizc7cHB6TDP/UInspfWR4yT7K3g=", "7E9E6546A8C7109E9966F9C010D794A7:/hJU9SIxIewJ7taimArAwTbbuGG/4THrKvMElcTMzI0=:EID_BurgerFlipping", "AE9F7B3419C7FBD2414D72E2E1C8A7BA:kpIotniLp60tWfbBitDUrjw6gmJ2Swl+YT3QAkecpRA=:EID_AntiVisitorProtest", "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:BID_441_HolidayPJ", @@ -759,12 +825,15 @@ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_241_Athena_Commando_F_Grasshopper_C_QGV1I", "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=", "F00E08CB606091AEFAB37D9B0A01B833:uEmoAK5xdbd8KefVf9o7uJiGcGTYk2r9QevsGe4vBII=", + "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:Glider_GalaxyLevel", "E28AF2E3BB7EBBB69D962A15879E696E:hJE3fnZPwRmG8XIw+RJvVsCh9dOHDD82VAhvMbi+nvs=:Pickaxe_DualParadox", "00EEB0CEB7585E8C69F90EF8534CA428:gSddavzl1D9mSi3KgCoXjX3eb5Dg9Rqh2C1pt6rD5rk=:EID_MyEffort_BT5Z0", "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_346_Athena_Commando_M_TreyCozy_C_7P9HU", "C97E930BC95DC795F4416A7B93E3B9CC:KxRPbXqD3ytwLLbZMbZmn+G+gjwOUljg/7HPjj8xP0o=:Pickaxe_OceanBreeze", + "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=:Glider_PowerFarmer", "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_A_005_Athena_Commando_F_GlobalFB_E_GTH5I", "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:SPID_333_RustyBoltCreature_ZGF9S", + "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:Pickaxe_SpeedDial", "77B485EBF8E72CC8CD19F8646A6D0491:SXUHJQDuxBGv0PzDtuVsDxNyubG/pgH9s9FMvimS0YQ=:EID_Noodles_X6R9E", "EB16EA013B751792698E05435797C1ED:y9JgD812Io4mbaJ5i533Ts5SSfyXaGM4JyoimjP+i4M=:BID_246_BaseballKitbashMale", "97D5F3D0A78B050F427B5B300FC03EB5:Be+eZS6KqUc5Lc2iF4YAcLEe+S78nuLCK45HF/dDGDU=", @@ -785,6 +854,7 @@ "EE0C67580F774526D46A64757F5DE77E:qRq1DPp8GnsFZSUYR1PJKeKm5YXAg3Kyd5Y+pjtXZyU=", "2301C91045828DBFCDD966BE1AFE22F7:zS44RFNKoS6+WDSfin7CebOMjLH763+OGG5wjTrCosc=:Glider_ID_097_Feathers", "9944BE1C4E9D73E4FA195380EF0B7BBB:LQxoRi0ktKvKMLk6hauL2Gzs6zf5bcEk3mgfX0We/uc=:BID_214_LoveLlama", + "90641BE26C6A325EB05DA1FF911EEE87:zDYeE/nTlO8I38ziKo/q/ssv3w2fHkWnDNn6mw0ZENM=:EID_Reign", "D24B0606E503B97BFEB8EF12C6F1340B:wCF6GzuxQSxUX9I6eFwGJL34gU7YEPTKrZOOL3sPL3o=", "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:Pickaxe_ID_792_RumbleMale", "5E15C5486CE8E539552D4D3E7682F9E2:+L/tTz+woDFZJEvtxfq8m8tNI1R72sYK7rnYr7sHTis=:EID_TeamMonster", @@ -799,7 +869,9 @@ "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=:Wrap_383_Buffet_KGN3R", "8566FD040AC2B245597E11D1F85DB4E5:SEoqoweofxmXfxu848wKn1UJhwU7oQ2w2F0lBst+FnU=:BID_658_Historian_4RCG3", "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Spray_CoyoteTrail", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Character_InstantGravel", "A398C07C0A77D834038E7192FAB52B4B:/+4taU8TYRe14OhUt2cevoUqUOh6ado2hWu45FJ+7yA=:Backpack_FearlessFlightHero", + "57F31C09F360B5B96F6BF142E1E6A094:wkWZW9rtBPZSew3DP593yPFWKUNRXVwVl5wUGh+rLB0=:EID_Spectacular", "A34195EF9068F0DD323EA0B07305EA47:eYcw2YEjssIAsJMgaWYPQQCBFcRvvkj9WoRVV+P3cBo=:EID_DontSneeze", "29B68199D0CD6E019BA8175561F4F076:aA+14qhwCm5cu/+LEzB+tLlZtccgX7H3N25Ky41Me3s=:EID_Chew", "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:Pickaxe_ID_276_BlackMondayFemale1H_1V4HE", @@ -810,8 +882,11 @@ "2301C91045828DBFCDD966BE1AFE22F7:zS44RFNKoS6+WDSfin7CebOMjLH763+OGG5wjTrCosc=:BID_154_Feathers", "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:BID_634_York_Female", "1609BAEA4AD6B664847EB5AACEAAD2AF:m2Yg+p6NDPR/POAPoG7bUCPabLTxGc/h8nrOEIwDx7k=:BID_130_VampireMale02", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Backpack_HeavyRoar", "486AE200BAEBA71EB6C477BE323066E9:3vS6pm2ep50Ab5lzNnGMluM0KYJFiUbp2MuBcahuiFQ=", "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Backpack_CoyoteTrailDark", + "D2016D80822A26E49A7365FE575FC8B3:DphK7hbrbnvQGCGhhNfCpe+bDPl5q1w1DsaD4OvJgOc=:EID_Deceiver", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Character_GreenJacketFNCS", "B77D921A94CDDAA841609065AE4C7BC0:SLDMLjxWpK+h1P4WNnqlixpWwujuV8OUZw+NoufV7sA=", "CD6B95C728B11810F8EE4C396D02EFCA:Fulo/BAgbJwmOju1xu/05XnxLDbenI4bDEb2rUyf5hw=", "6261EE20A79577BE9F3CAED16BE29CF8:539o4DrU0Wfl7SNWEO2im8/ZYoL7CBJOvz+3hN0cc5A=:EID_JumpingJoy_WKPG4", @@ -843,9 +918,11 @@ "1A9B01B59F609C0D7E9EF7887DA23087:EkQdXhPD9Je6Bp7dlwZdlkX2S0har6vqUOjMIF9ndfc=:Pickaxe_ID_832_OhanaMale", "0E32ED911D1D1D67115812FB22317555:4qQbE3qtFL+oTEzvxYIwl2H6AsG7z1/3zNO9JEdHOd8=", "687E53607C7004988B05C9EE1BA99AFD:jYmAGdz5vAvDRIhrcVdrcCNIPEmkJg8L1vWs/HZ5Kr0=:EID_SmallFry_KFFA1", + "C182F32A4B301086F8EE1E49B34C502D:g4VO8e/8Xk1+S55wpg/gmymEAYj6N38qXnvWSaYtER8=:EID_Shimmy", "498A4AB4BC3BFA9B055CDBE833C51670:67ndB88hm7gomLYiklekB5rGWrcr8RJ6K+no9DTP87M=:Pickaxe_ID_372_StreetFashionEmeraldFemale1H", "CDCC968B6DEB5D05990F5D530A4B19D0:gAiLmJxr4FbEf/L10sgHjOLE8DEy7kYdtk7DJcgjPRM=", "FF5A507BCC4519B928075C3DF4603E8E:EVv5b8WFOYZlDUGRqb8YUS1WbIbbT8TjgoBWEQr65zs=:EID_IndigoApple", + "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:Character_SpeedDial", "AB10C0F1C99E5A6E4E477300FBD5D170:tLrb56vTjn3uiZIRhHU+RYygmirLzGglmEdI4DqfK4M=", "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=", "F62A404ADA885AF5A67C30DE1F03BBD6:zAm4CsxXpE6vMhsqKwj2Cce+asNmSAv0IOo/pWVySmE=", @@ -902,8 +979,10 @@ "F707FA321C9644351C5F87893C16580F:bOW0W1Al3NZZGbPupvIlLl7wWgBA2jPtH6SZO/fjdy0=", "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_905_Athena_Commando_M_York", "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:Wrap_396_TextileGold_GC2TL", + "605CA1F4F68E09A4A0784DE3D6E9FB88:TKaxKxc1yoVFdUqQNWdG3bofE78hwuma5x5Go2dnLxQ=:Backpack_IonVial", "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:CID_652_Athena_Commando_F_HolidayPJ_D", "4BA767BD2DC06D215B435AC09A033437:QOfpKnEogmj0tTa5wf49SZH55Sy48QEGP02DbkSg218=:EID_Grapefruit", + "605CA1F4F68E09A4A0784DE3D6E9FB88:TKaxKxc1yoVFdUqQNWdG3bofE78hwuma5x5Go2dnLxQ=:Wrap_IonVial", "F6CD3CF3046D856E3934D86042C683A9:s2pBk3DSUjPJehrTQH4iEDYiESVbSMwIW1xuOd2FZJw=", "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_914_Athena_Commando_F_York_E", "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:LSID_399_Foe_AN5QC", @@ -914,11 +993,14 @@ "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=", "F9AF8CDE150D2D1E65B64710D70C23A7:3SpHToTu2E//Qe8Dhu4I3kG5fLqEemMiL+2NxRVKdOc=:EID_DuckTeacher_9IPLU", "99E94152C1F777A1D8519A532741EE40:3TCGPeLF3mnH0j8LE9oLwYiXHMve97rw7Vw1OQcnczQ=:Pickaxe_ID_762_LurkFemale", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Character_HeavyRoar", "552DB214510DE1E24F08920F80B0AEC5:GP2CYv9xYYDf6bOnpgm0fnOXa3iI0acXH02ZIaHAElg=:Pickaxe_ID_648_StereoFemale_0DTZ9", + "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=:EID_PowerFarmer", "E0FB7B394449CE6450EA90C93D710EB8:NrXwNX6lKuu/kyQuvE74+6Uo04FODoV4ZqxToj/jS6I=:BID_300_DriftSummer", "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_912_Athena_Commando_F_York_C", "74245D2573276B4C9ECCF61B23367A72:I5LtJ72UAlZ9XIupxkzRJKiRnSEkEvEc5D8+Ss4u2Ik=", "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_298_Athena_Commando_M_Slither_EJ6DB", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Backpack_HeavyRoarCarton", "2301C91045828DBFCDD966BE1AFE22F7:zS44RFNKoS6+WDSfin7CebOMjLH763+OGG5wjTrCosc=:CID_274_Athena_Commando_M_Feathers", "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=:Pickaxe_ID_746_ZestFemale_4Y9TG", "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisPomegranate", @@ -931,6 +1013,7 @@ "54FD9ABD65879452DCB8CE11C1D7F1AF:nV0Vm4NCBl+MkGX8wiqfFrg0viDriL3I2xc4KS7n7fg=:Trails_ID_027_Sands", "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_A_002_Athena_Commando_F_GlobalFB_B_0CH64", "46FC5EBAD39CE53EFB215A2E05A915FC:H3gtdkEzT3Dk8vkwTTZE9oUDoJEy6vmfQj1jDo453gY=:BID_256_ShatterFly", + "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=", "258D945630DF6E1016889F47B16EED80:zQ/4osJ36W0V1DFXswf8JSStDMBTZPQ8oFcMrDqS7BM=", "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_947_Athena_Commando_M_Football20Referee_IN7EY", "D83FAFF508200C47DF03BDFF2F801FEC:s9P7AOkoCuPm/506hyAKzuRaIh0xzV9YZON4oDs7GoY=:EID_Jupiter_7JZ9R", @@ -980,6 +1063,7 @@ "73FDB8F2BDCCF4518225CB3E28DD9C0A:MBo/DO8mLebMquZPCgeE/FgUdJOXASKVjIJ1H+IEPac=", "00BD73648F7CD05EDE0B2D4C33B499BD:0D3XSX1KGIR/UWBELcxKxJp06xbU96TetFY2Rz9R614=", "BDB776E27E5002716EFCCF94F23D1B19:UkCfjAV4SKCBjTvgHIbHc8U/uAWI63ysU1ST/sy64+4=", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:EID_InstantGravel", "B9C9B09F29DF6BC9DA94C36184CECFFF:1/E0M5TV90UjL3PR+sqOzaRiMRpF8ByTmfVayVEL/Ig=", "1CFA91F4317CA2724E2AD9A098B2888B:op+720ix4L4JmxKqwXbOt+T5Xwqhcva7c6lETmEVCbY=:EID_Shindig_8W1AW", "4D896B93DC5B2D18AA2949EA7B67B4EA:0V70x6p0zRRV9bV6P+sq62lM0CdW4rvUgip6/65GWzc=", @@ -999,6 +1083,8 @@ "DD07D332EE51C9C9585F5249FD62A45A:8Fv7jA8ISZ3iOlNCeaeeGh9rmRV6QvL7sbsx5wYTvnc=:CID_A_223_Athena_Commando_M_Glitz_MJ5WQ", "19CAB803EB00118FB3E6B3E5ABA7B234:tRM77TfQWWJ38hNsFLjt7jMNoSOozxqi9PF9/9H3rmU=:BID_373_HauntLensFlare", "5A03216B7495CB52261D6E0D74DC62CB:tYFoxNFq/lu5imPTcSk5vAX7ZfPNBwi8INXf2hU+YyU=:CID_A_159_Athena_Commando_M_Cashier_7K3F0", + "3306D0A65AE55FE016FD38AF43E062DD:KY9nJfkoLlV8GIZTJyctUb96ihEreBHYF3Wc3SfnHkw=", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:EID_Victorious", "B8C17AF9BC0DF3113AC6C498DF3325C2:iElxozD4UvK0+tPt0pPLg0gBoSkwLwByJiE4ucKHU7U=:Wrap_085_Beach", "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_080_Athena_Commando_M_Hardwood_I15AL", "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=:Pickaxe_SunBurstAlt", @@ -1007,6 +1093,7 @@ "D83FAFF508200C47DF03BDFF2F801FEC:s9P7AOkoCuPm/506hyAKzuRaIh0xzV9YZON4oDs7GoY=:Glider_ID_258_JupiterMale_LB0TE", "457F39EA51FB4C723B442810750CDA4A:V3d05mcuS4uXMBRpy63TIZDLt5hg9njVD0SGhZDsmBw=:Pickaxe_SaharaMale", "2DCD2E2A9A816AA9035999F8E6F85F6E:6xM4ZYt0UAylyuIgFrmOgq4fYVH2ChEzQNcl8KGQF0o=:Glider_ID_216_HardcoreSportz", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Backpack_BraveBuild", "1609BAEA4AD6B664847EB5AACEAAD2AF:m2Yg+p6NDPR/POAPoG7bUCPabLTxGc/h8nrOEIwDx7k=:CID_228_Athena_Commando_M_Vampire", "134343D31031634B122471F73F611CBC:zqtMGKxH4+Ydcx+1mHOb5DIMYxctpm2nKqXp8c5hH/0=:BID_279_CyberRunner", "2E5F91AEF58F310AE2044EA39C43BB81:pNy1GtfVzymqacOqXRY14EZEvI5ZSVD5AFxlhxXC5qk=", @@ -1016,6 +1103,7 @@ "72CC2893A6B672F3854F36629B770774:0BgQgKZRRuPFEoqn7CxZVhLBOfpCE3qLKGQlZc+SA80=:BID_890_UproarBraids_EF68P", "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_943_Athena_Commando_F_Football20_B_GR3WN", "F32262244DE021E18BF22F9BF7594474:08HErdKvBV58StDIjB9wvtY67peu7ZK3BsMpBMKvSrM=:CID_280_Athena_Commando_M_Snowman", + "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=:Pickaxe_PowerFarmer", "71EC943F69634C4E436D461E06D88193:aW38AAbm6/PX66vrSXaMTOOb0nydoEEhRphBbDZObmI=", "30B98E694C38C868A4EDB892F3FF1940:3biPX66md7tSkYYCBkYrshj9OJIo1B4CWV33LnL1kds=:BID_195_FunkOpsFemale", "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:BID_821_QuarrelMale_IKIS8", @@ -1030,8 +1118,10 @@ "A08F80FECB766B071C66017C5902DBD1:Q4sRGzjjbRTMZ3HwAmiC6a6+017KgXUsLapzs71OWEs=", "713D64294CD1C40F60DEEB805E3A2D87:CJOOHtEX7q4CELcZ96oZjrmSZd7pyJ2fMaFX912GDl8=:Glider_ID_110_TeriyakiFish", "9261CD0F921EAA3CD6AA8C0716FB042B:W+yzeWWxWnA530lwV8nLi2BE+TD5MCXS11th7UphmPQ=:Pickaxe_ID_543_TyphoonRobotMale_S4B4M", + "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:EID_LastVoice", "E48EFA857D8E6914B2505B05AADFB193:4AUdytefPzWNT8c11iGtU4xcGNWEgzpMJbxTjUq3NS0=:EID_Backspin_R3NAI", "4F463077C4B0260225A47547ABFDDEE3:jvXG7IisBPOlXz80kl6hZdn+jb6TV0Bvq1WafaHji44=", + "5F55EB861A32231A4F36A5918A31256E:mPTr+gEXTqwhI36DN+qJITYpBR2D3aWqrn1lwnPDg6w=", "E59B013651F078E718F08ECF9E1559EE:rTGy9at5kTfQtu8EwVrUihfzuN8vkFPl3XNyGvqbZX4=:BID_250_TheBomb", "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=:BID_642_Embers", "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:Pickaxe_ID_849_WayfareMale", @@ -1050,6 +1140,7 @@ "30A11EE8EB62BEFD4E9B09611DB13857:YVeVPXcP7UoJTp71ZXpGNdPVzmjnRyymcUpsNWYXfRs=:BID_507_DonutPlate", "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:EID_Football20Flag_C3QEE", "A398C07C0A77D834038E7192FAB52B4B:/+4taU8TYRe14OhUt2cevoUqUOh6ado2hWu45FJ+7yA=:Pickaxe_FearlessFlightMenaceUniversal", + "F2C401EFDB4A6B5DD0B80C4E58D4A4A5:APir0jfGo2PAuoVtI+5tSahNavnxm7TFaRgTlx8tGrw=", "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:Backpack_TigerRootHype", "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_344_Athena_Commando_M_TreyCozy_6ZK7H", "22B8405FC3BE153C8148422C3F2D3A8A:d/ATMDztVZxwHLUCwOcJWP1/7oPKKGqbBWUBRNZ6dnM=:Wrap_391_Dragonfruit_YVN1M", @@ -1064,6 +1155,7 @@ "4009CB877085F3B3B0D76A686465A140:gMLJXUbFcIrqqUlAuoMI1b27KdWHBVJJeJWdYV1Iiro=:Pickaxe_ID_551_KeplerFemale_AOYI5", "308F587F46CB50450DCA9B9CFD50E120:2nvyeGrxnqL5SJjMPag1d9YiiXfdGYVkL/WJqWYnC2A=:BID_157_MothMale", "60CE6E28E6993C1DC1C58E839E7A7284:ZlOTwn6YbAK9HetjsiQo0AS1jwJQnLJY7NkR5i7o2/g=", + "5D72DA16B064F87BCEB569EE9323FB67:cnMEvin1jKe2V34dFeq5nTKzXJCQiAnjJfXx1te8E2M=:EID_Competitor", "1C8FA86241B2E4D084F7548529629CF6:pmXOfd+NEXcLhZX5YqDLjHu8/yzZoo4dWPcCM8ccXoI=:CID_333_Athena_Commando_M_Squishy", "D2FAE1D098B2B4695EB59FAAD504798D:ZUDIqDvGVcpCVuA3h67vdkVbZwLuC0Z1zX33JLyi5xE=:BID_925_LateralFemale_7RK0Z", "4027857851DDDDD81540A7A6B79134AA:VuQSvPVjqCjbln+FWNnnQ2RjoNjs2P8dD57qSDhhKx0=:EID_WrongWay_M47AL", @@ -1090,6 +1182,7 @@ "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=:Pickaxe_ID_492_EmbersMale", "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Pickaxe_CoyoteTrail", "C23FA9BDE9342B508B8AABBEEA6699A2:3mRtSSu9PTBlC3NpGAQcFent660Ptni4HbGX+Zj1KIA=:Pickaxe_ID_676_CritterFrenzyMale_B21OE", + "CE60A61FBEAC33EBF231E79C6BBB3D19:y7XCzCCilb1Q+TlLtT2sQCAryt1gIZ9PPI2dtb5whik=:Character_FolkEvening", "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:Pickaxe_ID_646_QuarrelMale_PTOBI", "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_305_Athena_Commando_F_Slither_C_UE2Q9", "A398C07C0A77D834038E7192FAB52B4B:/+4taU8TYRe14OhUt2cevoUqUOh6ado2hWu45FJ+7yA=:Backpack_FearlessFlightMenace", @@ -1101,6 +1194,7 @@ "566C4D92AF66F45DF5E2D7EB43CC27AE:EuAYwU5tQBXzGoSj5BMc7S5yFfe9wZ2qrzx/hIHpnqw=:EID_LunchBox", "476EE53C2EAA24FD1950A9875FB4CF59:LQMwgWwsoSqGyYbBouYaMaN8NZ38Vy5r3Tqa7KA71oQ=:Backpack_FallValleyCharge", "9B730D57F59135CF774023F0DC1A99E7:l2Jy2Q3X1MPar8qMDGSHWWhdsVsYQ7hsqEYFMA6D8fI=", + "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:Glider_LastVoiceDive", "CB2F74DD1C6D7FB4560BF4AA6B7460EE:1MXyB7YDAZC+p/2Fl+tefE6s3cCdKs+5tXDHEg1JLfg=", "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:Season17_Magesty_Pickaxe_Schedule", "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_910_Athena_Commando_F_York", @@ -1123,6 +1217,7 @@ "312398E80AB6209B22CAA2EBAB2DB35B:QZ5uhBnQSeK4b+u9E6PTfw7j2scPMTPX4fFTOJWIwEM=:EID_Shorts", "8D44654E9EA2AAC35E489476B1948E58:Dwb/irSIIGd3tLLPEP5OqJY1D4KfjdP4+uP4+Ht4YOo=:LoadingScreen_Elevate", "63722D44ECCA0F4178B85F5A6BC4C31B:j42UL0bmfBkli6Aj92wWABwFby5rAplP/Ac6nh9kRvA=", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=", "79F7D9C856E8CF354109D3298F076C06:Ak3TOM0i0Mq/KYxd7SDlSuS7o55USaf+urL6WqnmalY=", "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Fig", "4E7938F1FAC98BDF378823116712AC7A:jbZVgprILTQomUdGeJF0PsAFAJxsSCs5cKcXweZMAg0=:BID_586_Tar_DIJGH", @@ -1133,12 +1228,15 @@ "89CD763ACF4C3672A0F74AC0F45C291F:vtcPbnTh2aDOt7LfYpJL+7aF1TaB8LDaLsMoQ47NZec=", "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=", "8D44654E9EA2AAC35E489476B1948E58:Dwb/irSIIGd3tLLPEP5OqJY1D4KfjdP4+uP4+Ht4YOo=:Pickaxe_ShinyStar", + "2A236A35ED4833924DF975CEBE4282AF:e4NpefIqezxUVeH+2INzCV08eK4NvFrojB8z1awxm6Q=", "D2FAE1D098B2B4695EB59FAAD504798D:ZUDIqDvGVcpCVuA3h67vdkVbZwLuC0Z1zX33JLyi5xE=:BID_924_LateralMale_Y2INS", "010E6ACF85E4A58BF6F551EFE7B85F61:DwCIH5Dw/1wdiS6gFGmWe4HUgD9kMOEzjbzM/1QshM4=:BID_234_SpeedyMidnight", "54FD9ABD65879452DCB8CE11C1D7F1AF:nV0Vm4NCBl+MkGX8wiqfFrg0viDriL3I2xc4KS7n7fg=:CID_422_Athena_Commando_F_MaskedWarrior", "929B82B3454DF80CC45B11A55400B6E7:jl/KsmshfBxKKnPDHyHNTHOzTE3buCIrBpSUpXJQdL4=:CID_298_Athena_Commando_F_IceMaiden", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Glider_BraveBuild", "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:Glider_ID_388_Wayfare", "E176769F750C1A6152A78B04761894E2:w/RNY1G1W4n6wZFfZUaqa7MvEyxXPU42ZRypQ+UcNVY=", + "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=:Backpack_FishBowlBone", "F07BE27DCEFDF52818EE7BA2CD9CA504:lc47A/VahaBWJLQY4V1YyjzJPI5xVErInDaqdwPjv2g=:Pickaxe_ID_200_MoonlightAssassin", "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:BID_938_FoeMale_F4JVS", "9FD68EDC1A5A456225A1C14E1488C573:vfIZFBmmSWgvzSDG/l7N0EGIrANZpUKA7Ofqo+n4fBg=", @@ -1168,9 +1266,11 @@ "56812D9CB607F72A9BDBADEE44ECCD21:pj9dMhJSaj6V2HsA0VWABE7Cs4+eEBz1Kex340gafK8=:BID_254_ShinyMale", "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:Glider_ID_248_York", "CE9D023C0D7DBF7634F2AEF6200BDB36:JyhTmjJnosQmLeGMQXhCtkl/auX+mde5P11MsWEwIqw=:Wrap_DarkAzeala", + "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=:Glider_HighBeam", "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:EID_Alchemy_BZWS8", "3AC8A6B5089F55E17E00AAD8AC3C6406:TlUSkJe3y85fW83rHMy+XuqcZxQduXcB8yftpPoiDvo=:BID_527_Loofah", "54746F2A874802B87CC5E9307EA76399:nOaYcOb6cOggqwc+mRiJ7LJEs0qvaiMhxH/yWXou+Q4=", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Glider_InstantGravel", "4755D9C0E2D1DE1C09B77DEA8B830471:9tUO5yVhvp+/sp7icZaEDw05nMAdS6bYAWYyfQNsxBc=:Glider_ID_209_DonutPlate", "DC487286E8C1CD5FE18AC3FE76034EF2:3h9IwK2qQP8PHVuO1aZI1C34JrJxKBnXJOFcSDSj99M=:Wrap_102_WorldCup2019", "C5C1E0742C0BFE4264242F3774C13B41:BO5aZnDZhvHsUFLsJD2vtYCQ6iYpX7Lhl565nDsBhaE=:EID_Martian_SK4J6", @@ -1189,14 +1289,17 @@ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_952_Athena_Commando_F_Football20Referee_ZX4IC", "360CD59F6F7B68A441DDED9DB5FD13D7:G6pVAf/ul1HPYh6s2M1l8G4hn62jdwkcbegeLoxL7Y0=:EID_Ashes_MYQ8O", "1937F4ADBC2C38EF4F189DC2B1AE58AB:tWzxKwKEDzI0RsQGl2GvOVqZwxOSOiZaCQkyK1hE+lA=:Backpack_Inspire", + "CE60A61FBEAC33EBF231E79C6BBB3D19:y7XCzCCilb1Q+TlLtT2sQCAryt1gIZ9PPI2dtb5whik=:Wrap_FolkEvening", "2F1A5AFD22512A8B16494629CCA065B2:Un44BCuGtirrKab0E9TeOyDRnWC/Jh1h48+FOn4UrtA=", "457F39EA51FB4C723B442810750CDA4A:V3d05mcuS4uXMBRpy63TIZDLt5hg9njVD0SGhZDsmBw=:LoadingScreen_Sahara", "195439D6DD0FE44ADAE6BF7A44436519:kRCw7VFSPCYqhu7lJlA4kO4YmsqZUzxM6ARm7Ti8ntQ=", "8675F0B46A008B0B6C0ABDD41A619443:9JYZhRB5Kld9h7zVQTbfSyNJvhz9UaJ17HIAPZH8TwQ=", "22B8405FC3BE153C8148422C3F2D3A8A:d/ATMDztVZxwHLUCwOcJWP1/7oPKKGqbBWUBRNZ6dnM=", "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:Pickaxe_ID_645_QuarrelFemale_W3B7A", + "C1E73246C58C0BAC3FF50B346684D278:lWvPsfsWVsNVDSOH7JpZULEgoQ+JKrWPuSqIw942mmo=:EID_Marvelous", "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=", "5AEDD4DB5DA39071FCFC2404EEB3D02D:qaoe5DQrf1+HPEQRW5zls4KSe7DHbrxXO8OZMsFeo8Y=", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Pickaxe_SkeletonHunterFNCS", "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_907_Athena_Commando_M_York_C", "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=:BID_947_ZestFemale_1KIDJ", "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=", @@ -1206,5 +1309,6 @@ "8033BA4F3E1FB68ABADE271C9BE4EE42:XGwA8RWdavpeScQpqM/aFod3SGTB3PibdGE7iGKR4jg=", "D776CA2A40FD9EC1F8522E9E13E99031:uRYulzQ2zdGG9UisQw2wM9OOM/9JsSWFwFt5d/3okng=:Glider_ID_121_BriteBomberDeluxe", "D7727B4696A62373E9EBD9803F705B3C:XEbXIzCpOuA88jMBtt+XuMt+NaOIWlvfpW9h7i/dFlM=:Wrap_036_EvilSuit", + "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:Spray_LastVoice", "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:Pickaxe_ID_782_CactusDancerFemale" ] \ No newline at end of file diff --git a/gui/assets/authenticator/responses/privacy.json b/gui/assets/backend/responses/privacy.json similarity index 100% rename from gui/assets/authenticator/responses/privacy.json rename to gui/assets/backend/responses/privacy.json diff --git a/gui/assets/authenticator/responses/quests.json b/gui/assets/backend/responses/quests.json similarity index 100% rename from gui/assets/authenticator/responses/quests.json rename to gui/assets/backend/responses/quests.json diff --git a/gui/assets/authenticator/responses/sdkv1.json b/gui/assets/backend/responses/sdkv1.json similarity index 100% rename from gui/assets/authenticator/responses/sdkv1.json rename to gui/assets/backend/responses/sdkv1.json diff --git a/gui/assets/dlls/cobalt.dll b/gui/assets/dlls/cobalt.dll index ae744d8..c29ba0c 100644 Binary files a/gui/assets/dlls/cobalt.dll and b/gui/assets/dlls/cobalt.dll differ diff --git a/gui/assets/images/authenticator.png b/gui/assets/images/backend.png similarity index 100% rename from gui/assets/images/authenticator.png rename to gui/assets/images/backend.png diff --git a/gui/assets/matchmaker/fortmatchmaker.exe b/gui/assets/matchmaker/fortmatchmaker.exe deleted file mode 100644 index 51a3678..0000000 Binary files a/gui/assets/matchmaker/fortmatchmaker.exe and /dev/null differ diff --git a/gui/assets/misc/watch.exe b/gui/assets/misc/watch.exe deleted file mode 100644 index d67c85a..0000000 Binary files a/gui/assets/misc/watch.exe and /dev/null differ diff --git a/gui/lib/l10n/reboot_en.arb b/gui/lib/l10n/reboot_en.arb index 9618621..59c8e90 100644 --- a/gui/lib/l10n/reboot_en.arb +++ b/gui/lib/l10n/reboot_en.arb @@ -6,21 +6,21 @@ "resetDefaultsDialogTitle": "Do you want to reset all the setting in this tab to their default values? This action is irreversible", "resetDefaultsDialogSecondaryAction": "Close", "resetDefaultsDialogPrimaryAction": "Reset", - "authenticatorName": "Authenticator", - "authenticatorTypeName": "Type", - "authenticatorTypeDescription": "The type of authenticator to use when logging into Fortnite", - "authenticatorConfigurationHostName": "Host", - "authenticatorConfigurationHostDescription": "The hostname of the authenticator", - "authenticatorConfigurationPortName": "Port", - "authenticatorConfigurationPortDescription": "The port of the authenticator", - "authenticatorConfigurationDetachedName": "Detached", - "authenticatorConfigurationDetachedDescription": "Whether a separate process should be spawned, useful for debugging", - "authenticatorInstallationDirectoryName": "Installation directory", - "authenticatorInstallationDirectoryDescription": "Opens the folder where the embedded authenticator is located", - "authenticatorInstallationDirectoryContent": "Show files", - "authenticatorResetDefaultsName": "Reset", - "authenticatorResetDefaultsDescription": "Resets the authenticator's settings to their default values", - "authenticatorResetDefaultsContent": "Reset", + "backendName": "Backend", + "backendTypeName": "Type", + "backendTypeDescription": "The type of backend to use when logging into Fortnite", + "backendConfigurationHostName": "Host", + "backendConfigurationHostDescription": "The hostname of the backend", + "backendConfigurationPortName": "Port", + "backendConfigurationPortDescription": "The port of the backend", + "backendConfigurationDetachedName": "Detached", + "backendConfigurationDetachedDescription": "Whether a separate process should be spawned, useful for debugging", + "backendInstallationDirectoryName": "Installation directory", + "backendInstallationDirectoryDescription": "Opens the folder where the embedded backend is located", + "backendInstallationDirectoryContent": "Show files", + "backendResetDefaultsName": "Reset", + "backendResetDefaultsDescription": "Resets the backend's settings to their default values", + "backendResetDefaultsContent": "Reset", "hostGameServerName": "Information", "hostGameServerDescription": "Provide basic information about your game server for the Server Browser", "hostGameServerNameName": "Name", @@ -32,7 +32,9 @@ "hostGameServerDiscoverableName": "Discoverable", "hostGameServerDiscoverableDescription": "Make your server available to other players on the server browser", "hostHeadlessName": "Headless", - "hostHeadlessDescription": "Runs Fortnite without a graphics to optimize resources usage, may not work for old seasons", + "hostHeadlessDescription": "Runs Fortnite without graphics to optimize resources usage, may not work for old seasons", + "hostVirtualDesktopName": "Virtual desktop", + "hostVirtualDesktopDescription": "Runs Fortnite in a virtual desktop if headless is not supported", "hostShareName": "Share", "hostShareDescription": "Make it easy for other people to join your server with the options in this section", "hostShareLinkName": "Link", @@ -84,7 +86,7 @@ "playGameServerContentBrowser": "{owner}'s server", "playGameServerContentCustom": "{address}", "playGameServerHostName": "Host a server", - "playGameServerHostDescription": "Configure a game server on your PC", + "playGameServerHostDescription": "Run a game server on your PC", "playGameServerHostContent": "Host", "playGameServerBrowserName": "Browse servers", "playGameServerBrowserDescription": "Discover servers hosted by the community", @@ -93,19 +95,21 @@ "playGameServerCustomDescription": "Join a game server using its public IP address", "playGameServerCustomContent": "Enter IP", "settingsName": "Settings", - "settingsClientName": "Client", - "settingsClientDescription": "This section contains the dlls used to make the Fortnite client work", + "settingsClientName": "Configuration", + "settingsClientDescription": "Configure the internals of Fortnite", "settingsClientConsoleName": "Unreal engine console", "settingsClientConsoleDescription": "Unlocks the Unreal Engine Console", + "settingsClientConsoleKeyName": "Unreal engine console key", + "settingsClientConsoleKeyDescription": "The keyboard key used to open the Unreal Engine console", "settingsClientAuthName": "Authentication patcher", - "settingsClientAuthDescription": "Redirects all HTTP requests to the authenticator", + "settingsClientAuthDescription": "Redirects all HTTP requests to the backend", "settingsClientMemoryName": "Memory patcher", "settingsClientMemoryDescription": "Prevents the client from crashing because of a memory leak", "settingsClientArgsName": "Custom launch arguments", "settingsClientArgsDescription": "Additional arguments to use when launching the game", "settingsClientArgsPlaceholder": "Arguments...", - "settingsServerName": "Game server", - "settingsServerSubtitle": "This section contains settings related to the game server implementation", + "settingsServerName": "Configuration", + "settingsServerSubtitle": "Configure the internals of your game server", "settingsServerFileName": "Implementation", "settingsServerFileDescription": "Creates a game server to host matches", "settingsServerPortName": "Port", @@ -137,10 +141,10 @@ "importVersionDescription": "Import a new version of Fortnite into the launcher", "addLocalBuildName": "Add a version from this PC's local storage", "addLocalBuildDescription": "Versions coming from your local disk are not guaranteed to work", - "addLocalBuildContent": "Add build", + "addLocalBuildContent": "Add local build", "downloadBuildName": "Download any version from the cloud", "downloadBuildDescription": "Download any Fortnite build easily from the cloud", - "downloadBuildContent": "Download", + "downloadBuildContent": "Download build", "cannotUpdateGameServer": "An error occurred while updating the game server: {error}", "launchFortnite": "Launch Fortnite", "closeFortnite": "Close Fortnite", @@ -156,10 +160,11 @@ "defaultServerDescription": "Just another server", "downloadingDll": "Downloading {name} dll...", "downloadDllSuccess": "The {name} dll was downloaded successfully", - "downloadDllError": "An error occurred while downloading the reboot dll: {error}", + "downloadDllError": "An error occurred while downloading {name}: {error}", "downloadDllRetry": "Retry", "uncaughtErrorMessage": "An uncaught error was thrown: {error}", "launchingHeadlessServer": "Launching the game server...", + "launchingGameClient": "Launching the game client...", "usernameOrEmail": "Username/Email", "usernameOrEmailPlaceholder": "Type your username or email", "password": "Password", @@ -242,10 +247,11 @@ "gameServerStartWarning": "The game server was started successfully, but Reboot didn't load", "gameServerStartLocalWarning": "The game server was started successfully, but other players can't join", "gameServerStarted": "The game server was started successfully", + "gameClientStarted": "The game client was started successfully", "checkingGameServer": "Checking if other players can join the game server...", "checkGameServerFixMessage": "Other players can't join the game server as port {port} isn't open", "checkGameServerFixAction": "Fix", - "infoName": "Help", + "infoName": "Info", "emptyVersionName": "Empty version name", "versionAlreadyExists": "This version already exists", "emptyGamePath": "Empty game path", @@ -287,5 +293,13 @@ "infoVideoContent": "Open YouTube", "dllDeletedTitle": "A critical dll was deleted. If you didn't delete it, your Antivirus probably flagged it. This is a false positive: please disable your Antivirus and try again", "dllDeletedSecondaryAction": "Close", - "dllDeletedPrimaryAction": "Try again" + "dllDeletedPrimaryAction": "Try again", + "clickKey": "Waiting for a key to be registered", + "settingsLogsName": "Export logs", + "settingsLogsDescription": "Exports an archive containing all the logs produced by the launcher", + "settingsLogsAction": "Export", + "settingsLogsSelectFolder": "Select a folder", + "settingsLogsCreating": "Creating logs archive...", + "settingsLogsCreated": "Logs archive created successfully", + "settingsLogsCreatedShowFile": "Show file" } diff --git a/gui/lib/main.dart b/gui/lib/main.dart index d9e2d39..8e7533c 100644 --- a/gui/lib/main.dart +++ b/gui/lib/main.dart @@ -1,4 +1,5 @@ import 'dart:async'; +import 'dart:io'; import 'package:app_links/app_links.dart'; import 'package:bitsdojo_window/bitsdojo_window.dart'; @@ -10,7 +11,7 @@ import 'package:flutter_localized_locales/flutter_localized_locales.dart'; import 'package:get/get.dart'; import 'package:get_storage/get_storage.dart'; import 'package:reboot_common/common.dart'; -import 'package:reboot_launcher/src/controller/authenticator_controller.dart'; +import 'package:reboot_launcher/src/controller/backend_controller.dart'; import 'package:reboot_launcher/src/controller/build_controller.dart'; import 'package:reboot_launcher/src/controller/game_controller.dart'; import 'package:reboot_launcher/src/controller/hosting_controller.dart'; @@ -22,7 +23,6 @@ import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; import 'package:reboot_launcher/src/dialog/implementation/error.dart'; import 'package:reboot_launcher/src/dialog/implementation/server.dart'; import 'package:reboot_launcher/src/page/implementation/home_page.dart'; -import 'package:reboot_launcher/src/util/daemon.dart'; import 'package:reboot_launcher/src/util/matchmaker.dart'; import 'package:reboot_launcher/src/util/os.dart'; import 'package:reboot_launcher/src/util/translations.dart'; @@ -35,8 +35,17 @@ const double kDefaultWindowWidth = 1536; const double kDefaultWindowHeight = 1024; const String kCustomUrlSchema = "Reboot"; +class _MyHttpOverrides extends HttpOverrides { + @override + HttpClient createHttpClient(SecurityContext? context){ + return super.createHttpClient(context) + ..badCertificateCallback = ((X509Certificate cert, String host, int port) => true); + } +} + void main() => runZonedGuarded( () async { + HttpOverrides.global = _MyHttpOverrides(); final errors = []; try { await installationDirectory.create(recursive: true); @@ -57,11 +66,6 @@ void main() => runZonedGuarded( errors.add(urlError); } - final observerError = _initObservers(); - if(observerError != null) { - errors.add(observerError); - } - _checkGameServer(); }catch(uncaughtError) { errors.add(uncaughtError); @@ -168,30 +172,16 @@ void _initWindow() => doWhenWindowReady(() async { appWindow.show(); }); -Object? _initObservers() { - try { - var gameController = Get.find(); - var gameInstance = gameController.instance.value; - gameInstance?.startObserver(); - var hostingController = Get.find(); - var hostingInstance = hostingController.instance.value; - hostingInstance?.startObserver(); - return null; - }catch(error) { - return error; - } -} - Future _initStorage() async { try { await GetStorage("game", settingsDirectory.path).initStorage; - await GetStorage("authenticator", settingsDirectory.path).initStorage; + await GetStorage("backend", settingsDirectory.path).initStorage; await GetStorage("matchmaker", settingsDirectory.path).initStorage; await GetStorage("update", settingsDirectory.path).initStorage; await GetStorage("settings", settingsDirectory.path).initStorage; await GetStorage("hosting", settingsDirectory.path).initStorage; Get.put(GameController()); - Get.put(AuthenticatorController()); + Get.put(BackendController()); Get.put(MatchmakerController()); Get.put(BuildController()); Get.put(SettingsController()); diff --git a/gui/lib/src/controller/authenticator_controller.dart b/gui/lib/src/controller/authenticator_controller.dart deleted file mode 100644 index a3ccfda..0000000 --- a/gui/lib/src/controller/authenticator_controller.dart +++ /dev/null @@ -1,35 +0,0 @@ -import 'package:reboot_common/common.dart'; -import 'package:reboot_launcher/src/controller/server_controller.dart'; -import 'package:reboot_launcher/src/page/abstract/page_type.dart'; -import 'package:reboot_launcher/src/util/translations.dart'; - -class AuthenticatorController extends ServerController { - AuthenticatorController() : super(); - - @override - String get controllerName => translations.authenticatorName.toLowerCase(); - - @override - String get storageName => "authenticator"; - - @override - String get defaultHost => kDefaultAuthenticatorHost; - - @override - int get defaultPort => kDefaultAuthenticatorPort; - - @override - Future get isPortFree => isAuthenticatorPortFree(); - - @override - Future freePort() => freeAuthenticatorPort(); - - @override - RebootPageType get pageType => RebootPageType.authenticator; - - @override - Future startEmbeddedInternal() => startEmbeddedAuthenticator(detached.value); - - @override - Future pingServer(String host, int port) => pingAuthenticator(host, port); -} \ No newline at end of file diff --git a/gui/lib/src/controller/backend_controller.dart b/gui/lib/src/controller/backend_controller.dart new file mode 100644 index 0000000..90966ef --- /dev/null +++ b/gui/lib/src/controller/backend_controller.dart @@ -0,0 +1,43 @@ +import 'dart:io'; + +import 'package:get/get.dart'; +import 'package:reboot_common/common.dart'; +import 'package:reboot_launcher/src/controller/server_controller.dart'; +import 'package:reboot_launcher/src/page/abstract/page_type.dart'; +import 'package:reboot_launcher/src/util/translations.dart'; + +class BackendController extends ServerController { + late RxBool detached; + + BackendController() : super() { + detached = RxBool(storage.read("detached") ?? false); + detached.listen((value) => storage.write("detached", value)); + } + + @override + String get controllerName => translations.backendName.toLowerCase(); + + @override + String get storageName => "backend"; + + @override + String get defaultHost => kDefaultBackendHost; + + @override + int get defaultPort => kDefaultBackendPort; + + @override + Future get isPortFree => isBackendPortFree(); + + @override + Future freePort() => freeBackendPort(); + + @override + RebootPageType get pageType => RebootPageType.backend; + + @override + Future startEmbeddedInternal() => startEmbeddedBackend(detached.value); + + @override + Future pingServer(String host, int port) => pingBackend(host, port); +} \ No newline at end of file diff --git a/gui/lib/src/controller/game_controller.dart b/gui/lib/src/controller/game_controller.dart index 028363f..283f9c5 100644 --- a/gui/lib/src/controller/game_controller.dart +++ b/gui/lib/src/controller/game_controller.dart @@ -1,12 +1,17 @@ import 'dart:async'; import 'dart:convert'; +import 'dart:io'; import 'package:fluent_ui/fluent_ui.dart'; +import 'package:flutter/services.dart'; import 'package:get/get.dart'; import 'package:get_storage/get_storage.dart'; import 'package:reboot_common/common.dart'; +import 'package:reboot_launcher/src/util/keyboard.dart'; class GameController extends GetxController { + static const PhysicalKeyboardKey _kDefaultConsoleKey = PhysicalKeyboardKey(0x00070041); + late final GetStorage _storage; late final TextEditingController username; late final TextEditingController password; @@ -15,6 +20,7 @@ class GameController extends GetxController { late final Rxn _selectedVersion; late final RxBool started; late final Rxn instance; + late final Rx consoleKey; GameController() { _storage = GetStorage("game"); @@ -34,12 +40,42 @@ class GameController extends GetxController { username.addListener(() => _storage.write("username", username.text)); password = TextEditingController(text: _storage.read("password") ?? ""); password.addListener(() => _storage.write("password", password.text)); - customLaunchArgs = - TextEditingController(text: _storage.read("custom_launch_args") ?? ""); + customLaunchArgs = TextEditingController(text: _storage.read("custom_launch_args") ?? ""); customLaunchArgs.addListener(() => _storage.write("custom_launch_args", customLaunchArgs.text)); started = RxBool(false); instance = Rxn(); + consoleKey = Rx(_readConsoleKey()); + _writeConsoleKey(consoleKey.value); + consoleKey.listen((newValue) { + _storage.write("console_key", newValue.usbHidUsage); + _writeConsoleKey(newValue); + }); + } + + PhysicalKeyboardKey _readConsoleKey() { + final consoleKeyValue = _storage.read("console_key"); + if(consoleKeyValue == null) { + return _kDefaultConsoleKey; + } + + final consoleKeyNumber = int.tryParse(consoleKeyValue.toString()); + if(consoleKeyNumber == null) { + return _kDefaultConsoleKey; + } + + final consoleKey = PhysicalKeyboardKey(consoleKeyNumber); + if(!consoleKey.isUnrealEngineKey) { + return _kDefaultConsoleKey; + } + + return consoleKey; + } + + Future _writeConsoleKey(PhysicalKeyboardKey keyValue) async { + final defaultInput = File("${backendDirectory.path}\\CloudStorage\\DefaultInput.ini"); + await defaultInput.parent.create(recursive: true); + await defaultInput.writeAsString("[/Script/Engine.InputSettings]\n+ConsoleKeys=Tilde\n+ConsoleKeys=${keyValue.unrealEngineName}", flush: true); } void reset() { diff --git a/gui/lib/src/controller/hosting_controller.dart b/gui/lib/src/controller/hosting_controller.dart index 4aea008..664bb8f 100644 --- a/gui/lib/src/controller/hosting_controller.dart +++ b/gui/lib/src/controller/hosting_controller.dart @@ -14,9 +14,9 @@ class HostingController extends GetxController { late final RxBool showPassword; late final RxBool discoverable; late final RxBool headless; + late final RxBool virtualDesktop; late final RxBool started; late final RxBool published; - late final RxBool automaticServer; late final Rxn instance; late final Rxn>> servers; @@ -34,12 +34,12 @@ class HostingController extends GetxController { discoverable.listen((value) => _storage.write("discoverable", value)); headless = RxBool(_storage.read("headless") ?? true); headless.listen((value) => _storage.write("headless", value)); + virtualDesktop = RxBool(_storage.read("virtual_desktop") ?? true); + virtualDesktop.listen((value) => _storage.write("virtual_desktop", value)); started = RxBool(false); published = RxBool(false); showPassword = RxBool(false); instance = Rxn(); - automaticServer = RxBool(_storage.read("auto") ?? true); - automaticServer.listen((value) => _storage.write("auto", value)); final supabase = Supabase.instance.client; servers = Rxn(); supabase.from("hosting") @@ -60,6 +60,8 @@ class HostingController extends GetxController { discoverable.value = false; started.value = false; instance.value = null; + headless.value = true; + virtualDesktop.value = true; } Map? findServerById(String uuid) { diff --git a/gui/lib/src/controller/matchmaker_controller.dart b/gui/lib/src/controller/matchmaker_controller.dart index b5ced53..6fadcf7 100644 --- a/gui/lib/src/controller/matchmaker_controller.dart +++ b/gui/lib/src/controller/matchmaker_controller.dart @@ -1,3 +1,5 @@ +import 'dart:io'; + import 'package:fluent_ui/fluent_ui.dart'; import 'package:get/get_rx/src/rx_types/rx_types.dart'; import 'package:reboot_common/common.dart'; @@ -57,7 +59,7 @@ class MatchmakerController extends ServerController { RebootPageType get pageType => RebootPageType.matchmaker; @override - Future startEmbeddedInternal() => startEmbeddedMatchmaker(detached.value); + Future startEmbeddedInternal() => startEmbeddedMatchmaker(); @override Future pingServer(String host, int port) => pingMatchmaker(host, port); diff --git a/gui/lib/src/controller/server_controller.dart b/gui/lib/src/controller/server_controller.dart index a5c6220..5f8ac6e 100644 --- a/gui/lib/src/controller/server_controller.dart +++ b/gui/lib/src/controller/server_controller.dart @@ -15,7 +15,6 @@ abstract class ServerController extends GetxController { late final Rx type; late final Semaphore semaphore; late RxBool started; - late RxBool detached; StreamSubscription? worker; HttpServer? localServer; HttpServer? remoteServer; @@ -40,8 +39,6 @@ abstract class ServerController extends GetxController { port = TextEditingController(text: _readPort()); port.addListener(() => storage.write("${type.value.name}_port", port.text)); - detached = RxBool(storage.read("detached") ?? false); - detached.listen((value) => storage.write("detached", value)); semaphore = Semaphore(); } @@ -64,7 +61,7 @@ abstract class ServerController extends GetxController { Future freePort(); @protected - Future startEmbeddedInternal(); + Future startEmbeddedInternal(); void reset() async { type.value = ServerType.values.elementAt(0); @@ -100,7 +97,7 @@ abstract class ServerController extends GetxController { yield ServerResult(ServerResultType.starting); }else { started.value = false; - if(portData != defaultPort) { + if(portData != defaultPort.toString()) { yield ServerResult(ServerResultType.starting); } } @@ -124,7 +121,7 @@ abstract class ServerController extends GetxController { return; } - if ((type() != ServerType.local || portData != defaultPort) && await isPortTaken) { + if ((type() != ServerType.local || portData != defaultPort.toString()) && await isPortTaken) { yield ServerResult(ServerResultType.freeingPort); final result = await freePort(); yield ServerResult(result ? ServerResultType.freePortSuccess : ServerResultType.freePortError); @@ -138,12 +135,6 @@ abstract class ServerController extends GetxController { case ServerType.embedded: final process = await startEmbeddedInternal(); final processPid = process.pid; - if(processPid == null) { - yield ServerResult(ServerResultType.startError); - started.value = false; - return; - } - watchProcess(processPid).then((value) { if(started()) { started.value = false; @@ -159,11 +150,11 @@ abstract class ServerController extends GetxController { return; } - remoteServer = await startRemoteAuthenticatorProxy(uriResult); + remoteServer = await startRemoteBackendProxy(uriResult); break; case ServerType.local: - if(portData != defaultPort) { - localServer = await startRemoteAuthenticatorProxy(Uri.parse("http://$defaultHost:$port")); + if(portData != defaultPort.toString()) { + localServer = await startRemoteBackendProxy(Uri.parse("http://$defaultHost:$portData")); } break; diff --git a/gui/lib/src/controller/settings_controller.dart b/gui/lib/src/controller/settings_controller.dart index 900e837..dd01a3e 100644 --- a/gui/lib/src/controller/settings_controller.dart +++ b/gui/lib/src/controller/settings_controller.dart @@ -10,7 +10,7 @@ class SettingsController extends GetxController { late final String originalDll; late final TextEditingController gameServerDll; late final TextEditingController unrealEngineConsoleDll; - late final TextEditingController authenticatorDll; + late final TextEditingController backendDll; late final TextEditingController memoryLeakDll; late final TextEditingController gameServerPort; late final RxBool firstRun; @@ -25,7 +25,7 @@ class SettingsController extends GetxController { _storage = GetStorage("settings"); gameServerDll = _createController("game_server", "reboot.dll"); unrealEngineConsoleDll = _createController("unreal_engine_console", "console.dll"); - authenticatorDll = _createController("authenticator", "cobalt.dll"); + backendDll = _createController("backend", "cobalt.dll"); memoryLeakDll = _createController("memory_leak", "memoryleak.dll"); gameServerPort = TextEditingController(text: _storage.read("game_server_port") ?? kDefaultGameServerPort); gameServerPort.addListener(() => _storage.write("game_server_port", gameServerPort.text)); @@ -33,8 +33,8 @@ class SettingsController extends GetxController { height = _storage.read("height") ?? kDefaultWindowHeight; offsetX = _storage.read("offset_x"); offsetY = _storage.read("offset_y"); - firstRun = RxBool(_storage.read("first_run") ?? true); - firstRun.listen((value) => _storage.write("first_run", value)); + firstRun = RxBool(_storage.read("first_run_new1") ?? true); + firstRun.listen((value) => _storage.write("first_run_new1", value)); themeMode = Rx(ThemeMode.values.elementAt(_storage.read("theme") ?? 0)); themeMode.listen((value) => _storage.write("theme", value.index)); language = RxString(_storage.read("language") ?? currentLocale); @@ -62,7 +62,7 @@ class SettingsController extends GetxController { void reset(){ gameServerDll.text = _controllerDefaultPath("reboot.dll"); unrealEngineConsoleDll.text = _controllerDefaultPath("console.dll"); - authenticatorDll.text = _controllerDefaultPath("cobalt.dll"); + backendDll.text = _controllerDefaultPath("cobalt.dll"); gameServerPort.text = kDefaultGameServerPort; firstRun.value = true; } diff --git a/gui/lib/src/controller/update_controller.dart b/gui/lib/src/controller/update_controller.dart index 1b76d76..c836d06 100644 --- a/gui/lib/src/controller/update_controller.dart +++ b/gui/lib/src/controller/update_controller.dart @@ -11,13 +11,15 @@ class UpdateController { late final Rx status; late final Rx timer; late final TextEditingController url; + InfoBarEntry? infoBarEntry; + Future? _updater; UpdateController() { _storage = GetStorage("update"); timestamp = RxnInt(_storage.read("ts")); timestamp.listen((value) => _storage.write("ts", value)); var timerIndex = _storage.read("timer"); - timer = Rx(timerIndex == null ? UpdateTimer.hour : UpdateTimer.values.elementAt(timerIndex)); + timer = Rx(timerIndex == null ? UpdateTimer.day : UpdateTimer.values.elementAt(timerIndex)); timer.listen((value) => _storage.write("timer", value.index)); url = TextEditingController(text: _storage.read("update_url") ?? kRebootDownloadUrl); url.addListener(() => _storage.write("update_url", url.text)); @@ -25,6 +27,16 @@ class UpdateController { } Future update([bool force = false]) async { + if(_updater != null) { + return await _updater; + } + + final result = _update(force); + _updater = result; + return await result; + } + + Future _update([bool force = false]) async { try { final needsUpdate = await hasRebootDllUpdate( timestamp.value, @@ -36,25 +48,27 @@ class UpdateController { return; } - showInfoBar( + infoBarEntry = showInfoBar( translations.downloadingDll("reboot"), loading: true, duration: null ); timestamp.value = await downloadRebootDll(url.text); status.value = UpdateStatus.success; - showInfoBar( + infoBarEntry?.close(); + infoBarEntry = showInfoBar( translations.downloadDllSuccess("reboot"), severity: InfoBarSeverity.success, duration: infoBarShortDuration ); }catch(message) { + infoBarEntry?.close(); var error = message.toString(); error = error.contains(": ") ? error.substring(error.indexOf(": ") + 2) : error; error = error.toLowerCase(); status.value = UpdateStatus.error; showInfoBar( - translations.downloadDllError(error.toString()), + translations.downloadDllError("reboot.dll", error.toString()), duration: infoBarLongDuration, severity: InfoBarSeverity.error, action: Button( @@ -62,6 +76,8 @@ class UpdateController { child: Text(translations.downloadDllRetry), ) ); + }finally { + _updater = null; } } diff --git a/gui/lib/src/dialog/abstract/info_bar.dart b/gui/lib/src/dialog/abstract/info_bar.dart index ca957ae..c6a7e87 100644 --- a/gui/lib/src/dialog/abstract/info_bar.dart +++ b/gui/lib/src/dialog/abstract/info_bar.dart @@ -1,119 +1,72 @@ -import 'dart:collection'; - import 'package:fluent_ui/fluent_ui.dart'; import 'package:reboot_launcher/src/page/pages.dart'; -import 'package:sync/semaphore.dart'; const infoBarLongDuration = Duration(seconds: 4); const infoBarShortDuration = Duration(seconds: 2); +const _height = 64.0; -Semaphore _semaphore = Semaphore(); -HashMap _overlays = HashMap(); - -void restoreMessage(int pageIndex, int lastIndex) { - removeMessageByPage(lastIndex); - final entry = _overlays[pageIndex]; - if(entry == null) { - return; +InfoBarEntry showInfoBar(dynamic text, { + InfoBarSeverity severity = InfoBarSeverity.info, + bool loading = false, + Duration? duration = infoBarShortDuration, + void Function()? onDismissed, + Widget? action +}) { + final overlay = _buildOverlay(text, action, loading, severity); + final overlayEntry = InfoBarEntry(overlay: overlay, onDismissed: onDismissed); + if(duration != null) { + Future.delayed(duration) + .then((_) => WidgetsBinding.instance.addPostFrameCallback((timeStamp) => overlayEntry.close())); } - - Overlay.of(pageKey.currentContext!).insert(entry.overlay); + return overlayEntry; } -OverlayEntry showInfoBar(dynamic text, - {InfoBarSeverity severity = InfoBarSeverity.info, - bool loading = false, - Duration? duration = infoBarShortDuration, - void Function()? onDismissed, - Widget? action}) { - try { - _semaphore.acquire(); - removeMessageByPage(pageIndex.value); - final overlay = OverlayEntry( - builder: (context) => Padding( - padding: EdgeInsets.only( - bottom: hasPageButton ? 72.0 : 16.0 - ), - child: Align( - alignment: AlignmentDirectional.bottomCenter, - child: Container( - width: double.infinity, - constraints: const BoxConstraints( - maxWidth: 1000 - ), - child: Mica( - child: InfoBar( - title: Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: [ - if(text is Widget) - text, - if(text is String) - Text(text), - if(action != null) - action - ], - ), - isLong: false, - isIconVisible: true, - content: SizedBox( - width: double.infinity, - child: loading ? const Padding( - padding: EdgeInsets.only(top: 8.0, bottom: 2.0), - child: ProgressBar(), - ) : const SizedBox() - ), - severity: severity - ), - ), - ), - ), - ) - ); - Overlay.of(pageKey.currentContext!).insert(overlay); - _overlays[pageIndex.value] = _OverlayEntry( - overlay: overlay, - onDismissed: onDismissed - ); - if(duration != null) { - Future.delayed(duration).then((_) { - WidgetsBinding.instance.addPostFrameCallback((timeStamp) async { - final currentOverlay = _overlays[pageIndex.value]; - if(currentOverlay == overlay) { - if(overlay.mounted) { - overlay.remove(); - } +Widget _buildOverlay(text, Widget? action, bool loading, InfoBarSeverity severity) => SizedBox( + width: double.infinity, + height: _height, + child: Mica( + child: InfoBar( + title: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + if(text is Widget) + text, + if(text is String) + Text(text), + if(action != null) + action + ], + ), + isLong: false, + isIconVisible: true, + content: SizedBox( + width: double.infinity, + child: loading ? const Padding( + padding: EdgeInsets.only(top: 8.0, bottom: 2.0), + child: ProgressBar(), + ) : const SizedBox() + ), + severity: severity + ), + ), +); - _overlays.remove(pageIndex.value); - currentOverlay?.onDismissed?.call(); - } - }); - }); - } - return overlay; - }finally { - _semaphore.release(); - } -} - -void removeMessageByPage(int index) { - final lastOverlay = _overlays[index]; - if(lastOverlay != null) { - try { - lastOverlay.overlay.remove(); - }catch(_) { - // Do not use .isMounted - // This is intended behaviour - }finally { - _overlays.remove(index); - lastOverlay.onDismissed?.call(); - } - } -} - -class _OverlayEntry { - final OverlayEntry overlay; +class InfoBarEntry { + final Widget overlay; final void Function()? onDismissed; - _OverlayEntry({required this.overlay, required this.onDismissed}); + InfoBarEntry({required this.overlay, required this.onDismissed}) { + final context = pageKey.currentContext; + if(context != null) { + infoBarAreaKey.currentState?.insertChild(overlay); + } + } + + bool close() { + final result = infoBarAreaKey.currentState?.removeChild(overlay) ?? false; + if(result) { + onDismissed?.call(); + } + return result; + } } \ No newline at end of file diff --git a/gui/lib/src/dialog/implementation/server.dart b/gui/lib/src/dialog/implementation/server.dart index 5802046..db507f9 100644 --- a/gui/lib/src/dialog/implementation/server.dart +++ b/gui/lib/src/dialog/implementation/server.dart @@ -20,133 +20,116 @@ import 'package:supabase_flutter/supabase_flutter.dart'; import 'package:sync/semaphore.dart'; extension ServerControllerDialog on ServerController { - Future toggleInteractive([bool showSuccessMessage = true]) async { - var stream = toggle(); - var completer = Completer(); + Future toggleInteractive() async { + final stream = toggle(); + final completer = Completer(); + InfoBarEntry? entry; worker = stream.listen((event) { - print(event.type); - switch (event.type) { - case ServerResultType.starting: - showInfoBar( - translations.startingServer(controllerName), - severity: InfoBarSeverity.info, - loading: true, - duration: null - ); - break; - case ServerResultType.startSuccess: - if(showSuccessMessage) { - showInfoBar( - type.value == ServerType.local ? translations.checkedServer(controllerName) : translations.startedServer(controllerName), - severity: InfoBarSeverity.success - ); - } - completer.complete(true); - break; - case ServerResultType.startError: - showInfoBar( - type.value == ServerType.local ? translations.localServerError(event.error ?? translations.unknownError, controllerName) : translations.startServerError(event.error ?? translations.unknownError, controllerName), - severity: InfoBarSeverity.error, - duration: infoBarLongDuration - ); - break; - case ServerResultType.stopping: - showInfoBar( - translations.stoppingServer, - severity: InfoBarSeverity.info, - loading: true, - duration: null - ); - break; - case ServerResultType.stopSuccess: - if(showSuccessMessage) { - showInfoBar( - translations.stoppedServer(controllerName), - severity: InfoBarSeverity.success - ); - } - completer.complete(true); - break; - case ServerResultType.stopError: - showInfoBar( - translations.stopServerError( - event.error ?? translations.unknownError, controllerName), - severity: InfoBarSeverity.error, - duration: infoBarLongDuration - ); - break; - case ServerResultType.missingHostError: - showInfoBar( - translations.missingHostNameError(controllerName), - severity: InfoBarSeverity.error - ); - break; - case ServerResultType.missingPortError: - showInfoBar( - translations.missingPortError(controllerName), - severity: InfoBarSeverity.error - ); - break; - case ServerResultType.illegalPortError: - showInfoBar( - translations.illegalPortError(controllerName), - severity: InfoBarSeverity.error - ); - break; - case ServerResultType.freeingPort: - showInfoBar( - translations.freeingPort(defaultPort), - loading: true, - duration: null - ); - break; - case ServerResultType.freePortSuccess: - showInfoBar( - translations.freedPort(defaultPort), - severity: InfoBarSeverity.success, - duration: infoBarShortDuration - ); - break; - case ServerResultType.freePortError: - showInfoBar( - translations.freePortError(event.error ?? translations.unknownError, controllerName), - severity: InfoBarSeverity.error, - duration: infoBarLongDuration - ); - break; - case ServerResultType.pingingRemote: - if(started.value) { - showInfoBar( - translations.pingingRemoteServer(controllerName), - severity: InfoBarSeverity.info, - loading: true, - duration: null - ); - } - break; - case ServerResultType.pingingLocal: - showInfoBar( - translations.pingingLocalServer(controllerName, type().name), - severity: InfoBarSeverity.info, - loading: true, - duration: null - ); - break; - case ServerResultType.pingError: - showInfoBar( - translations.pingError(controllerName, type().name), - severity: InfoBarSeverity.error - ); - break; - } - + entry?.close(); + entry = _handeEvent(event); if(event.type.isError) { completer.complete(false); + }else if(event.type.isSuccess) { + completer.complete(true); } }); return await completer.future; } + + InfoBarEntry _handeEvent(ServerResult event) { + switch (event.type) { + case ServerResultType.starting: + return showInfoBar( + translations.startingServer(controllerName), + severity: InfoBarSeverity.info, + loading: true, + duration: null + ); + case ServerResultType.startSuccess: + return showInfoBar( + type.value == ServerType.local ? translations.checkedServer(controllerName) : translations.startedServer(controllerName), + severity: InfoBarSeverity.success + ); + case ServerResultType.startError: + return showInfoBar( + type.value == ServerType.local ? translations.localServerError(event.error ?? translations.unknownError, controllerName) : translations.startServerError(event.error ?? translations.unknownError, controllerName), + severity: InfoBarSeverity.error, + duration: infoBarLongDuration + ); + case ServerResultType.stopping: + return showInfoBar( + translations.stoppingServer, + severity: InfoBarSeverity.info, + loading: true, + duration: null + ); + case ServerResultType.stopSuccess: + return showInfoBar( + translations.stoppedServer(controllerName), + severity: InfoBarSeverity.success + ); + case ServerResultType.stopError: + return showInfoBar( + translations.stopServerError( + event.error ?? translations.unknownError, controllerName), + severity: InfoBarSeverity.error, + duration: infoBarLongDuration + ); + case ServerResultType.missingHostError: + return showInfoBar( + translations.missingHostNameError(controllerName), + severity: InfoBarSeverity.error + ); + case ServerResultType.missingPortError: + return showInfoBar( + translations.missingPortError(controllerName), + severity: InfoBarSeverity.error + ); + case ServerResultType.illegalPortError: + return showInfoBar( + translations.illegalPortError(controllerName), + severity: InfoBarSeverity.error + ); + case ServerResultType.freeingPort: + return showInfoBar( + translations.freeingPort(defaultPort), + loading: true, + duration: null + ); + case ServerResultType.freePortSuccess: + return showInfoBar( + translations.freedPort(defaultPort), + severity: InfoBarSeverity.success, + duration: infoBarShortDuration + ); + case ServerResultType.freePortError: + return showInfoBar( + translations.freePortError(event.error ?? translations.unknownError, controllerName), + severity: InfoBarSeverity.error, + duration: infoBarLongDuration + ); + case ServerResultType.pingingRemote: + return showInfoBar( + translations.pingingRemoteServer(controllerName), + severity: InfoBarSeverity.info, + loading: true, + duration: null + ); + case ServerResultType.pingingLocal: + return showInfoBar( + translations.pingingLocalServer(controllerName, type().name), + severity: InfoBarSeverity.info, + loading: true, + duration: null + ); + case ServerResultType.pingError: + return showInfoBar( + translations.pingError(controllerName, type().name), + severity: InfoBarSeverity.error + ); + } + } } final Semaphore _publishingSemaphore = Semaphore(); @@ -158,7 +141,7 @@ extension MatchmakerControllerExtension on MatchmakerController { } Future joinServer(String uuid, Map entry) async { - var id = entry["id"]; + final id = entry["id"]; if(uuid == id) { showInfoBar( translations.joinSelfServer, @@ -168,13 +151,13 @@ extension MatchmakerControllerExtension on MatchmakerController { return; } - var hashedPassword = entry["password"]; - var hasPassword = hashedPassword != null; - var embedded = type.value == ServerType.embedded; - var author = entry["author"]; - var encryptedIp = entry["ip"]; + final hashedPassword = entry["password"]; + final hasPassword = hashedPassword != null; + final embedded = type.value == ServerType.embedded; + final author = entry["author"]; + final encryptedIp = entry["ip"]; if(!hasPassword) { - var valid = await _isServerValid(encryptedIp); + final valid = await _isServerValid(encryptedIp); if(!valid) { return; } @@ -183,7 +166,7 @@ extension MatchmakerControllerExtension on MatchmakerController { return; } - var confirmPassword = await _askForPassword(); + final confirmPassword = await _askForPassword(); if(confirmPassword == null) { return; } @@ -197,8 +180,8 @@ extension MatchmakerControllerExtension on MatchmakerController { return; } - var decryptedIp = aes256Decrypt(encryptedIp, confirmPassword); - var valid = await _isServerValid(decryptedIp); + final decryptedIp = aes256Decrypt(encryptedIp, confirmPassword); + final valid = await _isServerValid(decryptedIp); if(!valid) { return; } @@ -207,7 +190,7 @@ extension MatchmakerControllerExtension on MatchmakerController { } Future _isServerValid(String address) async { - var result = await pingGameServer(address); + final result = await pingGameServer(address); if(result) { return true; } @@ -304,9 +287,9 @@ extension HostingControllerExtension on HostingController { ip = aes256Encrypt(ip, passwordText); } - var supabase = Supabase.instance.client; - var hosts = supabase.from("hosting"); - var payload = { + final supabase = Supabase.instance.client; + final hosts = supabase.from("hosting"); + final payload = { 'name': name.text, 'description': description.text, 'author': author, diff --git a/gui/lib/src/page/abstract/page_type.dart b/gui/lib/src/page/abstract/page_type.dart index d936404..d78d8fd 100644 --- a/gui/lib/src/page/abstract/page_type.dart +++ b/gui/lib/src/page/abstract/page_type.dart @@ -2,7 +2,7 @@ enum RebootPageType { play, host, browser, - authenticator, + backend, matchmaker, info, settings diff --git a/gui/lib/src/page/implementation/authenticator_page.dart b/gui/lib/src/page/implementation/authenticator_page.dart deleted file mode 100644 index 65d38fc..0000000 --- a/gui/lib/src/page/implementation/authenticator_page.dart +++ /dev/null @@ -1,164 +0,0 @@ -import 'package:fluent_ui/fluent_ui.dart' as fluentUi show FluentIcons; -import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; -import 'package:fluentui_system_icons/fluentui_system_icons.dart'; -import 'package:flutter/services.dart'; -import 'package:get/get.dart'; -import 'package:reboot_common/common.dart'; -import 'package:reboot_launcher/src/controller/authenticator_controller.dart'; -import 'package:reboot_launcher/src/page/abstract/page.dart'; -import 'package:reboot_launcher/src/page/abstract/page_type.dart'; -import 'package:reboot_launcher/src/util/translations.dart'; -import 'package:reboot_launcher/src/widget/server_start_button.dart'; -import 'package:reboot_launcher/src/widget/server_type_selector.dart'; -import 'package:reboot_launcher/src/widget/setting_tile.dart'; -import 'package:url_launcher/url_launcher.dart'; - -import '../../dialog/implementation/data.dart'; - -class AuthenticatorPage extends RebootPage { - const AuthenticatorPage({Key? key}) : super(key: key); - - @override - String get name => translations.authenticatorName; - - @override - String get iconAsset => "assets/images/authenticator.png"; - - @override - RebootPageType get type => RebootPageType.authenticator; - - @override - bool hasButton(String? pageName) => pageName == null; - - @override - RebootPageState createState() => _AuthenticatorPageState(); -} - -class _AuthenticatorPageState extends RebootPageState { - final AuthenticatorController _authenticatorController = Get.find(); - - @override - List get settings => [ - _type, - _hostName, - _port, - _detached, - _installationDirectory, - _resetDefaults - ]; - - Widget get _hostName => Obx(() { - if(_authenticatorController.type.value != ServerType.remote) { - return const SizedBox.shrink(); - } - - return SettingTile( - icon: Icon( - FluentIcons.globe_24_regular - ), - title: Text(translations.authenticatorConfigurationHostName), - subtitle: Text(translations.authenticatorConfigurationHostDescription), - content: TextFormBox( - placeholder: translations.authenticatorConfigurationHostName, - controller: _authenticatorController.host - ) - ); - }); - - Widget get _port => Obx(() { - if(_authenticatorController.type.value == ServerType.embedded) { - return const SizedBox.shrink(); - } - - return SettingTile( - icon: Icon( - fluentUi.FluentIcons.number_field - ), - title: Text(translations.authenticatorConfigurationPortName), - subtitle: Text(translations.authenticatorConfigurationPortDescription), - content: TextFormBox( - placeholder: translations.authenticatorConfigurationPortName, - controller: _authenticatorController.port, - keyboardType: TextInputType.number, - inputFormatters: [ - FilteringTextInputFormatter.digitsOnly - ] - ) - ); - }); - - Widget get _detached => Obx(() { - if(_authenticatorController.type.value != ServerType.embedded) { - return const SizedBox.shrink(); - } - - return SettingTile( - icon: Icon( - FluentIcons.developer_board_24_regular - ), - title: Text(translations.authenticatorConfigurationDetachedName), - subtitle: Text(translations.authenticatorConfigurationDetachedDescription), - contentWidth: null, - content: Row( - children: [ - Text( - _authenticatorController.detached.value ? translations.on : translations.off - ), - const SizedBox( - width: 16.0 - ), - ToggleSwitch( - checked: _authenticatorController.detached(), - onChanged: (value) => _authenticatorController.detached.value = value - ), - ], - ) - ); - }); - - SettingTile get _resetDefaults => SettingTile( - icon: Icon( - FluentIcons.arrow_reset_24_regular - ), - title: Text(translations.authenticatorResetDefaultsName), - subtitle: Text(translations.authenticatorResetDefaultsDescription), - content: Button( - onPressed: () => showResetDialog(_authenticatorController.reset), - child: Text(translations.authenticatorResetDefaultsContent), - ) - ); - - Widget get _installationDirectory => Obx(() { - if(_authenticatorController.type.value != ServerType.embedded) { - return const SizedBox.shrink(); - } - - return SettingTile( - icon: Icon( - FluentIcons.folder_24_regular - ), - title: Text(translations.authenticatorInstallationDirectoryName), - subtitle: Text(translations.authenticatorInstallationDirectoryDescription), - content: Button( - onPressed: () => launchUrl(authenticatorDirectory.uri), - child: Text(translations.authenticatorInstallationDirectoryContent) - ) - ); - }); - - Widget get _type => SettingTile( - icon: Icon( - FluentIcons.password_24_regular - ), - title: Text(translations.authenticatorTypeName), - subtitle: Text(translations.authenticatorTypeDescription), - content: const ServerTypeSelector( - authenticator: true - ) - ); - - @override - Widget get button => const ServerButton( - authenticator: true - ); -} diff --git a/gui/lib/src/page/implementation/backend_page.dart b/gui/lib/src/page/implementation/backend_page.dart new file mode 100644 index 0000000..94758e3 --- /dev/null +++ b/gui/lib/src/page/implementation/backend_page.dart @@ -0,0 +1,214 @@ +import 'package:fluent_ui/fluent_ui.dart' as fluentUi show FluentIcons; +import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; +import 'package:fluentui_system_icons/fluentui_system_icons.dart'; +import 'package:flutter/services.dart'; +import 'package:get/get.dart'; +import 'package:reboot_common/common.dart'; +import 'package:reboot_launcher/src/controller/backend_controller.dart'; +import 'package:reboot_launcher/src/controller/game_controller.dart'; +import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; +import 'package:reboot_launcher/src/page/abstract/page.dart'; +import 'package:reboot_launcher/src/page/abstract/page_type.dart'; +import 'package:reboot_launcher/src/page/pages.dart'; +import 'package:reboot_launcher/src/util/keyboard.dart'; +import 'package:reboot_launcher/src/util/translations.dart'; +import 'package:reboot_launcher/src/widget/server_start_button.dart'; +import 'package:reboot_launcher/src/widget/server_type_selector.dart'; +import 'package:reboot_launcher/src/widget/setting_tile.dart'; +import 'package:url_launcher/url_launcher.dart'; + +import '../../dialog/implementation/data.dart'; + +class BackendPage extends RebootPage { + const BackendPage({Key? key}) : super(key: key); + + @override + String get name => translations.backendName; + + @override + String get iconAsset => "assets/images/backend.png"; + + @override + RebootPageType get type => RebootPageType.backend; + + @override + bool hasButton(String? pageName) => pageName == null; + + @override + RebootPageState createState() => _BackendPageState(); +} + +class _BackendPageState extends RebootPageState { + final GameController _gameController = Get.find(); + final BackendController _backendController = Get.find(); + + InfoBarEntry? _infoBarEntry; + + @override + void initState() { + ServicesBinding.instance.keyboard.addHandler((keyEvent) { + if(_infoBarEntry == null) { + return false; + } + + if(keyEvent.physicalKey.isUnrealEngineKey) { + _gameController.consoleKey.value = keyEvent.physicalKey; + } + + _infoBarEntry?.close(); + _infoBarEntry = null; + return true; + }); + super.initState(); + } + + @override + List get settings => [ + _type, + _hostName, + _port, + _detached, + _unrealEngineConsoleKey, + _installationDirectory, + _resetDefaults + ]; + + Widget get _hostName => Obx(() { + if(_backendController.type.value != ServerType.remote) { + return const SizedBox.shrink(); + } + + return SettingTile( + icon: Icon( + FluentIcons.globe_24_regular + ), + title: Text(translations.backendConfigurationHostName), + subtitle: Text(translations.backendConfigurationHostDescription), + content: TextFormBox( + placeholder: translations.backendConfigurationHostName, + controller: _backendController.host + ) + ); + }); + + Widget get _port => Obx(() { + if(_backendController.type.value == ServerType.embedded) { + return const SizedBox.shrink(); + } + + return SettingTile( + icon: Icon( + fluentUi.FluentIcons.number_field + ), + title: Text(translations.backendConfigurationPortName), + subtitle: Text(translations.backendConfigurationPortDescription), + content: TextFormBox( + placeholder: translations.backendConfigurationPortName, + controller: _backendController.port, + keyboardType: TextInputType.number, + inputFormatters: [ + FilteringTextInputFormatter.digitsOnly + ] + ) + ); + }); + + Widget get _detached => Obx(() { + if(_backendController.type.value != ServerType.embedded) { + return const SizedBox.shrink(); + } + + return SettingTile( + icon: Icon( + FluentIcons.developer_board_24_regular + ), + title: Text(translations.backendConfigurationDetachedName), + subtitle: Text(translations.backendConfigurationDetachedDescription), + contentWidth: null, + content: Row( + children: [ + Text( + _backendController.detached.value ? translations.on : translations.off + ), + const SizedBox( + width: 16.0 + ), + ToggleSwitch( + checked: _backendController.detached(), + onChanged: (value) => _backendController.detached.value = value + ), + ], + ) + ); + }); + + Widget get _unrealEngineConsoleKey => Obx(() { + if(_backendController.type.value != ServerType.embedded) { + return const SizedBox.shrink(); + } + + return SettingTile( + icon: Icon( + FluentIcons.key_24_regular + ), + title: Text(translations.settingsClientConsoleKeyName), + subtitle: Text(translations.settingsClientConsoleKeyDescription), + contentWidth: null, + content: Button( + onPressed: () { + _infoBarEntry = showInfoBar( + translations.clickKey, + loading: true + ); + }, + child: Text(_gameController.consoleKey.value.unrealEnginePrettyName ?? ""), + ) + ); + }); + + SettingTile get _resetDefaults => SettingTile( + icon: Icon( + FluentIcons.arrow_reset_24_regular + ), + title: Text(translations.backendResetDefaultsName), + subtitle: Text(translations.backendResetDefaultsDescription), + content: Button( + onPressed: () => showResetDialog(_backendController.reset), + child: Text(translations.backendResetDefaultsContent), + ) + ); + + Widget get _installationDirectory => Obx(() { + if(_backendController.type.value != ServerType.embedded) { + return const SizedBox.shrink(); + } + + return SettingTile( + icon: Icon( + FluentIcons.folder_24_regular + ), + title: Text(translations.backendInstallationDirectoryName), + subtitle: Text(translations.backendInstallationDirectoryDescription), + content: Button( + onPressed: () => launchUrl(backendDirectory.uri), + child: Text(translations.backendInstallationDirectoryContent) + ) + ); + }); + + Widget get _type => SettingTile( + icon: Icon( + FluentIcons.password_24_regular + ), + title: Text(translations.backendTypeName), + subtitle: Text(translations.backendTypeDescription), + content: const ServerTypeSelector( + backend: true + ) + ); + + @override + Widget get button => const ServerButton( + backend: true + ); +} diff --git a/gui/lib/src/page/implementation/home_page.dart b/gui/lib/src/page/implementation/home_page.dart index 46ed3cc..76b1d47 100644 --- a/gui/lib/src/page/implementation/home_page.dart +++ b/gui/lib/src/page/implementation/home_page.dart @@ -1,4 +1,5 @@ import 'dart:async'; +import 'dart:io'; import 'dart:ui'; import 'package:bitsdojo_window/bitsdojo_window.dart'; @@ -10,7 +11,6 @@ import 'package:reboot_common/common.dart'; import 'package:reboot_launcher/src/controller/settings_controller.dart'; import 'package:reboot_launcher/src/controller/update_controller.dart'; import 'package:reboot_launcher/src/dialog/abstract/dialog.dart'; -import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; import 'package:reboot_launcher/src/dialog/implementation/dll.dart'; import 'package:reboot_launcher/src/page/abstract/page.dart'; import 'package:reboot_launcher/src/page/abstract/page_suggestion.dart'; @@ -18,6 +18,7 @@ import 'package:reboot_launcher/src/page/pages.dart'; import 'package:reboot_launcher/src/util/dll.dart'; import 'package:reboot_launcher/src/util/os.dart'; import 'package:reboot_launcher/src/util/translations.dart'; +import 'package:reboot_launcher/src/widget/info_bar_area.dart'; import 'package:reboot_launcher/src/widget/profile_tile.dart'; import 'package:reboot_launcher/src/widget/title_bar.dart'; import 'package:window_manager/window_manager.dart'; @@ -45,13 +46,6 @@ class _HomePageState extends State with WindowListener, AutomaticKeepA @override void initState() { windowManager.addListener(this); - var lastValue = pageIndex.value; - pageIndex.listen((value) { - WidgetsBinding.instance.addPostFrameCallback((_) { - restoreMessage(value, lastValue); - lastValue = value; - }); - }); WidgetsBinding.instance.addPostFrameCallback((_) { _updateController.update(); watchDlls().listen((filePath) => showDllDeletedDialog(() { @@ -61,6 +55,11 @@ class _HomePageState extends State with WindowListener, AutomaticKeepA super.initState(); } + @override + void onWindowClose() { + exit(0); // Force closing + } + @override void dispose() { _searchFocusNode.dispose(); @@ -80,6 +79,46 @@ class _HomePageState extends State with WindowListener, AutomaticKeepA _focused.value = false; } + @override + void onWindowDocked() { + _focused.value = true; + } + + @override + void onWindowMaximize() { + _focused.value = true; + } + + @override + void onWindowMinimize() { + _focused.value = false; + } + + @override + void onWindowResize() { + _focused.value = true; + } + + @override + void onWindowMove() { + _focused.value = true; + } + + @override + void onWindowRestore() { + _focused.value = true; + } + + @override + void onWindowUndocked() { + _focused.value = true; + } + + @override + void onWindowUnmaximize() { + _focused.value = true; + } + @override void onWindowResized() { _settingsController.saveWindowSize(appWindow.size); @@ -140,7 +179,7 @@ class _HomePageState extends State with WindowListener, AutomaticKeepA menuButton: const SizedBox(), displayMode: PaneDisplayMode.open, items: _items, - customPane: _CustomPane(), + customPane: _CustomPane(_settingsController), header: const ProfileWidget(), autoSuggestBox: _autoSuggestBox, indicator: const StickyNavigationIndicator( @@ -190,43 +229,47 @@ class _HomePageState extends State with WindowListener, AutomaticKeepA onVerticalDragStart: (_) => appWindow.startDragging() ); - Widget get _autoSuggestBox => Padding( - padding: const EdgeInsets.symmetric( - horizontal: 16.0, - vertical: 8.0 - ), - child: AutoSuggestBox( - key: _searchKey, - controller: _searchController, - placeholder: translations.find, - focusNode: _searchFocusNode, - selectionHeightStyle: BoxHeightStyle.max, - itemBuilder: (context, item) => ListTile( - onPressed: () { - pageIndex.value = item.value.pageIndex; - _searchController.clear(); - _searchFocusNode.unfocus(); - }, - leading: item.child, - title: Text( - item.value.name, - overflow: TextOverflow.clip, - maxLines: 1 - ) + Widget get _autoSuggestBox => Obx(() { + final firstRun = _settingsController.firstRun.value; + return Padding( + padding: const EdgeInsets.symmetric( + horizontal: 16.0, + vertical: 8.0 ), - items: _suggestedItems, - autofocus: true, - trailingIcon: IgnorePointer( - child: IconButton( - onPressed: () {}, - icon: Transform.flip( - flipX: true, - child: const Icon(FluentIcons.search) - ), - ) - ), - ) - ); + child: AutoSuggestBox( + key: _searchKey, + controller: _searchController, + enabled: !firstRun, + placeholder: translations.find, + focusNode: _searchFocusNode, + selectionHeightStyle: BoxHeightStyle.max, + itemBuilder: (context, item) => ListTile( + onPressed: () { + pageIndex.value = item.value.pageIndex; + _searchController.clear(); + _searchFocusNode.unfocus(); + }, + leading: item.child, + title: Text( + item.value.name, + overflow: TextOverflow.clip, + maxLines: 1 + ) + ), + items: _suggestedItems, + autofocus: true, + trailingIcon: IgnorePointer( + child: IconButton( + onPressed: () {}, + icon: Transform.flip( + flipX: true, + child: const Icon(FluentIcons.search) + ), + ) + ), + ) + ); + }); List> get _suggestedItems => pages.mapMany((page) { final pageIcon = SizedBox.square( @@ -369,32 +412,40 @@ class _PaneBodyState extends State<_PaneBody> with AutomaticKeepAliveClientMixin ), const SizedBox(height: 24.0), Expanded( - child: PageView.builder( - controller: _pageController, - itemBuilder: (context, index) => Navigator( - onPopPage: (page, data) => true, - observers: [ - _NestedPageObserver( - onChanged: (routeName) { - if(routeName != null) { - pageIndex.refresh(); - addSubPageToStack(routeName); - widget.controller.add(null); - } - } - ) - ], - pages: [ - MaterialPage( - child: KeyedSubtree( - key: getPageKeyByIndex(index), - child: widget.body ?? const SizedBox.shrink() - ) - ) - ], - ), - itemCount: pages.length - ), + child: Stack( + fit: StackFit.loose, + children: [ + PageView.builder( + controller: _pageController, + itemBuilder: (context, index) => Navigator( + onPopPage: (page, data) => true, + observers: [ + _NestedPageObserver( + onChanged: (routeName) { + if(routeName != null) { + pageIndex.refresh(); + addSubPageToStack(routeName); + widget.controller.add(null); + } + } + ) + ], + pages: [ + MaterialPage( + child: KeyedSubtree( + key: getPageKeyByIndex(index), + child: widget.body ?? const SizedBox.shrink() + ) + ) + ], + ), + itemCount: pages.length + ), + InfoBarArea( + key: infoBarAreaKey + ) + ], + ) ), ], ), @@ -408,6 +459,9 @@ class _PaneBodyState extends State<_PaneBody> with AutomaticKeepAliveClientMixin } class _CustomPane extends NavigationPaneWidget { + final SettingsController settingsController; + _CustomPane(this.settingsController); + @override Widget build(BuildContext context, NavigationPaneWidgetData data) => Column( crossAxisAlignment: CrossAxisAlignment.start, @@ -444,33 +498,36 @@ class _CustomPane extends NavigationPaneWidget { ), itemBuilder: (context, index) { final item = data.pane.items[index] as PaneItem; - return HoverButton( - onPressed: () => data.pane.onChanged?.call(index), - builder: (context, states) => Container( - height: 36, - decoration: BoxDecoration( - color: ButtonThemeData.uncheckedInputColor( - FluentTheme.of(context), - item == data.pane.selectedItem ? {ButtonStates.hovering} : states, - transparentWhenNone: true, + return Obx(() { + final firstRun = settingsController.firstRun.value; + return HoverButton( + onPressed: firstRun ? null : () => data.pane.onChanged?.call(index), + builder: (context, states) => Container( + height: 36, + decoration: BoxDecoration( + color: ButtonThemeData.uncheckedInputColor( + FluentTheme.of(context), + item == data.pane.selectedItem ? {ButtonStates.hovering} : states, + transparentWhenNone: true, + ), + borderRadius: BorderRadius.all(Radius.circular(6.0)) + ), + child: Padding( + padding: const EdgeInsets.symmetric( + horizontal: 8.0 + ), + child: Row( + children: [ + data.pane.indicator ?? const SizedBox.shrink(), + item.icon, + const SizedBox(width: 12.0), + item.title ?? const SizedBox.shrink() + ], ), - borderRadius: BorderRadius.all(Radius.circular(6.0)) - ), - child: Padding( - padding: const EdgeInsets.symmetric( - horizontal: 8.0 - ), - child: Row( - children: [ - data.pane.indicator ?? const SizedBox.shrink(), - item.icon, - const SizedBox(width: 12.0), - item.title ?? const SizedBox.shrink() - ], ), ), - ), - ); + ); + }); }, ), ), diff --git a/gui/lib/src/page/implementation/info_page.dart b/gui/lib/src/page/implementation/info_page.dart index 426e7e6..b617528 100644 --- a/gui/lib/src/page/implementation/info_page.dart +++ b/gui/lib/src/page/implementation/info_page.dart @@ -1,11 +1,13 @@ +import 'dart:async'; + import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; -import 'package:fluentui_system_icons/fluentui_system_icons.dart'; -import 'package:flutter/material.dart'; +import 'package:get/get.dart'; +import 'package:reboot_launcher/src/controller/settings_controller.dart'; import 'package:reboot_launcher/src/page/abstract/page.dart'; import 'package:reboot_launcher/src/page/abstract/page_type.dart'; +import 'package:reboot_launcher/src/page/pages.dart'; import 'package:reboot_launcher/src/util/translations.dart'; -import 'package:reboot_launcher/src/util/tutorial.dart'; -import 'package:reboot_launcher/src/widget/setting_tile.dart'; +import 'package:reboot_launcher/src/widget/info_tile.dart'; class InfoPage extends RebootPage { const InfoPage({Key? key}) : super(key: key); @@ -27,62 +29,193 @@ class InfoPage extends RebootPage { } class _InfoPageState extends RebootPageState { - @override - List get settings => [ - _documentation, - _discord, - _youtubeTutorial, - _reportBug + final SettingsController _settingsController = Get.find(); + RxInt _counter = RxInt(180); + + static final List _infoTiles = [ + InfoTile( + title: Text("What is Project Reboot?"), + content: Text( + "Project Reboot is a game server for Fortnite that aims to support as many seasons as possible.\n" + "The project was started on Discord by Milxnor, while the launcher is developed by Auties00.\n" + "Both are open source on GitHub, anyone can easily contribute or audit the code!" + ) + ), + InfoTile( + title: Text("What is a Fortnite game server?"), + content: Text( + "If you have ever played Minecraft multiplayer, you might know that the servers you join are hosted on a computer running a program, called Minecraft Game Server.\n" + "While the Minecraft Game server is written by the creators of Minecraft, Mojang, Epic Games doesn't provide an equivalent for Fortnite.\n" + "By exploiting the Fortnite internals, though, it's possible to create a game server just like in Minecraft: this is in easy terms what Project Reboot does.\n" + "Some Fortnite versions support running this game server in the background without rendering the game(\"headless\"), while others still require the full game to be open.\n" + "Just like in Minecraft, you need a game client to play the game and one to host the server.\n" + "By default, a game server is automatically started on your PC when you start a Fortnite version from the \"Play\" section in the launcher.\n" + "If you want to play in another way, for example by joining a server hosted by one of your friends instead of running one yourself, you can checkout the \"Multiplayer\" section in the \"Play\" tab of the launcher." + ) + ), + InfoTile( + title: Text("Types of Fortnite game server"), + content: Text( + "Some Fortnite versions support running this game server in the background without rendering the game: this type of server is called \"headless\" as the game is running, but you can't see it on your screen.\n" + "If headless is not supported by the Fortnite version you want to play, or if you disabled it manually from the \"Configuration\" section in the \"Host\" tab of the launcher, you will see an instance of Fortnite open on your screen.\n" + "For convenience, this window will be opened on a new Virtual Desktop, if your Windows version supports it. This feature can be disabled as well from from the \"Configuration\" section in the \"Host\" tab of the launcher." + "Just like in Minecraft, you need a game client to play the game and one to host the server." + ) + ), + InfoTile( + title: Text("How can others join my game server?"), + content: Text( + "For others to join your game server, port 7777 must be accessible on your PC.\n" + "One option is to use a private VPN service like Hamachi or Radmin, but all of the players will need to download this software.\n" + "The best solution is to use port forwarding:\n" + "1. Set a static IP\n" + " If you don't have already a static IP set, set one by following any tutorial on Google\n" + "2. Log into your router's admin panel\n" + " Usually this can be accessed on any web browser by going to http://192.168.1.1/\n" + " You might need a username and a password to log in: refer to your router's manual for precise instructions\n" + "3. Find the port forwarding section\n" + " Once logged in into the admin panel, navigate to the port forwarding section of your router's settings\n" + " This location may vary from router to router, but it's typically labelled as \"Port Forwarding,\" \"Port Mapping\" or \"Virtual Server\"\n" + " Refer to your router's manual for precise instructions\n" + "4. Add a port forwarding rule\n" + " Now, you'll need to create a new port forwarding rule. Here's what you'll typically need to specify:\n" + " - Service Name: Choose a name for your port forwarding rule (e.g., \"Fortnite Game Server\")\n" + " - Port Number: Enter 7777 for both the external and internal ports\n" + " - Protocol: Select the UDP protocol\n" + " - Internal IP Address: Enter the static IP address you set earlier\n" + " - Enable: Make sure the port forwarding rule is enabled\n" + "5. Save and apply the changes\n" + " After configuring the port forwarding rule, save your changes and apply them\n" + " This step may involve clicking a \"Save\" or \"Apply\" button on your router's web interface" + ) + ), + InfoTile( + title: Text("What is a backend?"), + content: Text( + "A backend is a piece of software that emulates the Epic Games server responsible for authentication and related features.\n" + "By default, the Reboot Launcher ships with a slightly customized version of LawinV1, an open source implementation available on Github.\n" + "If you are having any problems with the built in backend, enable the \"Detached\" option in the \"Backend\" tab of the Reboot Laucher to troubleshoot the issue." + "LawinV1 was chosen to allow users to log into Fortnite and join games easily, but keep in mind that if you want to use features such as parties, voice chat or skins, you will need to use a custom backend.\n" + "Other popular options are LawinV2 and Momentum, both available on Github, but it's not recommended to use them if you are not an advanced user.\n" + "You can run these alternatives either either on your PC or on a server by selecting respectively \"Local\" or \"Remote\" from the \"Type\" section in the \"Backend\" tab of the Reboot Launcher." + ) + ), + InfoTile( + title: Text("What is the Unreal Engine console?"), + content: Text( + "Many Fortnite versions don't support entering in game by clicking the \"Play\" button.\n" + "Instead, you need to click the key assigned to the Unreal Engine console, by default F8 or the tilde(the button above tab), and type open 127.0.0.1\n" + "Keep in mind that the Unreal Engine console key is controlled by the backend, so this is true only if you are using the embedded backend: custom backends might use different keys.\n" + "When using the embedded backend, you can customize the key used to open the console in the \"Backend\" tab of the Reboot Launcher." + ) + ), + InfoTile( + title: Text("What is a matchmaker?"), + content: Text( + "A matchmaker is a piece of software that emulates the Epic Games server responsible for putting you in game when you click the \"Play\" button in Fortnite.\n" + "By default, the Reboot Launcher ships with a slightly customized version of Lawin's FortMatchmaker, an open source implementation available on Github.\n" + "If you are having any problems with the built in matchmaker, enable the \"Detached\" option in the \"Matchmaker\" tab of the Reboot Launcher to troubleshoot the issue.\n" + "Lawin's FortMatchmaker is an extremely basic implementation of a matchmaker: it takes the IP you configured in the \"Matchmaker\" tab, by default 127.0.0.1(your local machine) of the Reboot Launcher and send you with no wait to that game server.\n" + "Unfortunately right now the play button still doesn't work on many Fortnite versions, you so might need to use the Unreal Engine console.\n" + "Just like a backend, you can run a custom matchmaker, either on your PC or on a server with the appropriate configuration." + ) + ), + InfoTile( + title: Text("The backend is not working correctly"), + content: Text( + "To resolve this issue:\n" + "- Check that your backend is working correctly from the \"Backend\" tab\n" + "- If you are using a custom backend, try to use the embedded one\n" + "- Try to run the backend as detached by enabling the \"Detached\" option in the \"Backend\" tab" + ) + ), + InfoTile( + title: Text("The matchmaker is not working correctly"), + content: Text( + "To resolve this issue:\n" + "- Check that your matchmaker is working correctly from the \"Matchmaker\" tab\n" + "- If you are using a custom matchmaker, try to use the embedded one\n" + "- Try to run the matchmaker as detached by enabling the \"Detached\" option in the \"Matchmaker\" tab" + ) + ), + InfoTile( + title: Text("Why do I see two Fortnite versions opened on my PC?"), + content: Text( + "As explained in the \"What is a Fortnite game server?\" section, one instance of Fortnite is used to host the game server, while the other is used to let you play.\n" + "The Fortnite instance used up by the game server is usually frozen, so it should be hard to use the wrong one to try to play.\n" + "If you do not want to host a game server yourself, you can:\n" + "1. Set a custom IP in the \"Matchmaker\" tab\n" + "2. Set a custom matchmaker in the \"Matchmaker\" tab\n" + "3. Disable the automatic game server from the \"Configuration\" section in the \"Host\" tab\n" + ) + ), + InfoTile( + title: Text("I cannot open Fortnite because of an authentication error"), + content: Text( + "To resolve this issue:\n" + "- Check that your backend is working correctly from the \"Backend\" tab\n" + "- If you are using a custom backend, try to use the embedded one\n" + "- Try to run the backend as detached by enabling the \"Detached\" option in the \"Backend\" tab" + ) + ), + InfoTile( + title: Text("I cannot enter in a match when I'm in Fortnite"), + content: Text( + "As explained in the \"What is the Unreal Engine console?\" section, the \"Play\" button doesn't work in many Fortnite versions.\n" + "Instead, you need to click the key assigned to the Unreal Engine console, by default F8 or the tilde(the button above tab), and type open 127.0.0.1" + ) + ), + InfoTile( + title: Text("An error occurred while downloading a build (DioException)"), + content: Text( + "Unfortunately the servers that host the Fortnite builds are not reliable all the time so it might take a few tries, or downloading another version, to get started" + ) + ), + InfoTile( + title: Text("Failed to open descriptor file / Fortnite crash Reporter / Unreal Engine crash reporter"), + content: Text( + "Your version of Fortnite is corrupted, download it again from the launcher or use another build." + ) + ), ]; - SettingTile get _reportBug => SettingTile( - icon: Icon( - FluentIcons.bug_24_regular - ), - title: Text(translations.settingsUtilsBugReportName), - subtitle: Text(translations.settingsUtilsBugReportSubtitle) , - content: Button( - onPressed: openBugReport, - child: Text(translations.settingsUtilsBugReportContent), - ) - ); - - SettingTile get _youtubeTutorial => SettingTile( - icon: Icon( - FluentIcons.video_24_regular - ), - title: Text(translations.infoVideoName), - subtitle: Text(translations.infoVideoDescription), - content: Button( - onPressed: openYoutubeTutorial, - child: Text(translations.infoVideoContent) - ) - ); - - SettingTile get _discord => SettingTile( - icon: Icon( - Icons.discord_outlined - ), - title: Text(translations.infoDiscordName), - subtitle: Text(translations.infoDiscordDescription), - content: Button( - onPressed: openDiscordServer, - child: Text(translations.infoDiscordContent) - ) - ); - - SettingTile get _documentation => SettingTile( - icon: Icon( - FluentIcons.document_24_regular - ), - title: Text(translations.infoDocumentationName), - subtitle: Text(translations.infoDocumentationDescription), - content: Button( - onPressed: openTutorials, - child: Text(translations.infoDocumentationContent) - ) - ); + @override + void initState() { + if(_settingsController.firstRun.value) { + Timer.periodic(const Duration(seconds: 1), (timer) { + if (_counter.value <= 0) { + _settingsController.firstRun.value = false; + timer.cancel(); + } else { + _counter.value = _counter.value - 1; + } + }); + } + super.initState(); + } @override - Widget? get button => null; + List get settings => _infoTiles; + + @override + Widget? get button => Obx(() { + if(!_settingsController.firstRun.value) { + return const SizedBox.shrink(); + } + + final totalSecondsLeft = _counter.value; + final minutesLeft = totalSecondsLeft ~/ 60; + final secondsLeft = totalSecondsLeft % 60; + return SizedBox( + width: double.infinity, + height: 48, + child: Button( + onPressed: totalSecondsLeft <= 0 ? () => pageIndex.value = RebootPageType.play.index : null, + child: Text( + totalSecondsLeft <= 0 ? "I have read the instructions" + : "Read the instructions for at least ${secondsLeft == 0 ? '$minutesLeft minute${minutesLeft > 1 ? 's' : ''}' : minutesLeft == 0 ? '$secondsLeft second${secondsLeft > 1 ? 's' : ''}' : '$minutesLeft minute${minutesLeft > 1 ? 's' : ''} and $secondsLeft second${secondsLeft > 1 ? 's' : ''}'}" + ), + ) + ); + }); } \ No newline at end of file diff --git a/gui/lib/src/page/implementation/matchmaker_page.dart b/gui/lib/src/page/implementation/matchmaker_page.dart index a245916..0d00043 100644 --- a/gui/lib/src/page/implementation/matchmaker_page.dart +++ b/gui/lib/src/page/implementation/matchmaker_page.dart @@ -38,7 +38,7 @@ class _MatchmakerPageState extends RebootPageState { @override Widget? get button => const ServerButton( - authenticator: false + backend: false ); @override @@ -47,40 +47,10 @@ class _MatchmakerPageState extends RebootPageState { _hostName, _port, _gameServerAddress, - _detached, _installationDirectory, _resetDefaults ]; - Widget get _detached => Obx(() { - if(_matchmakerController.type.value != ServerType.embedded) { - return const SizedBox.shrink(); - } - - return SettingTile( - icon: Icon( - FluentIcons.developer_board_24_regular - ), - title: Text(translations.matchmakerConfigurationDetachedName), - subtitle: Text(translations.matchmakerConfigurationDetachedDescription), - contentWidth: null, - content: Row( - children: [ - Text( - _matchmakerController.detached.value ? translations.on : translations.off - ), - const SizedBox( - width: 16.0 - ), - ToggleSwitch( - checked: _matchmakerController.detached.value, - onChanged: (value) => _matchmakerController.detached.value = value - ), - ], - ), - ); - }); - Widget get _gameServerAddress => Obx(() { if(_matchmakerController.type.value != ServerType.embedded) { return const SizedBox.shrink(); @@ -123,7 +93,7 @@ class _MatchmakerPageState extends RebootPageState { }); Widget get _hostName => Obx(() { - if(_matchmakerController.type.value == ServerType.remote) { + if(_matchmakerController.type.value != ServerType.remote) { return const SizedBox.shrink(); } @@ -147,7 +117,7 @@ class _MatchmakerPageState extends RebootPageState { title: Text(translations.matchmakerTypeName), subtitle: Text(translations.matchmakerTypeDescription), content: const ServerTypeSelector( - authenticator: false + backend: false ) ); diff --git a/gui/lib/src/page/implementation/play_page.dart b/gui/lib/src/page/implementation/play_page.dart index a6cb399..2561d8e 100644 --- a/gui/lib/src/page/implementation/play_page.dart +++ b/gui/lib/src/page/implementation/play_page.dart @@ -1,13 +1,19 @@ import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; import 'package:fluentui_system_icons/fluentui_system_icons.dart'; +import 'package:flutter/services.dart'; import 'package:get/get.dart'; import 'package:reboot_common/common.dart'; +import 'package:reboot_launcher/src/controller/game_controller.dart'; import 'package:reboot_launcher/src/controller/hosting_controller.dart'; import 'package:reboot_launcher/src/controller/matchmaker_controller.dart'; +import 'package:reboot_launcher/src/controller/settings_controller.dart'; +import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; import 'package:reboot_launcher/src/page/abstract/page.dart'; import 'package:reboot_launcher/src/page/abstract/page_type.dart'; import 'package:reboot_launcher/src/page/pages.dart'; +import 'package:reboot_launcher/src/util/keyboard.dart'; import 'package:reboot_launcher/src/util/translations.dart'; +import 'package:reboot_launcher/src/widget/file_setting_tile.dart'; import 'package:reboot_launcher/src/widget/game_start_button.dart'; import 'package:reboot_launcher/src/widget/setting_tile.dart'; import 'package:reboot_launcher/src/widget/version_selector_tile.dart'; @@ -34,20 +40,9 @@ class PlayPage extends RebootPage { class _PlayPageState extends RebootPageState { final MatchmakerController _matchmakerController = Get.find(); - final HostingController _hostingController = Get.find(); - late final RxBool _selfServer; - - @override - void initState() { - _selfServer = RxBool(_isLocalPlay); - _matchmakerController.gameServerAddress.addListener(() => _selfServer.value = _isLocalPlay); - _hostingController.started.listen((_) => _selfServer.value = _isLocalPlay); - super.initState(); - } - - bool get _isLocalPlay => isLocalHost(_matchmakerController.gameServerAddress.text) - && !_hostingController.started.value; - + final SettingsController _settingsController = Get.find(); + final GameController _gameController = Get.find(); + @override Widget? get button => LaunchButton( startLabel: translations.launchFortnite, @@ -57,12 +52,60 @@ class _PlayPageState extends RebootPageState { @override List get settings => [ + _clientSettings, versionSelectSettingTile, - _hostSettingTile, - _browseServerTile, - _matchmakerTile + _multiplayer ]; + SettingTile get _multiplayer => SettingTile( + icon: Icon( + FluentIcons.people_24_regular + ), + title: Text(translations.playGameServerName), + subtitle: Text(translations.playGameServerDescription), + children: [ + _hostSettingTile, + _browseServerTile, + _matchmakerTile, + ], + ); + + SettingTile get _clientSettings => SettingTile( + icon: Icon( + FluentIcons.archive_settings_24_regular + ), + title: Text(translations.settingsClientName), + subtitle: Text(translations.settingsClientDescription), + children: [ + createFileSetting( + title: translations.settingsClientConsoleName, + description: translations.settingsClientConsoleDescription, + controller: _settingsController.unrealEngineConsoleDll + ), + createFileSetting( + title: translations.settingsClientAuthName, + description: translations.settingsClientAuthDescription, + controller: _settingsController.backendDll + ), + createFileSetting( + title: translations.settingsClientMemoryName, + description: translations.settingsClientMemoryDescription, + controller: _settingsController.memoryLeakDll + ), + SettingTile( + icon: Icon( + FluentIcons.options_24_regular + ), + title: Text(translations.settingsClientArgsName), + subtitle: Text(translations.settingsClientArgsDescription), + content: TextFormBox( + placeholder: translations.settingsClientArgsPlaceholder, + controller: _gameController.customLaunchArgs, + ) + ) + ], + ); + SettingTile get _matchmakerTile => SettingTile( onPressed: () { pageIndex.value = RebootPageType.matchmaker.index; diff --git a/gui/lib/src/page/implementation/server_browser_page.dart b/gui/lib/src/page/implementation/server_browser_page.dart index 06a0101..1330a7e 100644 --- a/gui/lib/src/page/implementation/server_browser_page.dart +++ b/gui/lib/src/page/implementation/server_browser_page.dart @@ -87,14 +87,8 @@ class _BrowsePageState extends RebootPageState { ); Widget _buildPopulatedListBody(Set> items) => ListView.builder( - itemCount: items.length * 2, + itemCount: items.length, itemBuilder: (context, index) { - if(index % 2 != 0) { - return const SizedBox( - height: 8.0 - ); - } - var entry = items.elementAt(index ~/ 2); var hasPassword = entry["password"] != null; return SettingTile( diff --git a/gui/lib/src/page/implementation/server_host_page.dart b/gui/lib/src/page/implementation/server_host_page.dart index 4d7a1fd..b18389b 100644 --- a/gui/lib/src/page/implementation/server_host_page.dart +++ b/gui/lib/src/page/implementation/server_host_page.dart @@ -2,19 +2,27 @@ import 'package:clipboard/clipboard.dart'; import 'package:dart_ipify/dart_ipify.dart'; import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; import 'package:fluentui_system_icons/fluentui_system_icons.dart'; +import 'package:flutter/services.dart'; import 'package:get/get.dart'; +import 'package:reboot_common/common.dart'; import 'package:reboot_launcher/main.dart'; import 'package:reboot_launcher/src/controller/game_controller.dart'; import 'package:reboot_launcher/src/controller/hosting_controller.dart'; +import 'package:reboot_launcher/src/controller/settings_controller.dart'; +import 'package:reboot_launcher/src/controller/update_controller.dart'; import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; import 'package:reboot_launcher/src/dialog/implementation/data.dart'; import 'package:reboot_launcher/src/dialog/implementation/server.dart'; import 'package:reboot_launcher/src/page/abstract/page.dart'; import 'package:reboot_launcher/src/page/abstract/page_type.dart'; import 'package:reboot_launcher/src/util/translations.dart'; +import 'package:reboot_launcher/src/widget/file_setting_tile.dart'; import 'package:reboot_launcher/src/widget/game_start_button.dart'; import 'package:reboot_launcher/src/widget/setting_tile.dart'; import 'package:reboot_launcher/src/widget/version_selector_tile.dart'; +import 'package:fluent_ui/fluent_ui.dart' as fluentUi show FluentIcons; + +import '../../util/checks.dart'; class HostPage extends RebootPage { const HostPage({Key? key}) : super(key: key); @@ -38,6 +46,8 @@ class HostPage extends RebootPage { class _HostingPageState extends RebootPageState { final GameController _gameController = Get.find(); final HostingController _hostingController = Get.find(); + final UpdateController _updateController = Get.find(); + final SettingsController _settingsController = Get.find(); late final RxBool _showPasswordTrailing = RxBool(_hostingController.password.text.isNotEmpty); @@ -61,9 +71,9 @@ class _HostingPageState extends RebootPageState { @override List get settings => [ - _gameServer, + _information, + _configuration, versionSelectSettingTile, - _headless, _share, _resetDefaults ]; @@ -80,7 +90,7 @@ class _HostingPageState extends RebootPageState { ) ); - SettingTile get _gameServer => SettingTile( + SettingTile get _information => SettingTile( icon: Icon( FluentIcons.info_24_regular ), @@ -169,28 +179,108 @@ class _HostingPageState extends RebootPageState { ] ); - Widget get _headless => Obx(() => SettingTile( + SettingTile get _configuration => SettingTile( icon: Icon( - FluentIcons.window_console_20_regular + FluentIcons.archive_settings_24_regular ), - title: Text(translations.hostHeadlessName), - subtitle: Text(translations.hostHeadlessDescription), - contentWidth: null, - content: Row( - children: [ - Text( - _hostingController.headless.value ? translations.on : translations.off + title: Text(translations.settingsServerName), + subtitle: Text(translations.settingsServerSubtitle), + children: [ + createFileSetting( + title: translations.settingsServerFileName, + description: translations.settingsServerFileDescription, + controller: _settingsController.gameServerDll + ), + SettingTile( + icon: Icon( + fluentUi.FluentIcons.number_field + ), + title: Text(translations.settingsServerPortName), + subtitle: Text(translations.settingsServerPortDescription), + content: TextFormBox( + placeholder: translations.settingsServerPortName, + controller: _settingsController.gameServerPort, + keyboardType: TextInputType.number, + inputFormatters: [ + FilteringTextInputFormatter.digitsOnly + ] + ) + ), + SettingTile( + icon: Icon( + FluentIcons.globe_24_regular + ), + title: Text(translations.settingsServerMirrorName), + subtitle: Text(translations.settingsServerMirrorDescription), + content: TextFormBox( + placeholder: translations.settingsServerMirrorPlaceholder, + controller: _updateController.url, + validator: checkUpdateUrl + ) + ), + SettingTile( + icon: Icon( + FluentIcons.timer_24_regular + ), + title: Text(translations.settingsServerTimerName), + subtitle: Text(translations.settingsServerTimerSubtitle), + content: Obx(() => DropDownButton( + leading: Text(_updateController.timer.value.text), + items: UpdateTimer.values.map((entry) => MenuFlyoutItem( + text: Text(entry.text), + onPressed: () { + _updateController.timer.value = entry; + _updateController.infoBarEntry?.close(); + _updateController.update(true); + } + )).toList() + )) + ), + Obx(() => SettingTile( + icon: Icon( + FluentIcons.window_console_20_regular ), - const SizedBox( - width: 16.0 + title: Text(translations.hostHeadlessName), + subtitle: Text(translations.hostHeadlessDescription), + contentWidth: null, + content: Row( + children: [ + Text( + _hostingController.headless.value ? translations.on : translations.off + ), + const SizedBox( + width: 16.0 + ), + ToggleSwitch( + checked: _hostingController.headless.value, + onChanged: (value) => _hostingController.headless.value = value + ), + ], ), - ToggleSwitch( - checked: _hostingController.headless.value, - onChanged: (value) => _hostingController.headless.value = value + )), + Obx(() => SettingTile( + icon: Icon( + FluentIcons.desktop_edit_24_regular ), - ], - ), - ), + title: Text(translations.hostVirtualDesktopName), + subtitle: Text(translations.hostVirtualDesktopDescription), + contentWidth: null, + content: Row( + children: [ + Text( + _hostingController.virtualDesktop.value ? translations.on : translations.off + ), + const SizedBox( + width: 16.0 + ), + ToggleSwitch( + checked: _hostingController.virtualDesktop.value, + onChanged: (value) => _hostingController.virtualDesktop.value = value + ), + ], + ), + )), + ], ); SettingTile get _share => SettingTile( @@ -222,12 +312,15 @@ class _HostingPageState extends RebootPageState { subtitle: Text(translations.hostShareIpDescription), content: Button( onPressed: () async { + InfoBarEntry? entry; try { - _showCopyingIp(); - var ip = await Ipify.ipv4(); + entry = _showCopyingIp(); + final ip = await Ipify.ipv4(); + entry.close(); FlutterClipboard.controlC(ip); _showCopiedIp(); }catch(error) { + entry?.close(); _showCannotCopyIp(error); } }, @@ -257,7 +350,7 @@ class _HostingPageState extends RebootPageState { severity: InfoBarSeverity.success ); - void _showCopyingIp() => showInfoBar( + InfoBarEntry _showCopyingIp() => showInfoBar( translations.hostShareIpMessageLoading, loading: true, duration: null @@ -279,4 +372,14 @@ class _HostingPageState extends RebootPageState { severity: InfoBarSeverity.success, duration: infoBarLongDuration ); +} + +extension _UpdateTimerExtension on UpdateTimer { + String get text { + if (this == UpdateTimer.never) { + return translations.updateGameServerDllNever; + } + + return translations.updateGameServerDllEvery(name); + } } \ No newline at end of file diff --git a/gui/lib/src/page/implementation/settings_page.dart b/gui/lib/src/page/implementation/settings_page.dart index e6086f9..c0264c9 100644 --- a/gui/lib/src/page/implementation/settings_page.dart +++ b/gui/lib/src/page/implementation/settings_page.dart @@ -1,22 +1,20 @@ -import 'package:fluent_ui/fluent_ui.dart' as fluentUi show FluentIcons; +import 'dart:io'; + +import 'package:archive/archive_io.dart'; import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; import 'package:fluentui_system_icons/fluentui_system_icons.dart'; -import 'package:flutter/services.dart'; +import 'package:flutter/foundation.dart'; import 'package:flutter_gen/gen_l10n/reboot_localizations.dart'; import 'package:flutter_localized_locales/flutter_localized_locales.dart'; import 'package:get/get.dart'; import 'package:reboot_common/common.dart'; -import 'package:reboot_launcher/src/controller/game_controller.dart'; -import 'package:reboot_launcher/src/controller/hosting_controller.dart'; import 'package:reboot_launcher/src/controller/settings_controller.dart'; -import 'package:reboot_launcher/src/controller/update_controller.dart'; import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; import 'package:reboot_launcher/src/dialog/implementation/data.dart'; import 'package:reboot_launcher/src/page/abstract/page.dart'; import 'package:reboot_launcher/src/page/abstract/page_type.dart'; -import 'package:reboot_launcher/src/util/checks.dart'; +import 'package:reboot_launcher/src/util/picker.dart'; import 'package:reboot_launcher/src/util/translations.dart'; -import 'package:reboot_launcher/src/widget/file_selector.dart'; import 'package:reboot_launcher/src/widget/setting_tile.dart'; import 'package:url_launcher/url_launcher.dart'; @@ -40,19 +38,52 @@ class SettingsPage extends RebootPage { } class _SettingsPageState extends RebootPageState { - final GameController _gameController = Get.find(); - final HostingController _hostingController = Get.find(); final SettingsController _settingsController = Get.find(); - final UpdateController _updateController = Get.find(); @override Widget? get button => null; @override List get settings => [ - _clientSettings, - _gameServerSettings, - _launcherSettings, + SettingTile( + icon: Icon( + FluentIcons.local_language_24_regular + ), + title: Text(translations.settingsUtilsLanguageName), + subtitle: Text(translations.settingsUtilsLanguageDescription), + content: Obx(() => DropDownButton( + leading: Text(_getLocaleName(_settingsController.language.value)), + items: AppLocalizations.supportedLocales.map((locale) => MenuFlyoutItem( + text: Text(_getLocaleName(locale.languageCode)), + onPressed: () => _settingsController.language.value = locale.languageCode + )).toList() + )) + ), + SettingTile( + icon: Icon( + FluentIcons.dark_theme_24_regular + ), + title: Text(translations.settingsUtilsThemeName), + subtitle: Text(translations.settingsUtilsThemeDescription), + content: Obx(() => DropDownButton( + leading: Text(_settingsController.themeMode.value.title), + items: ThemeMode.values.map((themeMode) => MenuFlyoutItem( + text: Text(themeMode.title), + onPressed: () => _settingsController.themeMode.value = themeMode + )).toList() + )) + ), + SettingTile( + icon: Icon( + FluentIcons.arrow_reset_24_regular + ), + title: Text(translations.settingsUtilsResetDefaultsName), + subtitle: Text(translations.settingsUtilsResetDefaultsSubtitle), + content: Button( + onPressed: () => showResetDialog(_settingsController.reset), + child: Text(translations.settingsUtilsResetDefaultsContent), + ) + ), _installationDirectory ]; @@ -68,173 +99,6 @@ class _SettingsPageState extends RebootPageState { ) ); - SettingTile get _clientSettings => SettingTile( - icon: Icon( - FluentIcons.desktop_24_regular - ), - title: Text(translations.settingsClientName), - subtitle: Text(translations.settingsClientDescription), - children: [ - _createFileSetting( - title: translations.settingsClientConsoleName, - description: translations.settingsClientConsoleDescription, - controller: _settingsController.unrealEngineConsoleDll - ), - _createFileSetting( - title: translations.settingsClientAuthName, - description: translations.settingsClientAuthDescription, - controller: _settingsController.authenticatorDll - ), - _createFileSetting( - title: translations.settingsClientMemoryName, - description: translations.settingsClientMemoryDescription, - controller: _settingsController.memoryLeakDll - ), - SettingTile( - icon: Icon( - FluentIcons.text_box_settings_24_regular - ), - title: Text(translations.settingsClientArgsName), - subtitle: Text(translations.settingsClientArgsDescription), - content: TextFormBox( - placeholder: translations.settingsClientArgsPlaceholder, - controller: _gameController.customLaunchArgs, - ) - ), - ], - ); - - SettingTile get _gameServerSettings => SettingTile( - icon: Icon( - FluentIcons.server_24_regular - ), - title: Text(translations.settingsServerName), - subtitle: Text(translations.settingsServerSubtitle), - children: [ - _createFileSetting( - title: translations.settingsServerFileName, - description: translations.settingsServerFileDescription, - controller: _settingsController.gameServerDll - ), - SettingTile( - icon: Icon( - fluentUi.FluentIcons.number_field - ), - title: Text(translations.settingsServerPortName), - subtitle: Text(translations.settingsServerPortDescription), - content: TextFormBox( - placeholder: translations.settingsServerPortName, - controller: _settingsController.gameServerPort, - keyboardType: TextInputType.number, - inputFormatters: [ - FilteringTextInputFormatter.digitsOnly - ] - ) - ), - SettingTile( - icon: Icon( - FluentIcons.globe_24_regular - ), - title: Text(translations.settingsServerMirrorName), - subtitle: Text(translations.settingsServerMirrorDescription), - content: TextFormBox( - placeholder: translations.settingsServerMirrorPlaceholder, - controller: _updateController.url, - validator: checkUpdateUrl - ) - ), - SettingTile( - icon: Icon( - FluentIcons.timer_24_regular - ), - title: Text(translations.settingsServerTimerName), - subtitle: Text(translations.settingsServerTimerSubtitle), - content: Obx(() => DropDownButton( - leading: Text(_updateController.timer.value.text), - items: UpdateTimer.values.map((entry) => MenuFlyoutItem( - text: Text(entry.text), - onPressed: () { - _updateController.timer.value = entry; - removeMessageByPage(6); - _updateController.update(true); - } - )).toList() - )) - ), - SettingTile( - icon: Icon( - FluentIcons.developer_board_24_regular - ), - title: Text(translations.playAutomaticServerName), - subtitle: Text(translations.playAutomaticServerDescription), - contentWidth: null, - content: Obx(() => Row( - children: [ - Text( - _hostingController.automaticServer.value ? translations.on : translations.off - ), - const SizedBox( - width: 16.0 - ), - ToggleSwitch( - checked: _hostingController.automaticServer.value, - onChanged: (value) => _hostingController.automaticServer.value = value - ), - ], - )), - ) - ], - ); - - SettingTile get _launcherSettings => SettingTile( - icon: Icon( - FluentIcons.play_24_regular - ), - title: Text(translations.settingsUtilsName), - subtitle: Text(translations.settingsUtilsSubtitle), - children: [ - SettingTile( - icon: Icon( - FluentIcons.local_language_24_regular - ), - title: Text(translations.settingsUtilsLanguageName), - subtitle: Text(translations.settingsUtilsLanguageDescription), - content: Obx(() => DropDownButton( - leading: Text(_getLocaleName(_settingsController.language.value)), - items: AppLocalizations.supportedLocales.map((locale) => MenuFlyoutItem( - text: Text(_getLocaleName(locale.languageCode)), - onPressed: () => _settingsController.language.value = locale.languageCode - )).toList() - )) - ), - SettingTile( - icon: Icon( - FluentIcons.dark_theme_24_regular - ), - title: Text(translations.settingsUtilsThemeName), - subtitle: Text(translations.settingsUtilsThemeDescription), - content: Obx(() => DropDownButton( - leading: Text(_settingsController.themeMode.value.title), - items: ThemeMode.values.map((themeMode) => MenuFlyoutItem( - text: Text(themeMode.title), - onPressed: () => _settingsController.themeMode.value = themeMode - )).toList() - )) - ), - SettingTile( - icon: Icon( - FluentIcons.arrow_reset_24_regular - ), - title: Text(translations.settingsUtilsResetDefaultsName), - subtitle: Text(translations.settingsUtilsResetDefaultsSubtitle), - content: Button( - onPressed: () => showResetDialog(_settingsController.reset), - child: Text(translations.settingsUtilsResetDefaultsContent), - ) - ) - ], - ); - String _getLocaleName(String locale) { var result = LocaleNames.of(context)!.nameOf(locale); if(result != null) { @@ -243,32 +107,6 @@ class _SettingsPageState extends RebootPageState { return locale; } - - SettingTile _createFileSetting({required String title, required String description, required TextEditingController controller}) => SettingTile( - icon: Icon( - FluentIcons.document_24_regular - ), - title: Text(title), - subtitle: Text(description), - content: FileSelector( - placeholder: translations.selectPathPlaceholder, - windowTitle: translations.selectPathWindowTitle, - controller: controller, - validator: checkDll, - extension: "dll", - folder: false - ) - ); -} - -extension _UpdateTimerExtension on UpdateTimer { - String get text { - if (this == UpdateTimer.never) { - return translations.updateGameServerDllNever; - } - - return translations.updateGameServerDllEvery(name); - } } extension _ThemeModeExtension on ThemeMode { diff --git a/gui/lib/src/page/pages.dart b/gui/lib/src/page/pages.dart index 844a7b9..edcfe6d 100644 --- a/gui/lib/src/page/pages.dart +++ b/gui/lib/src/page/pages.dart @@ -2,15 +2,19 @@ import 'dart:async'; import 'dart:collection'; import 'package:fluent_ui/fluent_ui.dart'; +import 'package:get/get.dart'; import 'package:get/get_rx/src/rx_types/rx_types.dart'; +import 'package:reboot_launcher/src/controller/settings_controller.dart'; import 'package:reboot_launcher/src/page/abstract/page.dart'; -import 'package:reboot_launcher/src/page/implementation/authenticator_page.dart'; +import 'package:reboot_launcher/src/page/abstract/page_type.dart'; +import 'package:reboot_launcher/src/page/implementation/backend_page.dart'; import 'package:reboot_launcher/src/page/implementation/info_page.dart'; import 'package:reboot_launcher/src/page/implementation/matchmaker_page.dart'; import 'package:reboot_launcher/src/page/implementation/play_page.dart'; import 'package:reboot_launcher/src/page/implementation/server_browser_page.dart'; import 'package:reboot_launcher/src/page/implementation/server_host_page.dart'; import 'package:reboot_launcher/src/page/implementation/settings_page.dart'; +import 'package:reboot_launcher/src/widget/info_bar_area.dart'; final StreamController pagesController = StreamController.broadcast(); bool hitBack = false; @@ -19,18 +23,24 @@ final List pages = [ const PlayPage(), const HostPage(), const BrowsePage(), - const AuthenticatorPage(), + const BackendPage(), const MatchmakerPage(), const InfoPage(), const SettingsPage() ]; -final RxInt pageIndex = RxInt(0); +final RxInt pageIndex = _initialPageIndex; +RxInt get _initialPageIndex { + final settingsController = Get.find(); + return RxInt(settingsController.firstRun.value ? RebootPageType.info.index : RebootPageType.play.index); +} final HashMap _pageKeys = HashMap(); final GlobalKey appKey = GlobalKey(); +final GlobalKey infoBarAreaKey = GlobalKey(); + GlobalKey get pageKey => getPageKeyByIndex(pageIndex.value); GlobalKey getPageKeyByIndex(int index) { @@ -72,4 +82,4 @@ void addSubPageToStack(String pageName) { appStack.add(identifier); _pagesStack[index]!.add(identifier); pagesController.add(null); -} +} \ No newline at end of file diff --git a/gui/lib/src/util/daemon.dart b/gui/lib/src/util/daemon.dart deleted file mode 100644 index fcdd082..0000000 --- a/gui/lib/src/util/daemon.dart +++ /dev/null @@ -1,57 +0,0 @@ -import 'dart:io'; - -import 'package:get/get.dart'; -import 'package:reboot_common/common.dart'; -import 'package:reboot_launcher/src/controller/game_controller.dart'; -import 'package:reboot_launcher/src/controller/hosting_controller.dart'; -import 'package:supabase_flutter/supabase_flutter.dart'; - -final File _executable = File("${assetsDirectory.path}\\misc\\watch.exe"); - -extension GameInstanceWatcher on GameInstance { - Future startObserver() async { - if(observerPid != null) { - Process.killPid(observerPid!, ProcessSignal.sigabrt); - } - - final hostingController = Get.find(); - final gameController = Get.find(); - watchProcess(gamePid).then((value) async { - gameController.started.value = false; - gameController.instance.value?.kill(); - if(_nestedHosting) { - hostingController.started.value = false; - hostingController.instance.value?.kill(); - await Supabase.instance.client.from("hosting") - .delete() - .match({'id': hostingController.uuid}); - } - }); - - final process = await startProcess( - executable: _executable, - args: [ - hostingController.uuid, - gamePid.toString(), - launcherPid?.toString() ?? "-1", - eacPid?.toString() ?? "-1", - hosting.toString() - ], - - ); - observerPid = process.pid; - } - - bool get _nestedHosting { - GameInstance? child = this; - while(child != null) { - if(child.hosting) { - return true; - } - - child = child.child; - } - - return false; - } -} \ No newline at end of file diff --git a/gui/lib/src/util/dll.dart b/gui/lib/src/util/dll.dart index 5de0986..918a411 100644 --- a/gui/lib/src/util/dll.dart +++ b/gui/lib/src/util/dll.dart @@ -9,33 +9,49 @@ import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; import 'package:reboot_launcher/src/util/translations.dart'; final UpdateController _updateController = Get.find(); -Future downloadCriticalDllInteractive(String filePath) async { +final Map> _operations = {}; + +Future downloadCriticalDllInteractive(String filePath) { + final old = _operations[filePath]; + if(old != null) { + return old; + } + + final newRun = _downloadCriticalDllInteractive(filePath); + _operations[filePath] = newRun; + return newRun; +} + +Future _downloadCriticalDllInteractive(String filePath) async { + final fileName = path.basename(filePath).toLowerCase(); + InfoBarEntry? entry; try { - final fileName = path.basename(filePath).toLowerCase(); if (fileName == "reboot.dll") { - _updateController.update(true); + await _updateController.update(true); return; } final fileNameWithoutExtension = path.basenameWithoutExtension(filePath); - await showInfoBar( + entry = showInfoBar( translations.downloadingDll(fileNameWithoutExtension), loading: true, duration: null ); await downloadCriticalDll(fileName, filePath); - await showInfoBar( + entry.close(); + entry = await showInfoBar( translations.downloadDllSuccess(fileNameWithoutExtension), severity: InfoBarSeverity.success, duration: infoBarShortDuration ); }catch(message) { + entry?.close(); var error = message.toString(); error = error.contains(": ") ? error.substring(error.indexOf(": ") + 2) : error; error = error.toLowerCase(); final completer = Completer(); await showInfoBar( - translations.downloadDllError(error.toString()), + translations.downloadDllError(fileName, error.toString()), duration: infoBarLongDuration, severity: InfoBarSeverity.error, onDismissed: () => completer.complete(null), @@ -48,5 +64,7 @@ Future downloadCriticalDllInteractive(String filePath) async { ) ); await completer.future; + }finally { + _operations.remove(fileName); } -} \ No newline at end of file +} diff --git a/gui/lib/src/util/keyboard.dart b/gui/lib/src/util/keyboard.dart new file mode 100644 index 0000000..ab2c273 --- /dev/null +++ b/gui/lib/src/util/keyboard.dart @@ -0,0 +1,202 @@ +import 'package:flutter/services.dart'; + +extension UnrealEngineKeyboard on PhysicalKeyboardKey { + static const Map _keyboardKeyNames = { + 0x0007003a: 'F1', + 0x0007003b: 'F2', + 0x0007003c: 'F3', + 0x0007003d: 'F4', + 0x0007003e: 'F5', + 0x0007003f: 'F6', + 0x00070040: 'F7', + 0x00070041: 'F8', + 0x00070042: 'F9', + 0x00070043: 'F10', + 0x00070044: 'F11', + 0x00070045: 'F12', + + 0x00070004: 'A', + 0x00070005: 'B', + 0x00070006: 'C', + 0x00070007: 'D', + 0x00070008: 'E', + 0x00070009: 'F', + 0x0007000a: 'G', + 0x0007000b: 'H', + 0x0007000c: 'I', + 0x0007000d: 'J', + 0x0007000e: 'K', + 0x0007000f: 'L', + 0x00070010: 'M', + 0x00070011: 'N', + 0x00070012: 'O', + 0x00070013: 'P', + 0x00070014: 'Q', + 0x00070015: 'R', + 0x00070016: 'S', + 0x00070017: 'T', + 0x00070018: 'U', + 0x00070019: 'V', + 0x0007001a: 'W', + 0x0007001b: 'X', + 0x0007001c: 'Y', + 0x0007001d: 'Z', + + 0x0007001e: 'one', + 0x0007001f: 'two', + 0x00070020: 'three', + 0x00070021: 'four', + 0x00070022: 'five', + 0x00070023: 'six', + 0x00070024: 'seven', + 0x00070025: 'eight', + 0x00070026: 'nine', + 0x00070027: 'zero', + + 0x00070028: 'Enter', + 0x00070029: 'Escape', + 0x0007002a: 'Backspace', + 0x0007002b: 'Tab', + 0x0007002c: 'SpaceBar', + 0x0007002d: 'Minus', + 0x0007002e: 'Equals', + 0x0007002f: 'LeftBracket', + 0x00070030: 'RightBracket', + 0x00070031: 'Backslash', + 0x00070033: 'Semicolon', + 0x00070034: 'Quote', + 0x00070036: 'Comma', + 0x00070037: 'Period', + 0x00070038: 'Slash', + 0x00070039: 'CapsLock', + 0x00070047: 'ScrollLock', + 0x00070048: 'Pause', + 0x00070049: 'Insert', + 0x0007004a: 'Home', + 0x0007004b: 'PageUp', + 0x0007004c: 'Delete', + 0x0007004d: 'End', + 0x0007004e: 'PageDown', + 0x00070053: 'NumLock', + 0x00070054: 'Divide', + 0x00070055: 'Multiply', + 0x00070056: 'Subtract', + 0x00070057: 'Add', + 0x00070058: 'Enter', + 0x00070059: 'NumPadOne', + 0x0007005a: 'NumPadTwo', + 0x0007005b: 'NumPadThree', + 0x0007005c: 'NumPadFour', + 0x0007005d: 'NumPadFive', + 0x0007005e: 'NumPadSix', + 0x0007005f: 'NumPadSeven', + 0x00070060: 'NumPadEight', + 0x00070061: 'NumPadNine', + 0x00070062: 'NumPadZero', + 0x00070063: 'Decimal', + 0x00070064: 'Backslash' + }; + + static const Map _keyboardKeyPrettyNames = { + 0x0007003a: 'F1', + 0x0007003b: 'F2', + 0x0007003c: 'F3', + 0x0007003d: 'F4', + 0x0007003e: 'F5', + 0x0007003f: 'F6', + 0x00070040: 'F7', + 0x00070041: 'F8', + 0x00070042: 'F9', + 0x00070043: 'F10', + 0x00070044: 'F11', + 0x00070045: 'F12', + + 0x00070004: 'A', + 0x00070005: 'B', + 0x00070006: 'C', + 0x00070007: 'D', + 0x00070008: 'E', + 0x00070009: 'F', + 0x0007000a: 'G', + 0x0007000b: 'H', + 0x0007000c: 'I', + 0x0007000d: 'J', + 0x0007000e: 'K', + 0x0007000f: 'L', + 0x00070010: 'M', + 0x00070011: 'N', + 0x00070012: 'O', + 0x00070013: 'P', + 0x00070014: 'Q', + 0x00070015: 'R', + 0x00070016: 'S', + 0x00070017: 'T', + 0x00070018: 'U', + 0x00070019: 'V', + 0x0007001a: 'W', + 0x0007001b: 'X', + 0x0007001c: 'Y', + 0x0007001d: 'Z', + + 0x0007001e: '1', + 0x0007001f: '2', + 0x00070020: '3', + 0x00070021: '4', + 0x00070022: '5', + 0x00070023: '6', + 0x00070024: '7', + 0x00070025: '8', + 0x00070026: '9', + 0x00070027: '10', + + 0x00070028: 'ENTER', + 0x00070029: 'ESCAPE', + 0x0007002a: 'BACKSPACE', + 0x0007002b: 'TAB', + 0x0007002c: 'SPACEBAR', + 0x0007002d: 'MINUS', + 0x0007002e: 'EQUALS', + 0x0007002f: 'LEFTBRACKET', + 0x00070030: 'RIGHTBRACKET', + 0x00070031: 'BACKSLASH', + 0x00070033: 'SEMICOLON', + 0x00070034: 'QUOTE', + 0x00070036: 'COMMA', + 0x00070037: 'PERIOD', + 0x00070038: 'SLASH', + 0x00070039: 'CAPSLOCK', + 0x00070047: 'SCROLLLOCK', + 0x00070048: 'PAUSE', + 0x00070049: 'INSERT', + 0x0007004a: 'HOME', + 0x0007004b: 'PAGEUP', + 0x0007004c: 'DELETE', + 0x0007004d: 'END', + 0x0007004e: 'PAGEDOWN', + 0x00070053: 'NUMLOCK', + 0x00070054: 'DIVIDE', + 0x00070055: 'MULTIPLY', + 0x00070056: 'SUBTRACT', + 0x00070057: 'ADD', + 0x00070058: 'ENTER', + 0x00070059: '1', + 0x0007005a: '2', + 0x0007005b: '3', + 0x0007005c: '4', + 0x0007005d: '5', + 0x0007005e: '6', + 0x0007005f: '7', + 0x00070060: '8', + 0x00070061: '9', + 0x00070062: '0', + 0x00070063: 'DECIMAL', + 0x00070064: 'BACKSLASH' + }; + + + String? get unrealEngineName => _keyboardKeyNames[this.usbHidUsage]; + + bool get isUnrealEngineKey => _keyboardKeyNames[this.usbHidUsage] != null; + + String? get unrealEnginePrettyName => _keyboardKeyPrettyNames[this.usbHidUsage]; +} diff --git a/gui/lib/src/util/log.dart b/gui/lib/src/util/log.dart new file mode 100644 index 0000000..2f7a3be --- /dev/null +++ b/gui/lib/src/util/log.dart @@ -0,0 +1,23 @@ +import 'dart:io'; + +import 'package:reboot_common/common.dart'; +import 'package:sync/semaphore.dart'; + +final File _loggingFile = _createLoggingFile(); +final Semaphore _semaphore = Semaphore(1); + +File _createLoggingFile() { + final file = File("${logsDirectory.path}\\launcher.log"); + file.parent.createSync(recursive: true); + if(file.existsSync()) { + file.deleteSync(); + } + file.createSync(); + return file; +} + +void log(String message) async { + await _semaphore.acquire(); + await _loggingFile.writeAsString("$message\n", mode: FileMode.append, flush: true); + _semaphore.release(); +} \ No newline at end of file diff --git a/gui/lib/src/util/matchmaker.dart b/gui/lib/src/util/matchmaker.dart index ef153ad..68353ca 100644 --- a/gui/lib/src/util/matchmaker.dart +++ b/gui/lib/src/util/matchmaker.dart @@ -6,22 +6,26 @@ import 'package:reboot_common/common.dart'; const Duration _timeout = Duration(seconds: 2); Future _pingGameServer(String hostname, int port) async { - var socket = await RawDatagramSocket.bind(InternetAddress.anyIPv4, 0); - var dataToSend = utf8.encode(DateTime.now().toIso8601String()); - socket.send(dataToSend, InternetAddress(hostname), port); - await for (var event in socket) { - switch(event) { - case RawSocketEvent.read: - return true; - case RawSocketEvent.readClosed: - case RawSocketEvent.closed: - return false; - case RawSocketEvent.write: - break; + RawDatagramSocket? socket; + try { + socket = await RawDatagramSocket.bind(InternetAddress.anyIPv4, 0); + final dataToSend = utf8.encode(DateTime.now().toIso8601String()); + socket.send(dataToSend, InternetAddress(hostname), port); + await for (var event in socket) { + switch(event) { + case RawSocketEvent.read: + case RawSocketEvent.write: + return true; + case RawSocketEvent.readClosed: + case RawSocketEvent.closed: + return false; + } } - } - return false; + return false; + }finally { + socket?.close(); + } } Future get _timeoutFuture => Future.delayed(_timeout).then((value) => false); diff --git a/gui/lib/src/util/os.dart b/gui/lib/src/util/os.dart index 00c0315..c5eebc8 100644 --- a/gui/lib/src/util/os.dart +++ b/gui/lib/src/util/os.dart @@ -2,18 +2,399 @@ import 'dart:io'; import 'package:fluent_ui/fluent_ui.dart'; import 'package:flutter/scheduler.dart'; +import 'dart:collection'; +import 'dart:ffi'; +import 'package:ffi/ffi.dart'; +import 'package:win32/win32.dart'; final RegExp _winBuildRegex = RegExp(r'(?<=\(Build )(.*)(?=\))'); -bool get isWin11 { - var result = _winBuildRegex.firstMatch(Platform.operatingSystemVersion)?.group(1); - if(result == null){ - return false; +int? get windowsBuild { + final result = _winBuildRegex.firstMatch(Platform.operatingSystemVersion)?.group(1); + if (result == null) { + return null; } - var intBuild = int.tryParse(result); + return int.tryParse(result); +} + +bool get isWin11 { + final intBuild = windowsBuild; return intBuild != null && intBuild > 22000; } -bool get isDarkMode - => SchedulerBinding.instance.platformDispatcher.platformBrightness.isDark; \ No newline at end of file +bool get isDarkMode => + SchedulerBinding.instance.platformDispatcher.platformBrightness.isDark; + +class _ServiceProvider10 extends IUnknown { + static const String _CLSID = "{C2F03A33-21F5-47FA-B4BB-156362A2F239}"; + static const String _IID = "{6D5140C1-7436-11CE-8034-00AA006009FA}"; + + _ServiceProvider10._internal(Pointer ptr) : super(ptr); + + factory _ServiceProvider10.createInstance() => + _ServiceProvider10._internal(COMObject.createFromID(_CLSID, _IID)); + + Pointer queryService(String classId, String instanceId) { + final result = calloc(); + final code = (ptr.ref.vtable + 3) + .cast< + Pointer< + NativeFunction< + HRESULT Function(Pointer, Pointer, Pointer, + Pointer)>>>() + .value + .asFunction< + int Function(Pointer, Pointer, Pointer, + Pointer)>()(ptr.ref.lpVtbl, + GUIDFromString(classId), GUIDFromString(instanceId), result); + if (code != 0) { + free(result); + throw WindowsException(code); + } + + return result; + } +} + +class IVirtualDesktop extends IUnknown { + static const String _CLSID = "{3F07F4BE-B107-441A-AF0F-39D82529072C}"; + + IVirtualDesktop._internal(super.ptr); + + String getName() { + final result = calloc(); + final code = (ptr.ref.vtable + 5) + .cast< + Pointer< + NativeFunction)>>>() + .value + .asFunction< + int Function(Pointer, Pointer)>()(ptr.ref.lpVtbl, result); + if (code != 0) { + free(result); + throw WindowsException(code); + } + + return convertFromHString(result.value); + } +} + +class IApplicationView extends IUnknown { + // static const String _CLSID = "{372E1D3B-38D3-42E4-A15B-8AB2B178F513}"; + + IApplicationView._internal(super.ptr); +} + +class _IObjectArray extends IUnknown { + _IObjectArray(super.ptr); + + int getCount() { + final result = calloc(); + final code = (ptr.ref.vtable + 3) + .cast< + Pointer< + NativeFunction)>>>() + .value + .asFunction< + int Function(Pointer, Pointer)>()(ptr.ref.lpVtbl, result); + if (code != 0) { + free(result); + throw WindowsException(code); + } + + return result.value; + } + + Pointer getAt(int index, String guid) { + final result = calloc(); + final code = (ptr.ref.vtable + 4) + .cast< + Pointer< + NativeFunction< + HRESULT Function(Pointer, Int32 index, Pointer, + Pointer)>>>() + .value + .asFunction< + int Function( + Pointer, int index, Pointer, Pointer)>()( + ptr.ref.lpVtbl, index, GUIDFromString(guid), result); + if (code != 0) { + free(result); + throw WindowsException(code); + } + + return result; + } +} + +typedef _IObjectMapper = T Function(Pointer); + +class _IObjectArrayList extends ListBase { + final _IObjectArray _array; + final String _guid; + final _IObjectMapper _mapper; + + _IObjectArrayList( + {required _IObjectArray array, + required String guid, + required _IObjectMapper mapper}) + : _array = array, + _guid = guid, + _mapper = mapper; + + @override + int get length => _array.getCount(); + + @override + set length(int newLength) { + throw UnsupportedError("Immutable list"); + } + + @override + T operator [](int index) => _mapper(_array.getAt(index, _guid)); + + @override + void operator []=(int index, T value) { + throw UnsupportedError("Immutable list"); + } +} + +class _IVirtualDesktopManagerInternal extends IUnknown { + static const String _CLSID = "{C5E0CDCA-7B6E-41B2-9FC4-D93975CC467B}"; + static const String _IID_WIN10 = "{F31574D6-B682-4CDC-BD56-1827860ABEC6}"; + static const String _IID_WIN_21H2 = "{B2F925B9-5A0F-4D2E-9F4D-2B1507593C10}"; + static const String _IID_WIN_23H2 = "{A3175F2D-239C-4BD2-8AA0-EEBA8B0B138E}"; + static const String _IID_WIN_23H2_3085 = "{53F5CA0B-158F-4124-900C-057158060B27}"; + + _IVirtualDesktopManagerInternal._internal(super.ptr); + + int getDesktopsCount() { + final result = calloc(); + final code = (ptr.ref.vtable + 3) + .cast< + Pointer< + NativeFunction)>>>() + .value + .asFunction< + int Function(Pointer, Pointer)>()(ptr.ref.lpVtbl, result); + if (code != 0) { + free(result); + throw WindowsException(code); + } + + return result.value; + } + + List getDesktops() { + final result = calloc(); + final code = (ptr.ref.vtable + 7) + .cast< + Pointer< + NativeFunction< + HRESULT Function(Pointer, Pointer)>>>() + .value + .asFunction)>()( + ptr.ref.lpVtbl, result); + if (code != 0) { + free(result); + throw WindowsException(code); + } + + final array = _IObjectArray(result); + return _IObjectArrayList( + array: array, + guid: IVirtualDesktop._CLSID, + mapper: (comObject) => IVirtualDesktop._internal(comObject)); + } + + void moveWindowToDesktop(IApplicationView view, IVirtualDesktop desktop) { + final code = (ptr.ref.vtable + 4) + .cast< + Pointer< + NativeFunction< + Int32 Function(Pointer, COMObject, COMObject)>>>() + .value + .asFunction()( + ptr.ref.lpVtbl, view.ptr.ref, desktop.ptr.ref); + if (code != 0) { + throw WindowsException(code); + } + } + + IVirtualDesktop createDesktop() { + final result = calloc(); + final code = (ptr.ref.vtable + 10) + .cast< + Pointer< + NativeFunction< + HRESULT Function(Pointer, Pointer)>>>() + .value + .asFunction)>()( + ptr.ref.lpVtbl, result); + if (code != 0) { + free(result); + throw WindowsException(code); + } + + return IVirtualDesktop._internal(result); + } + + void removeDesktop(IVirtualDesktop desktop, IVirtualDesktop fallback) { + final code = (ptr.ref.vtable + 12) + .cast< + Pointer< + NativeFunction< + HRESULT Function(Pointer, COMObject, COMObject)>>>() + .value + .asFunction()( + ptr.ref.lpVtbl, desktop.ptr.ref, fallback.ptr.ref); + if (code != 0) { + throw WindowsException(code); + } + } + + void setDesktopName(IVirtualDesktop desktop, String newName) { + final code = + (ptr.ref.vtable + 15) + .cast< + Pointer< + NativeFunction< + HRESULT Function(Pointer, COMObject, Int8)>>>() + .value + .asFunction()( + ptr.ref.lpVtbl, desktop.ptr.ref, convertToHString(newName)); + if (code != 0) { + throw WindowsException(code); + } + } +} + +class _IApplicationViewCollection extends IUnknown { + static const String _CLSID = "{1841C6D7-4F9D-42C0-AF41-8747538F10E5}"; + static const String _IID = "{1841C6D7-4F9D-42C0-AF41-8747538F10E5}"; + + _IApplicationViewCollection._internal(super.ptr); + + IApplicationView getViewForHWnd(int HWnd) { + final result = calloc(); + final code = + (ptr.ref.vtable + 6) + .cast< + Pointer< + NativeFunction< + HRESULT Function( + Pointer, IntPtr, Pointer)>>>() + .value + .asFunction)>()( + ptr.ref.lpVtbl, HWnd, result); + if (code != 0) { + free(result); + throw WindowsException(code); + } + + return IApplicationView._internal(result); + } +} + +final class _Process extends Struct { + @Uint32() + external int pid; + + @Uint32() + external int HWnd; + + static int _filter(int HWnd, int lParam) { + final structure = Pointer.fromAddress(lParam).cast<_Process>(); + final pidPointer = calloc(); + GetWindowThreadProcessId(HWnd, pidPointer); + final pid = pidPointer.value; + free(pidPointer); + if (pid != structure.ref.pid) { + return TRUE; + } + + structure.ref.HWnd = HWnd; + return FALSE; + } + + static int getHWndFromPid(int pid) { + final result = calloc<_Process>(); + result.ref.pid = pid; + EnumWindows( + Pointer.fromFunction(_filter, TRUE), result.address); + final HWnd = result.ref.HWnd; + calloc.free(result); + return HWnd; + } +} + +class VirtualDesktopManager { + static VirtualDesktopManager? _instance; + + final _IVirtualDesktopManagerInternal windowManager; + final _IApplicationViewCollection applicationViewCollection; + + VirtualDesktopManager._internal(this.windowManager, this.applicationViewCollection); + + factory VirtualDesktopManager.getInstance() { + if (_instance != null) { + return _instance!; + } + + final hr = CoInitializeEx( + nullptr, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE); + if (FAILED(hr)) { + throw WindowsException(hr); + } + + final shell = _ServiceProvider10.createInstance(); + final windowManager = _createWindowManager(shell); + final applicationViewCollection = _IApplicationViewCollection._internal( + shell.queryService(_IApplicationViewCollection._CLSID, + _IApplicationViewCollection._IID)); + return _instance = + VirtualDesktopManager._internal(windowManager, applicationViewCollection); + } + + static _IVirtualDesktopManagerInternal _createWindowManager(_ServiceProvider10 shell) { + final build = windowsBuild; + if(build == null || build < 19044) { + return _IVirtualDesktopManagerInternal._internal( + shell.queryService(_IVirtualDesktopManagerInternal._CLSID, + _IVirtualDesktopManagerInternal._IID_WIN10)); + }else if(build >= 19044 && build < 22631) { + return _IVirtualDesktopManagerInternal._internal( + shell.queryService(_IVirtualDesktopManagerInternal._CLSID, + _IVirtualDesktopManagerInternal._IID_WIN_21H2)); + }else if(build >= 22631 && build < 22631) { + return _IVirtualDesktopManagerInternal._internal( + shell.queryService(_IVirtualDesktopManagerInternal._CLSID, + _IVirtualDesktopManagerInternal._IID_WIN_23H2)); + }else { + return _IVirtualDesktopManagerInternal._internal( + shell.queryService(_IVirtualDesktopManagerInternal._CLSID, + _IVirtualDesktopManagerInternal._IID_WIN_23H2_3085)); + } + } + + int getDesktopsCount() => windowManager.getDesktopsCount(); + + List getDesktops() => windowManager.getDesktops(); + + void moveWindowToDesktop(int pid, IVirtualDesktop desktop) { + final HWnd = _Process.getHWndFromPid(pid); + final window = applicationViewCollection.getViewForHWnd(HWnd); + windowManager.moveWindowToDesktop(window, desktop); + } + + IVirtualDesktop createDesktop() => windowManager.createDesktop(); + + void removeDesktop(IVirtualDesktop desktop, [IVirtualDesktop? fallback]) { + fallback ??= getDesktops().first; + return windowManager.removeDesktop(desktop, fallback); + } + + void setDesktopName(IVirtualDesktop desktop, String newName) => + windowManager.setDesktopName(desktop, newName); +} diff --git a/gui/lib/src/util/tutorial.dart b/gui/lib/src/util/tutorial.dart deleted file mode 100644 index 5e3126a..0000000 --- a/gui/lib/src/util/tutorial.dart +++ /dev/null @@ -1,12 +0,0 @@ -import 'package:reboot_launcher/src/util/translations.dart'; -import 'package:url_launcher/url_launcher.dart'; - -Future openYoutubeTutorial() => launchUrl(Uri.parse("https://www.youtube.com/watch?v=nrVE2RB0qa4")); - -Future openDiscordServer() => launchUrl(Uri.parse("https://discord.gg/reboot")); - -Future openTutorials() => launchUrl(Uri.parse("https://github.com/Auties00/reboot_launcher/blob/master/documentation/$currentLocale")); - -Future openPortTutorial() => launchUrl(Uri.parse("https://github.com/Auties00/reboot_launcher/blob/master/documentation/$currentLocale/PortForwarding.md")); - -Future openBugReport() => launchUrl(Uri.parse("https://github.com/Auties00/reboot_launcher/issues")); \ No newline at end of file diff --git a/gui/lib/src/widget/file_setting_tile.dart b/gui/lib/src/widget/file_setting_tile.dart new file mode 100644 index 0000000..65efc04 --- /dev/null +++ b/gui/lib/src/widget/file_setting_tile.dart @@ -0,0 +1,22 @@ +import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; +import 'package:fluentui_system_icons/fluentui_system_icons.dart'; +import 'package:reboot_launcher/src/util/checks.dart'; +import 'package:reboot_launcher/src/util/translations.dart'; +import 'package:reboot_launcher/src/widget/file_selector.dart'; +import 'package:reboot_launcher/src/widget/setting_tile.dart'; + +SettingTile createFileSetting({required String title, required String description, required TextEditingController controller}) => SettingTile( + icon: Icon( + FluentIcons.document_24_regular + ), + title: Text(title), + subtitle: Text(description), + content: FileSelector( + placeholder: translations.selectPathPlaceholder, + windowTitle: translations.selectPathWindowTitle, + controller: controller, + validator: checkDll, + extension: "dll", + folder: false + ) +); \ No newline at end of file diff --git a/gui/lib/src/widget/game_start_button.dart b/gui/lib/src/widget/game_start_button.dart index 78b4365..d011f10 100644 --- a/gui/lib/src/widget/game_start_button.dart +++ b/gui/lib/src/widget/game_start_button.dart @@ -4,25 +4,26 @@ import 'dart:io'; import 'package:async/async.dart'; import 'package:dart_ipify/dart_ipify.dart'; import 'package:fluent_ui/fluent_ui.dart'; -import 'package:flutter/foundation.dart'; import 'package:get/get.dart'; -import 'package:process_run/shell.dart'; +import 'package:path/path.dart'; import 'package:reboot_common/common.dart'; -import 'package:reboot_launcher/src/controller/authenticator_controller.dart'; +import 'package:reboot_launcher/src/controller/backend_controller.dart'; import 'package:reboot_launcher/src/controller/game_controller.dart'; import 'package:reboot_launcher/src/controller/hosting_controller.dart'; import 'package:reboot_launcher/src/controller/matchmaker_controller.dart'; import 'package:reboot_launcher/src/controller/settings_controller.dart'; -import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart' as messenger; +import 'package:reboot_launcher/src/dialog/abstract/dialog.dart'; +import 'package:reboot_launcher/src/dialog/abstract/dialog_button.dart'; import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; import 'package:reboot_launcher/src/dialog/implementation/server.dart'; import 'package:reboot_launcher/src/page/abstract/page_type.dart'; import 'package:reboot_launcher/src/page/pages.dart'; -import 'package:reboot_launcher/src/util/daemon.dart'; import 'package:reboot_launcher/src/util/dll.dart'; +import 'package:reboot_launcher/src/util/log.dart'; import 'package:reboot_launcher/src/util/matchmaker.dart'; +import 'package:reboot_launcher/src/util/os.dart'; import 'package:reboot_launcher/src/util/translations.dart'; -import 'package:reboot_launcher/src/util/tutorial.dart'; +import 'package:url_launcher/url_launcher.dart'; class LaunchButton extends StatefulWidget { final bool host; @@ -38,10 +39,13 @@ class LaunchButton extends StatefulWidget { class _LaunchButtonState extends State { final GameController _gameController = Get.find(); final HostingController _hostingController = Get.find(); - final AuthenticatorController _authenticatorController = Get.find(); + final BackendController _backendController = Get.find(); final MatchmakerController _matchmakerController = Get.find(); final SettingsController _settingsController = Get.find(); + InfoBarEntry? _gameClientInfoBar; + InfoBarEntry? _gameServerInfoBar; CancelableOperation? _operation; + IVirtualDesktop? _virtualDesktop; @override Widget build(BuildContext context) => Align( @@ -51,7 +55,7 @@ class _LaunchButtonState extends State { child: Obx(() => SizedBox( height: 48, child: Button( - onPressed: () => _operation = CancelableOperation.fromFuture(_start()), + onPressed: () => _operation = CancelableOperation.fromFuture(_toggle()), child: Align( alignment: Alignment.center, child: Text(_hasStarted ? _stopMessage : _startMessage) @@ -69,8 +73,10 @@ class _LaunchButtonState extends State { String get _stopMessage => widget.stopLabel ?? (widget.host ? translations.stopHosting : translations.stopGame); - Future _start() async { + Future _toggle({bool forceGUI = false}) async { + log("[${widget.host ? 'HOST' : 'GAME'}] Toggling state(forceGUI: $forceGUI)"); if (_hasStarted) { + log("[${widget.host ? 'HOST' : 'GAME'}] User asked to close the current instance"); _onStop( reason: _StopReason.normal ); @@ -78,17 +84,24 @@ class _LaunchButtonState extends State { } if(_operation != null) { + log("[${widget.host ? 'HOST' : 'GAME'}] Already started, ignoring user action"); return; } - if(_gameController.selectedVersion == null){ + final version = _gameController.selectedVersion; + log("[${widget.host ? 'HOST' : 'GAME'}] Version data: $version"); + if(version == null){ + log("[${widget.host ? 'HOST' : 'GAME'}] No version selected"); _onStop( reason: _StopReason.missingVersionError ); return; } + log("[${widget.host ? 'HOST' : 'GAME'}] Setting started..."); _setStarted(widget.host, true); + log("[${widget.host ? 'HOST' : 'GAME'}] Set started"); + log("[${widget.host ? 'HOST' : 'GAME'}] Checking dlls: ${_Injectable.values}"); for (final injectable in _Injectable.values) { if(await _getDllFileOrStop(injectable, widget.host) == null) { return; @@ -96,9 +109,9 @@ class _LaunchButtonState extends State { } try { - final version = _gameController.selectedVersion!; - final executable = await version.executable; + final executable = version.gameExecutable; if(executable == null){ + log("[${widget.host ? 'HOST' : 'GAME'}] No executable found"); _onStop( reason: _StopReason.missingExecutableError, error: version.location.path @@ -106,24 +119,38 @@ class _LaunchButtonState extends State { return; } - final authenticatorResult = _authenticatorController.started() || await _authenticatorController.toggleInteractive(false); - if(!authenticatorResult){ + log("[${widget.host ? 'HOST' : 'GAME'}] Checking backend(port: ${_backendController.type.value.name}, type: ${_backendController.type.value.name})..."); + final backendResult = _backendController.started() || await _backendController.toggleInteractive(); + if(!backendResult){ + log("[${widget.host ? 'HOST' : 'GAME'}] Cannot start backend"); _onStop( - reason: _StopReason.authenticatorError + reason: _StopReason.backendError ); return; } + log("[${widget.host ? 'HOST' : 'GAME'}] Backend works"); - final matchmakerResult = _matchmakerController.started() || await _matchmakerController.toggleInteractive(false); + log("[${widget.host ? 'HOST' : 'GAME'}] Checking matchmaker(port: ${_matchmakerController.type.value.name}, type: ${_matchmakerController.type.value.name})..."); + final matchmakerResult = _matchmakerController.started() || await _matchmakerController.toggleInteractive(); if(!matchmakerResult){ + log("[${widget.host ? 'HOST' : 'GAME'}] Cannot start matchmaker"); _onStop( reason: _StopReason.matchmakerError ); return; } + log("[${widget.host ? 'HOST' : 'GAME'}] Matchmaker works"); + + final headless = !forceGUI && _hostingController.headless.value; + final virtualDesktop = _hostingController.virtualDesktop.value; + log("[${widget.host ? 'HOST' : 'GAME'}] Implicit game server metadata: headless($headless)"); + final linkedHostingInstance = await _startMatchMakingServer(version, headless, virtualDesktop, false); + log("[${widget.host ? 'HOST' : 'GAME'}] Implicit game server result: $linkedHostingInstance"); + await _startGameProcesses(version, widget.host, headless, virtualDesktop, linkedHostingInstance); + if(!widget.host) { + _showLaunchingGameClientWidget(); + } - final linkedHostingInstance = await _startMatchMakingServer(version); - await _startGameProcesses(version, widget.host, linkedHostingInstance); if(linkedHostingInstance != null || widget.host){ _showLaunchingGameServerWidget(); } @@ -136,40 +163,79 @@ class _LaunchButtonState extends State { } } - Future _startMatchMakingServer(FortniteVersion version) async { + Future _startMatchMakingServer(FortniteVersion version, bool headless, bool virtualDesktop, bool forceLinkedHosting) async { + log("[${widget.host ? 'HOST' : 'GAME'}] Checking if a server needs to be started automatically..."); if(widget.host){ + log("[${widget.host ? 'HOST' : 'GAME'}] The user clicked on Start hosting, so it's not necessary"); return null; } final matchmakingIp = _matchmakerController.gameServerAddress.text; if(!isLocalHost(matchmakingIp)) { + log("[${widget.host ? 'HOST' : 'GAME'}] The current IP($matchmakingIp) is not set to localhost"); return null; } if(_hostingController.started()){ + log("[${widget.host ? 'HOST' : 'GAME'}] The user has already manually started the hosting server"); return null; } - if(!_hostingController.automaticServer()) { + final response = forceLinkedHosting || await _askForAutomaticGameServer(); + if(!response) { + log("[${widget.host ? 'HOST' : 'GAME'}] The user disabled the automatic server"); return null; } - final instance = await _startGameProcesses(version, true, null); + log("[${widget.host ? 'HOST' : 'GAME'}] Starting implicit game server..."); + final instance = await _startGameProcesses(version, true, headless, virtualDesktop, null); + log("[${widget.host ? 'HOST' : 'GAME'}] Started implicit game server..."); _setStarted(true, true); + log("[${widget.host ? 'HOST' : 'GAME'}] Set implicit game server as started"); return instance; } - Future _startGameProcesses(FortniteVersion version, bool host, GameInstance? linkedHosting) async { - final launcherProcess = await _createPausedProcess(version.launcherExecutable); - print("Created launcher process"); - final eacProcess = await _createPausedProcess(version.eacExecutable); - print("Created eac process"); - final executable = await version.executable; - final gameProcess = await _createGameProcess(executable!, host); + Future _askForAutomaticGameServer() async { + final result = await showAppDialog( + builder: (context) => InfoDialog( + text: "The launcher detected that you are not running a game server, but that your matchmaker is set to your local machine. " + "If you don't want to join another player's server, you should start a game server. This is necessary to be able to play: for more information check the Info tab in the launcher.", + buttons: [ + DialogButton( + type: ButtonType.secondary, + text: "Ignore" + ), + DialogButton( + type: ButtonType.primary, + text: "Start server", + onTap: () => Navigator.of(context).pop(true), + ), + ], + ) + ) ?? false; + await Future.delayed(const Duration(seconds: 1)); + return result; + } + + Future _startGameProcesses(FortniteVersion version, bool host, bool headless, bool virtualDesktop, GameInstance? linkedHosting) async { + log("[${host ? 'HOST' : 'GAME'}] Starting game process..."); + log("[${host ? 'HOST' : 'GAME'}] Starting paused launcher..."); + final launcherProcess = await _createPausedProcess(version, version.launcherExecutable); + + log("[${host ? 'HOST' : 'GAME'}] Started paused launcher: $launcherProcess"); + log("[${host ? 'HOST' : 'GAME'}] Starting paused eac..."); + final eacProcess = await _createPausedProcess(version, version.eacExecutable); + + log("[${host ? 'HOST' : 'GAME'}] Started paused eac: $eacProcess"); + final executable = host && headless ? await version.headlessGameExecutable : version.gameExecutable; + log("[${host ? 'HOST' : 'GAME'}] Using game path: ${executable?.path}"); + final gameProcess = await _createGameProcess(version, executable!, host, headless, virtualDesktop, linkedHosting); if(gameProcess == null) { + log("[${host ? 'HOST' : 'GAME'}] No game process was created"); return null; } + log("[${host ? 'HOST' : 'GAME'}] Created game process: ${gameProcess}"); final instance = GameInstance( versionName: version.name, gamePid: gameProcess, @@ -178,22 +244,24 @@ class _LaunchButtonState extends State { hosting: host, child: linkedHosting ); - instance.startObserver(); if(host){ _hostingController.discardServer(); _hostingController.instance.value = instance; }else{ _gameController.instance.value = instance; } - _injectOrShowError(_Injectable.sslBypass, host); + await _injectOrShowError(_Injectable.sslBypassV2, host); + log("[${host ? 'HOST' : 'GAME'}] Finished creating game instance"); return instance; } - Future _createGameProcess(File executable, bool host) async { + Future _createGameProcess(FortniteVersion version, File executable, bool host, bool headless, bool virtualDesktop, GameInstance? linkedHosting) async { if(!_hasStarted) { + log("[${host ? 'HOST' : 'GAME'}] Discarding start game process request as the state is no longer started"); return null; } + log("[${host ? 'HOST' : 'GAME'}] Generating instance args..."); final gameArgs = createRebootArgs( _gameController.username.text, _gameController.password.text, @@ -201,40 +269,86 @@ class _LaunchButtonState extends State { _hostingController.headless.value, _gameController.customLaunchArgs.text ); + log("[${host ? 'HOST' : 'GAME'}] Generated game args: $gameArgs"); final gameProcess = await startProcess( executable: executable, args: gameArgs, - window: false + wrapProcess: false, + name: "${version.name}-${host ? 'HOST' : 'GAME'}" ); - gameProcess.stdOutput.listen((line) => _onGameOutput(line, host, false)); - gameProcess.errorOutput.listen((line) => _onGameOutput(line, host, true)); - watchProcess(gameProcess.pid).then((_) => _onStop(reason: _StopReason.exitCode)); + gameProcess.stdOutput.listen((line) => _onGameOutput(line, host, virtualDesktop, false)); + gameProcess.stdError.listen((line) => _onGameOutput(line, host, virtualDesktop, true)); + watchProcess(gameProcess.pid).then((_) async { + final instance = host ? _hostingController.instance.value : _gameController.instance.value; + if(instance == null || !host || !headless || instance.launched) { + _onStop(reason: _StopReason.exitCode); + return; + } + + if(widget.host) { + await _onStop(reason: _StopReason.exitCode); + _toggle(forceGUI: true); + return; + } + + await _onStop( + reason: _StopReason.exitCode, + host: true + ); + final linkedHostingInstance = await _startMatchMakingServer(version, false, virtualDesktop, true); + _gameController.instance.value?.child = linkedHostingInstance; + if(linkedHostingInstance != null){ + _setStarted(true, true); + _showLaunchingGameServerWidget(); + } + }); + if(host && !headless && virtualDesktop) { + final name = version.name; + final pid = gameProcess.pid; + _moveProcessToVirtualDesktop(name, pid); + } return gameProcess.pid; } - Future _createPausedProcess(File? file) async { + Future _moveProcessToVirtualDesktop(String versionName, int pid) async { + try { + final windowManager = VirtualDesktopManager.getInstance(); + _virtualDesktop = windowManager.createDesktop(); + windowManager.setDesktopName(_virtualDesktop!, "$versionName Server (Reboot Launcher)"); + Object? lastError; + for(var i = 0; i < 10; i++) { + try { + windowManager.moveWindowToDesktop(pid, _virtualDesktop!); + break; + }catch(error) { + lastError = error; + await Future.delayed(Duration(seconds: 1)); + } + } + if(lastError != null) { + log("[VIRTUAL_DESKTOP] Cannot move window: $lastError"); + } + }catch(error) { + log("[VIRTUAL_DESKTOP] Virtual desktop is not supported: $error"); + } + } + + Future _createPausedProcess(FortniteVersion version, File? file) async { if (file == null) { return null; } final process = await startProcess( executable: file, - args: [], - window: false, - output: false + wrapProcess: false, + name: "${version.name}-${basenameWithoutExtension(file.path)}" ); - print("Started process: ${process.pid}"); final pid = process.pid; suspend(pid); - print("Suspended"); return pid; } - void _onGameOutput(String line, bool host, bool error) { - if(kDebugMode) { - print("${error ? '[ERROR]' : '[MESSAGE]'} $line"); - } - + void _onGameOutput(String line, bool host, bool virtualDesktop, bool error) async { if (line.contains(kShutdownLine)) { _onStop( reason: _StopReason.normal @@ -256,105 +370,154 @@ class _LaunchButtonState extends State { return; } - if(line.contains("Region ")){ + if(kLoggedInLines.every((entry) => line.contains(entry))) { + await _injectOrShowError(_Injectable.memoryFix, host); if(!host){ - _injectOrShowError(_Injectable.console, host); + await _injectOrShowError(_Injectable.console, host); + _onGameClientInjected(); }else { - _injectOrShowError(_Injectable.reboot, host) - .then((value) => _onGameServerInjected()); + await _injectOrShowError(_Injectable.reboot, host); + _onGameServerInjected(); } - - _injectOrShowError(_Injectable.memoryFix, host); final instance = host ? _hostingController.instance.value : _gameController.instance.value; instance?.launched = true; instance?.tokenError = false; } } - Future _onGameServerInjected() async { - final theme = FluentTheme.of(appKey.currentContext!); + void _onGameClientInjected() { + _gameClientInfoBar?.close(); showInfoBar( - translations.waitingForGameServer, - loading: true, - duration: null - ); - final gameServerPort = _settingsController.gameServerPort.text; - final localPingResult = await pingGameServer( - "127.0.0.1:$gameServerPort", - timeout: const Duration(minutes: 2) - ); - if(!localPingResult) { - showInfoBar( - translations.gameServerStartWarning, - severity: InfoBarSeverity.error, - duration: infoBarLongDuration - ); - return; - } - - _matchmakerController.joinLocalHost(); - final accessible = await _checkGameServer(theme, gameServerPort); - if(!accessible) { - showInfoBar( - translations.gameServerStartLocalWarning, - severity: InfoBarSeverity.warning, - duration: infoBarLongDuration - ); - return; - } - - await _hostingController.publishServer( - _gameController.username.text, - _hostingController.instance.value!.versionName, - ); - showInfoBar( - translations.gameServerStarted, + translations.gameClientStarted, severity: InfoBarSeverity.success, duration: infoBarLongDuration ); } - Future _checkGameServer(FluentThemeData theme, String gameServerPort) async { - showInfoBar( - translations.checkingGameServer, - loading: true, - duration: null - ); - final publicIp = await Ipify.ipv4(); - final externalResult = await pingGameServer("$publicIp:$gameServerPort"); - if(externalResult) { - return true; - } + Future _onGameServerInjected() async { + _gameServerInfoBar?.close(); + final theme = FluentTheme.of(appKey.currentContext!); + try { + _gameServerInfoBar = showInfoBar( + translations.waitingForGameServer, + loading: true, + duration: null + ); + final gameServerPort = _settingsController.gameServerPort.text; + final localPingResult = await pingGameServer( + "127.0.0.1:$gameServerPort", + timeout: const Duration(minutes: 2) + ); + if (!localPingResult) { + _gameServerInfoBar?.close(); + showInfoBar( + translations.gameServerStartWarning, + severity: InfoBarSeverity.error, + duration: infoBarLongDuration + ); + return; + } - final future = pingGameServer( - "$publicIp:$gameServerPort", - timeout: const Duration(days: 365) - ); - showInfoBar( - translations.checkGameServerFixMessage(gameServerPort), - action: Button( - onPressed: openPortTutorial, - child: Text(translations.checkGameServerFixAction), - ), - severity: InfoBarSeverity.warning, - duration: null, - loading: true - ); - return await future; + _matchmakerController.joinLocalHost(); + final accessible = await _checkGameServer(theme, gameServerPort); + if (!accessible) { + showInfoBar( + translations.gameServerStartLocalWarning, + severity: InfoBarSeverity.warning, + duration: infoBarLongDuration + ); + return; + } + + await _hostingController.publishServer( + _gameController.username.text, + _hostingController.instance.value!.versionName, + ); + showInfoBar( + translations.gameServerStarted, + severity: InfoBarSeverity.success, + duration: infoBarLongDuration + ); + }finally { + _gameServerInfoBar?.close(); + } } - void _onStop({required _StopReason reason, bool? host, String? error, StackTrace? stackTrace}) async { - host = host ?? widget.host; - await _operation?.cancel(); - await _authenticatorController.worker?.cancel(); - await _matchmakerController.worker?.cancel(); - final instance = host ? _hostingController.instance.value : _gameController.instance.value; - if(instance != null){ - _onStop( - reason: _StopReason.normal, - host: true + Future _checkGameServer(FluentThemeData theme, String gameServerPort) async { + try { + _gameServerInfoBar?.close(); + _gameServerInfoBar = showInfoBar( + translations.checkingGameServer, + loading: true, + duration: null ); + final publicIp = await Ipify.ipv4(); + final externalResult = await pingGameServer("$publicIp:$gameServerPort"); + if (externalResult) { + return true; + } + + _gameServerInfoBar?.close(); + final future = pingGameServer( + "$publicIp:$gameServerPort", + timeout: const Duration(days: 365) + ); + _gameServerInfoBar = showInfoBar( + translations.checkGameServerFixMessage(gameServerPort), + action: Button( + onPressed: () async { + pageIndex.value = RebootPageType.info.index; + }, + child: Text(translations.checkGameServerFixAction), + ), + severity: InfoBarSeverity.warning, + duration: null, + loading: true + ); + return await future; + }finally { + _gameServerInfoBar?.close(); + } + } + + Future _onStop({required _StopReason reason, bool? host, String? error, StackTrace? stackTrace}) async { + if(_virtualDesktop != null) { + try { + final instance = VirtualDesktopManager.getInstance(); + instance.removeDesktop(_virtualDesktop!); + }catch(error) { + log("[VIRTUAL_DESKTOP] Cannot close virtual desktop: $error"); + } + } + + if(host == null) { + await _operation?.cancel(); + _operation = null; + await _backendController.worker?.cancel(); + await _matchmakerController.worker?.cancel(); + } + + host = host ?? widget.host; + log("[${host ? 'HOST' : 'GAME'}] Called stop with reason $reason, error data $error $stackTrace"); + if(host) { + _hostingController.discardServer(); + } + + final instance = host ? _hostingController.instance.value : _gameController.instance.value; + if(instance != null) { + if(reason == _StopReason.normal) { + instance.launched = true; + } + instance.kill(); + final child = instance.child; + if(child != null) { + _onStop( + reason: reason, + host: child.hosting + ); + } + if(host){ _hostingController.instance.value = null; }else { @@ -363,16 +526,16 @@ class _LaunchButtonState extends State { } _setStarted(host, false); - if(host){ - _hostingController.discardServer(); - } - - if(reason == _StopReason.normal) { - messenger.removeMessageByPage(_pageType.index); + if(!reason.isError) { + if(host) { + _gameServerInfoBar?.close(); + }else { + _gameClientInfoBar?.close(); + } } switch(reason) { - case _StopReason.authenticatorError: + case _StopReason.backendError: case _StopReason.matchmakerError: case _StopReason.normal: break; @@ -430,24 +593,34 @@ class _LaunchButtonState extends State { ); break; } - _operation = null; } Future _injectOrShowError(_Injectable injectable, bool hosting) async { final instance = hosting ? _hostingController.instance.value : _gameController.instance.value; if (instance == null) { + log("[${hosting ? 'HOST' : 'GAME'}] No instance found to inject ${injectable.name}"); return; } try { final gameProcess = instance.gamePid; + log("[${hosting ? 'HOST' : 'GAME'}] Injecting ${injectable.name} into process with pid $gameProcess"); final dllPath = await _getDllFileOrStop(injectable, hosting); + log("[${hosting ? 'HOST' : 'GAME'}] File to inject for ${injectable.name} at path $dllPath"); if(dllPath == null) { + log("[${hosting ? 'HOST' : 'GAME'}] The file doesn't exist"); + _onStop( + reason: _StopReason.corruptedDllError, + host: hosting + ); return; } + log("[${hosting ? 'HOST' : 'GAME'}] Trying to inject ${injectable.name}..."); await injectDll(gameProcess, dllPath.path); + log("[${hosting ? 'HOST' : 'GAME'}] Injected ${injectable.name}"); } catch (error, stackTrace) { + log("[${hosting ? 'HOST' : 'GAME'}] Cannot inject ${injectable.name}: $error $stackTrace"); _onStop( reason: _StopReason.corruptedDllError, host: hosting, @@ -463,31 +636,40 @@ class _LaunchButtonState extends State { return _settingsController.gameServerDll.text; case _Injectable.console: return _settingsController.unrealEngineConsoleDll.text; - case _Injectable.sslBypass: - return _settingsController.authenticatorDll.text; + case _Injectable.sslBypassV2: + return _settingsController.backendDll.text; case _Injectable.memoryFix: return _settingsController.memoryLeakDll.text; } } Future _getDllFileOrStop(_Injectable injectable, bool host) async { + log("[${host ? 'HOST' : 'GAME'}] Checking dll ${injectable}..."); final path = _getDllPath(injectable); + log("[${host ? 'HOST' : 'GAME'}] Path: $path"); final file = File(path); if(await file.exists()) { + log("[${host ? 'HOST' : 'GAME'}] Path exists"); return file; } + log("[${host ? 'HOST' : 'GAME'}] Path does not exist, downloading critical dll again..."); await downloadCriticalDllInteractive(path); - return null; + log("[${host ? 'HOST' : 'GAME'}] Downloaded dll again, retrying check..."); + return _getDllFileOrStop(injectable, host); } - OverlayEntry _showLaunchingGameServerWidget() => showInfoBar( + InfoBarEntry _showLaunchingGameServerWidget() => _gameServerInfoBar = showInfoBar( translations.launchingHeadlessServer, loading: true, duration: null ); - RebootPageType get _pageType => widget.host ? RebootPageType.host : RebootPageType.play; + InfoBarEntry _showLaunchingGameClientWidget() => _gameClientInfoBar = showInfoBar( + translations.launchingGameClient, + loading: true, + duration: null + ); } enum _StopReason { @@ -496,15 +678,18 @@ enum _StopReason { missingExecutableError, corruptedVersionError, corruptedDllError, - authenticatorError, + backendError, matchmakerError, tokenError, - unknownError, exitCode + unknownError, + exitCode; + + bool get isError => name.contains("Error"); } enum _Injectable { console, - sslBypass, + sslBypassV2, reboot, - memoryFix + memoryFix, } diff --git a/gui/lib/src/widget/info_bar_area.dart b/gui/lib/src/widget/info_bar_area.dart new file mode 100644 index 0000000..f730c12 --- /dev/null +++ b/gui/lib/src/widget/info_bar_area.dart @@ -0,0 +1,42 @@ +import 'package:fluent_ui/fluent_ui.dart'; +import 'package:get/get.dart'; +import 'package:reboot_launcher/src/page/pages.dart'; + +class InfoBarArea extends StatefulWidget { + const InfoBarArea({super.key}); + + @override + State createState() => InfoBarAreaState(); +} + +class InfoBarAreaState extends State { + final Rx> _children = Rx([]); + + void insertChild(Widget child) { + _children.value.add(child); + _children.refresh(); + } + + bool removeChild(Widget child) { + final result = _children.value.remove(child); + _children.refresh(); + return result; + } + + @override + Widget build(BuildContext context) => Obx(() => Padding( + padding: EdgeInsets.only( + bottom: hasPageButton ? 72.0 : 16.0 + ), + child: Column( + mainAxisAlignment: MainAxisAlignment.end, + crossAxisAlignment: CrossAxisAlignment.start, + children: _children.value.map((child) => Padding( + padding: EdgeInsets.only( + top: 12.0 + ), + child: child + )).toList(growable: false) + ), + )); +} \ No newline at end of file diff --git a/gui/lib/src/widget/info_tile.dart b/gui/lib/src/widget/info_tile.dart new file mode 100644 index 0000000..6714726 --- /dev/null +++ b/gui/lib/src/widget/info_tile.dart @@ -0,0 +1,37 @@ +import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; +import 'package:fluentui_system_icons/fluentui_system_icons.dart'; +import 'package:reboot_launcher/src/page/pages.dart'; +import 'package:skeletons/skeletons.dart'; + +class InfoTile extends StatelessWidget { + final Key? expanderKey; + final Text title; + final Text content; + + const InfoTile({ + this.expanderKey, + required this.title, + required this.content + }); + + @override + Widget build(BuildContext context) => Padding( + padding: const EdgeInsets.only( + bottom: 4.0 + ), + child: Expander( + key: expanderKey, + header: Row( + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + Icon( + FluentIcons.info_24_regular + ), + const SizedBox(width: 16.0), + title + ], + ), + content: content, + ), + ); +} diff --git a/gui/lib/src/widget/profile_tile.dart b/gui/lib/src/widget/profile_tile.dart index 27ad8ac..8c4ae4c 100644 --- a/gui/lib/src/widget/profile_tile.dart +++ b/gui/lib/src/widget/profile_tile.dart @@ -2,6 +2,7 @@ import 'package:fluent_ui/fluent_ui.dart'; import 'package:get/get.dart'; import 'package:reboot_common/common.dart'; import 'package:reboot_launcher/src/controller/game_controller.dart'; +import 'package:reboot_launcher/src/controller/settings_controller.dart'; import 'package:reboot_launcher/src/dialog/implementation/profile.dart'; class ProfileWidget extends StatefulWidget { @@ -13,68 +14,72 @@ class ProfileWidget extends StatefulWidget { class _ProfileWidgetState extends State { final GameController _gameController = Get.find(); + final SettingsController _settingsController = Get.find(); @override - Widget build(BuildContext context) => HoverButton( - margin: const EdgeInsets.all(8.0), - onPressed: () async { - if(await showProfileForm(context)) { - setState(() {}); - } - }, - builder: (context, states) => Container( - decoration: BoxDecoration( - color: ButtonThemeData.uncheckedInputColor( - FluentTheme.of(context), - states, - transparentWhenNone: true, + Widget build(BuildContext context) => Obx(() { + final firstRun = _settingsController.firstRun.value; + return HoverButton( + margin: const EdgeInsets.all(8.0), + onPressed: firstRun ? null : () async { + if(await showProfileForm(context)) { + setState(() {}); + } + }, + builder: (context, states) => Container( + decoration: BoxDecoration( + color: ButtonThemeData.uncheckedInputColor( + FluentTheme.of(context), + states, + transparentWhenNone: true, + ), + borderRadius: BorderRadius.all(Radius.circular(6.0)) + ), + child: Padding( + padding: const EdgeInsets.symmetric( + vertical: 8.0, + horizontal: 8.0 + ), + child: Row( + children: [ + Container( + width: 64, + height: 64, + decoration: const BoxDecoration( + shape: BoxShape.circle + ), + child: Image.asset("assets/images/user.png") + ), + const SizedBox( + width: 12.0, + ), + Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + _username, + textAlign: TextAlign.start, + style: const TextStyle( + fontWeight: FontWeight.w600 + ), + maxLines: 1 + ), + Text( + _email, + textAlign: TextAlign.start, + style: const TextStyle( + fontWeight: FontWeight.w100 + ), + maxLines: 1 + ) + ], + ) + ], ), - borderRadius: BorderRadius.all(Radius.circular(6.0)) - ), - child: Padding( - padding: const EdgeInsets.symmetric( - vertical: 8.0, - horizontal: 8.0 ), - child: Row( - children: [ - Container( - width: 64, - height: 64, - decoration: const BoxDecoration( - shape: BoxShape.circle - ), - child: Image.asset("assets/images/user.png") - ), - const SizedBox( - width: 12.0, - ), - Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - Text( - _username, - textAlign: TextAlign.start, - style: const TextStyle( - fontWeight: FontWeight.w600 - ), - maxLines: 1 - ), - Text( - _email, - textAlign: TextAlign.start, - style: const TextStyle( - fontWeight: FontWeight.w100 - ), - maxLines: 1 - ) - ], - ) - ], - ), - ), - ) - ); + ) + ); + }); String get _username { var username = _gameController.username.text; diff --git a/gui/lib/src/widget/server_start_button.dart b/gui/lib/src/widget/server_start_button.dart index 4ee3449..d79e297 100644 --- a/gui/lib/src/widget/server_start_button.dart +++ b/gui/lib/src/widget/server_start_button.dart @@ -3,22 +3,22 @@ import 'dart:async'; import 'package:fluent_ui/fluent_ui.dart'; import 'package:get/get.dart'; import 'package:reboot_common/common.dart'; -import 'package:reboot_launcher/src/controller/authenticator_controller.dart'; +import 'package:reboot_launcher/src/controller/backend_controller.dart'; import 'package:reboot_launcher/src/controller/matchmaker_controller.dart'; import 'package:reboot_launcher/src/controller/server_controller.dart'; import 'package:reboot_launcher/src/dialog/implementation/server.dart'; import 'package:reboot_launcher/src/util/translations.dart'; class ServerButton extends StatefulWidget { - final bool authenticator; - const ServerButton({Key? key, required this.authenticator}) : super(key: key); + final bool backend; + const ServerButton({Key? key, required this.backend}) : super(key: key); @override State createState() => _ServerButtonState(); } class _ServerButtonState extends State { - late final ServerController _controller = widget.authenticator ? Get.find() : Get.find(); + late final ServerController _controller = widget.backend ? Get.find() : Get.find(); late final StreamController _textController = StreamController.broadcast(); late final void Function() _listener = () => _textController.add(null); @@ -55,7 +55,7 @@ class _ServerButtonState extends State { ); String get _buttonText { - if(_controller.type.value == ServerType.local && _controller.port.text.trim() == _controller.defaultPort){ + if(_controller.type.value == ServerType.local && _controller.port.text.trim() == _controller.defaultPort.toString()){ return translations.checkServer(_controller.controllerName); } diff --git a/gui/lib/src/widget/server_type_selector.dart b/gui/lib/src/widget/server_type_selector.dart index 32df4ac..4b455d1 100644 --- a/gui/lib/src/widget/server_type_selector.dart +++ b/gui/lib/src/widget/server_type_selector.dart @@ -1,15 +1,15 @@ import 'package:fluent_ui/fluent_ui.dart'; import 'package:get/get.dart'; import 'package:reboot_common/common.dart'; -import 'package:reboot_launcher/src/controller/authenticator_controller.dart'; +import 'package:reboot_launcher/src/controller/backend_controller.dart'; import 'package:reboot_launcher/src/controller/matchmaker_controller.dart'; import 'package:reboot_launcher/src/controller/server_controller.dart'; import 'package:reboot_launcher/src/util/translations.dart'; class ServerTypeSelector extends StatefulWidget { - final bool authenticator; + final bool backend; - const ServerTypeSelector({Key? key, required this.authenticator}) + const ServerTypeSelector({Key? key, required this.backend}) : super(key: key); @override @@ -17,7 +17,7 @@ class ServerTypeSelector extends StatefulWidget { } class _ServerTypeSelectorState extends State { - late final ServerController _controller = widget.authenticator ? Get.find() : Get.find(); + late final ServerController _controller = widget.backend ? Get.find() : Get.find(); @override Widget build(BuildContext context) { diff --git a/gui/lib/src/widget/setting_tile.dart b/gui/lib/src/widget/setting_tile.dart index 7de4776..8a94157 100644 --- a/gui/lib/src/widget/setting_tile.dart +++ b/gui/lib/src/widget/setting_tile.dart @@ -3,7 +3,7 @@ import 'package:fluentui_system_icons/fluentui_system_icons.dart'; import 'package:reboot_launcher/src/page/pages.dart'; import 'package:skeletons/skeletons.dart'; -class SettingTile extends StatefulWidget { +class SettingTile extends StatelessWidget { static const double kDefaultContentWidth = 200.0; static const double kDefaultHeaderHeight = 72; @@ -24,12 +24,7 @@ class SettingTile extends StatefulWidget { this.contentWidth = kDefaultContentWidth, this.children }); - - @override - State createState() => _SettingTileState(); -} - -class _SettingTileState extends State { + @override Widget build(BuildContext context) { return Padding( @@ -37,7 +32,7 @@ class _SettingTileState extends State { bottom: 4.0 ), child: HoverButton( - onPressed: _buildOnPressed(), + onPressed: _buildOnPressed(context), builder: (context, states) => Container( height: 80, width: double.infinity, @@ -61,13 +56,13 @@ class _SettingTileState extends State { child: Row( crossAxisAlignment: CrossAxisAlignment.center, children: [ - widget.icon, + icon, const SizedBox(width: 16.0), Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - widget.title == null ? _skeletonTitle : widget.title!, - widget.subtitle == null ? _skeletonSubtitle : widget.subtitle!, + title == null ? _skeletonTitle : title!, + subtitle == null ? _skeletonSubtitle : subtitle!, ], ), const Spacer(), @@ -81,12 +76,12 @@ class _SettingTileState extends State { ); } - void Function()? _buildOnPressed() { - if(widget.onPressed != null) { - return widget.onPressed; + void Function()? _buildOnPressed(BuildContext context) { + if(onPressed != null) { + return onPressed; } - final children = widget.children; + final children = this.children; if (children == null) { return null; } @@ -96,7 +91,7 @@ class _SettingTileState extends State { transitionDuration: Duration.zero, reverseTransitionDuration: Duration.zero, settings: RouteSettings( - name: widget.title?.data + name: title?.data ), pageBuilder: (context, incoming, outgoing) => ListView.builder( itemCount: children.length, @@ -108,15 +103,15 @@ class _SettingTileState extends State { } Widget get _trailing { - final hasContent = widget.content != null; - final hasChildren = widget.children?.isNotEmpty == true; - final hasListener = widget.onPressed != null; + final hasContent = content != null; + final hasChildren = children?.isNotEmpty == true; + final hasListener = onPressed != null; if(hasContent && hasChildren) { return Row( children: [ SizedBox( - width: widget.contentWidth, - child: widget.content + width: contentWidth, + child: content ), const SizedBox(width: 16.0), Icon( @@ -128,8 +123,8 @@ class _SettingTileState extends State { if (hasContent) { return SizedBox( - width: widget.contentWidth, - child: widget.content + width: contentWidth, + child: content ); } diff --git a/gui/lib/src/widget/title_bar.dart b/gui/lib/src/widget/title_bar.dart index 7b324b5..2ecc843 100644 --- a/gui/lib/src/widget/title_bar.dart +++ b/gui/lib/src/widget/title_bar.dart @@ -1,4 +1,5 @@ import 'package:fluent_ui/fluent_ui.dart'; +import 'package:reboot_common/common.dart'; import 'package:reboot_launcher/src/util/os.dart'; import 'package:reboot_launcher/src/widget/title_bar_buttons.dart'; import 'package:system_theme/system_theme.dart'; diff --git a/gui/lib/src/widget/version_selector.dart b/gui/lib/src/widget/version_selector.dart index 5948345..b10adff 100644 --- a/gui/lib/src/widget/version_selector.dart +++ b/gui/lib/src/widget/version_selector.dart @@ -38,10 +38,6 @@ class _VersionSelectorState extends State { @override Widget build(BuildContext context) => Obx(() { - if(_gameController.hasNoVersions) { - return const SizedBox(); - } - return _createOptionsMenu( version: _gameController.selectedVersion, close: false, @@ -55,9 +51,20 @@ class _VersionSelectorState extends State { ); }); - List _createSelectorItems(BuildContext context) => _gameController.versions.value + List _createSelectorItems(BuildContext context) { + final items = _gameController.versions.value .map((version) => _createVersionItem(context, version)) .toList(); + items.add(MenuFlyoutItem( + text: Text(translations.addLocalBuildContent), + onPressed: VersionSelector.openAddDialog + )); + items.add(MenuFlyoutItem( + text: Text(translations.downloadBuildContent), + onPressed: VersionSelector.openDownloadDialog + )); + return items; + } MenuFlyoutItem _createVersionItem(BuildContext context, FortniteVersion version) => MenuFlyoutItem( text: _createOptionsMenu( diff --git a/gui/lib/src/widget/version_selector_tile.dart b/gui/lib/src/widget/version_selector_tile.dart index 42bc0eb..70309cf 100644 --- a/gui/lib/src/widget/version_selector_tile.dart +++ b/gui/lib/src/widget/version_selector_tile.dart @@ -7,55 +7,10 @@ import 'package:reboot_launcher/src/widget/setting_tile.dart'; import 'package:reboot_launcher/src/widget/version_selector.dart'; SettingTile get versionSelectSettingTile => SettingTile( - icon: Icon( - FluentIcons.play_24_regular - ), - title: Text(translations.manageVersionsName), - subtitle: Text(translations.manageVersionsDescription), - content: const VersionSelector(), - children: [ - _selectVersionTile, - _addLocalTile, - _downloadTile - ], -); - -Widget get _selectVersionTile => Obx(() { - final gameController = Get.find(); - if(gameController.hasNoVersions) { - return const SizedBox(); - } - - return SettingTile( - icon: Icon( - FluentIcons.play_24_regular - ), - title: Text(translations.selectFortniteName), - subtitle: Text(translations.selectFortniteDescription), - content: const VersionSelector() - ); -}); - -SettingTile get _downloadTile => SettingTile( icon: Icon( - FluentIcons.arrow_download_24_regular + FluentIcons.play_24_regular ), - title: Text(translations.downloadBuildName), - subtitle: Text(translations.downloadBuildDescription), - content: Button( - onPressed: VersionSelector.openDownloadDialog, - child: Text(translations.downloadBuildContent) - ) -); - -SettingTile get _addLocalTile => SettingTile( - icon: Icon( - FluentIcons.folder_add_24_regular - ), - title: Text(translations.addLocalBuildName), - subtitle: Text(translations.addLocalBuildDescription), - content: Button( - onPressed: VersionSelector.openAddDialog, - child: Text(translations.addLocalBuildContent) - ) + title: Text(translations.selectFortniteName), + subtitle: Text(translations.selectFortniteDescription), + content: const VersionSelector() ); \ No newline at end of file diff --git a/gui/lib/test.dart b/gui/lib/test.dart deleted file mode 100644 index 4319230..0000000 --- a/gui/lib/test.dart +++ /dev/null @@ -1,12 +0,0 @@ -import 'dart:io'; - -import 'package:reboot_common/common.dart'; - -void main() async { - final process = await startProcess( - executable: File("C:\\FortniteBuilds\\Fortnite 4.2\\Fortnite 4.2\\Fortnite1\\FortniteGame\\Binaries\\Win64\\FortniteClient-Win64-Shipping-Reboot.exe"), - args: "-epicapp=Fortnite -epicenv=Prod -epiclocale=en-us -epicportal -skippatchcheck -nobe -fromfl=eac -fltoken=3db3ba5dcbd2e16703f3978d -caldera=eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50X2lkIjoiYmU5ZGE1YzJmYmVhNDQwN2IyZjQwZWJhYWQ4NTlhZDQiLCJnZW5lcmF0ZWQiOjE2Mzg3MTcyNzgsImNhbGRlcmFHdWlkIjoiMzgxMGI4NjMtMmE2NS00NDU3LTliNTgtNGRhYjNiNDgyYTg2IiwiYWNQcm92aWRlciI6IkVhc3lBbnRpQ2hlYXQiLCJub3RlcyI6IiIsImZhbGxiYWNrIjpmYWxzZX0.VAWQB67RTxhiWOxx7DBjnzDnXyyEnX7OljJm-j2d88G_WgwQ9wrE6lwMEHZHjBd1ISJdUO1UVUqkfLdU5nofBQ -AUTH_LOGIN=Player698@projectreboot.dev -AUTH_PASSWORD=Rebooted -AUTH_TYPE=epic -nullrhi -nosplash -nosound".split(" ") - ); - process.stdOutput.listen((event) => stdout.writeln(event)); - process.errorOutput.listen((event) => stdout.writeln(event)); -} \ No newline at end of file diff --git a/gui/pubspec.yaml b/gui/pubspec.yaml index 17bed30..f6519e6 100644 --- a/gui/pubspec.yaml +++ b/gui/pubspec.yaml @@ -1,6 +1,6 @@ name: reboot_launcher description: Graphical User Interface for Project Reboot -version: "9.0.2" +version: "9.0.7" publish_to: 'none' @@ -63,16 +63,15 @@ flutter: uses-material-design: true generate: true assets: - - assets/misc/ - assets/dlls/ - assets/icons/ - assets/images/ - - assets/authenticator/ - - assets/authenticator/CloudStorage/ - - assets/authenticator/Config/ - - assets/authenticator/profiles/ - - assets/authenticator/public/ - - assets/authenticator/responses/ + - assets/backend/ + - assets/backend/CloudStorage/ + - assets/backend/Config/ + - assets/backend/profiles/ + - assets/backend/public/ + - assets/backend/responses/ - assets/matchmaker/ - assets/build/ @@ -80,7 +79,7 @@ msix_config: display_name: Reboot Launcher publisher_display_name: Auties00 identity_name: 31868Auties00.RebootLauncher - msix_version: 9.0.0.1 + msix_version: 9.0.0.7 publisher: CN=E6CD08C6-DECF-4034-A3EB-2D5FA2CA8029 logo_path: ./assets/icons/reboot.ico architecture: x64 diff --git a/gui/windows/runner/main.cpp b/gui/windows/runner/main.cpp index 0939228..b039523 100644 --- a/gui/windows/runner/main.cpp +++ b/gui/windows/runner/main.cpp @@ -23,10 +23,13 @@ bool IsAlreadyOpen(){ if (hwndExisting != NULL) { ShowWindow(hwndExisting, SW_RESTORE); SetForegroundWindow(hwndExisting); + CloseHandle(hMutex); + return true; + } else { + ReleaseMutex(hMutex); + CloseHandle(hMutex); + return false; } - - CloseHandle(hMutex); - return true; } return false; @@ -75,7 +78,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, return EXIT_SUCCESS; } - if(!IsDebuggerPresent() && IsAlreadyOpen()){ + if(IsAlreadyOpen()) { return EXIT_SUCCESS; } diff --git a/lawin/CloudStorage/DefaultEngine.ini b/lawin/CloudStorage/DefaultEngine.ini new file mode 100644 index 0000000..a479bc0 --- /dev/null +++ b/lawin/CloudStorage/DefaultEngine.ini @@ -0,0 +1,28 @@ +# Do not remove/change, this redirects epicgames xmpp to lawinserver xmpp +[OnlineSubsystemMcp.Xmpp] +bUseSSL=false +ServerAddr="ws://127.0.0.1" +ServerPort=8080 + +# Do not remove/change, this redirects epicgames xmpp to lawinserver xmpp +[OnlineSubsystemMcp.Xmpp Prod] +bUseSSL=false +ServerAddr="ws://127.0.0.1" +ServerPort=8080 + +# Forces fortnite to use the v1 party system to support lawinserver xmpp +[OnlineSubsystemMcp] +bUsePartySystemV2=false + +# Forces fortnite to use the v1 party system to support lawinserver xmpp +[OnlineSubsystemMcp.OnlinePartySystemMcpAdapter] +bUsePartySystemV2=false + +# Fix for XMPP not working on some versions +[XMPP] +bEnableWebsockets=true + +# Fix for long waiting at checking connections to datacenters on Switch & Mobile +[/Script/Qos.QosRegionManager] +NumTestsPerRegion=1 +PingTimeout=0.1 \ No newline at end of file diff --git a/lawin/CloudStorage/DefaultGame.ini b/lawin/CloudStorage/DefaultGame.ini new file mode 100644 index 0000000..246c05f --- /dev/null +++ b/lawin/CloudStorage/DefaultGame.ini @@ -0,0 +1,26 @@ +[/Script/FortniteGame.FortGlobals] +bAllowLogout=true # Enables log out button. + +[/Script/FortniteGame.FortChatManager] +bShouldRequestGeneralChatRooms=true # Request for chat rooms (global chat and founders chat). +bShouldJoinGlobalChat=true +bShouldJoinFounderChat=true +bIsAthenaGlobalChatEnabled=true # Battle royale global chat. + +[/Script/FortniteGame.FortTextHotfixConfig] ++TextReplacements=(Category=Game, Namespace="", bIsMinimalPatch=True, Key="D5ECE3CD484655CBAE1DB6922C1D87C7", NativeString="Getting Started", LocalizedStrings=(("ar","مرحبًا بك في LawinServer!"),("en","Welcome to LawinServer!"),("de","Willkommen bei LawinServer!"),("es","¡Bienvenidos a LawinServer!"),("es-419","¡Bienvenidos a LawinServer!"),("fr","Bienvenue sur LawinServer !"),("it","Benvenuto in LawinServer!"),("ja","LawinServerへようこそ!"),("ko","LawinServer에 오신 것을 환영합니다!"),("pl","Witaj w LawinServerze!"),("pt-BR","Bem-vindo ao LawinServer!"),("ru","Добро пожаловать в LawinServer!"),("tr","LavinServer'a Hoş Geldiniz!"))) ++TextReplacements=(Category=Game, Namespace="", bIsMinimalPatch=True, Key="CD9D4C7A4486689DB9D16B8A7E290B08", NativeString="Not bad! So, what you'd call this place?", LocalizedStrings=(("ar","استمتع بتجربة لعب استثنائية!"),("en","Have a phenomenal gaming experience!"),("de","Wünsche allen ein wunderbares Spielerlebnis!"),("es","¡Que disfrutes de tu experiencia de videojuegos!"),("es-419","¡Ten una experiencia de juego espectacular!"),("fr","Un bon jeu à toutes et à tous !"),("it","Ti auguriamo un'esperienza di gioco fenomenale!"),("ja","驚きの体験をしよう!"),("ko","게임에서 환상적인 경험을 해보세요!"),("pl","Życzymy fenomenalnej gry!"),("pt-BR","Tenha uma experiência de jogo fenomenal!"),("ru","Желаю невероятно приятной игры!"),("tr","Muhteşem bir oyun deneyimi yaşamanı dileriz!"))) ++TextReplacements=(Category=Game, Namespace="", bIsMinimalPatch=True, Key="8E762BB6481EE8FE630559BE5A982622", NativeString="Enter your Homebase name.", LocalizedStrings=(("ar","LawinServer"),("en","LawinServer"),("de","LawinServer"),("es","LawinServer"),("es-419","LawinServer"),("fr","LawinServer"),("it","LawinServer"),("ja","LawinServer"),("ko","LawinServer"),("pl","LawinServer"),("pt-BR","LawinServer"),("ru","LawinServer"),("tr","LawinServer"))) + +[/Script/FortniteGame.FortGameInstance] +!FrontEndPlaylistData=ClearArray ++FrontEndPlaylistData=(PlaylistName=Playlist_DefaultSolo, PlaylistAccess=(bEnabled=True, bIsDefaultPlaylist=true, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=0, bDisplayAsLimitedTime=false, DisplayPriority=3)) ++FrontEndPlaylistData=(PlaylistName=Playlist_DefaultDuo, PlaylistAccess=(bEnabled=True, bIsDefaultPlaylist=true, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=0, bDisplayAsLimitedTime=false, DisplayPriority=4)) ++FrontEndPlaylistData=(PlaylistName=Playlist_Trios, PlaylistAccess=(bEnabled=true, bIsDefaultPlaylist=true, bVisibleWhenDisabled=false, bDisplayAsNew=False, bDisplayAsLimitedTime=false, DisplayPriority=5, CategoryIndex=0)) ++FrontEndPlaylistData=(PlaylistName=Playlist_DefaultSquad, PlaylistAccess=(bEnabled=true, bIsDefaultPlaylist=true, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=0, bDisplayAsLimitedTime=false, DisplayPriority=6)) ++FrontEndPlaylistData=(PlaylistName=Playlist_PlaygroundV2, PlaylistAccess=(bEnabled=true, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=2, bDisplayAsLimitedTime=false, DisplayPriority=16)) ++FrontEndPlaylistData=(PlaylistName=Playlist_Campaign, PlaylistAccess=(bEnabled=true, bInvisibleWhenEnabled=true)) + +[/Script/FortniteGame.FortOnlineAccount] +bEnableEulaCheck=false +bShouldCheckIfPlatformAllowed=false diff --git a/lawin/CloudStorage/DefaultInput.ini b/lawin/CloudStorage/DefaultInput.ini new file mode 100644 index 0000000..25295a1 --- /dev/null +++ b/lawin/CloudStorage/DefaultInput.ini @@ -0,0 +1,3 @@ +[/Script/Engine.InputSettings] ++ConsoleKeys=Tilde # Enables console using the tilde key ++ConsoleKeys=F8 # Enables console using the F8 key \ No newline at end of file diff --git a/lawin/CloudStorage/DefaultRuntimeOptions.ini b/lawin/CloudStorage/DefaultRuntimeOptions.ini new file mode 100644 index 0000000..5dfb48d --- /dev/null +++ b/lawin/CloudStorage/DefaultRuntimeOptions.ini @@ -0,0 +1,13 @@ +[/Script/FortniteGame.FortRuntimeOptions] +bEnableGlobalChat=true # Enable global chat. +bEnableMexiCola=true # Enable the new friends tab (v19.00+). +bLoadDirectlyIntoLobby=false # Enable the Select Game Mode screen. +bEnableSocialTab=true # Enable the Rift Tour frontend section (v17.30). +!SocialRTInfo=ClearArray ++SocialRTInfo=(SlotId=1,StartsAtUTC=9999.08.06-22.00.00) ++SocialRTInfo=(SlotId=2,StartsAtUTC=9999.08.07-18.00.00) ++SocialRTInfo=(SlotId=3,StartsAtUTC=9999.08.08-04.00.00) ++SocialRTInfo=(SlotId=4,StartsAtUTC=9999.08.08-14.00.00) ++SocialRTInfo=(SlotId=5,StartsAtUTC=9999.08.08-22.00.00) +!ExperimentalCohortPercent=ClearArray ++ExperimentalCohortPercent=(CohortPercent=100,ExperimentNum=20) # Supervised settings bug fix. diff --git a/lawin/Config/catalog_config.json b/lawin/Config/catalog_config.json new file mode 100644 index 0000000..51b21ca --- /dev/null +++ b/lawin/Config/catalog_config.json @@ -0,0 +1,35 @@ +{ + "//": "BR Item Shop Config", + "daily1": { + "itemGrants": [""], + "price": 0 + }, + "daily2": { + "itemGrants": [""], + "price": 0 + }, + "daily3": { + "itemGrants": [""], + "price": 0 + }, + "daily4": { + "itemGrants": [""], + "price": 0 + }, + "daily5": { + "itemGrants": [""], + "price": 0 + }, + "daily6": { + "itemGrants": [""], + "price": 0 + }, + "featured1": { + "itemGrants": [""], + "price": 0 + }, + "featured2": { + "itemGrants": [""], + "price": 0 + } +} \ No newline at end of file diff --git a/lawin/Config/config.ini b/lawin/Config/config.ini new file mode 100644 index 0000000..b5e4d1a --- /dev/null +++ b/lawin/Config/config.ini @@ -0,0 +1,79 @@ +[Config] +# If this is set to false, it will use the email to display name method. +bUseConfigDisplayName=false +# Your fortnite display name (will only be used if the property above is set to true). +displayName=LawinServer + +[Profile] +# If this is set to true, every BR and StW seasonal quest will be on complete. Works for Battle Royale from Season 3 to Season 21 and for Save the World from Season 2 to Season X & Season 24. +bCompletedSeasonalQuests=false +# If this is set to true, you will receive all founder's pack rewards upon logging into StW if the account didn't claim them yet. +bGrantFoundersPacks=false +# If this is set to true, all Save the World events will be displayed in lobby. +bAllSTWEventsActivated=false + +[GameServer] +# Matchmaker gameserver config, you can use this to connect to gameservers like rift (titanium), fortmp, etc... (they have to be hosting though). + +# IP the matchmaker will use upon join. +ip=127.0.0.1 +# PORT the matchmaker will use upon join. +port=7777 + +[Events] +# All dates must be specified using ISO date format only (UTC). +# *Requires a Gameserver connected to this LawinServer backend. Clients can use other backends. + +## The Rocket Start event. (v4.5 Only)* + +# If this is set to true, the event countdown will appear next to +# the Rocket and the event will start at the date below. +bEnableGeodeEvent=false +geodeEventStartDate=2020-01-01T00:00:00.000Z +# If this is set to true, the Crack will stay in the sky AFTER the event. +# The crack will fully expand after ~13.6 real days after the Rocket event start date. +bEnableCrackInTheSky=false + +## Eight mini-events which took the following objects from the map: (v4.5 Only)* +## 1. Lonely Lodge Sign, 2. Motel Sign, 3. Tomatohead Mascot, 4. NOMS Sign, 5. Durr Burger Mascot +## and brought the following objects to the map: +## 6. Ship Anchor, 7. Horse Carriage, 8. Dinosaur Skeleton. +## To see the exact locations, you can check out this video: https://youtu.be/NXL7rkiJVqM + +# If this is set to true, the blue rift effects will appear at places mentioned above. +bEnableS4OddityPrecursor=false +# If this is set to true, the mini-events will begin to start. (Adjust the options below) +bEnableS4OddityExecution=false +# Start date for the Season 4 mini-events. If you have the Rocket event enabled as +# well, then set this date to at least 4 minutes after your Rocket start date. +S4OddityEventStartDate=2020-01-01T00:00:00.000Z +# Time (in minutes) after which another mini-event (1-8) will occur. +# If set to 0, all mini-events will happen at once. +S4OddityEventsInterval=0 + +## Tomatohead Comeback mini-event. (v5.21 Only)* + +# When set to true, the blue rift effects will start appearing on +# top of the Tomato Town restaurant at the date specified below. +bEnableS5OddityPrecursor=false +S5OddityPrecursorDate=2020-01-01T00:00:00.000Z +# When set to true, Tomatohead will be rifted back to Tomato Town at the date specified below. +bEnableS5OddityExecution=false +S5OddityExecutionDate=2020-01-01T00:00:00.000Z + +## Lightning from the sky Crack and Cube Spawning Event. (v5.30 Only)* + +# When set to true, the crack will start shooting lightning bolts destroying +# cacti and eventually spawn the cube on the date specified below. +bEnableCubeLightning=false +cubeSpawnDate=2020-01-01T00:00:00.000Z + +## Blockbuster Contest winner video at Risky Reels event. (v5.30 Only)* +bEnableBlockbusterRiskyEvent=false + +## Cube melting in Loot Lake event. (v5.41 Only)* + +# When set to true, the cube will fall into Loot Lake and start melting on the date specified below. +# After the event, Loot Lake will remain purple in new matches. +bEnableCubeLake=false +cubeLakeDate=2020-01-01T00:00:00.000Z diff --git a/lawin/LICENSE b/lawin/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/lawin/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/lawin/README.md b/lawin/README.md new file mode 100644 index 0000000..55e56a7 --- /dev/null +++ b/lawin/README.md @@ -0,0 +1,77 @@ +
+ LawinServer Logo + + ### LawinServer is a private server that supports all Fortnite versions! + +
+
+ +## Credits +| Name | Contributions | +| --------------- | ----------- | +| [Lawin](https://github.com/Lawin0129) | Creator | +| [PRO100KatYT](https://github.com/PRO100KatYT) | Contributor & Maintainer | + +## Features: + +### Save the World: +- CloudStorage and ClientSettings (Settings saving) +- Llama purchasing and opening with random loot and choice packs +- Every Hero, Weapon, Defender and Resource +- All Founder's Packs rewards screen (togglable in the config) +- Refreshing, sending, collecting and aborting expeditions +- Crafting items in Backpack +- Transferring items to and from Storage +- Modifying and upgrading Schematic perks +- Supercharging items +- Leveling up and Evolving items +- Upgrading item rarity +- Hero, Defender, Survivor, Team Perk and Gadget equipping +- Research level resetting and upgrading +- Upgrade level resetting and upgrading +- Autofill survivors +- Recycling and destroying items +- Collection Book slotting and unslotting +- Claiming Daily Rewards +- Claiming Quest and Collection Book Rewards +- Modifying quickbars in Backpack +- Activating XP Boosts +- Correct Events in Frontend up to Season 11 (Can change) +- Buying Skill Tree perks +- Quests pinning +- Switching between Hero Loadouts +- Favoriting items +- Marking items as seen +- Changing items in Locker +- Changing banner icon and banner color +- Changing items edit styles +- Support a Creator with specific codes +- Fully working daily challenges system (New daily challenge every day, replacing daily challenges, etc...) +- Item transformation +- Event Quests from Season 2 up to Season X & Season 24 (Can change) + +### Battle Royale: +- CloudStorage and ClientSettings (Settings saving) +- Winterfest presents opening (11.31, 19.01 & 23.10) +- Purchasing Item Shop items +- Refunding cosmetics in the refund tab +- Favoriting items +- Marking items as seen +- Changing items in Locker +- Changing banner icon and banner color +- Changing items edit styles +- Support a Creator with specific codes +- Fully working daily challenges system (New daily challenge every day, replacing daily challenges, etc...) +- Completed Location & Discovery quests (discovered map in game & in lobby) for Chapter 2, 3 & 4 (Can change) +- Seasonal Quests from Season 3 up to Season 21 (Can change) +- Purchasable battle pass from Season 2 to Season 10 (Can change) +- Discovery Tab +- Leaderboards (v1) +- Configurable backend sided in-game events - check out the Events seciton in config.ini for more details +- Joining gameservers using the matchmaker - check out the GameServer seciton in config.ini for more details + +## How to host/use LawinServer +1) Install [NodeJS](https://nodejs.org/en/) +2) Run "install_packages.bat" (This file isn't required after the packages are installed.) +3) Run "start.bat", It should say "Started listening on port 3551" +4) Use something to redirect the fortnite servers to localhost:3551 (Which could be fiddler, ssl bypass that redirects servers, etc...) diff --git a/lawin/build.bat b/lawin/build.bat new file mode 100644 index 0000000..72b60ca --- /dev/null +++ b/lawin/build.bat @@ -0,0 +1,2 @@ +# https://github.com/nexe/nexe +npx nexe --build \ No newline at end of file diff --git a/lawin/index.js b/lawin/index.js new file mode 100644 index 0000000..fe3d4eb --- /dev/null +++ b/lawin/index.js @@ -0,0 +1,65 @@ +const Express = require("express"); +const express = Express(); +const fs = require("fs"); +const path = require("path"); +const cookieParser = require("cookie-parser"); + +express.use(Express.json()); +express.use(Express.urlencoded({ extended: true })); +express.use(Express.static('public')); +express.use(cookieParser()); + +express.use(require("./structure/party.js")); +express.use(require("./structure/discovery.js")) +express.use(require("./structure/privacy.js")); +express.use(require("./structure/timeline.js")); +express.use(require("./structure/user.js")); +express.use(require("./structure/contentpages.js")); +express.use(require("./structure/friends.js")); +express.use(require("./structure/main.js")); +express.use(require("./structure/storefront.js")); +express.use(require("./structure/version.js")); +express.use(require("./structure/lightswitch.js")); +express.use(require("./structure/affiliate.js")); +express.use(require("./structure/matchmaking.js")); +express.use(require("./structure/cloudstorage.js")); +express.use(require("./structure/mcp.js")); + +const port = process.env.PORT || 3551; +express.listen(port, () => { + console.log("LawinServer started listening on port", port); + + require("./structure/xmpp.js"); +}).on("error", (err) => { + if (err.code == "EADDRINUSE") console.log(`\x1b[31mERROR\x1b[0m: Port ${port} is already in use!`); + else throw err; + + process.exit(0); +}); + +try { + if (!fs.existsSync(path.join(process.env.LOCALAPPDATA, "LawinServer"))) fs.mkdirSync(path.join(process.env.LOCALAPPDATA, "LawinServer")); +} catch (err) { + // fallback + if (!fs.existsSync(path.join(__dirname, "ClientSettings"))) fs.mkdirSync(path.join(__dirname, "ClientSettings")); +} + +// if endpoint not found, return this error +express.use((req, res, next) => { + var XEpicErrorName = "errors.com.lawinserver.common.not_found"; + var XEpicErrorCode = 1004; + + res.set({ + 'X-Epic-Error-Name': XEpicErrorName, + 'X-Epic-Error-Code': XEpicErrorCode + }); + + res.status(404); + res.json({ + "errorCode": XEpicErrorName, + "errorMessage": "Sorry the resource you were trying to find could not be found", + "numericErrorCode": XEpicErrorCode, + "originatingService": "any", + "intent": "prod" + }); +}); \ No newline at end of file diff --git a/lawin/install_packages.bat b/lawin/install_packages.bat new file mode 100644 index 0000000..63b2a60 --- /dev/null +++ b/lawin/install_packages.bat @@ -0,0 +1,2 @@ +npm i +pause \ No newline at end of file diff --git a/lawin/package-lock.json b/lawin/package-lock.json new file mode 100644 index 0000000..f4655aa --- /dev/null +++ b/lawin/package-lock.json @@ -0,0 +1,5456 @@ +{ + "name": "lawinserver", + "version": "1.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "lawinserver", + "version": "1.0.0", + "license": "GPL-3.0", + "dependencies": { + "cookie-parser": "^1.4.6", + "express": "^4.18.2", + "ini": "^2.0.0", + "nexe": "^4.0.0-rc.6", + "path": "^0.12.7", + "uuid": "^8.3.2", + "ws": "^8.5.0", + "xml-parser": "^1.2.1", + "xmlbuilder": "^15.1.1" + } + }, + "node_modules/@calebboyd/semaphore": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@calebboyd/semaphore/-/semaphore-1.3.1.tgz", + "integrity": "sha512-17z9me12RgAEcMhIgR7f+BiXKbzwF9p1VraI69OxrUUSWGuSMOyOTEHQNVtMKuVrkEDVD0/Av5uiGZPBMYZljw==" + }, + "node_modules/@colors/colors": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz", + "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/@dabh/diagnostics": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", + "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", + "dependencies": { + "colorspace": "1.1.x", + "enabled": "2.0.x", + "kuler": "^2.0.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" + }, + "node_modules/@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/node": { + "version": "20.12.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.12.tgz", + "integrity": "sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/responselike": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", + "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/triple-beam": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz", + "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/app-builder": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/app-builder/-/app-builder-7.0.4.tgz", + "integrity": "sha512-QCmWZnoNN2uItlRV+gj4J6OONaFcJPyFoIuP1RkoILcuq19MlkynYB+wtH8uGv/umyynMWHI1HxnH1jGa1hNKQ==" + }, + "node_modules/archive-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==", + "dependencies": { + "file-type": "^4.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/archive-type/node_modules/file-type": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "dependencies": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/bl/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/bl/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/bl/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "engines": { + "node": "*" + } + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==" + }, + "node_modules/build": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/build/-/build-0.1.4.tgz", + "integrity": "sha512-KwbDJ/zrsU8KZRRMfoURG14cKIAStUlS8D5jBDvtrZbwO5FEkYqc3oB8HIhRiyD64A48w1lc+sOmQ+mmBw5U/Q==", + "dependencies": { + "cssmin": "0.3.x", + "jsmin": "1.x", + "jxLoader": "*", + "moo-server": "*", + "promised-io": "*", + "timespan": "2.x", + "uglify-js": "1.x", + "walker": "1.x", + "winston": "*", + "wrench": "1.3.x" + }, + "engines": { + "node": ">v0.4.12" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "engines": { + "node": ">=10.6.0" + } + }, + "node_modules/cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caw": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "dependencies": { + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "dependencies": { + "restore-cursor": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "dependencies": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/colorspace": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", + "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", + "dependencies": { + "color": "^3.1.3", + "text-hex": "1.0.x" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/config-chain/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-parser": { + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.6.tgz", + "integrity": "sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==", + "dependencies": { + "cookie": "0.4.1", + "cookie-signature": "1.0.6" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cssmin": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/cssmin/-/cssmin-0.3.2.tgz", + "integrity": "sha512-bynxGIAJ8ybrnFobjsQotIjA8HFDDgPwbeUWNXXXfR+B4f9kkxdcUyagJoQCSUOfMV+ZZ6bMn8bvbozlCzUGwQ==", + "bin": { + "cssmin": "bin/cssmin" + } + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "dependencies": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "dependencies": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tar/node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "dependencies": { + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tarbz2/node_modules/file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", + "dependencies": { + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-targz/node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==", + "dependencies": { + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-unzip/node_modules/file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-unzip/node_modules/get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", + "dependencies": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-unzip/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress/node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress/node_modules/make-dir/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/download": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/download/-/download-8.0.0.tgz", + "integrity": "sha512-ASRY5QhDk7FK+XrQtQyvhpDKanLluEEQtWl/J7Lxuf/b+i8RYh997QeXvL85xitrmRKVlx9c7eTrcRdq2GS4eA==", + "dependencies": { + "archive-type": "^4.0.0", + "content-disposition": "^0.5.2", + "decompress": "^4.2.1", + "ext-name": "^5.0.0", + "file-type": "^11.1.0", + "filenamify": "^3.0.0", + "get-stream": "^4.1.0", + "got": "^8.3.1", + "make-dir": "^2.1.0", + "p-event": "^2.1.0", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/download/node_modules/@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==", + "dependencies": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + } + }, + "node_modules/download/node_modules/cacheable-request/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/cacheable-request/node_modules/lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/download/node_modules/clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", + "dependencies": { + "mimic-response": "^1.0.0" + } + }, + "node_modules/download/node_modules/decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "dependencies": { + "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "dependencies": { + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/got/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/got/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==" + }, + "node_modules/download/node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==" + }, + "node_modules/download/node_modules/keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "dependencies": { + "json-buffer": "3.0.0" + } + }, + "node_modules/download/node_modules/lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/download/node_modules/normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "dependencies": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "dependencies": { + "lowercase-keys": "^1.0.0" + } + }, + "node_modules/download/node_modules/sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/duplexer3": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/enabled": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", + "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.1.tgz", + "integrity": "sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "dependencies": { + "mime-db": "^1.28.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "dependencies": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/fecha": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", + "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" + }, + "node_modules/file-type": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-11.1.0.tgz", + "integrity": "sha512-rM0UO7Qm9K7TWTtA6AShI/t7H5BPjDeGVDaNyg9BjHAj3PysKy7+8C8D137R88jnR3rFJZQB/tFgydl5sN5m7g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/filenamify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-3.0.0.tgz", + "integrity": "sha512-5EFZ//MsvJgXjBAFJ+Bh2YaCTRF/VP1YOmGrgt+KJ4SFRLjI87EIdwLLuT6wQX0I4F9W41xutobzczjsOKlI/g==", + "dependencies": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/fn.name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", + "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/from2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/from2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/from2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "dependencies": { + "npm-conf": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "engines": { + "node": "*" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "dependencies": { + "has-symbol-support-x": "^1.4.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==", + "dependencies": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==" + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "dependencies": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/js-yaml": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.7.tgz", + "integrity": "sha512-/7PsVDNP2tVe2Z1cF9kTEkjamIwz4aooDpRKmN1+g/9eePCgcxsv4QDvEbxO0EH+gdDD7MLyDoR6BASo3hH51g==", + "engines": { + "node": "> 0.4.11" + } + }, + "node_modules/jsmin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/jsmin/-/jsmin-1.0.1.tgz", + "integrity": "sha512-OPuL5X/bFKgVdMvEIX3hnpx3jbVpFCrEM8pKPXjFkZUqg521r41ijdyTz7vACOhW6o1neVlcLyd+wkbK5fNHRg==", + "bin": { + "jsmin": "bin/jsmin" + }, + "engines": { + "node": ">=0.1.93" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "node_modules/jxLoader": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jxLoader/-/jxLoader-0.1.1.tgz", + "integrity": "sha512-ClEvAj3K68y8uKhub3RgTmcRPo5DfIWvtxqrKQdDPyZ1UVHIIKvVvjrAsJFSVL5wjv0rt5iH9SMCZ0XRKNzeUA==", + "dependencies": { + "js-yaml": "0.3.x", + "moo-server": "1.3.x", + "promised-io": "*", + "walker": "1.x" + }, + "engines": { + "node": ">v0.4.10" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kuler": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", + "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" + }, + "node_modules/log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "dependencies": { + "chalk": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/logform": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/logform/-/logform-2.6.0.tgz", + "integrity": "sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==", + "dependencies": { + "@colors/colors": "1.6.0", + "@types/triple-beam": "^1.3.2", + "fecha": "^4.2.0", + "ms": "^2.1.1", + "safe-stable-stringify": "^2.3.1", + "triple-beam": "^1.3.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/logform/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/meriyah": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/meriyah/-/meriyah-4.4.2.tgz", + "integrity": "sha512-fENZIbs4tscI3IGRGtPrCoW4H4oGzVQrQCVCGRv+92kFXKkvxr52ZNR684ICvDC/UBWg9ioGc2X6pMnWOtRYwA==", + "engines": { + "node": ">=10.4.0" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/moo-server": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/moo-server/-/moo-server-1.3.0.tgz", + "integrity": "sha512-9A8/eor2DXwpv1+a4pZAAydqLFVrWoKoO1fzdzqLUhYVXAO1Kgd1FR2gFZi7YdHzF0s4W8cDNwCfKJQrvLqxDw==", + "engines": { + "node": ">v0.4.10" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/multistream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/multistream/-/multistream-4.1.0.tgz", + "integrity": "sha512-J1XDiAmmNpRCBfIWJv+n0ymC4ABcf/Pl+5YvC5B/D2f/2+8PtHvCNxMPKiQcZyi922Hq69J2YOpb1pTywfifyw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "once": "^1.4.0", + "readable-stream": "^3.6.0" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/nexe": { + "version": "4.0.0-rc.6", + "resolved": "https://registry.npmjs.org/nexe/-/nexe-4.0.0-rc.6.tgz", + "integrity": "sha512-o/ZLZveFywzrtcxxMoDUuNeqvuSeEoyGnli2k8F6j13zranhfTtbWqvt2WObUQ9UiKo9jYgLQBVQeVul6bZsvQ==", + "dependencies": { + "@calebboyd/semaphore": "^1.3.1", + "app-builder": "^7.0.4", + "build": "^0.1.4", + "caw": "^2.0.1", + "chalk": "^2.4.2", + "download": "^8.0.0", + "globby": "^11.0.2", + "got": "^11.8.2", + "meriyah": "^4.3.3", + "minimist": "^1.2.6", + "mkdirp": "^1.0.4", + "multistream": "^4.1.0", + "ora": "^3.4.0", + "resolve-dependencies": "^6.0.8", + "rimraf": "^3.0.2", + "run": "^1.5.0" + }, + "bin": { + "nexe": "index.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "dependencies": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-conf/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/one-time": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", + "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", + "dependencies": { + "fn.name": "1.x.x" + } + }, + "node_modules/onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "dependencies": { + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ora": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", + "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", + "dependencies": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-event": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "dependencies": { + "p-timeout": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path": { + "version": "0.12.7", + "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", + "integrity": "sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=", + "dependencies": { + "process": "^0.11.1", + "util": "^0.10.3" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/promised-io": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/promised-io/-/promised-io-0.3.6.tgz", + "integrity": "sha512-bNwZusuNIW4m0SPR8jooSyndD35ggirHlxVl/UhIaZD/F0OBv9ebfc6tNmbpZts3QXHggkjIBH8lvtnzhtcz0A==" + }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "dependencies": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + }, + "node_modules/resolve-dependencies": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/resolve-dependencies/-/resolve-dependencies-6.0.9.tgz", + "integrity": "sha512-1BfxvQZyAjSC3Kkcov3ZhHQiLaXVWX1dhFjWyyrPA5yb9yeW9aSC8GQP6TtkJImM7XvitN7kHrLcQxG+1VU7Gg==", + "dependencies": { + "enhanced-resolve": "^5.12.0", + "fast-glob": "^3.2.12", + "meriyah": "^4.3.5" + } + }, + "node_modules/responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "dependencies": { + "lowercase-keys": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "dependencies": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/run/-/run-1.5.0.tgz", + "integrity": "sha512-CBPzeX6JQZUdhZpSFyNt2vUk44ivKMWZYCNBYoZYEE46mL9nf6WyMP3320WnzIrJuo89+njiUvlo83jUEXjXLg==", + "dependencies": { + "minimatch": "*" + }, + "bin": { + "runjs": "cli.js" + }, + "engines": { + "node": ">=v0.9.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-stable-stringify": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", + "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", + "engines": { + "node": ">=10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "dependencies": { + "commander": "^2.8.1" + }, + "bin": { + "seek-bunzip": "bin/seek-bunzip", + "seek-table": "bin/seek-bzip-table" + } + }, + "node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", + "dependencies": { + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "engines": { + "node": "*" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "dependencies": { + "is-natural-number": "^4.0.1" + } + }, + "node_modules/strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "dependencies": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/tar-stream/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/tar-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/tar-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/text-hex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", + "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + }, + "node_modules/timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/timespan": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz", + "integrity": "sha512-0Jq9+58T2wbOyLth0EU+AUb6JMGCLaTWIykJFa7hyAybjVH9gpVMTfUAwo5fWAvtFt2Tjh/Elg8JtgNpnMnM8g==", + "engines": { + "node": ">= 0.2.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + }, + "node_modules/to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/triple-beam": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.4.1.tgz", + "integrity": "sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==", + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/uglify-js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-1.3.5.tgz", + "integrity": "sha512-YPX1DjKtom8l9XslmPFQnqWzTBkvI4N0pbkzLuPZZ4QTyig0uQqvZz9NgUdfEV+qccJzi7fVcGWdESvRIjWptQ==", + "bin": { + "uglifyjs": "bin/uglifyjs" + } + }, + "node_modules/unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dependencies": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "dependencies": { + "prepend-http": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/winston": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/winston/-/winston-3.13.0.tgz", + "integrity": "sha512-rwidmA1w3SE4j0E5MuIufFhyJPBDG7Nu71RkZor1p2+qHvJSZ9GYDA81AyleQcZbh/+V6HjeBdfnTZJm9rSeQQ==", + "dependencies": { + "@colors/colors": "^1.6.0", + "@dabh/diagnostics": "^2.0.2", + "async": "^3.2.3", + "is-stream": "^2.0.0", + "logform": "^2.4.0", + "one-time": "^1.0.0", + "readable-stream": "^3.4.0", + "safe-stable-stringify": "^2.3.1", + "stack-trace": "0.0.x", + "triple-beam": "^1.3.0", + "winston-transport": "^4.7.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/winston-transport": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.7.0.tgz", + "integrity": "sha512-ajBj65K5I7denzer2IYW6+2bNIVqLGDHqDw3Ow8Ohh+vdW+rv4MZ6eiDvHoKhfJFZ2auyN8byXieDDJ96ViONg==", + "dependencies": { + "logform": "^2.3.2", + "readable-stream": "^3.6.0", + "triple-beam": "^1.3.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/winston/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/wrench": { + "version": "1.3.9", + "resolved": "https://registry.npmjs.org/wrench/-/wrench-1.3.9.tgz", + "integrity": "sha512-srTJQmLTP5YtW+F5zDuqjMEZqLLr/eJOZfDI5ibfPfRMeDh3oBUefAscuH0q5wBKE339ptH/S/0D18ZkfOfmKQ==", + "deprecated": "wrench.js is deprecated! You should check out fs-extra (https://github.com/jprichardson/node-fs-extra) for any operations you were using wrench for. Thanks for all the usage over the years.", + "engines": { + "node": ">=0.1.97" + } + }, + "node_modules/ws": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz", + "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/xml-parser/-/xml-parser-1.2.1.tgz", + "integrity": "sha1-wx9MNPKXXbgq0BMiISBZJzYVb80=", + "dependencies": { + "debug": "^2.2.0" + } + }, + "node_modules/xmlbuilder": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + } + }, + "dependencies": { + "@calebboyd/semaphore": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@calebboyd/semaphore/-/semaphore-1.3.1.tgz", + "integrity": "sha512-17z9me12RgAEcMhIgR7f+BiXKbzwF9p1VraI69OxrUUSWGuSMOyOTEHQNVtMKuVrkEDVD0/Av5uiGZPBMYZljw==" + }, + "@colors/colors": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz", + "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==" + }, + "@dabh/diagnostics": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", + "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", + "requires": { + "colorspace": "1.1.x", + "enabled": "2.0.x", + "kuler": "^2.0.0" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" + }, + "@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "requires": { + "defer-to-connect": "^2.0.0" + } + }, + "@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "requires": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, + "@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" + }, + "@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "requires": { + "@types/node": "*" + } + }, + "@types/node": { + "version": "20.12.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.12.tgz", + "integrity": "sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==", + "requires": { + "undici-types": "~5.26.4" + } + }, + "@types/responselike": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", + "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", + "requires": { + "@types/node": "*" + } + }, + "@types/triple-beam": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz", + "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==" + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "app-builder": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/app-builder/-/app-builder-7.0.4.tgz", + "integrity": "sha512-QCmWZnoNN2uItlRV+gj4J6OONaFcJPyFoIuP1RkoILcuq19MlkynYB+wtH8uGv/umyynMWHI1HxnH1jGa1hNKQ==" + }, + "archive-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==", + "requires": { + "file-type": "^4.2.0" + }, + "dependencies": { + "file-type": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==" + } + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + }, + "async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "requires": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "requires": { + "fill-range": "^7.1.1" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "requires": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" + }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" + }, + "buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==" + }, + "build": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/build/-/build-0.1.4.tgz", + "integrity": "sha512-KwbDJ/zrsU8KZRRMfoURG14cKIAStUlS8D5jBDvtrZbwO5FEkYqc3oB8HIhRiyD64A48w1lc+sOmQ+mmBw5U/Q==", + "requires": { + "cssmin": "0.3.x", + "jsmin": "1.x", + "jxLoader": "*", + "moo-server": "*", + "promised-io": "*", + "timespan": "2.x", + "uglify-js": "1.x", + "walker": "1.x", + "winston": "*", + "wrench": "1.3.x" + } + }, + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" + }, + "cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "requires": { + "pump": "^3.0.0" + } + } + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "caw": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "requires": { + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" + }, + "clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "requires": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "colorspace": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", + "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", + "requires": { + "color": "^3.1.3", + "text-hex": "1.0.x" + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + }, + "dependencies": { + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + } + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + }, + "cookie": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==" + }, + "cookie-parser": { + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.6.tgz", + "integrity": "sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==", + "requires": { + "cookie": "0.4.1", + "cookie-signature": "1.0.6" + } + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "cssmin": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/cssmin/-/cssmin-0.3.2.tgz", + "integrity": "sha512-bynxGIAJ8ybrnFobjsQotIjA8HFDDgPwbeUWNXXXfR+B4f9kkxdcUyagJoQCSUOfMV+ZZ6bMn8bvbozlCzUGwQ==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" + }, + "decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "requires": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "dependencies": { + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" + } + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + } + } + }, + "decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "requires": { + "mimic-response": "^3.1.0" + }, + "dependencies": { + "mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" + } + } + }, + "decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "requires": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==" + } + } + }, + "decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "requires": { + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" + }, + "dependencies": { + "file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==" + } + } + }, + "decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", + "requires": { + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==" + } + } + }, + "decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==", + "requires": { + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" + }, + "dependencies": { + "file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==" + }, + "get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", + "requires": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + } + } + }, + "defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "requires": { + "clone": "^1.0.2" + } + }, + "defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "requires": { + "path-type": "^4.0.0" + } + }, + "download": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/download/-/download-8.0.0.tgz", + "integrity": "sha512-ASRY5QhDk7FK+XrQtQyvhpDKanLluEEQtWl/J7Lxuf/b+i8RYh997QeXvL85xitrmRKVlx9c7eTrcRdq2GS4eA==", + "requires": { + "archive-type": "^4.0.0", + "content-disposition": "^0.5.2", + "decompress": "^4.2.1", + "ext-name": "^5.0.0", + "file-type": "^11.1.0", + "filenamify": "^3.0.0", + "get-stream": "^4.1.0", + "got": "^8.3.1", + "make-dir": "^2.1.0", + "p-event": "^2.1.0", + "pify": "^4.0.1" + }, + "dependencies": { + "@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==" + }, + "cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==", + "requires": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" + }, + "lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==" + } + } + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "requires": { + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" + } + } + }, + "http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==" + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==" + }, + "keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "requires": { + "json-buffer": "3.0.0" + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + }, + "normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "requires": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + } + }, + "p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==" + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", + "requires": { + "is-plain-obj": "^1.0.0" + } + } + } + }, + "duplexer3": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "enabled": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", + "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.1.tgz", + "integrity": "sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==", + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + }, + "express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + } + } + }, + "ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "requires": { + "mime-db": "^1.28.0" + } + }, + "ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "requires": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + } + }, + "fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "requires": { + "reusify": "^1.0.4" + } + }, + "fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "requires": { + "pend": "~1.2.0" + } + }, + "fecha": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", + "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" + }, + "file-type": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-11.1.0.tgz", + "integrity": "sha512-rM0UO7Qm9K7TWTtA6AShI/t7H5BPjDeGVDaNyg9BjHAj3PysKy7+8C8D137R88jnR3rFJZQB/tFgydl5sN5m7g==" + }, + "filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==" + }, + "filenamify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-3.0.0.tgz", + "integrity": "sha512-5EFZ//MsvJgXjBAFJ+Bh2YaCTRF/VP1YOmGrgt+KJ4SFRLjI87EIdwLLuT6wQX0I4F9W41xutobzczjsOKlI/g==", + "requires": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" + } + }, + "fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + } + }, + "fn.name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", + "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + } + }, + "get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "requires": { + "npm-conf": "^1.1.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "requires": { + "pump": "^3.0.0" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + }, + "has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "requires": { + "has-symbol-support-x": "^1.4.1" + } + }, + "http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "requires": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" + }, + "into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==", + "requires": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + } + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==" + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" + }, + "is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "requires": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + } + }, + "js-yaml": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.7.tgz", + "integrity": "sha512-/7PsVDNP2tVe2Z1cF9kTEkjamIwz4aooDpRKmN1+g/9eePCgcxsv4QDvEbxO0EH+gdDD7MLyDoR6BASo3hH51g==" + }, + "jsmin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/jsmin/-/jsmin-1.0.1.tgz", + "integrity": "sha512-OPuL5X/bFKgVdMvEIX3hnpx3jbVpFCrEM8pKPXjFkZUqg521r41ijdyTz7vACOhW6o1neVlcLyd+wkbK5fNHRg==" + }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "jxLoader": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jxLoader/-/jxLoader-0.1.1.tgz", + "integrity": "sha512-ClEvAj3K68y8uKhub3RgTmcRPo5DfIWvtxqrKQdDPyZ1UVHIIKvVvjrAsJFSVL5wjv0rt5iH9SMCZ0XRKNzeUA==", + "requires": { + "js-yaml": "0.3.x", + "moo-server": "1.3.x", + "promised-io": "*", + "walker": "1.x" + } + }, + "keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "requires": { + "json-buffer": "3.0.1" + } + }, + "kuler": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", + "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" + }, + "log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "requires": { + "chalk": "^2.0.1" + } + }, + "logform": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/logform/-/logform-2.6.0.tgz", + "integrity": "sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==", + "requires": { + "@colors/colors": "1.6.0", + "@types/triple-beam": "^1.3.2", + "fecha": "^4.2.0", + "ms": "^2.1.1", + "safe-stable-stringify": "^2.3.1", + "triple-beam": "^1.3.0" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "requires": { + "tmpl": "1.0.5" + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "meriyah": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/meriyah/-/meriyah-4.4.2.tgz", + "integrity": "sha512-fENZIbs4tscI3IGRGtPrCoW4H4oGzVQrQCVCGRv+92kFXKkvxr52ZNR684ICvDC/UBWg9ioGc2X6pMnWOtRYwA==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "requires": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + }, + "moo-server": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/moo-server/-/moo-server-1.3.0.tgz", + "integrity": "sha512-9A8/eor2DXwpv1+a4pZAAydqLFVrWoKoO1fzdzqLUhYVXAO1Kgd1FR2gFZi7YdHzF0s4W8cDNwCfKJQrvLqxDw==" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "multistream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/multistream/-/multistream-4.1.0.tgz", + "integrity": "sha512-J1XDiAmmNpRCBfIWJv+n0ymC4ABcf/Pl+5YvC5B/D2f/2+8PtHvCNxMPKiQcZyi922Hq69J2YOpb1pTywfifyw==", + "requires": { + "once": "^1.4.0", + "readable-stream": "^3.6.0" + } + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + }, + "nexe": { + "version": "4.0.0-rc.6", + "resolved": "https://registry.npmjs.org/nexe/-/nexe-4.0.0-rc.6.tgz", + "integrity": "sha512-o/ZLZveFywzrtcxxMoDUuNeqvuSeEoyGnli2k8F6j13zranhfTtbWqvt2WObUQ9UiKo9jYgLQBVQeVul6bZsvQ==", + "requires": { + "@calebboyd/semaphore": "^1.3.1", + "app-builder": "^7.0.4", + "build": "^0.1.4", + "caw": "^2.0.1", + "chalk": "^2.4.2", + "download": "^8.0.0", + "globby": "^11.0.2", + "got": "^11.8.2", + "meriyah": "^4.3.3", + "minimist": "^1.2.6", + "mkdirp": "^1.0.4", + "multistream": "^4.1.0", + "ora": "^3.4.0", + "resolve-dependencies": "^6.0.8", + "rimraf": "^3.0.2", + "run": "^1.5.0" + } + }, + "normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + }, + "npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "requires": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "requires": { + "ee-first": "1.1.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "requires": { + "wrappy": "1" + } + }, + "one-time": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", + "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", + "requires": { + "fn.name": "1.x.x" + } + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "ora": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", + "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", + "requires": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + } + }, + "p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" + }, + "p-event": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "requires": { + "p-timeout": "^2.0.1" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" + }, + "p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==" + }, + "p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "requires": { + "p-finally": "^1.0.0" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "path": { + "version": "0.12.7", + "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", + "integrity": "sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=", + "requires": { + "process": "^0.11.1", + "util": "^0.10.3" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "requires": { + "pinkie": "^2.0.0" + } + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==" + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "promised-io": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/promised-io/-/promised-io-0.3.6.tgz", + "integrity": "sha512-bNwZusuNIW4m0SPR8jooSyndD35ggirHlxVl/UhIaZD/F0OBv9ebfc6tNmbpZts3QXHggkjIBH8lvtnzhtcz0A==" + }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "requires": { + "side-channel": "^1.0.4" + } + }, + "query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "requires": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + }, + "quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + }, + "resolve-dependencies": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/resolve-dependencies/-/resolve-dependencies-6.0.9.tgz", + "integrity": "sha512-1BfxvQZyAjSC3Kkcov3ZhHQiLaXVWX1dhFjWyyrPA5yb9yeW9aSC8GQP6TtkJImM7XvitN7kHrLcQxG+1VU7Gg==", + "requires": { + "enhanced-resolve": "^5.12.0", + "fast-glob": "^3.2.12", + "meriyah": "^4.3.5" + } + }, + "responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "requires": { + "lowercase-keys": "^2.0.0" + } + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "run": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/run/-/run-1.5.0.tgz", + "integrity": "sha512-CBPzeX6JQZUdhZpSFyNt2vUk44ivKMWZYCNBYoZYEE46mL9nf6WyMP3320WnzIrJuo89+njiUvlo83jUEXjXLg==", + "requires": { + "minimatch": "*" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safe-stable-stringify": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", + "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "requires": { + "commander": "^2.8.1" + } + }, + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "requires": { + "is-arrayish": "^0.3.1" + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "requires": { + "is-plain-obj": "^1.0.0" + } + }, + "sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", + "requires": { + "sort-keys": "^1.0.0" + } + }, + "stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==" + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "requires": { + "is-natural-number": "^4.0.1" + } + }, + "strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + }, + "tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "requires": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "text-hex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", + "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + }, + "timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==" + }, + "timespan": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz", + "integrity": "sha512-0Jq9+58T2wbOyLth0EU+AUb6JMGCLaTWIykJFa7hyAybjVH9gpVMTfUAwo5fWAvtFt2Tjh/Elg8JtgNpnMnM8g==" + }, + "tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + }, + "to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==" + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + }, + "trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "triple-beam": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.4.1.tgz", + "integrity": "sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==" + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "uglify-js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-1.3.5.tgz", + "integrity": "sha512-YPX1DjKtom8l9XslmPFQnqWzTBkvI4N0pbkzLuPZZ4QTyig0uQqvZz9NgUdfEV+qccJzi7fVcGWdESvRIjWptQ==" + }, + "unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "requires": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "requires": { + "prepend-http": "^2.0.0" + } + }, + "url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==" + }, + "util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "requires": { + "makeerror": "1.0.12" + } + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "requires": { + "defaults": "^1.0.3" + } + }, + "winston": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/winston/-/winston-3.13.0.tgz", + "integrity": "sha512-rwidmA1w3SE4j0E5MuIufFhyJPBDG7Nu71RkZor1p2+qHvJSZ9GYDA81AyleQcZbh/+V6HjeBdfnTZJm9rSeQQ==", + "requires": { + "@colors/colors": "^1.6.0", + "@dabh/diagnostics": "^2.0.2", + "async": "^3.2.3", + "is-stream": "^2.0.0", + "logform": "^2.4.0", + "one-time": "^1.0.0", + "readable-stream": "^3.4.0", + "safe-stable-stringify": "^2.3.1", + "stack-trace": "0.0.x", + "triple-beam": "^1.3.0", + "winston-transport": "^4.7.0" + }, + "dependencies": { + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + } + } + }, + "winston-transport": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.7.0.tgz", + "integrity": "sha512-ajBj65K5I7denzer2IYW6+2bNIVqLGDHqDw3Ow8Ohh+vdW+rv4MZ6eiDvHoKhfJFZ2auyN8byXieDDJ96ViONg==", + "requires": { + "logform": "^2.3.2", + "readable-stream": "^3.6.0", + "triple-beam": "^1.3.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "wrench": { + "version": "1.3.9", + "resolved": "https://registry.npmjs.org/wrench/-/wrench-1.3.9.tgz", + "integrity": "sha512-srTJQmLTP5YtW+F5zDuqjMEZqLLr/eJOZfDI5ibfPfRMeDh3oBUefAscuH0q5wBKE339ptH/S/0D18ZkfOfmKQ==" + }, + "ws": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz", + "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==", + "requires": {} + }, + "xml-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/xml-parser/-/xml-parser-1.2.1.tgz", + "integrity": "sha1-wx9MNPKXXbgq0BMiISBZJzYVb80=", + "requires": { + "debug": "^2.2.0" + } + }, + "xmlbuilder": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + }, + "yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + } + } +} diff --git a/lawin/package.json b/lawin/package.json new file mode 100644 index 0000000..be6e230 --- /dev/null +++ b/lawin/package.json @@ -0,0 +1,37 @@ +{ + "name": "lawinserver", + "version": "1.0.0", + "description": "A fortnite backend which supports both BR and STW for every single fortnite build.", + "main": "index.js", + "dependencies": { + "cookie-parser": "^1.4.6", + "express": "^4.18.2", + "ini": "^2.0.0", + "nexe": "^4.0.0-rc.6", + "path": "^0.12.7", + "uuid": "^8.3.2", + "ws": "^8.5.0", + "xml-parser": "^1.2.1", + "xmlbuilder": "^15.1.1" + }, + "scripts": { + "start": "node index.js", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/Lawin0129/LawinServer.git" + }, + "keywords": [ + "fortnite", + "backend", + "node", + "server" + ], + "author": "Lawin0129", + "license": "GPL-3.0", + "bugs": { + "url": "https://github.com/Lawin0129/LawinServer/issues" + }, + "homepage": "https://github.com/Lawin0129/LawinServer#readme" +} diff --git a/lawin/profiles/athena.json b/lawin/profiles/athena.json new file mode 100644 index 0000000..82acebe --- /dev/null +++ b/lawin/profiles/athena.json @@ -0,0 +1,135152 @@ +{ + "_id": "LawinServer", + "created": "0001-01-01T00:00:00.000Z", + "updated": "0001-01-01T00:00:00.000Z", + "rvn": 21, + "wipeNumber": 1, + "accountId": "LawinServer", + "profileId": "athena", + "version": "no_version", + "items": { + "lawin-loadout": { + "templateId": "CosmeticLocker:cosmeticlocker_athena", + "attributes": { + "locker_slots_data": { + "slots": { + "MusicPack": { + "items": [ + "AthenaMusicPack:MusicPack_119_CH1_DefaultMusic" + ] + }, + "Character": { + "items": [ + "" + ], + "activeVariants": [ + null + ] + }, + "Backpack": { + "items": [ + "" + ], + "activeVariants": [ + null + ] + }, + "SkyDiveContrail": { + "items": [ + "" + ], + "activeVariants": [ + null + ] + }, + "Dance": { + "items": [ + "AthenaDance:eid_dancemoves", + "", + "", + "", + "", + "" + ] + }, + "LoadingScreen": { + "items": [ + "" + ] + }, + "Pickaxe": { + "items": [ + "AthenaPickaxe:DefaultPickaxe" + ], + "activeVariants": [ + null + ] + }, + "Glider": { + "items": [ + "AthenaGlider:DefaultGlider" + ], + "activeVariants": [ + null + ] + }, + "ItemWrap": { + "items": [ + "", + "", + "", + "", + "", + "", + "" + ], + "activeVariants": [ + null, + null, + null, + null, + null, + null, + null, + null + ] + } + } + }, + "use_count": 0, + "banner_icon_template": "StandardBanner1", + "banner_color_template": "DefaultColor1", + "locker_name": "LawinServer", + "item_seen": false, + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_AgentSherbert": { + "templateId": "AthenaBackpack:Backpack_AgentSherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_AgentXKoi": { + "templateId": "AthenaBackpack:Backpack_AgentXKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_AllKnowing": { + "templateId": "AthenaBackpack:Backpack_AllKnowing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Amour": { + "templateId": "AthenaBackpack:Backpack_Amour", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Apprentice": { + "templateId": "AthenaBackpack:Backpack_Apprentice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ArcticIceBlue": { + "templateId": "AthenaBackpack:Backpack_ArcticIceBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ArcticIceTalus": { + "templateId": "AthenaBackpack:Backpack_ArcticIceTalus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ArcticIceTalus_Symbol": { + "templateId": "AthenaBackpack:Backpack_ArcticIceTalus_Symbol", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_AuricVine": { + "templateId": "AthenaBackpack:Backpack_AuricVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Ballerina": { + "templateId": "AthenaBackpack:Backpack_Ballerina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BananaAdventure": { + "templateId": "AthenaBackpack:Backpack_BananaAdventure", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BariumDemon": { + "templateId": "AthenaBackpack:Backpack_BariumDemon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Basil": { + "templateId": "AthenaBackpack:Backpack_Basil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BengalBasher": { + "templateId": "AthenaBackpack:Backpack_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BirdNest": { + "templateId": "AthenaBackpack:Backpack_BirdNest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BirdNestGreen": { + "templateId": "AthenaBackpack:Backpack_BirdNestGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BiruFang": { + "templateId": "AthenaBackpack:Backpack_BiruFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Bites": { + "templateId": "AthenaBackpack:Backpack_Bites", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BlazerVeil": { + "templateId": "AthenaBackpack:Backpack_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BlueGlaze": { + "templateId": "AthenaBackpack:Backpack_BlueGlaze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BlueJet": { + "templateId": "AthenaBackpack:Backpack_BlueJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BlueMystery_Dark": { + "templateId": "AthenaBackpack:Backpack_BlueMystery_Dark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BoneMarrow": { + "templateId": "AthenaBackpack:Backpack_BoneMarrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Boredom": { + "templateId": "AthenaBackpack:Backpack_Boredom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BrainMatter": { + "templateId": "AthenaBackpack:Backpack_BrainMatter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BraveBuild": { + "templateId": "AthenaBackpack:Backpack_BraveBuild", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BrawnyBass": { + "templateId": "AthenaBackpack:Backpack_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BrightShimmer": { + "templateId": "AthenaBackpack:Backpack_BrightShimmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_BuffCatCruise": { + "templateId": "AthenaBackpack:Backpack_BuffCatCruise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Calavera": { + "templateId": "AthenaBackpack:Backpack_Calavera", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CameraShake": { + "templateId": "AthenaBackpack:Backpack_CameraShake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Candor": { + "templateId": "AthenaBackpack:Backpack_Candor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CavalryAlt": { + "templateId": "AthenaBackpack:Backpack_CavalryAlt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CeremonialGuard": { + "templateId": "AthenaBackpack:Backpack_CeremonialGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Chainmail": { + "templateId": "AthenaBackpack:Backpack_Chainmail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ChaosDarkIce": { + "templateId": "AthenaBackpack:Backpack_ChaosDarkIce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ChicleVeil": { + "templateId": "AthenaBackpack:Backpack_ChicleVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ChillCat": { + "templateId": "AthenaBackpack:Backpack_ChillCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CinderMax": { + "templateId": "AthenaBackpack:Backpack_CinderMax", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CirrusVine": { + "templateId": "AthenaBackpack:Backpack_CirrusVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Citadel": { + "templateId": "AthenaBackpack:Backpack_Citadel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CitadelCape": { + "templateId": "AthenaBackpack:Backpack_CitadelCape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ClawMachine": { + "templateId": "AthenaBackpack:Backpack_ClawMachine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ClearRadius": { + "templateId": "AthenaBackpack:Backpack_ClearRadius", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CleverEdge": { + "templateId": "AthenaBackpack:Backpack_CleverEdge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ConfectionPop": { + "templateId": "AthenaBackpack:Backpack_ConfectionPop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Conscience": { + "templateId": "AthenaBackpack:Backpack_Conscience", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CoyoTear": { + "templateId": "AthenaBackpack:Backpack_CoyoTear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CoyoteTrail": { + "templateId": "AthenaBackpack:Backpack_CoyoteTrail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CoyoteTrailDark": { + "templateId": "AthenaBackpack:Backpack_CoyoteTrailDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CraneGame": { + "templateId": "AthenaBackpack:Backpack_CraneGame", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CrimsonPeak": { + "templateId": "AthenaBackpack:Backpack_CrimsonPeak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CrimsonPeak_Ship": { + "templateId": "AthenaBackpack:Backpack_CrimsonPeak_Ship", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CrispRover": { + "templateId": "AthenaBackpack:Backpack_CrispRover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CubeCoast": { + "templateId": "AthenaBackpack:Backpack_CubeCoast", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CupidEvil": { + "templateId": "AthenaBackpack:Backpack_CupidEvil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_CyberRunnerGolden": { + "templateId": "AthenaBackpack:Backpack_CyberRunnerGolden", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DaggerPack": { + "templateId": "AthenaBackpack:Backpack_DaggerPack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Dango": { + "templateId": "AthenaBackpack:Backpack_Dango", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DapperPunch": { + "templateId": "AthenaBackpack:Backpack_DapperPunch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DarkAzalea": { + "templateId": "AthenaBackpack:Backpack_DarkAzalea", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Dazzle": { + "templateId": "AthenaBackpack:Backpack_Dazzle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DefectBlip": { + "templateId": "AthenaBackpack:Backpack_DefectBlip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "RichColor2", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DefectGlitch": { + "templateId": "AthenaBackpack:Backpack_DefectGlitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "RichColor2", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Despair": { + "templateId": "AthenaBackpack:Backpack_Despair", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DiamondHeart": { + "templateId": "AthenaBackpack:Backpack_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DistantEchoCastle": { + "templateId": "AthenaBackpack:Backpack_DistantEchoCastle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DistantEchoPilot": { + "templateId": "AthenaBackpack:Backpack_DistantEchoPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DistantEchoPro": { + "templateId": "AthenaBackpack:Backpack_DistantEchoPro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DracoDueler": { + "templateId": "AthenaBackpack:Backpack_DracoDueler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DriftAvatar": { + "templateId": "AthenaBackpack:Backpack_DriftAvatar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DriftSwat": { + "templateId": "AthenaBackpack:Backpack_DriftSwat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DriftTrooper": { + "templateId": "AthenaBackpack:Backpack_DriftTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_DyedDuelist": { + "templateId": "AthenaBackpack:Backpack_DyedDuelist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Ebony": { + "templateId": "AthenaBackpack:Backpack_Ebony", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_EctoCat": { + "templateId": "AthenaBackpack:Backpack_EctoCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Elevate": { + "templateId": "AthenaBackpack:Backpack_Elevate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_EmberRae": { + "templateId": "AthenaBackpack:Backpack_EmberRae", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_EmeraldGlassGreen": { + "templateId": "AthenaBackpack:Backpack_EmeraldGlassGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_EmeraldGlassPink": { + "templateId": "AthenaBackpack:Backpack_EmeraldGlassPink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_EmeraldGlassRebel": { + "templateId": "AthenaBackpack:Backpack_EmeraldGlassRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_EmeraldGlassStandAlone": { + "templateId": "AthenaBackpack:Backpack_EmeraldGlassStandAlone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_EmeraldGlassTransform": { + "templateId": "AthenaBackpack:Backpack_EmeraldGlassTransform", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Ephemeral": { + "templateId": "AthenaBackpack:Backpack_Ephemeral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FallValleyBlink": { + "templateId": "AthenaBackpack:Backpack_FallValleyBlink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FallValleyCharge": { + "templateId": "AthenaBackpack:Backpack_FallValleyCharge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FauxVenom": { + "templateId": "AthenaBackpack:Backpack_FauxVenom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FearlessFlightHero": { + "templateId": "AthenaBackpack:Backpack_FearlessFlightHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FearlessFlightMenace": { + "templateId": "AthenaBackpack:Backpack_FearlessFlightMenace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Firework": { + "templateId": "AthenaBackpack:Backpack_Firework", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FishBowlBone": { + "templateId": "AthenaBackpack:Backpack_FishBowlBone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FloodPlain": { + "templateId": "AthenaBackpack:Backpack_FloodPlain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FNBirthday5": { + "templateId": "AthenaBackpack:Backpack_FNBirthday5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FNBirthdaySix": { + "templateId": "AthenaBackpack:Backpack_FNBirthdaySix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FNCS22": { + "templateId": "AthenaBackpack:Backpack_FNCS22", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FNCS23": { + "templateId": "AthenaBackpack:Backpack_FNCS23", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FNCS24": { + "templateId": "AthenaBackpack:Backpack_FNCS24", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FNCS25": { + "templateId": "AthenaBackpack:Backpack_FNCS25", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FNCS26": { + "templateId": "AthenaBackpack:Backpack_FNCS26", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FNCSShield26": { + "templateId": "AthenaBackpack:Backpack_FNCSShield26", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FNCS_S28": { + "templateId": "AthenaBackpack:Backpack_FNCS_S28", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FolkEvening": { + "templateId": "AthenaBackpack:Backpack_FolkEvening", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FolkEveningSheath": { + "templateId": "AthenaBackpack:Backpack_FolkEveningSheath", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FossilMech": { + "templateId": "AthenaBackpack:Backpack_FossilMech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_FrozenReality": { + "templateId": "AthenaBackpack:Backpack_FrozenReality", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_GalaxyKnight": { + "templateId": "AthenaBackpack:Backpack_GalaxyKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_GalaxyLevel": { + "templateId": "AthenaBackpack:Backpack_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_GelatinGummi": { + "templateId": "AthenaBackpack:Backpack_GelatinGummi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Genius": { + "templateId": "AthenaBackpack:Backpack_Genius", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_GeniusStandAlone": { + "templateId": "AthenaBackpack:Backpack_GeniusStandAlone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Genius_Blob": { + "templateId": "AthenaBackpack:Backpack_Genius_Blob", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_GlobeDigital": { + "templateId": "AthenaBackpack:Backpack_GlobeDigital", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_GoldenGuard": { + "templateId": "AthenaBackpack:Backpack_GoldenGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_GoldenPleats": { + "templateId": "AthenaBackpack:Backpack_GoldenPleats", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_GoodMood": { + "templateId": "AthenaBackpack:Backpack_GoodMood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_GrandScheme": { + "templateId": "AthenaBackpack:Backpack_GrandScheme", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_GroovyReader": { + "templateId": "AthenaBackpack:Backpack_GroovyReader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_GroovyReaderGrid": { + "templateId": "AthenaBackpack:Backpack_GroovyReaderGrid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HauntKoi": { + "templateId": "AthenaBackpack:Backpack_HauntKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HawtChamp": { + "templateId": "AthenaBackpack:Backpack_HawtChamp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HeadHunterStar": { + "templateId": "AthenaBackpack:Backpack_HeadHunterStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HeadHunterStarFNCS": { + "templateId": "AthenaBackpack:Backpack_HeadHunterStarFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Headset": { + "templateId": "AthenaBackpack:Backpack_Headset", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HeavyRoar": { + "templateId": "AthenaBackpack:Backpack_HeavyRoar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HeavyRoarCarton": { + "templateId": "AthenaBackpack:Backpack_HeavyRoarCarton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HeistSleek": { + "templateId": "AthenaBackpack:Backpack_HeistSleek", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HighBeam": { + "templateId": "AthenaBackpack:Backpack_HighBeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HighMotion": { + "templateId": "AthenaBackpack:Backpack_HighMotion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HitmanCase_Dark": { + "templateId": "AthenaBackpack:Backpack_HitmanCase_Dark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HornedJudgmentCape": { + "templateId": "AthenaBackpack:Backpack_HornedJudgmentCape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HornettaVine": { + "templateId": "AthenaBackpack:Backpack_HornettaVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HumanBeing": { + "templateId": "AthenaBackpack:Backpack_HumanBeing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HurricaneRetro": { + "templateId": "AthenaBackpack:Backpack_HurricaneRetro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_HydroIgnite": { + "templateId": "AthenaBackpack:Backpack_HydroIgnite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_IceRetreat": { + "templateId": "AthenaBackpack:Backpack_IceRetreat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_IchorIncisor": { + "templateId": "AthenaBackpack:Backpack_IchorIncisor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Imitator": { + "templateId": "AthenaBackpack:Backpack_Imitator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Impulse": { + "templateId": "AthenaBackpack:Backpack_Impulse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_IndieBucket": { + "templateId": "AthenaBackpack:Backpack_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Inferno": { + "templateId": "AthenaBackpack:Backpack_Inferno", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_InnovatorSand": { + "templateId": "AthenaBackpack:Backpack_InnovatorSand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Inspire": { + "templateId": "AthenaBackpack:Backpack_Inspire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_InstantGravel": { + "templateId": "AthenaBackpack:Backpack_InstantGravel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_InstantGravelNoble": { + "templateId": "AthenaBackpack:Backpack_InstantGravelNoble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_IonVial": { + "templateId": "AthenaBackpack:Backpack_IonVial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_IronBlaze": { + "templateId": "AthenaBackpack:Backpack_IronBlaze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_IvyCross": { + "templateId": "AthenaBackpack:Backpack_IvyCross", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_JollyTroll": { + "templateId": "AthenaBackpack:Backpack_JollyTroll", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_JollyTroll_Winter": { + "templateId": "AthenaBackpack:Backpack_JollyTroll_Winter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_JoyfulGrin": { + "templateId": "AthenaBackpack:Backpack_JoyfulGrin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_JumbotronS22": { + "templateId": "AthenaBackpack:Backpack_JumbotronS22", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_JumbotronS23": { + "templateId": "AthenaBackpack:Backpack_JumbotronS23", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_KeyTracker": { + "templateId": "AthenaBackpack:Backpack_KeyTracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_KnightCatRacket": { + "templateId": "AthenaBackpack:Backpack_KnightCatRacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LastVoiceDive": { + "templateId": "AthenaBackpack:Backpack_LastVoiceDive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LastVoicePresent": { + "templateId": "AthenaBackpack:Backpack_LastVoicePresent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LastVoiceSteel": { + "templateId": "AthenaBackpack:Backpack_LastVoiceSteel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LazarusLens": { + "templateId": "AthenaBackpack:Backpack_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Lazuli": { + "templateId": "AthenaBackpack:Backpack_Lazuli", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LethalVae": { + "templateId": "AthenaBackpack:Backpack_LethalVae", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LettuceCat": { + "templateId": "AthenaBackpack:Backpack_LettuceCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LexaEarlGrey": { + "templateId": "AthenaBackpack:Backpack_LexaEarlGrey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LightningDragon": { + "templateId": "AthenaBackpack:Backpack_LightningDragon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Lilac": { + "templateId": "AthenaBackpack:Backpack_Lilac", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LilSplit": { + "templateId": "AthenaBackpack:Backpack_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LlamaNuggets": { + "templateId": "AthenaBackpack:Backpack_LlamaNuggets", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LocalZilla": { + "templateId": "AthenaBackpack:Backpack_LocalZilla", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Looper": { + "templateId": "AthenaBackpack:Backpack_Looper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LopexSnow": { + "templateId": "AthenaBackpack:Backpack_LopexSnow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LoudPhoenix": { + "templateId": "AthenaBackpack:Backpack_LoudPhoenix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_LucidAzalea": { + "templateId": "AthenaBackpack:Backpack_LucidAzalea", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MadameMoth": { + "templateId": "AthenaBackpack:Backpack_MadameMoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MagicMeadow": { + "templateId": "AthenaBackpack:Backpack_MagicMeadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MechanicalEngineerRev": { + "templateId": "AthenaBackpack:Backpack_MechanicalEngineerRev", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MelodyUrchin": { + "templateId": "AthenaBackpack:Backpack_MelodyUrchin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MercurialStorm": { + "templateId": "AthenaBackpack:Backpack_MercurialStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MetalScout": { + "templateId": "AthenaBackpack:Backpack_MetalScout", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MetalWings": { + "templateId": "AthenaBackpack:Backpack_MetalWings", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Meteorwomen_Alt": { + "templateId": "AthenaBackpack:Backpack_Meteorwomen_Alt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MillionaireCowgirl": { + "templateId": "AthenaBackpack:Backpack_MillionaireCowgirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MillionaireGem": { + "templateId": "AthenaBackpack:Backpack_MillionaireGem", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MillionaireTuna": { + "templateId": "AthenaBackpack:Backpack_MillionaireTuna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MindPinch": { + "templateId": "AthenaBackpack:Backpack_MindPinch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MirageHike": { + "templateId": "AthenaBackpack:Backpack_MirageHike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MoonShock": { + "templateId": "AthenaBackpack:Backpack_MoonShock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Mouse": { + "templateId": "AthenaBackpack:Backpack_Mouse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Mummy": { + "templateId": "AthenaBackpack:Backpack_Mummy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MusketSlinger": { + "templateId": "AthenaBackpack:Backpack_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_MuteRibbon": { + "templateId": "AthenaBackpack:Backpack_MuteRibbon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Nebula": { + "templateId": "AthenaBackpack:Backpack_Nebula", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_NightHawk": { + "templateId": "AthenaBackpack:Backpack_NightHawk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_NightHawkMetal": { + "templateId": "AthenaBackpack:Backpack_NightHawkMetal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_NightHawkSolo": { + "templateId": "AthenaBackpack:Backpack_NightHawkSolo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat4", + "owned": [ + "Mat4", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_NitroFlow": { + "templateId": "AthenaBackpack:Backpack_NitroFlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Nox": { + "templateId": "AthenaBackpack:Backpack_Nox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_OceanBreeze": { + "templateId": "AthenaBackpack:Backpack_OceanBreeze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_OpenEnded": { + "templateId": "AthenaBackpack:Backpack_OpenEnded", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_OrinChai": { + "templateId": "AthenaBackpack:Backpack_OrinChai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_OuterGarment": { + "templateId": "AthenaBackpack:Backpack_OuterGarment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PalmTree": { + "templateId": "AthenaBackpack:Backpack_PalmTree", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ParrotPen": { + "templateId": "AthenaBackpack:Backpack_ParrotPen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Patches": { + "templateId": "AthenaBackpack:Backpack_Patches", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PencilCherry": { + "templateId": "AthenaBackpack:Backpack_PencilCherry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9" + ] + }, + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PennantSeasonsTide": { + "templateId": "AthenaBackpack:Backpack_PennantSeasonsTide", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6", + "Particle7" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PhotographerHoliday": { + "templateId": "AthenaBackpack:Backpack_PhotographerHoliday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PinkJet": { + "templateId": "AthenaBackpack:Backpack_PinkJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PinkSpike": { + "templateId": "AthenaBackpack:Backpack_PinkSpike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PinkTrooper": { + "templateId": "AthenaBackpack:Backpack_PinkTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PirouetteWeld": { + "templateId": "AthenaBackpack:Backpack_PirouetteWeld", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PitGlass": { + "templateId": "AthenaBackpack:Backpack_PitGlass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PizzaParty": { + "templateId": "AthenaBackpack:Backpack_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PlotTwist": { + "templateId": "AthenaBackpack:Backpack_PlotTwist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Possession": { + "templateId": "AthenaBackpack:Backpack_Possession", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PowerFarmer": { + "templateId": "AthenaBackpack:Backpack_PowerFarmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PowerfulDozen": { + "templateId": "AthenaBackpack:Backpack_PowerfulDozen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PrisonBreak": { + "templateId": "AthenaBackpack:Backpack_PrisonBreak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_PrivateJet": { + "templateId": "AthenaBackpack:Backpack_PrivateJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ProdigyFire": { + "templateId": "AthenaBackpack:Backpack_ProdigyFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ProdigyHaughty": { + "templateId": "AthenaBackpack:Backpack_ProdigyHaughty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ProdigySage": { + "templateId": "AthenaBackpack:Backpack_ProdigySage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_QualityCreek": { + "templateId": "AthenaBackpack:Backpack_QualityCreek", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Quartz": { + "templateId": "AthenaBackpack:Backpack_Quartz", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_QuartzBlob": { + "templateId": "AthenaBackpack:Backpack_QuartzBlob", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_QuietPeanuts": { + "templateId": "AthenaBackpack:Backpack_QuietPeanuts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_QuietPeanutsStaple": { + "templateId": "AthenaBackpack:Backpack_QuietPeanutsStaple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Radish": { + "templateId": "AthenaBackpack:Backpack_Radish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RaiderPink_Sherbert": { + "templateId": "AthenaBackpack:Backpack_RaiderPink_Sherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Ramen": { + "templateId": "AthenaBackpack:Backpack_Ramen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RankedFaction": { + "templateId": "AthenaBackpack:Backpack_RankedFaction", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RankedHeist": { + "templateId": "AthenaBackpack:Backpack_RankedHeist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RankedRemix": { + "templateId": "AthenaBackpack:Backpack_RankedRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RebelClaw": { + "templateId": "AthenaBackpack:Backpack_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RecordScratch": { + "templateId": "AthenaBackpack:Backpack_RecordScratch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RedOasis": { + "templateId": "AthenaBackpack:Backpack_RedOasis", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RedPepper": { + "templateId": "AthenaBackpack:Backpack_RedPepper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ReliableElk": { + "templateId": "AthenaBackpack:Backpack_ReliableElk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RhombCamo": { + "templateId": "AthenaBackpack:Backpack_RhombCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RippedHarvester": { + "templateId": "AthenaBackpack:Backpack_RippedHarvester", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RollerBlade": { + "templateId": "AthenaBackpack:Backpack_RollerBlade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RoosterMelt": { + "templateId": "AthenaBackpack:Backpack_RoosterMelt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RoseDust": { + "templateId": "AthenaBackpack:Backpack_RoseDust", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RoseForm": { + "templateId": "AthenaBackpack:Backpack_RoseForm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_RoyalDusk": { + "templateId": "AthenaBackpack:Backpack_RoyalDusk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Ruins": { + "templateId": "AthenaBackpack:Backpack_Ruins", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Sahara": { + "templateId": "AthenaBackpack:Backpack_Sahara", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SailorSquadLeaderKoi": { + "templateId": "AthenaBackpack:Backpack_SailorSquadLeaderKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ScareyBeary": { + "templateId": "AthenaBackpack:Backpack_ScareyBeary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ScarletBionic": { + "templateId": "AthenaBackpack:Backpack_ScarletBionic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ScorpionZero": { + "templateId": "AthenaBackpack:Backpack_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Scribble": { + "templateId": "AthenaBackpack:Backpack_Scribble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SerpentCoil": { + "templateId": "AthenaBackpack:Backpack_SerpentCoil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SharpFang": { + "templateId": "AthenaBackpack:Backpack_SharpFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SharpMagnet": { + "templateId": "AthenaBackpack:Backpack_SharpMagnet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SharpMagnetCape": { + "templateId": "AthenaBackpack:Backpack_SharpMagnetCape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SharpMagnetUniversal": { + "templateId": "AthenaBackpack:Backpack_SharpMagnetUniversal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ShiitakeShaolin_Rouge": { + "templateId": "AthenaBackpack:Backpack_ShiitakeShaolin_Rouge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ShinyStar": { + "templateId": "AthenaBackpack:Backpack_ShinyStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Silencer": { + "templateId": "AthenaBackpack:Backpack_Silencer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SilentTempo": { + "templateId": "AthenaBackpack:Backpack_SilentTempo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SirWolf": { + "templateId": "AthenaBackpack:Backpack_SirWolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SkeleProbe": { + "templateId": "AthenaBackpack:Backpack_SkeleProbe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SkippingClouds": { + "templateId": "AthenaBackpack:Backpack_SkippingClouds", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SlicedBread": { + "templateId": "AthenaBackpack:Backpack_SlicedBread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SmartHyena": { + "templateId": "AthenaBackpack:Backpack_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SnakeCrest": { + "templateId": "AthenaBackpack:Backpack_SnakeCrest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SnowKnight": { + "templateId": "AthenaBackpack:Backpack_SnowKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SnowSoldierFashion": { + "templateId": "AthenaBackpack:Backpack_SnowSoldierFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SolarTheory": { + "templateId": "AthenaBackpack:Backpack_SolarTheory", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SparkArcher": { + "templateId": "AthenaBackpack:Backpack_SparkArcher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Sparrow": { + "templateId": "AthenaBackpack:Backpack_Sparrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Speed": { + "templateId": "AthenaBackpack:Backpack_Speed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SpeedDialBattle": { + "templateId": "AthenaBackpack:Backpack_SpeedDialBattle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SplitDiamond": { + "templateId": "AthenaBackpack:Backpack_SplitDiamond", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_StallionAviator": { + "templateId": "AthenaBackpack:Backpack_StallionAviator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_StallionSmoke": { + "templateId": "AthenaBackpack:Backpack_StallionSmoke", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_StarStray": { + "templateId": "AthenaBackpack:Backpack_StarStray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_StaticShades": { + "templateId": "AthenaBackpack:Backpack_StaticShades", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SteamPower": { + "templateId": "AthenaBackpack:Backpack_SteamPower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_StreetFashionSpring": { + "templateId": "AthenaBackpack:Backpack_StreetFashionSpring", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_StrontiumSpark": { + "templateId": "AthenaBackpack:Backpack_StrontiumSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SunbeamQuest": { + "templateId": "AthenaBackpack:Backpack_SunbeamQuest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SunBurst": { + "templateId": "AthenaBackpack:Backpack_SunBurst", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Sunburst_Alt": { + "templateId": "AthenaBackpack:Backpack_Sunburst_Alt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Sunlit": { + "templateId": "AthenaBackpack:Backpack_Sunlit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SunShine": { + "templateId": "AthenaBackpack:Backpack_SunShine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SuperNovaTaro": { + "templateId": "AthenaBackpack:Backpack_SuperNovaTaro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SurfAttackVibe": { + "templateId": "AthenaBackpack:Backpack_SurfAttackVibe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_SwampFish": { + "templateId": "AthenaBackpack:Backpack_SwampFish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Takoyaki": { + "templateId": "AthenaBackpack:Backpack_Takoyaki", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TalonHime": { + "templateId": "AthenaBackpack:Backpack_TalonHime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TearScar": { + "templateId": "AthenaBackpack:Backpack_TearScar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TheHerald": { + "templateId": "AthenaBackpack:Backpack_TheHerald", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TigerRootFame": { + "templateId": "AthenaBackpack:Backpack_TigerRootFame", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TigerRootHype": { + "templateId": "AthenaBackpack:Backpack_TigerRootHype", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TiltedParrot": { + "templateId": "AthenaBackpack:Backpack_TiltedParrot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TiltedParrotFrog": { + "templateId": "AthenaBackpack:Backpack_TiltedParrotFrog", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TimeInterval": { + "templateId": "AthenaBackpack:Backpack_TimeInterval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TimeIntervalCape": { + "templateId": "AthenaBackpack:Backpack_TimeIntervalCape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TimeIntervalUniversal": { + "templateId": "AthenaBackpack:Backpack_TimeIntervalUniversal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Titanium": { + "templateId": "AthenaBackpack:Backpack_Titanium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TracePaper": { + "templateId": "AthenaBackpack:Backpack_TracePaper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Troops": { + "templateId": "AthenaBackpack:Backpack_Troops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TroopsAlt": { + "templateId": "AthenaBackpack:Backpack_TroopsAlt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_TungStan": { + "templateId": "AthenaBackpack:Backpack_TungStan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_UndergroundRebel": { + "templateId": "AthenaBackpack:Backpack_UndergroundRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_VectorSpark": { + "templateId": "AthenaBackpack:Backpack_VectorSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Veiled": { + "templateId": "AthenaBackpack:Backpack_Veiled", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Venice": { + "templateId": "AthenaBackpack:Backpack_Venice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_Virtuous": { + "templateId": "AthenaBackpack:Backpack_Virtuous", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_VitalInventor": { + "templateId": "AthenaBackpack:Backpack_VitalInventor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_VitalInventorBlock": { + "templateId": "AthenaBackpack:Backpack_VitalInventorBlock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_VitalPsych": { + "templateId": "AthenaBackpack:Backpack_VitalPsych", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_VoidRedemption": { + "templateId": "AthenaBackpack:Backpack_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_WaterMolecules": { + "templateId": "AthenaBackpack:Backpack_WaterMolecules", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_WinterGift": { + "templateId": "AthenaBackpack:Backpack_WinterGift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_WinterHunterFNCS": { + "templateId": "AthenaBackpack:Backpack_WinterHunterFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ZebraScramble_Bacon": { + "templateId": "AthenaBackpack:Backpack_ZebraScramble_Bacon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ZebraScramble_Bone": { + "templateId": "AthenaBackpack:Backpack_ZebraScramble_Bone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Backpack_ZirconSweep": { + "templateId": "AthenaBackpack:Backpack_ZirconSweep", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_001_Cattus": { + "templateId": "BannerToken:BannerToken_001_Cattus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_002_Doggus": { + "templateId": "BannerToken:BannerToken_002_Doggus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_003_2019WorldCup": { + "templateId": "BannerToken:BannerToken_003_2019WorldCup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_004_Oak": { + "templateId": "BannerToken:BannerToken_004_Oak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_005_BlackMonday": { + "templateId": "BannerToken:BannerToken_005_BlackMonday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_006_StormKing": { + "templateId": "BannerToken:BannerToken_006_StormKing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_007_S11_TreeSymbol": { + "templateId": "BannerToken:BannerToken_007_S11_TreeSymbol", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_008_S11_DiamondShapes": { + "templateId": "BannerToken:BannerToken_008_S11_DiamondShapes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_009_S11_EightBall": { + "templateId": "BannerToken:BannerToken_009_S11_EightBall", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_010_S11_Toadstool": { + "templateId": "BannerToken:BannerToken_010_S11_Toadstool", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_011_S11_Pawmark": { + "templateId": "BannerToken:BannerToken_011_S11_Pawmark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_012_S11_Fishhook": { + "templateId": "BannerToken:BannerToken_012_S11_Fishhook", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_013_S11_ToxicMask": { + "templateId": "BannerToken:BannerToken_013_S11_ToxicMask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_014_S11_WaterWaves": { + "templateId": "BannerToken:BannerToken_014_S11_WaterWaves", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_015_GalileoA_0W6VH": { + "templateId": "BannerToken:BannerToken_015_GalileoA_0W6VH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_016_GalileoB_ZF42Y": { + "templateId": "BannerToken:BannerToken_016_GalileoB_ZF42Y", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_017_GalileoC_CKB0B": { + "templateId": "BannerToken:BannerToken_017_GalileoC_CKB0B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_018_GalileoD_5XXFQ": { + "templateId": "BannerToken:BannerToken_018_GalileoD_5XXFQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_019_XmasSweaterB": { + "templateId": "BannerToken:BannerToken_019_XmasSweaterB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_020_Flake": { + "templateId": "BannerToken:BannerToken_020_Flake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_021_SockMonkey": { + "templateId": "BannerToken:BannerToken_021_SockMonkey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_022_S11_Badge_01": { + "templateId": "BannerToken:BannerToken_022_S11_Badge_01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_023_S11_Badge_02": { + "templateId": "BannerToken:BannerToken_023_S11_Badge_02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_024_S11_Badge_03": { + "templateId": "BannerToken:BannerToken_024_S11_Badge_03", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_025_S11_Badge_04": { + "templateId": "BannerToken:BannerToken_025_S11_Badge_04", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_026_S11_Badge_05": { + "templateId": "BannerToken:BannerToken_026_S11_Badge_05", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_027_LoveAndWar_Love": { + "templateId": "BannerToken:BannerToken_027_LoveAndWar_Love", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_028_LoveAndWar_War": { + "templateId": "BannerToken:BannerToken_028_LoveAndWar_War", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_029_S12_Cowboy": { + "templateId": "BannerToken:BannerToken_029_S12_Cowboy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_030_S12_Grenade": { + "templateId": "BannerToken:BannerToken_030_S12_Grenade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_031_S12_Kitty": { + "templateId": "BannerToken:BannerToken_031_S12_Kitty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_032_S12_Roses": { + "templateId": "BannerToken:BannerToken_032_S12_Roses", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_033_S12_Skull": { + "templateId": "BannerToken:BannerToken_033_S12_Skull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_034_S12_WingedCritter": { + "templateId": "BannerToken:BannerToken_034_S12_WingedCritter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_035_S12_Badge_1": { + "templateId": "BannerToken:BannerToken_035_S12_Badge_1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_036_S12_Badge_2": { + "templateId": "BannerToken:BannerToken_036_S12_Badge_2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_037_S12_Badge_3": { + "templateId": "BannerToken:BannerToken_037_S12_Badge_3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_038_S12_Badge_4": { + "templateId": "BannerToken:BannerToken_038_S12_Badge_4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_039_S12_Badge_5": { + "templateId": "BannerToken:BannerToken_039_S12_Badge_5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_040_S12_Midas": { + "templateId": "BannerToken:BannerToken_040_S12_Midas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_041_S12_CycloneA": { + "templateId": "BannerToken:BannerToken_041_S12_CycloneA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_043_S12_Donut": { + "templateId": "BannerToken:BannerToken_043_S12_Donut", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_044_S12_BananaAgent": { + "templateId": "BannerToken:BannerToken_044_S12_BananaAgent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_045_S12_BrazilToucan": { + "templateId": "BannerToken:BannerToken_045_S12_BrazilToucan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_046_S12_BrazilDrum": { + "templateId": "BannerToken:BannerToken_046_S12_BrazilDrum", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_047_S13_BlackKnight": { + "templateId": "BannerToken:BannerToken_047_S13_BlackKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_048_S13_MechanicalEngineer": { + "templateId": "BannerToken:BannerToken_048_S13_MechanicalEngineer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_049_S13_OceanRider": { + "templateId": "BannerToken:BannerToken_049_S13_OceanRider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_050_S13_ProfessorPup": { + "templateId": "BannerToken:BannerToken_050_S13_ProfessorPup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_051_S13_RacerZero": { + "templateId": "BannerToken:BannerToken_051_S13_RacerZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_052_S13_SandCastle": { + "templateId": "BannerToken:BannerToken_052_S13_SandCastle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_053_S13_SpaceWanderer": { + "templateId": "BannerToken:BannerToken_053_S13_SpaceWanderer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_054_S13_TacticalScuba": { + "templateId": "BannerToken:BannerToken_054_S13_TacticalScuba", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_055_S13_Yonezu": { + "templateId": "BannerToken:BannerToken_055_S13_Yonezu", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_056_S14_HighTowerDate": { + "templateId": "BannerToken:BannerToken_056_S14_HighTowerDate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_057_S14_HighTowerGrape": { + "templateId": "BannerToken:BannerToken_057_S14_HighTowerGrape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_058_S14_HighTowerHoneyDew": { + "templateId": "BannerToken:BannerToken_058_S14_HighTowerHoneyDew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_059_S14_HighTowerMango": { + "templateId": "BannerToken:BannerToken_059_S14_HighTowerMango", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_060_S14_HighTowerRadish": { + "templateId": "BannerToken:BannerToken_060_S14_HighTowerRadish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_061_S14_HighTowerSquash": { + "templateId": "BannerToken:BannerToken_061_S14_HighTowerSquash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_062_S14_HighTowerTapas": { + "templateId": "BannerToken:BannerToken_062_S14_HighTowerTapas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_063_S14_HighTowerTomato": { + "templateId": "BannerToken:BannerToken_063_S14_HighTowerTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_064_S14_HighTowerWasabi": { + "templateId": "BannerToken:BannerToken_064_S14_HighTowerWasabi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_065_S14_PS_PlusPack_11": { + "templateId": "BannerToken:BannerToken_065_S14_PS_PlusPack_11", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_066_S15_AncientGladiator": { + "templateId": "BannerToken:BannerToken_066_S15_AncientGladiator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_067_S15_Shapeshifter": { + "templateId": "BannerToken:BannerToken_067_S15_Shapeshifter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_068_S15_Lexa": { + "templateId": "BannerToken:BannerToken_068_S15_Lexa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_069_S15_FutureSamurai": { + "templateId": "BannerToken:BannerToken_069_S15_FutureSamurai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_070_S15_Flapjack": { + "templateId": "BannerToken:BannerToken_070_S15_Flapjack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_071_S15_SpaceFighter": { + "templateId": "BannerToken:BannerToken_071_S15_SpaceFighter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_072_S15_CosmosA": { + "templateId": "BannerToken:BannerToken_072_S15_CosmosA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_073_S15_CosmosB": { + "templateId": "BannerToken:BannerToken_073_S15_CosmosB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_074_S15_CosmosC": { + "templateId": "BannerToken:BannerToken_074_S15_CosmosC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_075_S20_JourneyMentor": { + "templateId": "BannerToken:BannerToken_075_S20_JourneyMentor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_076_S20_Lyrical": { + "templateId": "BannerToken:BannerToken_076_S20_Lyrical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_077_S20_NeonCatSpeed": { + "templateId": "BannerToken:BannerToken_077_S20_NeonCatSpeed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_S26_IWD": { + "templateId": "BannerToken:BannerToken_S26_IWD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_STW001_Starlight1": { + "templateId": "BannerToken:BannerToken_STW001_Starlight1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_STW002_Starlight5": { + "templateId": "BannerToken:BannerToken_STW002_Starlight5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_STW003_Starlight3": { + "templateId": "BannerToken:BannerToken_STW003_Starlight3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_STW004_Starlight4": { + "templateId": "BannerToken:BannerToken_STW004_Starlight4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_STW005_Starlight2": { + "templateId": "BannerToken:BannerToken_STW005_Starlight2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_STW006_Starlight6": { + "templateId": "BannerToken:BannerToken_STW006_Starlight6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_STW007_StarlightScience": { + "templateId": "BannerToken:BannerToken_STW007_StarlightScience", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_TBD_S13_Badge_1": { + "templateId": "BannerToken:BannerToken_TBD_S13_Badge_1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_TBD_S13_Badge_2": { + "templateId": "BannerToken:BannerToken_TBD_S13_Badge_2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_TBD_S13_Badge_3": { + "templateId": "BannerToken:BannerToken_TBD_S13_Badge_3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_TBD_S13_Badge_4": { + "templateId": "BannerToken:BannerToken_TBD_S13_Badge_4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_TBD_S13_Badge_5": { + "templateId": "BannerToken:BannerToken_TBD_S13_Badge_5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_TBD_S13_SeasonBanner1": { + "templateId": "BannerToken:BannerToken_TBD_S13_SeasonBanner1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_TBD_S13_SeasonBanner2": { + "templateId": "BannerToken:BannerToken_TBD_S13_SeasonBanner2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "BannerToken:BannerToken_TBD_S13_SpraySweater": { + "templateId": "BannerToken:BannerToken_TBD_S13_SpraySweater", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_001_BlueSquire": { + "templateId": "AthenaBackpack:BID_001_BlueSquire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_002_RoyaleKnight": { + "templateId": "AthenaBackpack:BID_002_RoyaleKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_003_RedKnight": { + "templateId": "AthenaBackpack:BID_003_RedKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_004_BlackKnight": { + "templateId": "AthenaBackpack:BID_004_BlackKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_005_Raptor": { + "templateId": "AthenaBackpack:BID_005_Raptor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_006_SkiDude": { + "templateId": "AthenaBackpack:BID_006_SkiDude", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_007_SkiDude_USA": { + "templateId": "AthenaBackpack:BID_007_SkiDude_USA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_008_SkiDude_CAN": { + "templateId": "AthenaBackpack:BID_008_SkiDude_CAN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_009_SkiDude_GBR": { + "templateId": "AthenaBackpack:BID_009_SkiDude_GBR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_010_SkiDude_FRA": { + "templateId": "AthenaBackpack:BID_010_SkiDude_FRA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_011_SkiDude_GER": { + "templateId": "AthenaBackpack:BID_011_SkiDude_GER", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_012_SkiDude_CHN": { + "templateId": "AthenaBackpack:BID_012_SkiDude_CHN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_013_SkiDude_KOR": { + "templateId": "AthenaBackpack:BID_013_SkiDude_KOR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_014_SkiGirl": { + "templateId": "AthenaBackpack:BID_014_SkiGirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_015_SkiGirl_USA": { + "templateId": "AthenaBackpack:BID_015_SkiGirl_USA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_016_SkiGirl_CAN": { + "templateId": "AthenaBackpack:BID_016_SkiGirl_CAN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_017_SkiGirl_GBR": { + "templateId": "AthenaBackpack:BID_017_SkiGirl_GBR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_018_SkiGirl_FRA": { + "templateId": "AthenaBackpack:BID_018_SkiGirl_FRA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_019_SkiGirl_GER": { + "templateId": "AthenaBackpack:BID_019_SkiGirl_GER", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_020_SkiGirl_CHN": { + "templateId": "AthenaBackpack:BID_020_SkiGirl_CHN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_021_SkiGirl_KOR": { + "templateId": "AthenaBackpack:BID_021_SkiGirl_KOR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_022_Cupid": { + "templateId": "AthenaBackpack:BID_022_Cupid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_023_Pinkbear": { + "templateId": "AthenaBackpack:BID_023_Pinkbear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_024_Space": { + "templateId": "AthenaBackpack:BID_024_Space", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_025_Tactical": { + "templateId": "AthenaBackpack:BID_025_Tactical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_026_Brite": { + "templateId": "AthenaBackpack:BID_026_Brite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_027_Scavenger": { + "templateId": "AthenaBackpack:BID_027_Scavenger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_028_SpaceBlack": { + "templateId": "AthenaBackpack:BID_028_SpaceBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_029_RetroGrey": { + "templateId": "AthenaBackpack:BID_029_RetroGrey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_030_TacticalRogue": { + "templateId": "AthenaBackpack:BID_030_TacticalRogue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_031_Dinosaur": { + "templateId": "AthenaBackpack:BID_031_Dinosaur", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_032_FounderMale": { + "templateId": "AthenaBackpack:BID_032_FounderMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_033_FounderFemale": { + "templateId": "AthenaBackpack:BID_033_FounderFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_034_RockerPunk": { + "templateId": "AthenaBackpack:BID_034_RockerPunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_035_Scathach": { + "templateId": "AthenaBackpack:BID_035_Scathach", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_036_Raven": { + "templateId": "AthenaBackpack:BID_036_Raven", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_037_BunnyMale": { + "templateId": "AthenaBackpack:BID_037_BunnyMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_038_BunnyFemale": { + "templateId": "AthenaBackpack:BID_038_BunnyFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_039_SpaceBlackFemale": { + "templateId": "AthenaBackpack:BID_039_SpaceBlackFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_040_Wukong": { + "templateId": "AthenaBackpack:BID_040_Wukong", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_041_PajamaParty": { + "templateId": "AthenaBackpack:BID_041_PajamaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_042_Fishhead": { + "templateId": "AthenaBackpack:BID_042_Fishhead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_043_Pizza": { + "templateId": "AthenaBackpack:BID_043_Pizza", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_044_Robo": { + "templateId": "AthenaBackpack:BID_044_Robo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_045_TacticalJungle": { + "templateId": "AthenaBackpack:BID_045_TacticalJungle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_047_Candy": { + "templateId": "AthenaBackpack:BID_047_Candy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_048_Graffiti": { + "templateId": "AthenaBackpack:BID_048_Graffiti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_049_TacticalWoodland": { + "templateId": "AthenaBackpack:BID_049_TacticalWoodland", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_050_Hazmat": { + "templateId": "AthenaBackpack:BID_050_Hazmat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_051_Merman": { + "templateId": "AthenaBackpack:BID_051_Merman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_052_HazmatFemale": { + "templateId": "AthenaBackpack:BID_052_HazmatFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_053_JailbirdMale": { + "templateId": "AthenaBackpack:BID_053_JailbirdMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_054_JailbirdFemale": { + "templateId": "AthenaBackpack:BID_054_JailbirdFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_055_PSBurnout": { + "templateId": "AthenaBackpack:BID_055_PSBurnout", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_056_FighterPilot": { + "templateId": "AthenaBackpack:BID_056_FighterPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_057_Visitor": { + "templateId": "AthenaBackpack:BID_057_Visitor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_058_DarkEagle": { + "templateId": "AthenaBackpack:BID_058_DarkEagle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_059_WWIIPilot": { + "templateId": "AthenaBackpack:BID_059_WWIIPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_060_DarkNinja": { + "templateId": "AthenaBackpack:BID_060_DarkNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_061_CarbideOrange": { + "templateId": "AthenaBackpack:BID_061_CarbideOrange", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_062_Gumshoe": { + "templateId": "AthenaBackpack:BID_062_Gumshoe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_063_CuChulainn": { + "templateId": "AthenaBackpack:BID_063_CuChulainn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_064_FuzzyBearInd": { + "templateId": "AthenaBackpack:BID_064_FuzzyBearInd", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_065_CarbideBlack": { + "templateId": "AthenaBackpack:BID_065_CarbideBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_066_SpeedyRed": { + "templateId": "AthenaBackpack:BID_066_SpeedyRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_067_GumshoeFemale": { + "templateId": "AthenaBackpack:BID_067_GumshoeFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_068_GumshoeDark": { + "templateId": "AthenaBackpack:BID_068_GumshoeDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_069_DecoMale": { + "templateId": "AthenaBackpack:BID_069_DecoMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_070_DecoFemale": { + "templateId": "AthenaBackpack:BID_070_DecoFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_071_VikingFemale": { + "templateId": "AthenaBackpack:BID_071_VikingFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_072_VikingMale": { + "templateId": "AthenaBackpack:BID_072_VikingMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_073_DarkViking": { + "templateId": "AthenaBackpack:BID_073_DarkViking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_074_LifeguardFemale": { + "templateId": "AthenaBackpack:BID_074_LifeguardFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_075_TacticalBadass": { + "templateId": "AthenaBackpack:BID_075_TacticalBadass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_076_Shark": { + "templateId": "AthenaBackpack:BID_076_Shark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_077_WeGame": { + "templateId": "AthenaBackpack:BID_077_WeGame", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_078_StreetRacerCobraFemale": { + "templateId": "AthenaBackpack:BID_078_StreetRacerCobraFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_079_Penguin": { + "templateId": "AthenaBackpack:BID_079_Penguin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_080_StreetRacerCobraMale": { + "templateId": "AthenaBackpack:BID_080_StreetRacerCobraMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_081_ScubaMale": { + "templateId": "AthenaBackpack:BID_081_ScubaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_082_ScubaFemale": { + "templateId": "AthenaBackpack:BID_082_ScubaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_083_LifeguardMale": { + "templateId": "AthenaBackpack:BID_083_LifeguardMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_084_Birthday2018": { + "templateId": "AthenaBackpack:BID_084_Birthday2018", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_085_ModernMilitary": { + "templateId": "AthenaBackpack:BID_085_ModernMilitary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_086_ExerciseFemale": { + "templateId": "AthenaBackpack:BID_086_ExerciseFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_087_ExerciseMale": { + "templateId": "AthenaBackpack:BID_087_ExerciseMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_088_SushiChefMale": { + "templateId": "AthenaBackpack:BID_088_SushiChefMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_089_StreetRacerWhiteFemale": { + "templateId": "AthenaBackpack:BID_089_StreetRacerWhiteFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_090_StreetRacerWhiteMale": { + "templateId": "AthenaBackpack:BID_090_StreetRacerWhiteMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_091_DurrrBurgerHero": { + "templateId": "AthenaBackpack:BID_091_DurrrBurgerHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_092_FuzzyBearPanda": { + "templateId": "AthenaBackpack:BID_092_FuzzyBearPanda", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_093_HippieMale": { + "templateId": "AthenaBackpack:BID_093_HippieMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_094_HippieFemale": { + "templateId": "AthenaBackpack:BID_094_HippieFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_095_RavenQuillFemale": { + "templateId": "AthenaBackpack:BID_095_RavenQuillFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_096_BikerMale": { + "templateId": "AthenaBackpack:BID_096_BikerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_097_BikerFemale": { + "templateId": "AthenaBackpack:BID_097_BikerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_098_BlueSamuraiMale": { + "templateId": "AthenaBackpack:BID_098_BlueSamuraiMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_099_BlueSamuraiFemale": { + "templateId": "AthenaBackpack:BID_099_BlueSamuraiFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_100_DarkPaintballer": { + "templateId": "AthenaBackpack:BID_100_DarkPaintballer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_101_BlingFemale": { + "templateId": "AthenaBackpack:BID_101_BlingFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_102_Buckles": { + "templateId": "AthenaBackpack:BID_102_Buckles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_103_Clawed": { + "templateId": "AthenaBackpack:BID_103_Clawed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_104_YellowZip": { + "templateId": "AthenaBackpack:BID_104_YellowZip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_105_GhostPortal": { + "templateId": "AthenaBackpack:BID_105_GhostPortal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_106_GarageBandMale": { + "templateId": "AthenaBackpack:BID_106_GarageBandMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_107_GarageBandFemale": { + "templateId": "AthenaBackpack:BID_107_GarageBandFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_108_Blingmale": { + "templateId": "AthenaBackpack:BID_108_Blingmale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_108_HacivatMale": { + "templateId": "AthenaBackpack:BID_108_HacivatMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_109_MedicMale": { + "templateId": "AthenaBackpack:BID_109_MedicMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_110_MedicFemale": { + "templateId": "AthenaBackpack:BID_110_MedicFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_111_ClownFemale": { + "templateId": "AthenaBackpack:BID_111_ClownFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_112_ClownMale": { + "templateId": "AthenaBackpack:BID_112_ClownMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_113_DarkVikingFemale": { + "templateId": "AthenaBackpack:BID_113_DarkVikingFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_114_ModernMilitaryRed": { + "templateId": "AthenaBackpack:BID_114_ModernMilitaryRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_115_DieselpunkMale": { + "templateId": "AthenaBackpack:BID_115_DieselpunkMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_116_DieselpunkFemale": { + "templateId": "AthenaBackpack:BID_116_DieselpunkFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_117_OctoberfestMale": { + "templateId": "AthenaBackpack:BID_117_OctoberfestMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_118_OctoberfestFemale": { + "templateId": "AthenaBackpack:BID_118_OctoberfestFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_119_VampireFemale": { + "templateId": "AthenaBackpack:BID_119_VampireFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_120_Werewolf": { + "templateId": "AthenaBackpack:BID_120_Werewolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_121_RedRiding": { + "templateId": "AthenaBackpack:BID_121_RedRiding", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_122_HalloweenTomato": { + "templateId": "AthenaBackpack:BID_122_HalloweenTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_123_FortniteDJ": { + "templateId": "AthenaBackpack:BID_123_FortniteDJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_124_ScarecrowMale": { + "templateId": "AthenaBackpack:BID_124_ScarecrowMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_125_ScarecrowFemale": { + "templateId": "AthenaBackpack:BID_125_ScarecrowFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_126_DarkBomber": { + "templateId": "AthenaBackpack:BID_126_DarkBomber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_127_PlagueMale": { + "templateId": "AthenaBackpack:BID_127_PlagueMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_128_PlagueFemale": { + "templateId": "AthenaBackpack:BID_128_PlagueFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_129_PumpkinSlice": { + "templateId": "AthenaBackpack:BID_129_PumpkinSlice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_130_VampireMale02": { + "templateId": "AthenaBackpack:BID_130_VampireMale02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_131_BlackWidowfemale": { + "templateId": "AthenaBackpack:BID_131_BlackWidowfemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_132_BlackWidowMale": { + "templateId": "AthenaBackpack:BID_132_BlackWidowMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_133_GuanYu": { + "templateId": "AthenaBackpack:BID_133_GuanYu", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_134_MilitaryFashion": { + "templateId": "AthenaBackpack:BID_134_MilitaryFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_135_MuertosFemale": { + "templateId": "AthenaBackpack:BID_135_MuertosFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_136_MuertosMale": { + "templateId": "AthenaBackpack:BID_136_MuertosMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_137_EvilCowboy": { + "templateId": "AthenaBackpack:BID_137_EvilCowboy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_138_Celestial": { + "templateId": "AthenaBackpack:BID_138_Celestial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_139_FuzzyBearHalloween": { + "templateId": "AthenaBackpack:BID_139_FuzzyBearHalloween", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_140_StreetOpsMale": { + "templateId": "AthenaBackpack:BID_140_StreetOpsMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_141_StreetOpsFemale": { + "templateId": "AthenaBackpack:BID_141_StreetOpsFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_142_RaptorArcticCamo": { + "templateId": "AthenaBackpack:BID_142_RaptorArcticCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_142_SamuraiUltra": { + "templateId": "AthenaBackpack:BID_142_SamuraiUltra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_143_MadCommanderMale": { + "templateId": "AthenaBackpack:BID_143_MadCommanderMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_144_MadCommanderFemale": { + "templateId": "AthenaBackpack:BID_144_MadCommanderFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_145_AnimalJacketsMale": { + "templateId": "AthenaBackpack:BID_145_AnimalJacketsMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_146_AnimalJacketsFemale": { + "templateId": "AthenaBackpack:BID_146_AnimalJacketsFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_147_LilKev": { + "templateId": "AthenaBackpack:BID_147_LilKev", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_148_RobotRed": { + "templateId": "AthenaBackpack:BID_148_RobotRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_149_Wizard": { + "templateId": "AthenaBackpack:BID_149_Wizard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_150_Witch": { + "templateId": "AthenaBackpack:BID_150_Witch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_151_SushiChefFemale": { + "templateId": "AthenaBackpack:BID_151_SushiChefFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_152_HornedMaskMale": { + "templateId": "AthenaBackpack:BID_152_HornedMaskMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_153_HornedMaskFemale": { + "templateId": "AthenaBackpack:BID_153_HornedMaskFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_154_Feathers": { + "templateId": "AthenaBackpack:BID_154_Feathers", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_155_SniperHoodMale": { + "templateId": "AthenaBackpack:BID_155_SniperHoodMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_156_SniperHoodFemale": { + "templateId": "AthenaBackpack:BID_156_SniperHoodFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_157_MothMale": { + "templateId": "AthenaBackpack:BID_157_MothMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_158_ArcticSniperMale": { + "templateId": "AthenaBackpack:BID_158_ArcticSniperMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_160_TacticalSantaMale": { + "templateId": "AthenaBackpack:BID_160_TacticalSantaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_161_SnowBoardFemale": { + "templateId": "AthenaBackpack:BID_161_SnowBoardFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_162_YetiMale": { + "templateId": "AthenaBackpack:BID_162_YetiMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_163_IceKing": { + "templateId": "AthenaBackpack:BID_163_IceKing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_164_SnowmanMale": { + "templateId": "AthenaBackpack:BID_164_SnowmanMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_165_BlueBadassFemale": { + "templateId": "AthenaBackpack:BID_165_BlueBadassFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_166_RavenWinterMale": { + "templateId": "AthenaBackpack:BID_166_RavenWinterMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_167_RedKnightWinterFemale": { + "templateId": "AthenaBackpack:BID_167_RedKnightWinterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_168_CupidWinterMale": { + "templateId": "AthenaBackpack:BID_168_CupidWinterMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_169_MathMale": { + "templateId": "AthenaBackpack:BID_169_MathMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_170_MathFemale": { + "templateId": "AthenaBackpack:BID_170_MathFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_171_Rhino": { + "templateId": "AthenaBackpack:BID_171_Rhino", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_175_Prisoner": { + "templateId": "AthenaBackpack:BID_175_Prisoner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_176_NautilusMale": { + "templateId": "AthenaBackpack:BID_176_NautilusMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_177_NautilusFemale": { + "templateId": "AthenaBackpack:BID_177_NautilusFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_178_Angel": { + "templateId": "AthenaBackpack:BID_178_Angel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_179_DemonMale": { + "templateId": "AthenaBackpack:BID_179_DemonMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_180_IceMaiden": { + "templateId": "AthenaBackpack:BID_180_IceMaiden", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_181_SnowNinjaMale": { + "templateId": "AthenaBackpack:BID_181_SnowNinjaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_182_NutcrackerMale": { + "templateId": "AthenaBackpack:BID_182_NutcrackerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_183_NutcrackerFemale": { + "templateId": "AthenaBackpack:BID_183_NutcrackerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_184_SnowFairyFemale": { + "templateId": "AthenaBackpack:BID_184_SnowFairyFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_185_GnomeMale": { + "templateId": "AthenaBackpack:BID_185_GnomeMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_186_GingerbreadMale": { + "templateId": "AthenaBackpack:BID_186_GingerbreadMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_187_GingerbreadFemale": { + "templateId": "AthenaBackpack:BID_187_GingerbreadFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_188_FortniteDJFemale": { + "templateId": "AthenaBackpack:BID_188_FortniteDJFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_189_StreetGothMale": { + "templateId": "AthenaBackpack:BID_189_StreetGothMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_190_StreetGothFemale": { + "templateId": "AthenaBackpack:BID_190_StreetGothFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_191_WinterGhoulMale": { + "templateId": "AthenaBackpack:BID_191_WinterGhoulMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_192_WinterHolidayFemale": { + "templateId": "AthenaBackpack:BID_192_WinterHolidayFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_193_TeriyakiFishMale": { + "templateId": "AthenaBackpack:BID_193_TeriyakiFishMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_194_Krampus": { + "templateId": "AthenaBackpack:BID_194_Krampus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_195_FunkOpsFemale": { + "templateId": "AthenaBackpack:BID_195_FunkOpsFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_196_BarbarianMale": { + "templateId": "AthenaBackpack:BID_196_BarbarianMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_197_BarbarianFemale": { + "templateId": "AthenaBackpack:BID_197_BarbarianFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_198_TechOps": { + "templateId": "AthenaBackpack:BID_198_TechOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_199_IceQueen": { + "templateId": "AthenaBackpack:BID_199_IceQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_200_SnowNinjaFemale": { + "templateId": "AthenaBackpack:BID_200_SnowNinjaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_201_WavyManMale": { + "templateId": "AthenaBackpack:BID_201_WavyManMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_202_WavyManFemale": { + "templateId": "AthenaBackpack:BID_202_WavyManFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_203_BlueMystery": { + "templateId": "AthenaBackpack:BID_203_BlueMystery", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_204_TennisFemale": { + "templateId": "AthenaBackpack:BID_204_TennisFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_205_ScrapyardMale": { + "templateId": "AthenaBackpack:BID_205_ScrapyardMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_206_ScrapyardFemale": { + "templateId": "AthenaBackpack:BID_206_ScrapyardFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_207_DumplingMan": { + "templateId": "AthenaBackpack:BID_207_DumplingMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_208_CupidDarkMale": { + "templateId": "AthenaBackpack:BID_208_CupidDarkMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_209_RobotTroubleMale": { + "templateId": "AthenaBackpack:BID_209_RobotTroubleMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_210_RobotTroubleFemale": { + "templateId": "AthenaBackpack:BID_210_RobotTroubleFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_211_SkullBrite": { + "templateId": "AthenaBackpack:BID_211_SkullBrite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_213_IceCream": { + "templateId": "AthenaBackpack:BID_213_IceCream", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_214_LoveLlama": { + "templateId": "AthenaBackpack:BID_214_LoveLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_215_MasterKey": { + "templateId": "AthenaBackpack:BID_215_MasterKey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_216_PirateProgressive": { + "templateId": "AthenaBackpack:BID_216_PirateProgressive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_217_ShinyFemale": { + "templateId": "AthenaBackpack:BID_217_ShinyFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_218_Medusa": { + "templateId": "AthenaBackpack:BID_218_Medusa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_219_FarmerMale": { + "templateId": "AthenaBackpack:BID_219_FarmerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_220_FarmerFemale": { + "templateId": "AthenaBackpack:BID_220_FarmerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_221_AztecMale": { + "templateId": "AthenaBackpack:BID_221_AztecMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_222_AztecFemale": { + "templateId": "AthenaBackpack:BID_222_AztecFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_223_OrangeCamo": { + "templateId": "AthenaBackpack:BID_223_OrangeCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_224_TechOpsBlue": { + "templateId": "AthenaBackpack:BID_224_TechOpsBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_225_BandageNinjaMale": { + "templateId": "AthenaBackpack:BID_225_BandageNinjaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_226_BandageNinjaFemale": { + "templateId": "AthenaBackpack:BID_226_BandageNinjaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_227_SciOpsFemale": { + "templateId": "AthenaBackpack:BID_227_SciOpsFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_228_SciOpsMale": { + "templateId": "AthenaBackpack:BID_228_SciOpsMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_229_LuckyRiderMale": { + "templateId": "AthenaBackpack:BID_229_LuckyRiderMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_230_TropicalMale": { + "templateId": "AthenaBackpack:BID_230_TropicalMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_231_TropicalFemale": { + "templateId": "AthenaBackpack:BID_231_TropicalFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_232_Leprechaun": { + "templateId": "AthenaBackpack:BID_232_Leprechaun", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_233_DevilRock": { + "templateId": "AthenaBackpack:BID_233_DevilRock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_234_SpeedyMidnight": { + "templateId": "AthenaBackpack:BID_234_SpeedyMidnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_235_Heist": { + "templateId": "AthenaBackpack:BID_235_Heist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_236_Pirate01Female": { + "templateId": "AthenaBackpack:BID_236_Pirate01Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_238_Pirate02Male": { + "templateId": "AthenaBackpack:BID_238_Pirate02Male", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_240_DarkShamanMale": { + "templateId": "AthenaBackpack:BID_240_DarkShamanMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_241_DarkShamanFemale": { + "templateId": "AthenaBackpack:BID_241_DarkShamanFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_242_FurnaceFace": { + "templateId": "AthenaBackpack:BID_242_FurnaceFace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_243_BattleHoundFire": { + "templateId": "AthenaBackpack:BID_243_BattleHoundFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_244_DarkVikingFire": { + "templateId": "AthenaBackpack:BID_244_DarkVikingFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_245_BaseballKitbashFemale": { + "templateId": "AthenaBackpack:BID_245_BaseballKitbashFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_246_BaseballKitbashMale": { + "templateId": "AthenaBackpack:BID_246_BaseballKitbashMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_247_StreetAssassin": { + "templateId": "AthenaBackpack:BID_247_StreetAssassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_248_Pilots": { + "templateId": "AthenaBackpack:BID_248_Pilots", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_249_StreetOpsStealth": { + "templateId": "AthenaBackpack:BID_249_StreetOpsStealth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_250_TheBomb": { + "templateId": "AthenaBackpack:BID_250_TheBomb", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_251_SpaceBunny": { + "templateId": "AthenaBackpack:BID_251_SpaceBunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_252_EvilBunny": { + "templateId": "AthenaBackpack:BID_252_EvilBunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_253_HoppityHeist": { + "templateId": "AthenaBackpack:BID_253_HoppityHeist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_254_ShinyMale": { + "templateId": "AthenaBackpack:BID_254_ShinyMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_255_MoonlightAssassin": { + "templateId": "AthenaBackpack:BID_255_MoonlightAssassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_256_ShatterFly": { + "templateId": "AthenaBackpack:BID_256_ShatterFly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_257_Swashbuckler": { + "templateId": "AthenaBackpack:BID_257_Swashbuckler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_258_AshtonBoardwalk": { + "templateId": "AthenaBackpack:BID_258_AshtonBoardwalk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_259_Ashton_SaltLake": { + "templateId": "AthenaBackpack:BID_259_Ashton_SaltLake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_261_Rooster": { + "templateId": "AthenaBackpack:BID_261_Rooster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_262_BountyHunterFemale": { + "templateId": "AthenaBackpack:BID_262_BountyHunterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_263_Masako": { + "templateId": "AthenaBackpack:BID_263_Masako", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_264_StormTracker": { + "templateId": "AthenaBackpack:BID_264_StormTracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_265_BattleSuit": { + "templateId": "AthenaBackpack:BID_265_BattleSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_266_BunkerMan": { + "templateId": "AthenaBackpack:BID_266_BunkerMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_267_CyberScavengerMale": { + "templateId": "AthenaBackpack:BID_267_CyberScavengerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_268_CyberScavengerFemale": { + "templateId": "AthenaBackpack:BID_268_CyberScavengerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_269_RaptorFemale": { + "templateId": "AthenaBackpack:BID_269_RaptorFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_270_StreetDemon": { + "templateId": "AthenaBackpack:BID_270_StreetDemon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_271_AssassinSuitMale": { + "templateId": "AthenaBackpack:BID_271_AssassinSuitMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_272_AssassinSuitFemale": { + "templateId": "AthenaBackpack:BID_272_AssassinSuitFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_273_AssassinSuitCoin": { + "templateId": "AthenaBackpack:BID_273_AssassinSuitCoin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_275_Geisha": { + "templateId": "AthenaBackpack:BID_275_Geisha", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_276_Pug": { + "templateId": "AthenaBackpack:BID_276_Pug", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_277_WhiteTiger": { + "templateId": "AthenaBackpack:BID_277_WhiteTiger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_278_VigilanteBoard": { + "templateId": "AthenaBackpack:BID_278_VigilanteBoard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Mat26", + "Mat27", + "Mat28", + "Mat29" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_279_CyberRunner": { + "templateId": "AthenaBackpack:BID_279_CyberRunner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_280_DemonHunterFemale": { + "templateId": "AthenaBackpack:BID_280_DemonHunterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_281_DemonHunterMale": { + "templateId": "AthenaBackpack:BID_281_DemonHunterMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_282_UrbanScavenger": { + "templateId": "AthenaBackpack:BID_282_UrbanScavenger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_283_StormSoldier": { + "templateId": "AthenaBackpack:BID_283_StormSoldier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_284_NeonLines": { + "templateId": "AthenaBackpack:BID_284_NeonLines", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_285_SkullBriteEclipse": { + "templateId": "AthenaBackpack:BID_285_SkullBriteEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_286_WinterGhoulMaleEclipse": { + "templateId": "AthenaBackpack:BID_286_WinterGhoulMaleEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_287_AztecFemaleEclipse": { + "templateId": "AthenaBackpack:BID_287_AztecFemaleEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_288_CyberScavengerFemaleBlue": { + "templateId": "AthenaBackpack:BID_288_CyberScavengerFemaleBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_289_Banner": { + "templateId": "AthenaBackpack:BID_289_Banner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_290_Butterfly": { + "templateId": "AthenaBackpack:BID_290_Butterfly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_291_Caterpillar": { + "templateId": "AthenaBackpack:BID_291_Caterpillar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_292_CyberFuFemale": { + "templateId": "AthenaBackpack:BID_292_CyberFuFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_293_GlowBroFemale": { + "templateId": "AthenaBackpack:BID_293_GlowBroFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_294_GlowBroMale": { + "templateId": "AthenaBackpack:BID_294_GlowBroMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_295_Jellyfish": { + "templateId": "AthenaBackpack:BID_295_Jellyfish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_296_Sarong": { + "templateId": "AthenaBackpack:BID_296_Sarong", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_297_SpaceGirl": { + "templateId": "AthenaBackpack:BID_297_SpaceGirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_298_ZodiacFemale": { + "templateId": "AthenaBackpack:BID_298_ZodiacFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_299_BriteBomberSummer": { + "templateId": "AthenaBackpack:BID_299_BriteBomberSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_300_DriftSummer": { + "templateId": "AthenaBackpack:BID_300_DriftSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_301_HeistSummer": { + "templateId": "AthenaBackpack:BID_301_HeistSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_302_Hairy": { + "templateId": "AthenaBackpack:BID_302_Hairy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_303_BananaSmoothie": { + "templateId": "AthenaBackpack:BID_303_BananaSmoothie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_304_Duck": { + "templateId": "AthenaBackpack:BID_304_Duck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_305_StarAndStripesFemale": { + "templateId": "AthenaBackpack:BID_305_StarAndStripesFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_306_StarAndStripesMale": { + "templateId": "AthenaBackpack:BID_306_StarAndStripesMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_307_Bani": { + "templateId": "AthenaBackpack:BID_307_Bani", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_308_CyberKarateFemale": { + "templateId": "AthenaBackpack:BID_308_CyberKarateFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_309_CyberKarateMale": { + "templateId": "AthenaBackpack:BID_309_CyberKarateMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_310_Lasagna": { + "templateId": "AthenaBackpack:BID_310_Lasagna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_311_Multibot": { + "templateId": "AthenaBackpack:BID_311_Multibot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_312_Stealth": { + "templateId": "AthenaBackpack:BID_312_Stealth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_313_Bubblegum": { + "templateId": "AthenaBackpack:BID_313_Bubblegum", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_314_Geode": { + "templateId": "AthenaBackpack:BID_314_Geode", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_315_PizzaPit": { + "templateId": "AthenaBackpack:BID_315_PizzaPit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_316_GraffitiRemix": { + "templateId": "AthenaBackpack:BID_316_GraffitiRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_317_KnightRemix": { + "templateId": "AthenaBackpack:BID_317_KnightRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_318_SparkleRemix": { + "templateId": "AthenaBackpack:BID_318_SparkleRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_319_StreetRacerDriftRemix": { + "templateId": "AthenaBackpack:BID_319_StreetRacerDriftRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_320_RustLordRemix": { + "templateId": "AthenaBackpack:BID_320_RustLordRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_321_RustLordRemixScavenger": { + "templateId": "AthenaBackpack:BID_321_RustLordRemixScavenger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_322_VoyagerRemix": { + "templateId": "AthenaBackpack:BID_322_VoyagerRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_323_FunkOpsRemix": { + "templateId": "AthenaBackpack:BID_323_FunkOpsRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_324_BlueBadass": { + "templateId": "AthenaBackpack:BID_324_BlueBadass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_325_BoneWasp": { + "templateId": "AthenaBackpack:BID_325_BoneWasp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_326_Bronto": { + "templateId": "AthenaBackpack:BID_326_Bronto", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_327_Meteorite": { + "templateId": "AthenaBackpack:BID_327_Meteorite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_328_WildWest": { + "templateId": "AthenaBackpack:BID_328_WildWest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_329_WildWestFemale": { + "templateId": "AthenaBackpack:BID_329_WildWestFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_330_AstronautEvilUpgrade": { + "templateId": "AthenaBackpack:BID_330_AstronautEvilUpgrade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_331_DarkNinjaWhite": { + "templateId": "AthenaBackpack:BID_331_DarkNinjaWhite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_332_FrostMystery": { + "templateId": "AthenaBackpack:BID_332_FrostMystery", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_333_Reverb": { + "templateId": "AthenaBackpack:BID_333_Reverb", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_334_BannerMale": { + "templateId": "AthenaBackpack:BID_334_BannerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_335_Lopex": { + "templateId": "AthenaBackpack:BID_335_Lopex", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_336_MascotMilitiaBurger": { + "templateId": "AthenaBackpack:BID_336_MascotMilitiaBurger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_337_MascotMilitiaTomato": { + "templateId": "AthenaBackpack:BID_337_MascotMilitiaTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_338_StarWalker": { + "templateId": "AthenaBackpack:BID_338_StarWalker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_339_Syko": { + "templateId": "AthenaBackpack:BID_339_Syko", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_340_WiseMaster": { + "templateId": "AthenaBackpack:BID_340_WiseMaster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_341_AngelEclipse": { + "templateId": "AthenaBackpack:BID_341_AngelEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_342_LemonLime": { + "templateId": "AthenaBackpack:BID_342_LemonLime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_343_CubeRedKnight": { + "templateId": "AthenaBackpack:BID_343_CubeRedKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_344_CubeWildCard": { + "templateId": "AthenaBackpack:BID_344_CubeWildCard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_345_ToxicKitty": { + "templateId": "AthenaBackpack:BID_345_ToxicKitty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_346_BlackWidowRogue": { + "templateId": "AthenaBackpack:BID_346_BlackWidowRogue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_347_DarkEagleFire": { + "templateId": "AthenaBackpack:BID_347_DarkEagleFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_348_PaddedArmor": { + "templateId": "AthenaBackpack:BID_348_PaddedArmor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_349_RaptorBlackOps": { + "templateId": "AthenaBackpack:BID_349_RaptorBlackOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_350_TacticalBiker": { + "templateId": "AthenaBackpack:BID_350_TacticalBiker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_351_FutureBikerWhite": { + "templateId": "AthenaBackpack:BID_351_FutureBikerWhite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_352_CupidFemale": { + "templateId": "AthenaBackpack:BID_352_CupidFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_353_StreetGothCandy": { + "templateId": "AthenaBackpack:BID_353_StreetGothCandy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_354_StreetFashionRed": { + "templateId": "AthenaBackpack:BID_354_StreetFashionRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_355_Jumpstart": { + "templateId": "AthenaBackpack:BID_355_Jumpstart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_356_Punchy": { + "templateId": "AthenaBackpack:BID_356_Punchy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_357_Sleepytime": { + "templateId": "AthenaBackpack:BID_357_Sleepytime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_358_StreetUrchin": { + "templateId": "AthenaBackpack:BID_358_StreetUrchin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_359_MeteorManRemix": { + "templateId": "AthenaBackpack:BID_359_MeteorManRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_360_BlackMondayKansas_VCZ9M": { + "templateId": "AthenaBackpack:BID_360_BlackMondayKansas_VCZ9M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_361_BlackMondayFemale_R0P2N": { + "templateId": "AthenaBackpack:BID_361_BlackMondayFemale_R0P2N", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_362_BlackMondayHouston_2I53G": { + "templateId": "AthenaBackpack:BID_362_BlackMondayHouston_2I53G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_363_Kurohomura": { + "templateId": "AthenaBackpack:BID_363_Kurohomura", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_364_LlamaHero": { + "templateId": "AthenaBackpack:BID_364_LlamaHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_365_MascotMilitiaCuddle": { + "templateId": "AthenaBackpack:BID_365_MascotMilitiaCuddle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_367_TacticalFishermanMale": { + "templateId": "AthenaBackpack:BID_367_TacticalFishermanMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_368_RockClimber": { + "templateId": "AthenaBackpack:BID_368_RockClimber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_369_CrazyEight": { + "templateId": "AthenaBackpack:BID_369_CrazyEight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_370_RebirthMedic": { + "templateId": "AthenaBackpack:BID_370_RebirthMedic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_371_Sheath": { + "templateId": "AthenaBackpack:BID_371_Sheath", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_372_Viper": { + "templateId": "AthenaBackpack:BID_372_Viper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_373_HauntLensFlare": { + "templateId": "AthenaBackpack:BID_373_HauntLensFlare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_374_CubeRockerPunk_Female": { + "templateId": "AthenaBackpack:BID_374_CubeRockerPunk_Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_375_BulletBlueFemale": { + "templateId": "AthenaBackpack:BID_375_BulletBlueFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_376_CODSquad_Plaid": { + "templateId": "AthenaBackpack:BID_376_CODSquad_Plaid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_377_CODSquad_Plaid_Female": { + "templateId": "AthenaBackpack:BID_377_CODSquad_Plaid_Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_378_FishermanFemale": { + "templateId": "AthenaBackpack:BID_378_FishermanFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_379_RedRidingRemix": { + "templateId": "AthenaBackpack:BID_379_RedRidingRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_380_CuddleTeamDark": { + "templateId": "AthenaBackpack:BID_380_CuddleTeamDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_381_RustyRaiderMotor": { + "templateId": "AthenaBackpack:BID_381_RustyRaiderMotor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_382_DarkDinoMale": { + "templateId": "AthenaBackpack:BID_382_DarkDinoMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_383_DarkDinoFemale": { + "templateId": "AthenaBackpack:BID_383_DarkDinoFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_384_NoshHunter": { + "templateId": "AthenaBackpack:BID_384_NoshHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_385_Nosh": { + "templateId": "AthenaBackpack:BID_385_Nosh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_386_FlowerSkeletonFemale": { + "templateId": "AthenaBackpack:BID_386_FlowerSkeletonFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_387_PunkDevil": { + "templateId": "AthenaBackpack:BID_387_PunkDevil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_388_DevilRockMale": { + "templateId": "AthenaBackpack:BID_388_DevilRockMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_389_GoatRobe": { + "templateId": "AthenaBackpack:BID_389_GoatRobe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_390_SoccerZombieMale": { + "templateId": "AthenaBackpack:BID_390_SoccerZombieMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_391_SoccerZombieFemale": { + "templateId": "AthenaBackpack:BID_391_SoccerZombieFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_392_Freak": { + "templateId": "AthenaBackpack:BID_392_Freak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_393_GhoulTrooper": { + "templateId": "AthenaBackpack:BID_393_GhoulTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_394_Mastermind": { + "templateId": "AthenaBackpack:BID_394_Mastermind", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_395_Phantom": { + "templateId": "AthenaBackpack:BID_395_Phantom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_396_RaptorGlow": { + "templateId": "AthenaBackpack:BID_396_RaptorGlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_397_SkeletonHunter": { + "templateId": "AthenaBackpack:BID_397_SkeletonHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_398_Palespooky": { + "templateId": "AthenaBackpack:BID_398_Palespooky", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_399_SpookyNeon": { + "templateId": "AthenaBackpack:BID_399_SpookyNeon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_400_HalloweenAlt": { + "templateId": "AthenaBackpack:BID_400_HalloweenAlt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_401_Razor": { + "templateId": "AthenaBackpack:BID_401_Razor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_402_TourBus": { + "templateId": "AthenaBackpack:BID_402_TourBus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_403_JetSkiFemale": { + "templateId": "AthenaBackpack:BID_403_JetSkiFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_404_JetSkiMale": { + "templateId": "AthenaBackpack:BID_404_JetSkiMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_405_ModernWitch": { + "templateId": "AthenaBackpack:BID_405_ModernWitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_406_Submariner": { + "templateId": "AthenaBackpack:BID_406_Submariner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_407_ShiitakeShaolin": { + "templateId": "AthenaBackpack:BID_407_ShiitakeShaolin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_408_WeepingWoods": { + "templateId": "AthenaBackpack:BID_408_WeepingWoods", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_409_StreetOpsPink": { + "templateId": "AthenaBackpack:BID_409_StreetOpsPink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_410_ShirtlessWarpaint": { + "templateId": "AthenaBackpack:BID_410_ShirtlessWarpaint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_411_BaneFemale": { + "templateId": "AthenaBackpack:BID_411_BaneFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_412_CavalryBandit": { + "templateId": "AthenaBackpack:BID_412_CavalryBandit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_413_ForestQueen": { + "templateId": "AthenaBackpack:BID_413_ForestQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_414_ForestDwellerMale": { + "templateId": "AthenaBackpack:BID_414_ForestDwellerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_415_TechLlama": { + "templateId": "AthenaBackpack:BID_415_TechLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_416_BigChuggus": { + "templateId": "AthenaBackpack:BID_416_BigChuggus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_417_BoneSnake": { + "templateId": "AthenaBackpack:BID_417_BoneSnake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_418_BulletBlueMale": { + "templateId": "AthenaBackpack:BID_418_BulletBlueMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_419_Frogman": { + "templateId": "AthenaBackpack:BID_419_Frogman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_421_TeriyakiWarrior": { + "templateId": "AthenaBackpack:BID_421_TeriyakiWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_422_SnufflesLeader": { + "templateId": "AthenaBackpack:BID_422_SnufflesLeader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_423_HolidayTime": { + "templateId": "AthenaBackpack:BID_423_HolidayTime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_424_SnowGlobe": { + "templateId": "AthenaBackpack:BID_424_SnowGlobe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_425_Kane": { + "templateId": "AthenaBackpack:BID_425_Kane", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_426_GalileoKayak_NS67T": { + "templateId": "AthenaBackpack:BID_426_GalileoKayak_NS67T", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_427_GalileoSled_ZDWOV": { + "templateId": "AthenaBackpack:BID_427_GalileoSled_ZDWOV", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_428_GalileoFerry_28UZ3": { + "templateId": "AthenaBackpack:BID_428_GalileoFerry_28UZ3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_429_GalileoRocket_ZD0AF": { + "templateId": "AthenaBackpack:BID_429_GalileoRocket_ZD0AF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_430_GalileoSpeedBoat_9RXE3": { + "templateId": "AthenaBackpack:BID_430_GalileoSpeedBoat_9RXE3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_431_GalileoFlatbed_JV1DD": { + "templateId": "AthenaBackpack:BID_431_GalileoFlatbed_JV1DD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_433_NeonAnimal": { + "templateId": "AthenaBackpack:BID_433_NeonAnimal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_434_NeonAnimalFemale": { + "templateId": "AthenaBackpack:BID_434_NeonAnimalFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_435_Constellation": { + "templateId": "AthenaBackpack:BID_435_Constellation", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_436_TacticalBear": { + "templateId": "AthenaBackpack:BID_436_TacticalBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_437_TNTina": { + "templateId": "AthenaBackpack:BID_437_TNTina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage7", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_438_SweaterWeather": { + "templateId": "AthenaBackpack:BID_438_SweaterWeather", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_439_OrnamentSoldier": { + "templateId": "AthenaBackpack:BID_439_OrnamentSoldier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_440_MsAlpine": { + "templateId": "AthenaBackpack:BID_440_MsAlpine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_441_HolidayPJ": { + "templateId": "AthenaBackpack:BID_441_HolidayPJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_442_Cattus": { + "templateId": "AthenaBackpack:BID_442_Cattus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_443_WingedFury": { + "templateId": "AthenaBackpack:BID_443_WingedFury", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_444_FestivePug": { + "templateId": "AthenaBackpack:BID_444_FestivePug", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_445_Elf": { + "templateId": "AthenaBackpack:BID_445_Elf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_446_Barefoot": { + "templateId": "AthenaBackpack:BID_446_Barefoot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_447_ToyMonkey": { + "templateId": "AthenaBackpack:BID_447_ToyMonkey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_448_TechOpsBlueFemale": { + "templateId": "AthenaBackpack:BID_448_TechOpsBlueFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_449_MrIceGuy": { + "templateId": "AthenaBackpack:BID_449_MrIceGuy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_450_Iceflake": { + "templateId": "AthenaBackpack:BID_450_Iceflake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_451_HolidayDeck": { + "templateId": "AthenaBackpack:BID_451_HolidayDeck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_452_BandageNinjaBlue": { + "templateId": "AthenaBackpack:BID_452_BandageNinjaBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_453_FrogmanFemale": { + "templateId": "AthenaBackpack:BID_453_FrogmanFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_454_Gummi": { + "templateId": "AthenaBackpack:BID_454_Gummi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_455_NeonGraffitiFemale": { + "templateId": "AthenaBackpack:BID_455_NeonGraffitiFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_456_CloakedMale": { + "templateId": "AthenaBackpack:BID_456_CloakedMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_457_HoodieBandit": { + "templateId": "AthenaBackpack:BID_457_HoodieBandit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_458_TheGoldenSkeleton": { + "templateId": "AthenaBackpack:BID_458_TheGoldenSkeleton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_459_CODSquad_Hoodie": { + "templateId": "AthenaBackpack:BID_459_CODSquad_Hoodie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_460_SharkAttack": { + "templateId": "AthenaBackpack:BID_460_SharkAttack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_462_ModernMilitaryEclipse": { + "templateId": "AthenaBackpack:BID_462_ModernMilitaryEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_463_StreetRat": { + "templateId": "AthenaBackpack:BID_463_StreetRat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_464_MartialArtist": { + "templateId": "AthenaBackpack:BID_464_MartialArtist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_465_VirtualShadow": { + "templateId": "AthenaBackpack:BID_465_VirtualShadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_466_TigerFashion": { + "templateId": "AthenaBackpack:BID_466_TigerFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_467_DragonRacer": { + "templateId": "AthenaBackpack:BID_467_DragonRacer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_468_Cyclone": { + "templateId": "AthenaBackpack:BID_468_Cyclone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_469_Wings": { + "templateId": "AthenaBackpack:BID_469_Wings", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_470_SpyTechHacker": { + "templateId": "AthenaBackpack:BID_470_SpyTechHacker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_471_CuteDuo": { + "templateId": "AthenaBackpack:BID_471_CuteDuo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_472_DesertOpsCamo": { + "templateId": "AthenaBackpack:BID_472_DesertOpsCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_473_Photographer": { + "templateId": "AthenaBackpack:BID_473_Photographer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_474_DarkHeart": { + "templateId": "AthenaBackpack:BID_474_DarkHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_475_AgentAce": { + "templateId": "AthenaBackpack:BID_475_AgentAce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_476_AgentRogue": { + "templateId": "AthenaBackpack:BID_476_AgentRogue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_477_BuffCat": { + "templateId": "AthenaBackpack:BID_477_BuffCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_478_HenchmanTough": { + "templateId": "AthenaBackpack:BID_478_HenchmanTough", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_479_CatBurglar": { + "templateId": "AthenaBackpack:BID_479_CatBurglar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_480_Donut": { + "templateId": "AthenaBackpack:BID_480_Donut", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_481_GraffitiFuture": { + "templateId": "AthenaBackpack:BID_481_GraffitiFuture", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_482_LongShorts": { + "templateId": "AthenaBackpack:BID_482_LongShorts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_483_Spy": { + "templateId": "AthenaBackpack:BID_483_Spy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_484_PugMilitia": { + "templateId": "AthenaBackpack:BID_484_PugMilitia", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_485_BananaAgent": { + "templateId": "AthenaBackpack:BID_485_BananaAgent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_486_WinterHunterMale": { + "templateId": "AthenaBackpack:BID_486_WinterHunterMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_487_WinterHunterFemale": { + "templateId": "AthenaBackpack:BID_487_WinterHunterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_488_LuckyHero": { + "templateId": "AthenaBackpack:BID_488_LuckyHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_489_TwinDark": { + "templateId": "AthenaBackpack:BID_489_TwinDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_490_AnarchyAcresFarmer": { + "templateId": "AthenaBackpack:BID_490_AnarchyAcresFarmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_491_FlameSkull": { + "templateId": "AthenaBackpack:BID_491_FlameSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_492_BlueFlames": { + "templateId": "AthenaBackpack:BID_492_BlueFlames", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_493_BlueFlamesFemale": { + "templateId": "AthenaBackpack:BID_493_BlueFlamesFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_494_StreetFashionEmerald": { + "templateId": "AthenaBackpack:BID_494_StreetFashionEmerald", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_495_PineappleBandit": { + "templateId": "AthenaBackpack:BID_495_PineappleBandit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_496_TeriyakiFishAssassin": { + "templateId": "AthenaBackpack:BID_496_TeriyakiFishAssassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_498_AgentX": { + "templateId": "AthenaBackpack:BID_498_AgentX", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_499_TargetPractice": { + "templateId": "AthenaBackpack:BID_499_TargetPractice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_500_SpyTech": { + "templateId": "AthenaBackpack:BID_500_SpyTech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_501_SpyTechFemale": { + "templateId": "AthenaBackpack:BID_501_SpyTechFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_502_Tailor": { + "templateId": "AthenaBackpack:BID_502_Tailor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_503_MinotaurLuck": { + "templateId": "AthenaBackpack:BID_503_MinotaurLuck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_504_Handyman": { + "templateId": "AthenaBackpack:BID_504_Handyman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_505_Informer": { + "templateId": "AthenaBackpack:BID_505_Informer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_506_DonutCup": { + "templateId": "AthenaBackpack:BID_506_DonutCup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_507_DonutPlate": { + "templateId": "AthenaBackpack:BID_507_DonutPlate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_508_DonutDish": { + "templateId": "AthenaBackpack:BID_508_DonutDish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_509_ChocoBunny": { + "templateId": "AthenaBackpack:BID_509_ChocoBunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_511_BadEgg": { + "templateId": "AthenaBackpack:BID_511_BadEgg", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_512_Hurricane": { + "templateId": "AthenaBackpack:BID_512_Hurricane", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_513_GraffitiAssassin": { + "templateId": "AthenaBackpack:BID_513_GraffitiAssassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_514_NeonCatSpy": { + "templateId": "AthenaBackpack:BID_514_NeonCatSpy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_515_Hostile": { + "templateId": "AthenaBackpack:BID_515_Hostile", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_516_RaveNinja": { + "templateId": "AthenaBackpack:BID_516_RaveNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_517_Splinter": { + "templateId": "AthenaBackpack:BID_517_Splinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_518_HitmanCase": { + "templateId": "AthenaBackpack:BID_518_HitmanCase", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_519_Comet": { + "templateId": "AthenaBackpack:BID_519_Comet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_520_CycloneUniverse": { + "templateId": "AthenaBackpack:BID_520_CycloneUniverse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_521_WildCat": { + "templateId": "AthenaBackpack:BID_521_WildCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_522_TechExplorer": { + "templateId": "AthenaBackpack:BID_522_TechExplorer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_523_RapVillainess": { + "templateId": "AthenaBackpack:BID_523_RapVillainess", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_525_RavenQuillDonut": { + "templateId": "AthenaBackpack:BID_525_RavenQuillDonut", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_526_FuzzyBearDonut": { + "templateId": "AthenaBackpack:BID_526_FuzzyBearDonut", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_527_Loofah": { + "templateId": "AthenaBackpack:BID_527_Loofah", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_528_SpaceWanderer": { + "templateId": "AthenaBackpack:BID_528_SpaceWanderer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_530_BlackKnightFemale": { + "templateId": "AthenaBackpack:BID_530_BlackKnightFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_531_HardcoreSportzFemale": { + "templateId": "AthenaBackpack:BID_531_HardcoreSportzFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_532_HardcoreSportzMale": { + "templateId": "AthenaBackpack:BID_532_HardcoreSportzMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_533_MechanicalEngineer": { + "templateId": "AthenaBackpack:BID_533_MechanicalEngineer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_534_OceanRider": { + "templateId": "AthenaBackpack:BID_534_OceanRider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_535_SandCastle": { + "templateId": "AthenaBackpack:BID_535_SandCastle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_536_Beacon": { + "templateId": "AthenaBackpack:BID_536_Beacon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_537_TacticalScuba": { + "templateId": "AthenaBackpack:BID_537_TacticalScuba", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_538_StreetRacerCobraGold": { + "templateId": "AthenaBackpack:BID_538_StreetRacerCobraGold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_539_RacerZero": { + "templateId": "AthenaBackpack:BID_539_RacerZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_540_Python": { + "templateId": "AthenaBackpack:BID_540_Python", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_541_Gator": { + "templateId": "AthenaBackpack:BID_541_Gator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_542_Foam": { + "templateId": "AthenaBackpack:BID_542_Foam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_543_FuzzyBearTeddy": { + "templateId": "AthenaBackpack:BID_543_FuzzyBearTeddy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_544_BrightGunnerEclipse": { + "templateId": "AthenaBackpack:BID_544_BrightGunnerEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_545_RenegadeRaiderFire": { + "templateId": "AthenaBackpack:BID_545_RenegadeRaiderFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_546_CavalryBanditGhost": { + "templateId": "AthenaBackpack:BID_546_CavalryBanditGhost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_547_HeistGhost": { + "templateId": "AthenaBackpack:BID_547_HeistGhost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_548_MastermindGhost": { + "templateId": "AthenaBackpack:BID_548_MastermindGhost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_549_Dummeez": { + "templateId": "AthenaBackpack:BID_549_Dummeez", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_550_JonesyVagabond": { + "templateId": "AthenaBackpack:BID_550_JonesyVagabond", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_551_CupidDarkFemale": { + "templateId": "AthenaBackpack:BID_551_CupidDarkFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_552_ConstellationSun": { + "templateId": "AthenaBackpack:BID_552_ConstellationSun", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_553_Seaweed_NIS9V": { + "templateId": "AthenaBackpack:BID_553_Seaweed_NIS9V", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_554_Robro": { + "templateId": "AthenaBackpack:BID_554_Robro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_555_HeartBreaker": { + "templateId": "AthenaBackpack:BID_555_HeartBreaker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_556_SharkSuit": { + "templateId": "AthenaBackpack:BID_556_SharkSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_557_SharkSuitFemale": { + "templateId": "AthenaBackpack:BID_557_SharkSuitFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_558_PunkDevilSummer": { + "templateId": "AthenaBackpack:BID_558_PunkDevilSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_559_GreenJacket": { + "templateId": "AthenaBackpack:BID_559_GreenJacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_560_CandyApple_WTXXO": { + "templateId": "AthenaBackpack:BID_560_CandyApple_WTXXO", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_561_PeppaRonnie": { + "templateId": "AthenaBackpack:BID_561_PeppaRonnie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_562_CelestialFemale": { + "templateId": "AthenaBackpack:BID_562_CelestialFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_563_MilitaryFashionSummer": { + "templateId": "AthenaBackpack:BID_563_MilitaryFashionSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_564_CandySummer": { + "templateId": "AthenaBackpack:BID_564_CandySummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_565_RedRidingSummer": { + "templateId": "AthenaBackpack:BID_565_RedRidingSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_566_TeriyakiAtlantis": { + "templateId": "AthenaBackpack:BID_566_TeriyakiAtlantis", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_567_MsWhip": { + "templateId": "AthenaBackpack:BID_567_MsWhip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_568_BananaSummer": { + "templateId": "AthenaBackpack:BID_568_BananaSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_569_DirtyDocksMale": { + "templateId": "AthenaBackpack:BID_569_DirtyDocksMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_570_DirtyDocksFemale": { + "templateId": "AthenaBackpack:BID_570_DirtyDocksFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_571_Tiki": { + "templateId": "AthenaBackpack:BID_571_Tiki", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_572_Chair": { + "templateId": "AthenaBackpack:BID_572_Chair", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_573_TV": { + "templateId": "AthenaBackpack:BID_573_TV", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_575_AnglerFemale": { + "templateId": "AthenaBackpack:BID_575_AnglerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_576_Islander": { + "templateId": "AthenaBackpack:BID_576_Islander", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_577_RaiderPink": { + "templateId": "AthenaBackpack:BID_577_RaiderPink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_578_SportsFashion": { + "templateId": "AthenaBackpack:BID_578_SportsFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_579_FloatillaCaptain": { + "templateId": "AthenaBackpack:BID_579_FloatillaCaptain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_580_ParcelPetal": { + "templateId": "AthenaBackpack:BID_580_ParcelPetal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_581_ParcelPrankSurprise": { + "templateId": "AthenaBackpack:BID_581_ParcelPrankSurprise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_582_ParcelGold": { + "templateId": "AthenaBackpack:BID_582_ParcelGold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_583_SpaceWandererMale": { + "templateId": "AthenaBackpack:BID_583_SpaceWandererMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_584_AntiLlama": { + "templateId": "AthenaBackpack:BID_584_AntiLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_585_TipToe_V1T3M": { + "templateId": "AthenaBackpack:BID_585_TipToe_V1T3M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_586_Tar_DIJGH": { + "templateId": "AthenaBackpack:BID_586_Tar_DIJGH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_587_TripleScoop": { + "templateId": "AthenaBackpack:BID_587_TripleScoop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_588_Axl": { + "templateId": "AthenaBackpack:BID_588_Axl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_589_LadyAtlantis": { + "templateId": "AthenaBackpack:BID_589_LadyAtlantis", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_590_MaskedDancer": { + "templateId": "AthenaBackpack:BID_590_MaskedDancer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_591_MultibotStealth": { + "templateId": "AthenaBackpack:BID_591_MultibotStealth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_592_JunkSamurai": { + "templateId": "AthenaBackpack:BID_592_JunkSamurai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_593_HightowerSquash": { + "templateId": "AthenaBackpack:BID_593_HightowerSquash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_594_HightowerHoneydew": { + "templateId": "AthenaBackpack:BID_594_HightowerHoneydew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_595_HightowerMango": { + "templateId": "AthenaBackpack:BID_595_HightowerMango", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_596_HightowerTomato": { + "templateId": "AthenaBackpack:BID_596_HightowerTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_597_HightowerWasabi": { + "templateId": "AthenaBackpack:BID_597_HightowerWasabi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_598_HightowerGrape": { + "templateId": "AthenaBackpack:BID_598_HightowerGrape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_599_HightowerDate": { + "templateId": "AthenaBackpack:BID_599_HightowerDate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_600_HightowerTapas": { + "templateId": "AthenaBackpack:BID_600_HightowerTapas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_601_Venus": { + "templateId": "AthenaBackpack:BID_601_Venus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_602_DarkNinjaPurple_Female": { + "templateId": "AthenaBackpack:BID_602_DarkNinjaPurple_Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_603_DarkEaglePurple_Male": { + "templateId": "AthenaBackpack:BID_603_DarkEaglePurple_Male", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_604_SkullBritecube": { + "templateId": "AthenaBackpack:BID_604_SkullBritecube", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_605_HightowerDate_Cape": { + "templateId": "AthenaBackpack:BID_605_HightowerDate_Cape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_605_Soy_Y0DW7": { + "templateId": "AthenaBackpack:BID_605_Soy_Y0DW7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_606_BlackwidowFemale_Corrupt": { + "templateId": "AthenaBackpack:BID_606_BlackwidowFemale_Corrupt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_607_SniperHoodFemale_Corrupt": { + "templateId": "AthenaBackpack:BID_607_SniperHoodFemale_Corrupt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_608_SamuraiArmorUltra_Corrupt": { + "templateId": "AthenaBackpack:BID_608_SamuraiArmorUltra_Corrupt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_609_ElasticCape": { + "templateId": "AthenaBackpack:BID_609_ElasticCape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "PetTemperament", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_610_ElasticHologram": { + "templateId": "AthenaBackpack:BID_610_ElasticHologram", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "PetTemperament", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_611_KevinCouture": { + "templateId": "AthenaBackpack:BID_611_KevinCouture", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_612_CloakedAssassin_K7415": { + "templateId": "AthenaBackpack:BID_612_CloakedAssassin_K7415", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_613_MythFemale": { + "templateId": "AthenaBackpack:BID_613_MythFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_614_Myth": { + "templateId": "AthenaBackpack:BID_614_Myth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_615_Backspin_KA0K2": { + "templateId": "AthenaBackpack:BID_615_Backspin_KA0K2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_616_Cavalry": { + "templateId": "AthenaBackpack:BID_616_Cavalry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_617_StreetFashionGarnet": { + "templateId": "AthenaBackpack:BID_617_StreetFashionGarnet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_618_Birthday03": { + "templateId": "AthenaBackpack:BID_618_Birthday03", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_619_Turbo": { + "templateId": "AthenaBackpack:BID_619_Turbo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_620_TeriyakiFishPrincess": { + "templateId": "AthenaBackpack:BID_620_TeriyakiFishPrincess", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_621_Poison": { + "templateId": "AthenaBackpack:BID_621_Poison", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_622_VampireCasual": { + "templateId": "AthenaBackpack:BID_622_VampireCasual", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_623_BlackWidowJacket": { + "templateId": "AthenaBackpack:BID_623_BlackWidowJacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_624_Palespooky": { + "templateId": "AthenaBackpack:BID_624_Palespooky", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_625_DarkBomberSummer": { + "templateId": "AthenaBackpack:BID_625_DarkBomberSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_626_SpookyNeonFemale": { + "templateId": "AthenaBackpack:BID_626_SpookyNeonFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_627_DeliSandwich": { + "templateId": "AthenaBackpack:BID_627_DeliSandwich", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_628_FlowerSkeletonMale": { + "templateId": "AthenaBackpack:BID_628_FlowerSkeletonMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_629_LunchBox": { + "templateId": "AthenaBackpack:BID_629_LunchBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_630_Famine": { + "templateId": "AthenaBackpack:BID_630_Famine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_631_PumpkinPunkMale": { + "templateId": "AthenaBackpack:BID_631_PumpkinPunkMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_632_PumpkinSpice": { + "templateId": "AthenaBackpack:BID_632_PumpkinSpice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_633_FrankieFemale": { + "templateId": "AthenaBackpack:BID_633_FrankieFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_634_York_Female": { + "templateId": "AthenaBackpack:BID_634_York_Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_635_York_Male": { + "templateId": "AthenaBackpack:BID_635_York_Male", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_636_RavenQuillSkull": { + "templateId": "AthenaBackpack:BID_636_RavenQuillSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_637_FuzzyBearSkull": { + "templateId": "AthenaBackpack:BID_637_FuzzyBearSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_638_DurrburgerSkull": { + "templateId": "AthenaBackpack:BID_638_DurrburgerSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_639_BabaYaga": { + "templateId": "AthenaBackpack:BID_639_BabaYaga", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_640_ElfAttackMale": { + "templateId": "AthenaBackpack:BID_640_ElfAttackMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_641_Jekyll": { + "templateId": "AthenaBackpack:BID_641_Jekyll", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_642_Embers": { + "templateId": "AthenaBackpack:BID_642_Embers", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_643_Tapdance": { + "templateId": "AthenaBackpack:BID_643_Tapdance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_644_StreetFashionDiamond": { + "templateId": "AthenaBackpack:BID_644_StreetFashionDiamond", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_645_NauticalPajamas": { + "templateId": "AthenaBackpack:BID_645_NauticalPajamas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_646_NauticalPajamasNight": { + "templateId": "AthenaBackpack:BID_646_NauticalPajamasNight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_647_NauticalPajamas_Underwater": { + "templateId": "AthenaBackpack:BID_647_NauticalPajamas_Underwater", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_648_Blonde": { + "templateId": "AthenaBackpack:BID_648_Blonde", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_649_ShockWave": { + "templateId": "AthenaBackpack:BID_649_ShockWave", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_650_Vertigo": { + "templateId": "AthenaBackpack:BID_650_Vertigo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_651_EternityFemale": { + "templateId": "AthenaBackpack:BID_651_EternityFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_652_RaiderSilverFemale": { + "templateId": "AthenaBackpack:BID_652_RaiderSilverFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_653_Football20_1BS75": { + "templateId": "AthenaBackpack:BID_653_Football20_1BS75", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "032", + "033" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_654_Ponytail": { + "templateId": "AthenaBackpack:BID_654_Ponytail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_655_PieMan": { + "templateId": "AthenaBackpack:BID_655_PieMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_656_AncientGladiatorMale": { + "templateId": "AthenaBackpack:BID_656_AncientGladiatorMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_657_LexaFemale": { + "templateId": "AthenaBackpack:BID_657_LexaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_658_Historian_4RCG3": { + "templateId": "AthenaBackpack:BID_658_Historian_4RCG3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_659_FlapjackWrangler": { + "templateId": "AthenaBackpack:BID_659_FlapjackWrangler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_660_Shapeshifter": { + "templateId": "AthenaBackpack:BID_660_Shapeshifter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_661_SpaceFighter": { + "templateId": "AthenaBackpack:BID_661_SpaceFighter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_662_FutureSamuraiMale": { + "templateId": "AthenaBackpack:BID_662_FutureSamuraiMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_663_SnowmanFashionMale": { + "templateId": "AthenaBackpack:BID_663_SnowmanFashionMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_664_RenegadeRaiderHoliday": { + "templateId": "AthenaBackpack:BID_664_RenegadeRaiderHoliday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_665_Jupiter_XD7AK": { + "templateId": "AthenaBackpack:BID_665_Jupiter_XD7AK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_666_TeriyakiFishElf": { + "templateId": "AthenaBackpack:BID_666_TeriyakiFishElf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_667_StarsMale": { + "templateId": "AthenaBackpack:BID_667_StarsMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_668_StarsFemale": { + "templateId": "AthenaBackpack:BID_668_StarsFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_669_NeonMale": { + "templateId": "AthenaBackpack:BID_669_NeonMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_670_NeonFemale": { + "templateId": "AthenaBackpack:BID_670_NeonFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_671_Mechstructor": { + "templateId": "AthenaBackpack:BID_671_Mechstructor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_672_StreetFashionHoliday": { + "templateId": "AthenaBackpack:BID_672_StreetFashionHoliday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_673_ElfFemale": { + "templateId": "AthenaBackpack:BID_673_ElfFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_674_SnowboarderMale": { + "templateId": "AthenaBackpack:BID_674_SnowboarderMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_675_WombatMale_X18U5": { + "templateId": "AthenaBackpack:BID_675_WombatMale_X18U5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_676_WombatFemale_6PEJZ": { + "templateId": "AthenaBackpack:BID_676_WombatFemale_6PEJZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_677_FancyCandy": { + "templateId": "AthenaBackpack:BID_677_FancyCandy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_678_CardboardCrewHolidayMale": { + "templateId": "AthenaBackpack:BID_678_CardboardCrewHolidayMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_679_CardboardCrewHolidayFemale": { + "templateId": "AthenaBackpack:BID_679_CardboardCrewHolidayFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_680_DriftWinter": { + "templateId": "AthenaBackpack:BID_680_DriftWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_681_DriftWinterFox": { + "templateId": "AthenaBackpack:BID_681_DriftWinterFox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_682_CherryFemale_RXEIW": { + "templateId": "AthenaBackpack:BID_682_CherryFemale_RXEIW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_683_CupidWinterFemale": { + "templateId": "AthenaBackpack:BID_683_CupidWinterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_684_HolidayLightsMale": { + "templateId": "AthenaBackpack:BID_684_HolidayLightsMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_685_PlumRetro_EY7ZM": { + "templateId": "AthenaBackpack:BID_685_PlumRetro_EY7ZM", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_686_TiramisuMale_1YMN4": { + "templateId": "AthenaBackpack:BID_686_TiramisuMale_1YMN4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_687_GrilledCheese_C9FB6": { + "templateId": "AthenaBackpack:BID_687_GrilledCheese_C9FB6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_688_Nightmare_S85HI": { + "templateId": "AthenaBackpack:BID_688_Nightmare_S85HI", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_689_TyphoonRobot_SMLZ7": { + "templateId": "AthenaBackpack:BID_689_TyphoonRobot_SMLZ7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_690_TyphoonFemale_1NBFZ": { + "templateId": "AthenaBackpack:BID_690_TyphoonFemale_1NBFZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_691_LexaMale": { + "templateId": "AthenaBackpack:BID_691_LexaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_692_ConvoyTarantula_34ZM0": { + "templateId": "AthenaBackpack:BID_692_ConvoyTarantula_34ZM0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_695_StreetFashionEclipse": { + "templateId": "AthenaBackpack:BID_695_StreetFashionEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_696_CombatDoll": { + "templateId": "AthenaBackpack:BID_696_CombatDoll", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_697_FoxWarrior_G0YTR": { + "templateId": "AthenaBackpack:BID_697_FoxWarrior_G0YTR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_698_StreetCuddlesMale": { + "templateId": "AthenaBackpack:BID_698_StreetCuddlesMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_699_MainframeMale_2W2M3": { + "templateId": "AthenaBackpack:BID_699_MainframeMale_2W2M3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_700_Crush": { + "templateId": "AthenaBackpack:BID_700_Crush", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_701_SkirmishMale_5LH4I": { + "templateId": "AthenaBackpack:BID_701_SkirmishMale_5LH4I", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_702_SkirmishFemale_P9FE3": { + "templateId": "AthenaBackpack:BID_702_SkirmishFemale_P9FE3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_703_KeplerMale_ZTFJU": { + "templateId": "AthenaBackpack:BID_703_KeplerMale_ZTFJU", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_704_KeplerFemale_C0L25": { + "templateId": "AthenaBackpack:BID_704_KeplerFemale_C0L25", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_705_AncientGladiatorFemale": { + "templateId": "AthenaBackpack:BID_705_AncientGladiatorFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_706_CasualBomberLight": { + "templateId": "AthenaBackpack:BID_706_CasualBomberLight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_707_LlamaHeroWinter_3OQ1V": { + "templateId": "AthenaBackpack:BID_707_LlamaHeroWinter_3OQ1V", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_708_GingerbreadBuilder": { + "templateId": "AthenaBackpack:BID_708_GingerbreadBuilder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_709_SpaceWarrior": { + "templateId": "AthenaBackpack:BID_709_SpaceWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_710_SmallFry_GDE1J": { + "templateId": "AthenaBackpack:BID_710_SmallFry_GDE1J", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_711_CatBurglarFemale": { + "templateId": "AthenaBackpack:BID_711_CatBurglarFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_712_LionSoldier": { + "templateId": "AthenaBackpack:BID_712_LionSoldier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_713_FNCS21": { + "templateId": "AthenaBackpack:BID_713_FNCS21", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_714_Obsidian": { + "templateId": "AthenaBackpack:BID_714_Obsidian", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_715_DinoHunterFemale": { + "templateId": "AthenaBackpack:BID_715_DinoHunterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_716_ChickenWarrior": { + "templateId": "AthenaBackpack:BID_716_ChickenWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_717_TowerSentinel": { + "templateId": "AthenaBackpack:BID_717_TowerSentinel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_718_ProgressiveJonesy": { + "templateId": "AthenaBackpack:BID_718_ProgressiveJonesy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_719_CubeNinja": { + "templateId": "AthenaBackpack:BID_719_CubeNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_720_Temple": { + "templateId": "AthenaBackpack:BID_720_Temple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_721_ScholarFemale": { + "templateId": "AthenaBackpack:BID_721_ScholarFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_722_NeonCatFashion_KEP9B": { + "templateId": "AthenaBackpack:BID_722_NeonCatFashion_KEP9B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_723_DarkMinion": { + "templateId": "AthenaBackpack:BID_723_DarkMinion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_724_BananaLeader": { + "templateId": "AthenaBackpack:BID_724_BananaLeader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_725_AssembleR": { + "templateId": "AthenaBackpack:BID_725_AssembleR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_726_Figure": { + "templateId": "AthenaBackpack:BID_726_Figure", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_727_TurboBall_892OE": { + "templateId": "AthenaBackpack:BID_727_TurboBall_892OE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_728_SailorSquadLeader": { + "templateId": "AthenaBackpack:BID_728_SailorSquadLeader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_729_SailorSquadRebel": { + "templateId": "AthenaBackpack:BID_729_SailorSquadRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_730_SailorSquadRose": { + "templateId": "AthenaBackpack:BID_730_SailorSquadRose", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_731_BunnyFashion": { + "templateId": "AthenaBackpack:BID_731_BunnyFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_732_HipHareMale": { + "templateId": "AthenaBackpack:BID_732_HipHareMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_733_TheGoldenSkeletonFemale_SG4HF": { + "templateId": "AthenaBackpack:BID_733_TheGoldenSkeletonFemale_SG4HF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_734_WickedDuckMale": { + "templateId": "AthenaBackpack:BID_734_WickedDuckMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_735_WickedDuckFemale": { + "templateId": "AthenaBackpack:BID_735_WickedDuckFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_736_DayTrader_QS4PD": { + "templateId": "AthenaBackpack:BID_736_DayTrader_QS4PD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_737_Alchemy_1WW0D": { + "templateId": "AthenaBackpack:BID_737_Alchemy_1WW0D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_738_CottonCandy": { + "templateId": "AthenaBackpack:BID_738_CottonCandy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_742_TerrainMan": { + "templateId": "AthenaBackpack:BID_742_TerrainMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_743_Accumulate": { + "templateId": "AthenaBackpack:BID_743_Accumulate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_744_CavernMale_CF6JE": { + "templateId": "AthenaBackpack:BID_744_CavernMale_CF6JE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_745_BuffCatComic_AB1AX": { + "templateId": "AthenaBackpack:BID_745_BuffCatComic_AB1AX", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_746_ArmoredEngineer": { + "templateId": "AthenaBackpack:BID_746_ArmoredEngineer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_747_TacticalRedPunk": { + "templateId": "AthenaBackpack:BID_747_TacticalRedPunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_748_BicycleMale": { + "templateId": "AthenaBackpack:BID_748_BicycleMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_749_DinoCollector": { + "templateId": "AthenaBackpack:BID_749_DinoCollector", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_750_RaptorKnight": { + "templateId": "AthenaBackpack:BID_750_RaptorKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_751_DurrburgerKnight": { + "templateId": "AthenaBackpack:BID_751_DurrburgerKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_752_TacoKnight": { + "templateId": "AthenaBackpack:BID_752_TacoKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_753_TomatoKnight": { + "templateId": "AthenaBackpack:BID_753_TomatoKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_754_CraniumMale": { + "templateId": "AthenaBackpack:BID_754_CraniumMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_755_Hardwood_4KH3V": { + "templateId": "AthenaBackpack:BID_755_Hardwood_4KH3V", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_756_Hardwood_Gold_4DX8C": { + "templateId": "AthenaBackpack:BID_756_Hardwood_Gold_4DX8C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_757_Caveman": { + "templateId": "AthenaBackpack:BID_757_Caveman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_758_Broccoli_TK4HH": { + "templateId": "AthenaBackpack:BID_758_Broccoli_TK4HH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_759_DarkElfFemale": { + "templateId": "AthenaBackpack:BID_759_DarkElfFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_760_StoneViper": { + "templateId": "AthenaBackpack:BID_760_StoneViper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_761_WastelandWarrior": { + "templateId": "AthenaBackpack:BID_761_WastelandWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_762_SpartanFutureFemale": { + "templateId": "AthenaBackpack:BID_762_SpartanFutureFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_764_Shrapnel": { + "templateId": "AthenaBackpack:BID_764_Shrapnel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_765_DownpourMale_YLV93": { + "templateId": "AthenaBackpack:BID_765_DownpourMale_YLV93", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_766_TacticalWoodlandBlue": { + "templateId": "AthenaBackpack:BID_766_TacticalWoodlandBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_767_AssembleL": { + "templateId": "AthenaBackpack:BID_767_AssembleL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_768_Grim_QR2Q2": { + "templateId": "AthenaBackpack:BID_768_Grim_QR2Q2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_769_TowerSentinelMale": { + "templateId": "AthenaBackpack:BID_769_TowerSentinelMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_770_SpaceCuddles_X9QET": { + "templateId": "AthenaBackpack:BID_770_SpaceCuddles_X9QET", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_771_Lasso_ZN4VA": { + "templateId": "AthenaBackpack:BID_771_Lasso_ZN4VA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_772_Lasso_Polo_BL4WE": { + "templateId": "AthenaBackpack:BID_772_Lasso_Polo_BL4WE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_773_Carabus": { + "templateId": "AthenaBackpack:BID_773_Carabus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_774_AlienTrooper": { + "templateId": "AthenaBackpack:BID_774_AlienTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "ClothingColor", + "active": "000", + "owned": [ + "000", + "006", + "005", + "001", + "003", + "002", + "004" + ] + }, + { + "channel": "JerseyColor", + "active": "000", + "owned": [ + "000", + "003", + "006", + "002", + "004", + "005", + "001" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_775_Emperor": { + "templateId": "AthenaBackpack:BID_775_Emperor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_776_Emperor_Suit": { + "templateId": "AthenaBackpack:BID_776_Emperor_Suit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_777_Believer": { + "templateId": "AthenaBackpack:BID_777_Believer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_778_Antique": { + "templateId": "AthenaBackpack:BID_778_Antique", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_779_AntiqueCat": { + "templateId": "AthenaBackpack:BID_779_AntiqueCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_780_AntiqueCrazy": { + "templateId": "AthenaBackpack:BID_780_AntiqueCrazy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_781_AntiqueHeadphones": { + "templateId": "AthenaBackpack:BID_781_AntiqueHeadphones", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_782_Ruckus": { + "templateId": "AthenaBackpack:BID_782_Ruckus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_783_Innovator": { + "templateId": "AthenaBackpack:BID_783_Innovator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_784_Faux": { + "templateId": "AthenaBackpack:BID_784_Faux", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_785_Rockstar": { + "templateId": "AthenaBackpack:BID_785_Rockstar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_786_GolfMale": { + "templateId": "AthenaBackpack:BID_786_GolfMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_787_JonesyCattle": { + "templateId": "AthenaBackpack:BID_787_JonesyCattle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_788_JailBirdBumbleFemale": { + "templateId": "AthenaBackpack:BID_788_JailBirdBumbleFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_789_CavernArmored": { + "templateId": "AthenaBackpack:BID_789_CavernArmored", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_790_Firecracker": { + "templateId": "AthenaBackpack:BID_790_Firecracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_791_Linguini_GM9A0": { + "templateId": "AthenaBackpack:BID_791_Linguini_GM9A0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_792_SlurpMonsterSummer": { + "templateId": "AthenaBackpack:BID_792_SlurpMonsterSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_793_HenchmanSummer": { + "templateId": "AthenaBackpack:BID_793_HenchmanSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_794_JurassicArchaeologySummer": { + "templateId": "AthenaBackpack:BID_794_JurassicArchaeologySummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_795_MechanicalEngineerSummer": { + "templateId": "AthenaBackpack:BID_795_MechanicalEngineerSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_796_CatBurglarSummer": { + "templateId": "AthenaBackpack:BID_796_CatBurglarSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat2", + "owned": [ + "Mat2", + "Mat1", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_797_StreetFashionSummer": { + "templateId": "AthenaBackpack:BID_797_StreetFashionSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_798_SummerPopsicle": { + "templateId": "AthenaBackpack:BID_798_SummerPopsicle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_799_SummerHotdog": { + "templateId": "AthenaBackpack:BID_799_SummerHotdog", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_800_Majesty_U8JHQ": { + "templateId": "AthenaBackpack:BID_800_Majesty_U8JHQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_801_MajestyTaco_FFH31": { + "templateId": "AthenaBackpack:BID_801_MajestyTaco_FFH31", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_802_DarkVikingFireMale": { + "templateId": "AthenaBackpack:BID_802_DarkVikingFireMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_803_ScavengerFire": { + "templateId": "AthenaBackpack:BID_803_ScavengerFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_804_BandageNinjaFire": { + "templateId": "AthenaBackpack:BID_804_BandageNinjaFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_806_Foray_WG30D": { + "templateId": "AthenaBackpack:BID_806_Foray_WG30D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_807_Menace": { + "templateId": "AthenaBackpack:BID_807_Menace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_808_BlueCheese": { + "templateId": "AthenaBackpack:BID_808_BlueCheese", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_809_Dojo": { + "templateId": "AthenaBackpack:BID_809_Dojo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_810_Musician": { + "templateId": "AthenaBackpack:BID_810_Musician", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_811_BrightBomberMint": { + "templateId": "AthenaBackpack:BID_811_BrightBomberMint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_812_GoldenSkeletonMint": { + "templateId": "AthenaBackpack:BID_812_GoldenSkeletonMint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_813_TreasureHunterFashionMint": { + "templateId": "AthenaBackpack:BID_813_TreasureHunterFashionMint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_814_BuffCatFan_C3DES": { + "templateId": "AthenaBackpack:BID_814_BuffCatFan_C3DES", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_815_PliantFemale": { + "templateId": "AthenaBackpack:BID_815_PliantFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_816_PliantMale": { + "templateId": "AthenaBackpack:BID_816_PliantMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_817_CometSummer": { + "templateId": "AthenaBackpack:BID_817_CometSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_818_Buffet_XRF7H": { + "templateId": "AthenaBackpack:BID_818_Buffet_XRF7H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_819_Stereo_TE8RC": { + "templateId": "AthenaBackpack:BID_819_Stereo_TE8RC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_820_QuarrelFemale_7CW31": { + "templateId": "AthenaBackpack:BID_820_QuarrelFemale_7CW31", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_821_QuarrelMale_IKIS8": { + "templateId": "AthenaBackpack:BID_821_QuarrelMale_IKIS8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_822_AlienSummer": { + "templateId": "AthenaBackpack:BID_822_AlienSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_823_SeesawSlipper": { + "templateId": "AthenaBackpack:BID_823_SeesawSlipper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_824_CelestialGlow": { + "templateId": "AthenaBackpack:BID_824_CelestialGlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_825_VividMale_7L9T0": { + "templateId": "AthenaBackpack:BID_825_VividMale_7L9T0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_826_RuckusMini_4EP8L": { + "templateId": "AthenaBackpack:BID_826_RuckusMini_4EP8L", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_827_AntiquePal_BL5ER": { + "templateId": "AthenaBackpack:BID_827_AntiquePal_BL5ER", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_828_Monarch": { + "templateId": "AthenaBackpack:BID_828_Monarch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_829_ColorBlock": { + "templateId": "AthenaBackpack:BID_829_ColorBlock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_830_NinjaWolf_4CWAW": { + "templateId": "AthenaBackpack:BID_830_NinjaWolf_4CWAW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_831_PolygonMale": { + "templateId": "AthenaBackpack:BID_831_PolygonMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_832_Lavish_TV630": { + "templateId": "AthenaBackpack:BID_832_Lavish_TV630", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_833_TieDyeFashion": { + "templateId": "AthenaBackpack:BID_833_TieDyeFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_834_MaskedWarriorSpring": { + "templateId": "AthenaBackpack:BID_834_MaskedWarriorSpring", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_835_Lars": { + "templateId": "AthenaBackpack:BID_835_Lars", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_836_AlienAgent": { + "templateId": "AthenaBackpack:BID_836_AlienAgent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_837_Dragonfruit_0IZM3": { + "templateId": "AthenaBackpack:BID_837_Dragonfruit_0IZM3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_838_AngelDark": { + "templateId": "AthenaBackpack:BID_838_AngelDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_839_AlienFloraMale": { + "templateId": "AthenaBackpack:BID_839_AlienFloraMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_840_FNCSGreen": { + "templateId": "AthenaBackpack:BID_840_FNCSGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_841_Clash": { + "templateId": "AthenaBackpack:BID_841_Clash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_842_CerealBox": { + "templateId": "AthenaBackpack:BID_842_CerealBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_843_SpaceChimp": { + "templateId": "AthenaBackpack:BID_843_SpaceChimp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_844_GhostHunter": { + "templateId": "AthenaBackpack:BID_844_GhostHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_845_TeriyakiFishToon": { + "templateId": "AthenaBackpack:BID_845_TeriyakiFishToon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "JerseyColor", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_846_Division": { + "templateId": "AthenaBackpack:BID_846_Division", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_847_PunkKoi": { + "templateId": "AthenaBackpack:BID_847_PunkKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_848_BuffLlama": { + "templateId": "AthenaBackpack:BID_848_BuffLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage3", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_849_ClashV_D5UT3": { + "templateId": "AthenaBackpack:BID_849_ClashV_D5UT3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_850_TextileRamFemale_2R9WR": { + "templateId": "AthenaBackpack:BID_850_TextileRamFemale_2R9WR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_851_TextileKnightMale_MIPJ6": { + "templateId": "AthenaBackpack:BID_851_TextileKnightMale_MIPJ6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_852_TextileSparkleFemale_X8KOH": { + "templateId": "AthenaBackpack:BID_852_TextileSparkleFemale_X8KOH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_853_TextilePupMale_LFOE4": { + "templateId": "AthenaBackpack:BID_853_TextilePupMale_LFOE4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_854_FNBirthday_BA96D": { + "templateId": "AthenaBackpack:BID_854_FNBirthday_BA96D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_855_BigBucksDog_S1Y8P": { + "templateId": "AthenaBackpack:BID_855_BigBucksDog_S1Y8P", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_856_BigBucksDuck_0751N": { + "templateId": "AthenaBackpack:BID_856_BigBucksDuck_0751N", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_857_BigBucksCat_XTZ62": { + "templateId": "AthenaBackpack:BID_857_BigBucksCat_XTZ62", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_858_BigBucksRex_K3JSQ": { + "templateId": "AthenaBackpack:BID_858_BigBucksRex_K3JSQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_859_BigBucksPenguin_6NSWA": { + "templateId": "AthenaBackpack:BID_859_BigBucksPenguin_6NSWA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_860_BigBucksRaceCar_5T4NY": { + "templateId": "AthenaBackpack:BID_860_BigBucksRaceCar_5T4NY", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_861_BigBucksTopHat_J5LQQ": { + "templateId": "AthenaBackpack:BID_861_BigBucksTopHat_J5LQQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_862_BigBucksBattleship_1JA5G": { + "templateId": "AthenaBackpack:BID_862_BigBucksBattleship_1JA5G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_863_Tomcat_5V2TZ": { + "templateId": "AthenaBackpack:BID_863_Tomcat_5V2TZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_864_RenegadeSkull": { + "templateId": "AthenaBackpack:BID_864_RenegadeSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_865_WerewolfFemale": { + "templateId": "AthenaBackpack:BID_865_WerewolfFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_866_CritterCuddle": { + "templateId": "AthenaBackpack:BID_866_CritterCuddle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_867_CritterFrenzy_3VYKQ": { + "templateId": "AthenaBackpack:BID_867_CritterFrenzy_3VYKQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_868_PsycheMale_CTVM0": { + "templateId": "AthenaBackpack:BID_868_PsycheMale_CTVM0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_869_CritterRaven": { + "templateId": "AthenaBackpack:BID_869_CritterRaven", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_870_CritterManiac_8Y8KK": { + "templateId": "AthenaBackpack:BID_870_CritterManiac_8Y8KK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_871_PinkEmo": { + "templateId": "AthenaBackpack:BID_871_PinkEmo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_872_Giggle_LN5LR": { + "templateId": "AthenaBackpack:BID_872_Giggle_LN5LR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_873_RelishMale_0Q8D9": { + "templateId": "AthenaBackpack:BID_873_RelishMale_0Q8D9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_874_RelishFemale_I7B41": { + "templateId": "AthenaBackpack:BID_874_RelishFemale_I7B41", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_875_SunriseCastle_91J3L": { + "templateId": "AthenaBackpack:BID_875_SunriseCastle_91J3L", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_876_SunrisePalace_7JPK6": { + "templateId": "AthenaBackpack:BID_876_SunrisePalace_7JPK6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_877_BistroAstronaut_LWL45": { + "templateId": "AthenaBackpack:BID_877_BistroAstronaut_LWL45", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_878_BistroSpooky_VPF4T": { + "templateId": "AthenaBackpack:BID_878_BistroSpooky_VPF4T", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_879_CubeQueen": { + "templateId": "AthenaBackpack:BID_879_CubeQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_880_SweetTeriyakiRed": { + "templateId": "AthenaBackpack:BID_880_SweetTeriyakiRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_881_ScholarGhoul": { + "templateId": "AthenaBackpack:BID_881_ScholarGhoul", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_882_EerieGhost_Y9N1T": { + "templateId": "AthenaBackpack:BID_882_EerieGhost_Y9N1T", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_883_Disguise": { + "templateId": "AthenaBackpack:BID_883_Disguise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat5", + "owned": [ + "Mat5", + "Mat2", + "Mat3", + "Mat4", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_884_DisguiseFemale": { + "templateId": "AthenaBackpack:BID_884_DisguiseFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat5", + "owned": [ + "Mat5", + "Mat2", + "Mat3", + "Mat4", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_885_TomatoScary": { + "templateId": "AthenaBackpack:BID_885_TomatoScary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_886_DriftHorror": { + "templateId": "AthenaBackpack:BID_886_DriftHorror", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_887_DurrburgerGold": { + "templateId": "AthenaBackpack:BID_887_DurrburgerGold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_888_SAM_4LYL3": { + "templateId": "AthenaBackpack:BID_888_SAM_4LYL3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage2", + "owned": [ + "Stage2", + "Stage1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_889_FullMoon": { + "templateId": "AthenaBackpack:BID_889_FullMoon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_890_UproarBraids_EF68P": { + "templateId": "AthenaBackpack:BID_890_UproarBraids_EF68P", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_891_ButterJack": { + "templateId": "AthenaBackpack:BID_891_ButterJack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_892_JackOLantern": { + "templateId": "AthenaBackpack:BID_892_JackOLantern", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage3", + "owned": [ + "Stage3", + "Stage1", + "Stage2", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "Material", + "active": "Mat2", + "owned": [ + "Mat2", + "Mat1", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + }, + { + "channel": "Particle", + "active": "Particle2", + "owned": [ + "Particle2", + "Particle1", + "Particle3", + "Particle4", + "Particle5", + "Particle6" + ] + }, + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive1", + "Emissive3", + "Emissive4", + "Emissive5", + "Emissive6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_893_ZombieElastic": { + "templateId": "AthenaBackpack:BID_893_ZombieElastic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_895_ZombieElasticNeon": { + "templateId": "AthenaBackpack:BID_895_ZombieElasticNeon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "PetTemperament", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_896_GrasshopperMale_BRT10": { + "templateId": "AthenaBackpack:BID_896_GrasshopperMale_BRT10", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_897_AshesFemale_DV4RB": { + "templateId": "AthenaBackpack:BID_897_AshesFemale_DV4RB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_898_SupersonicPink_FCO9X": { + "templateId": "AthenaBackpack:BID_898_SupersonicPink_FCO9X", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_899_NeonCatTech": { + "templateId": "AthenaBackpack:BID_899_NeonCatTech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_900_PeelyTech": { + "templateId": "AthenaBackpack:BID_900_PeelyTech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_901_CrazyEightTech": { + "templateId": "AthenaBackpack:BID_901_CrazyEightTech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_902_HeadbandMale": { + "templateId": "AthenaBackpack:BID_902_HeadbandMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_903_HeadbandKMale": { + "templateId": "AthenaBackpack:BID_903_HeadbandKMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_904_HeadbandSMale": { + "templateId": "AthenaBackpack:BID_904_HeadbandSMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_905_HeadbandSFemale": { + "templateId": "AthenaBackpack:BID_905_HeadbandSFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_906_GrandeurMale_4JIZO": { + "templateId": "AthenaBackpack:BID_906_GrandeurMale_4JIZO", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_907_Nucleus_J147F": { + "templateId": "AthenaBackpack:BID_907_Nucleus_J147F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_908_AssembleK": { + "templateId": "AthenaBackpack:BID_908_AssembleK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_909_HasteMale_EPX5A": { + "templateId": "AthenaBackpack:BID_909_HasteMale_EPX5A", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_910_FNCS_Purple": { + "templateId": "AthenaBackpack:BID_910_FNCS_Purple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_911_LoneWolfMale": { + "templateId": "AthenaBackpack:BID_911_LoneWolfMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_912_GumballMale": { + "templateId": "AthenaBackpack:BID_912_GumballMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_913_MotorcyclistFemale": { + "templateId": "AthenaBackpack:BID_913_MotorcyclistFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2", + "Emissive3", + "Emissive4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_914_IslandNomadFemale": { + "templateId": "AthenaBackpack:BID_914_IslandNomadFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_915_ExoSuitFemale": { + "templateId": "AthenaBackpack:BID_915_ExoSuitFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_916_ParallelComicMale": { + "templateId": "AthenaBackpack:BID_916_ParallelComicMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_917_RustyBoltMale_1DGTV": { + "templateId": "AthenaBackpack:BID_917_RustyBoltMale_1DGTV", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_918_RustyBoltFemale_J4JW1": { + "templateId": "AthenaBackpack:BID_918_RustyBoltFemale_J4JW1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_919_DarkPitBlue": { + "templateId": "AthenaBackpack:BID_919_DarkPitBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_920_Turtleneck": { + "templateId": "AthenaBackpack:BID_920_Turtleneck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_921_Slither_85LFG": { + "templateId": "AthenaBackpack:BID_921_Slither_85LFG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_922_SlitherMetal_ZO68K": { + "templateId": "AthenaBackpack:BID_922_SlitherMetal_ZO68K", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_924_LateralMale_Y2INS": { + "templateId": "AthenaBackpack:BID_924_LateralMale_Y2INS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_925_LateralFemale_7RK0Z": { + "templateId": "AthenaBackpack:BID_925_LateralFemale_7RK0Z", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_926_InnovatorFestive_6ZNGC": { + "templateId": "AthenaBackpack:BID_926_InnovatorFestive_6ZNGC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_927_LlamaIce": { + "templateId": "AthenaBackpack:BID_927_LlamaIce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_928_OrbitTeal_R54N6": { + "templateId": "AthenaBackpack:BID_928_OrbitTeal_R54N6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_929_TwentyTwo": { + "templateId": "AthenaBackpack:BID_929_TwentyTwo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_930_Sunshine": { + "templateId": "AthenaBackpack:BID_930_Sunshine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_931_KittyWarrior": { + "templateId": "AthenaBackpack:BID_931_KittyWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_932_Peppermint": { + "templateId": "AthenaBackpack:BID_932_Peppermint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_933_CatBurglarWinter": { + "templateId": "AthenaBackpack:BID_933_CatBurglarWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_934_JurassicArchaeologyWinter": { + "templateId": "AthenaBackpack:BID_934_JurassicArchaeologyWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_935_RenegadeRaiderIce": { + "templateId": "AthenaBackpack:BID_935_RenegadeRaiderIce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_936_KeenFemale_90W2B": { + "templateId": "AthenaBackpack:BID_936_KeenFemale_90W2B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_937_KeenMale_YT098": { + "templateId": "AthenaBackpack:BID_937_KeenMale_YT098", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_938_FoeMale_F4JVS": { + "templateId": "AthenaBackpack:BID_938_FoeMale_F4JVS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_939_Uproar_8Q6E0": { + "templateId": "AthenaBackpack:BID_939_Uproar_8Q6E0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_940_PrimalFalcon_CV6IJ": { + "templateId": "AthenaBackpack:BID_940_PrimalFalcon_CV6IJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_941_SkullPunk_W8FWD": { + "templateId": "AthenaBackpack:BID_941_SkullPunk_W8FWD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_942_LimaBean": { + "templateId": "AthenaBackpack:BID_942_LimaBean", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat7", + "Mat8", + "Mat6", + "Mat9", + "Mat10" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_943_LlamaLeague": { + "templateId": "AthenaBackpack:BID_943_LlamaLeague", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_944_Sleek_7PFGZ": { + "templateId": "AthenaBackpack:BID_944_Sleek_7PFGZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_945_SleekGlasses_GKUD9": { + "templateId": "AthenaBackpack:BID_945_SleekGlasses_GKUD9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_946_Galactic_S1CVQ": { + "templateId": "AthenaBackpack:BID_946_Galactic_S1CVQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_947_ZestFemale_1KIDJ": { + "templateId": "AthenaBackpack:BID_947_ZestFemale_1KIDJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_948_ZestMale_GP8AW": { + "templateId": "AthenaBackpack:BID_948_ZestMale_GP8AW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_949_LoveQueen": { + "templateId": "AthenaBackpack:BID_949_LoveQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_950_Solstice_APTB0": { + "templateId": "AthenaBackpack:BID_950_Solstice_APTB0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_951_ShatterflyEclipse": { + "templateId": "AthenaBackpack:BID_951_ShatterflyEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_952_Gimmick_Female_KM10U": { + "templateId": "AthenaBackpack:BID_952_Gimmick_Female_KM10U", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_953_Gimmick_1I059": { + "templateId": "AthenaBackpack:BID_953_Gimmick_1I059", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_954_Rover_0FV73": { + "templateId": "AthenaBackpack:BID_954_Rover_0FV73", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_955_Trey_18FU6": { + "templateId": "AthenaBackpack:BID_955_Trey_18FU6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_956_ValentineFashion_V4RF2": { + "templateId": "AthenaBackpack:BID_956_ValentineFashion_V4RF2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_957_PeelyToonMale": { + "templateId": "AthenaBackpack:BID_957_PeelyToonMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_958_WeepingWoodsToon": { + "templateId": "AthenaBackpack:BID_958_WeepingWoodsToon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_959_LurkFemale": { + "templateId": "AthenaBackpack:BID_959_LurkFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_960_BunnyPurple": { + "templateId": "AthenaBackpack:BID_960_BunnyPurple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_961_LeatherJacketPurple": { + "templateId": "AthenaBackpack:BID_961_LeatherJacketPurple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_962_Thrive": { + "templateId": "AthenaBackpack:BID_962_Thrive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_963_ThriveSpirit": { + "templateId": "AthenaBackpack:BID_963_ThriveSpirit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_964_Jade": { + "templateId": "AthenaBackpack:BID_964_Jade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_965_AssembleP": { + "templateId": "AthenaBackpack:BID_965_AssembleP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_966_PalespookyPancake": { + "templateId": "AthenaBackpack:BID_966_PalespookyPancake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_967_FNCSBlue": { + "templateId": "AthenaBackpack:BID_967_FNCSBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_968_MysticBookMale": { + "templateId": "AthenaBackpack:BID_968_MysticBookMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_969_CyberArmor": { + "templateId": "AthenaBackpack:BID_969_CyberArmor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_970_OrderGuard": { + "templateId": "AthenaBackpack:BID_970_OrderGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage4", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_971_Cadet": { + "templateId": "AthenaBackpack:BID_971_Cadet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_972_KnightCat_Female": { + "templateId": "AthenaBackpack:BID_972_KnightCat_Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_973_OriginPrisonMale": { + "templateId": "AthenaBackpack:BID_973_OriginPrisonMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_974_Binary": { + "templateId": "AthenaBackpack:BID_974_Binary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_975_JourneyMentor_NFF9C": { + "templateId": "AthenaBackpack:BID_975_JourneyMentor_NFF9C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_976_LittleEgg_Female_4EJ99": { + "templateId": "AthenaBackpack:BID_976_LittleEgg_Female_4EJ99", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_977_SnowfallFemale_VRIU0": { + "templateId": "AthenaBackpack:BID_977_SnowfallFemale_VRIU0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_978_BacteriaFemale_UKDH2": { + "templateId": "AthenaBackpack:BID_978_BacteriaFemale_UKDH2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_979_CactusRockerFemale_IF1QA": { + "templateId": "AthenaBackpack:BID_979_CactusRockerFemale_IF1QA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_980_CactusRockerMale_7FLSJ": { + "templateId": "AthenaBackpack:BID_980_CactusRockerMale_7FLSJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_981_VampireHunterFemale": { + "templateId": "AthenaBackpack:BID_981_VampireHunterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_982_Scrawl_VFI6L": { + "templateId": "AthenaBackpack:BID_982_Scrawl_VFI6L", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_983_ScrawlDino_AD541": { + "templateId": "AthenaBackpack:BID_983_ScrawlDino_AD541", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_984_GnomeCandle": { + "templateId": "AthenaBackpack:BID_984_GnomeCandle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_985_CactusDancerMale": { + "templateId": "AthenaBackpack:BID_985_CactusDancerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_986_CactusDancerFemale": { + "templateId": "AthenaBackpack:BID_986_CactusDancerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_987_Rumble_Female": { + "templateId": "AthenaBackpack:BID_987_Rumble_Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_988_Rumble": { + "templateId": "AthenaBackpack:BID_988_Rumble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_989_CroissantMale": { + "templateId": "AthenaBackpack:BID_989_CroissantMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_990_LyricalMale": { + "templateId": "AthenaBackpack:BID_990_LyricalMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_991_LyricalFemale": { + "templateId": "AthenaBackpack:BID_991_LyricalFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_992_BlackbirdMale": { + "templateId": "AthenaBackpack:BID_992_BlackbirdMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_993_NightingaleFemale": { + "templateId": "AthenaBackpack:BID_993_NightingaleFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_994_MockingbirdFemale": { + "templateId": "AthenaBackpack:BID_994_MockingbirdFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_995_ForsakeFemale": { + "templateId": "AthenaBackpack:BID_995_ForsakeFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_997_FNCS20Female": { + "templateId": "AthenaBackpack:BID_997_FNCS20Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_998_DarkStormMale": { + "templateId": "AthenaBackpack:BID_998_DarkStormMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_999_BinaryTwinFemale": { + "templateId": "AthenaBackpack:BID_999_BinaryTwinFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_001_RaspberryFemale": { + "templateId": "AthenaBackpack:BID_A_001_RaspberryFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_002_IndigoMale": { + "templateId": "AthenaBackpack:BID_A_002_IndigoMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_003_Ultralight": { + "templateId": "AthenaBackpack:BID_A_003_Ultralight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_004_NeonCatSpeed": { + "templateId": "AthenaBackpack:BID_A_004_NeonCatSpeed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_005_ShinyCreatureFemale": { + "templateId": "AthenaBackpack:BID_A_005_ShinyCreatureFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_006_CarbideKnightMale": { + "templateId": "AthenaBackpack:BID_A_006_CarbideKnightMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_007_SleepyTimePeely": { + "templateId": "AthenaBackpack:BID_A_007_SleepyTimePeely", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_008_Flappy_Green": { + "templateId": "AthenaBackpack:BID_A_008_Flappy_Green", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_009_Grapefruit": { + "templateId": "AthenaBackpack:BID_A_009_Grapefruit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_010_JumbotronS20Male": { + "templateId": "AthenaBackpack:BID_A_010_JumbotronS20Male", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_011_NobleMale": { + "templateId": "AthenaBackpack:BID_A_011_NobleMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_012_AlfredoMale": { + "templateId": "AthenaBackpack:BID_A_012_AlfredoMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_013_EternalVanguardFemale": { + "templateId": "AthenaBackpack:BID_A_013_EternalVanguardFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_014_GlareMale": { + "templateId": "AthenaBackpack:BID_A_014_GlareMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_015_ModNinjaMale": { + "templateId": "AthenaBackpack:BID_A_015_ModNinjaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_016_RavenQuillParrot": { + "templateId": "AthenaBackpack:BID_A_016_RavenQuillParrot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_017_NeonGraffitiLava": { + "templateId": "AthenaBackpack:BID_A_017_NeonGraffitiLava", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_018_ArmadilloMale": { + "templateId": "AthenaBackpack:BID_A_018_ArmadilloMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_019_BlizzardBomberFemale": { + "templateId": "AthenaBackpack:BID_A_019_BlizzardBomberFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_020_CanaryMale": { + "templateId": "AthenaBackpack:BID_A_020_CanaryMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_021_LancelotMale": { + "templateId": "AthenaBackpack:BID_A_021_LancelotMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_022_BlueJayFemale": { + "templateId": "AthenaBackpack:BID_A_022_BlueJayFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_024_FuchsiaFemale": { + "templateId": "AthenaBackpack:BID_A_024_FuchsiaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_025_PinkWidowFemale": { + "templateId": "AthenaBackpack:BID_A_025_PinkWidowFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_026_CollectableMale": { + "templateId": "AthenaBackpack:BID_A_026_CollectableMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_027_SpectacleWebMale": { + "templateId": "AthenaBackpack:BID_A_027_SpectacleWebMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_028_RealityBloom": { + "templateId": "AthenaBackpack:BID_A_028_RealityBloom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_029_RealmMale": { + "templateId": "AthenaBackpack:BID_A_029_RealmMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_030_EnsembleMaskMale": { + "templateId": "AthenaBackpack:BID_A_030_EnsembleMaskMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_031_EnsembleFemale": { + "templateId": "AthenaBackpack:BID_A_031_EnsembleFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_032_EnsembleMaroonMale": { + "templateId": "AthenaBackpack:BID_A_032_EnsembleMaroonMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_033_RedSleevesMale": { + "templateId": "AthenaBackpack:BID_A_033_RedSleevesMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_034_ChiselMale": { + "templateId": "AthenaBackpack:BID_A_034_ChiselMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_035_GloomFemale": { + "templateId": "AthenaBackpack:BID_A_035_GloomFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_036_TrifleMale": { + "templateId": "AthenaBackpack:BID_A_036_TrifleMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_037_ParfaitFemale": { + "templateId": "AthenaBackpack:BID_A_037_ParfaitFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_038_PennantSeas": { + "templateId": "AthenaBackpack:BID_A_038_PennantSeas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6", + "Particle7", + "Particle8", + "Particle9", + "Particle10" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_039_RaysFemale": { + "templateId": "AthenaBackpack:BID_A_039_RaysFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_040_BariumFemale": { + "templateId": "AthenaBackpack:BID_A_040_BariumFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_041_FNCS21Female": { + "templateId": "AthenaBackpack:BID_A_041_FNCS21Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_042_FuzzyBearSummerFemale": { + "templateId": "AthenaBackpack:BID_A_042_FuzzyBearSummerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_043_OhanaMale": { + "templateId": "AthenaBackpack:BID_A_043_OhanaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_044_SummerStride": { + "templateId": "AthenaBackpack:BID_A_044_SummerStride", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_045_FruitcakeFemale": { + "templateId": "AthenaBackpack:BID_A_045_FruitcakeFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_046_PunkKoiSummerFemale": { + "templateId": "AthenaBackpack:BID_A_046_PunkKoiSummerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_047_SummerBreeze_Male": { + "templateId": "AthenaBackpack:BID_A_047_SummerBreeze_Male", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_048_SummerVivid_InfinityFemale": { + "templateId": "AthenaBackpack:BID_A_048_SummerVivid_InfinityFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_049_Sunstar": { + "templateId": "AthenaBackpack:BID_A_049_Sunstar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_050_SunTideMale": { + "templateId": "AthenaBackpack:BID_A_050_SunTideMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_051_SunBeamFemale": { + "templateId": "AthenaBackpack:BID_A_051_SunBeamFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_052_DesertShadowMale": { + "templateId": "AthenaBackpack:BID_A_052_DesertShadowMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_053_JumbotronS21Male": { + "templateId": "AthenaBackpack:BID_A_053_JumbotronS21Male", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_054_TurboOrange": { + "templateId": "AthenaBackpack:BID_A_054_TurboOrange", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_055_StaminaMale": { + "templateId": "AthenaBackpack:BID_A_055_StaminaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_056_StaminaFemale": { + "templateId": "AthenaBackpack:BID_A_056_StaminaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_057_StaminaCatMale": { + "templateId": "AthenaBackpack:BID_A_057_StaminaCatMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_058_StaminaMale_StandAlone": { + "templateId": "AthenaBackpack:BID_A_058_StaminaMale_StandAlone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_059_ChaosFemale": { + "templateId": "AthenaBackpack:BID_A_059_ChaosFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_060_WayfareMale": { + "templateId": "AthenaBackpack:BID_A_060_WayfareMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_061_WayfareFemale": { + "templateId": "AthenaBackpack:BID_A_061_WayfareFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_062_WayfareMaskFemale": { + "templateId": "AthenaBackpack:BID_A_062_WayfareMaskFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_063_ApexWildMale": { + "templateId": "AthenaBackpack:BID_A_063_ApexWildMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_064_ApexWild_RedMale": { + "templateId": "AthenaBackpack:BID_A_064_ApexWild_RedMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_065_FutureSamuraiSummerMale": { + "templateId": "AthenaBackpack:BID_A_065_FutureSamuraiSummerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_066_Fog": { + "templateId": "AthenaBackpack:BID_A_066_Fog", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_067_AstralFemale": { + "templateId": "AthenaBackpack:BID_A_067_AstralFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_068_NeonJam": { + "templateId": "AthenaBackpack:BID_A_068_NeonJam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_069_HandlebarFemale": { + "templateId": "AthenaBackpack:BID_A_069_HandlebarFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_A_070_WildCardFemale": { + "templateId": "AthenaBackpack:BID_A_070_WildCardFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_Empty": { + "templateId": "AthenaBackpack:BID_Empty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_NPC_CloakedAssassin": { + "templateId": "AthenaBackpack:BID_NPC_CloakedAssassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_NPC_HightowerDate": { + "templateId": "AthenaBackpack:BID_NPC_HightowerDate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_STWHero": { + "templateId": "AthenaBackpack:BID_STWHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_STWHeroNoDefaultBackpack": { + "templateId": "AthenaBackpack:BID_STWHeroNoDefaultBackpack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:BID_TBD_Cosmos": { + "templateId": "AthenaBackpack:BID_TBD_Cosmos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:BID_TBD_MechanicalEngineer_Owl": { + "templateId": "AthenaPet:BID_TBD_MechanicalEngineer_Owl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:BoltonPickaxe": { + "templateId": "AthenaPickaxe:BoltonPickaxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_AbstractMirror_Rogue": { + "templateId": "AthenaCharacter:Character_AbstractMirror_Rogue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_AgentSherbert": { + "templateId": "AthenaCharacter:Character_AgentSherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_AgentXKoi": { + "templateId": "AthenaCharacter:Character_AgentXKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Alien_Robot": { + "templateId": "AthenaCharacter:Character_Alien_Robot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_AllKnowing": { + "templateId": "AthenaCharacter:Character_AllKnowing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Amour": { + "templateId": "AthenaCharacter:Character_Amour", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Apprentice": { + "templateId": "AthenaCharacter:Character_Apprentice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Parts", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ArcticIceBlue": { + "templateId": "AthenaCharacter:Character_ArcticIceBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ArcticIceTalus": { + "templateId": "AthenaCharacter:Character_ArcticIceTalus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BadBear": { + "templateId": "AthenaCharacter:Character_BadBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Ballerina": { + "templateId": "AthenaCharacter:Character_Ballerina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BananaAdventure": { + "templateId": "AthenaCharacter:Character_BananaAdventure", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BariumDemon": { + "templateId": "AthenaCharacter:Character_BariumDemon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BasilStrong": { + "templateId": "AthenaCharacter:Character_BasilStrong", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BengalBasher_NPC": { + "templateId": "AthenaCharacter:Character_BengalBasher_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BengalBasher_Suit": { + "templateId": "AthenaCharacter:Character_BengalBasher_Suit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Billy": { + "templateId": "AthenaCharacter:Character_Billy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BirdNest": { + "templateId": "AthenaCharacter:Character_BirdNest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BirdNestNavy": { + "templateId": "AthenaCharacter:Character_BirdNestNavy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BiruFang": { + "templateId": "AthenaCharacter:Character_BiruFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Bites": { + "templateId": "AthenaCharacter:Character_Bites", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BlazerVeil": { + "templateId": "AthenaCharacter:Character_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Mesh", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BlingHearts_NPC": { + "templateId": "AthenaCharacter:Character_BlingHearts_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BlueGlaze": { + "templateId": "AthenaCharacter:Character_BlueGlaze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BlueJet": { + "templateId": "AthenaCharacter:Character_BlueJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BlueMystery_Dark": { + "templateId": "AthenaCharacter:Character_BlueMystery_Dark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BoneMarrow": { + "templateId": "AthenaCharacter:Character_BoneMarrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Boredom": { + "templateId": "AthenaCharacter:Character_Boredom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BrainMatter": { + "templateId": "AthenaCharacter:Character_BrainMatter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BraveBuild": { + "templateId": "AthenaCharacter:Character_BraveBuild", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BraveBuildSuper": { + "templateId": "AthenaCharacter:Character_BraveBuildSuper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BrawnyBass": { + "templateId": "AthenaCharacter:Character_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2", + "Emissive3", + "Emissive4" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BrightShimmer": { + "templateId": "AthenaCharacter:Character_BrightShimmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BriteDino": { + "templateId": "AthenaCharacter:Character_BriteDino", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BuffCatCruise": { + "templateId": "AthenaCharacter:Character_BuffCatCruise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_BunnyBR": { + "templateId": "AthenaCharacter:Character_BunnyBR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Calavera": { + "templateId": "AthenaCharacter:Character_Calavera", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CameraShake": { + "templateId": "AthenaCharacter:Character_CameraShake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Candor": { + "templateId": "AthenaCharacter:Character_Candor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Mesh", + "active": "Stage3", + "owned": [ + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CardboardCrew_Holiday": { + "templateId": "AthenaCharacter:Character_CardboardCrew_Holiday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CasualCherie": { + "templateId": "AthenaCharacter:Character_CasualCherie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CavalryAlt": { + "templateId": "AthenaCharacter:Character_CavalryAlt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CeremonialGuard_Fencer": { + "templateId": "AthenaCharacter:Character_CeremonialGuard_Fencer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CeremonialGuard_Fencer_NPC": { + "templateId": "AthenaCharacter:Character_CeremonialGuard_Fencer_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Chainmail": { + "templateId": "AthenaCharacter:Character_Chainmail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ChaosDarkIce": { + "templateId": "AthenaCharacter:Character_ChaosDarkIce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ChicleVeil": { + "templateId": "AthenaCharacter:Character_ChicleVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ChillCat": { + "templateId": "AthenaCharacter:Character_ChillCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ChromeDJ_NPC": { + "templateId": "AthenaCharacter:Character_ChromeDJ_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CinderMax": { + "templateId": "AthenaCharacter:Character_CinderMax", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CirrusVine": { + "templateId": "AthenaCharacter:Character_CirrusVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Citadel": { + "templateId": "AthenaCharacter:Character_Citadel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ClearRadius": { + "templateId": "AthenaCharacter:Character_ClearRadius", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CleverEdge": { + "templateId": "AthenaCharacter:Character_CleverEdge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CometDeer": { + "templateId": "AthenaCharacter:Character_CometDeer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CometWinter": { + "templateId": "AthenaCharacter:Character_CometWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ConfectionPop": { + "templateId": "AthenaCharacter:Character_ConfectionPop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Conscience": { + "templateId": "AthenaCharacter:Character_Conscience", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CoyoTear": { + "templateId": "AthenaCharacter:Character_CoyoTear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CoyoteTrail": { + "templateId": "AthenaCharacter:Character_CoyoteTrail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CoyoteTrailDark": { + "templateId": "AthenaCharacter:Character_CoyoteTrailDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CrimsonPeak": { + "templateId": "AthenaCharacter:Character_CrimsonPeak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CrispRover": { + "templateId": "AthenaCharacter:Character_CrispRover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CubeCoast": { + "templateId": "AthenaCharacter:Character_CubeCoast", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_CupidEvil": { + "templateId": "AthenaCharacter:Character_CupidEvil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DapperPunch": { + "templateId": "AthenaCharacter:Character_DapperPunch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DarkAzalea": { + "templateId": "AthenaCharacter:Character_DarkAzalea", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Dazzle": { + "templateId": "AthenaCharacter:Character_Dazzle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DefectBlip": { + "templateId": "AthenaCharacter:Character_DefectBlip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "RichColor2", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DefectGlitch": { + "templateId": "AthenaCharacter:Character_DefectGlitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "RichColor2", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Despair": { + "templateId": "AthenaCharacter:Character_Despair", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DiamondHeart_Chic": { + "templateId": "AthenaCharacter:Character_DiamondHeart_Chic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DiamondHeart_NPC": { + "templateId": "AthenaCharacter:Character_DiamondHeart_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DistantEchoCastle": { + "templateId": "AthenaCharacter:Character_DistantEchoCastle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DistantEchoPilot": { + "templateId": "AthenaCharacter:Character_DistantEchoPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DistantEchoPro": { + "templateId": "AthenaCharacter:Character_DistantEchoPro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DracoDueler": { + "templateId": "AthenaCharacter:Character_DracoDueler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DriftAvatar": { + "templateId": "AthenaCharacter:Character_DriftAvatar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DriftSwat": { + "templateId": "AthenaCharacter:Character_DriftSwat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DriftTrooper": { + "templateId": "AthenaCharacter:Character_DriftTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DualParadox": { + "templateId": "AthenaCharacter:Character_DualParadox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Dummy_FNCS": { + "templateId": "AthenaCharacter:Character_Dummy_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_DyedDuelist": { + "templateId": "AthenaCharacter:Character_DyedDuelist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Ebony": { + "templateId": "AthenaCharacter:Character_Ebony", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_EchoAngel_NPC": { + "templateId": "AthenaCharacter:Character_EchoAngel_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_EchoNyx_NPC": { + "templateId": "AthenaCharacter:Character_EchoNyx_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_EctoCat": { + "templateId": "AthenaCharacter:Character_EctoCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Elevate": { + "templateId": "AthenaCharacter:Character_Elevate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_EmberRae": { + "templateId": "AthenaCharacter:Character_EmberRae", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_EmeraldGlassGreen": { + "templateId": "AthenaCharacter:Character_EmeraldGlassGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_EmeraldGlassPink": { + "templateId": "AthenaCharacter:Character_EmeraldGlassPink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_EmeraldGlassRebel": { + "templateId": "AthenaCharacter:Character_EmeraldGlassRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_EmeraldGlassTransform": { + "templateId": "AthenaCharacter:Character_EmeraldGlassTransform", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Ephemeral": { + "templateId": "AthenaCharacter:Character_Ephemeral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FallValleyBlink": { + "templateId": "AthenaCharacter:Character_FallValleyBlink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FallValleyCharge": { + "templateId": "AthenaCharacter:Character_FallValleyCharge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FauxVenom": { + "templateId": "AthenaCharacter:Character_FauxVenom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FearlessFlightHero": { + "templateId": "AthenaCharacter:Character_FearlessFlightHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FearlessFlightMenace": { + "templateId": "AthenaCharacter:Character_FearlessFlightMenace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Firework": { + "templateId": "AthenaCharacter:Character_Firework", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FishBowl": { + "templateId": "AthenaCharacter:Character_FishBowl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FloodPlain": { + "templateId": "AthenaCharacter:Character_FloodPlain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FolkEvening": { + "templateId": "AthenaCharacter:Character_FolkEvening", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FossilMech": { + "templateId": "AthenaCharacter:Character_FossilMech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_FrozenReality": { + "templateId": "AthenaCharacter:Character_FrozenReality", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GalaxyKnight": { + "templateId": "AthenaCharacter:Character_GalaxyKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GalaxyLevel": { + "templateId": "AthenaCharacter:Character_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GelatinGummi": { + "templateId": "AthenaCharacter:Character_GelatinGummi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Genius": { + "templateId": "AthenaCharacter:Character_Genius", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GeniusBlob": { + "templateId": "AthenaCharacter:Character_GeniusBlob", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GoldenGuard": { + "templateId": "AthenaCharacter:Character_GoldenGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GoldenPleats": { + "templateId": "AthenaCharacter:Character_GoldenPleats", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GoodMood": { + "templateId": "AthenaCharacter:Character_GoodMood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GrandScheme": { + "templateId": "AthenaCharacter:Character_GrandScheme", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GrandScheme_Blue": { + "templateId": "AthenaCharacter:Character_GrandScheme_Blue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GrandScheme_Grey": { + "templateId": "AthenaCharacter:Character_GrandScheme_Grey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GrandScheme_NPC": { + "templateId": "AthenaCharacter:Character_GrandScheme_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GrandScheme_Orange": { + "templateId": "AthenaCharacter:Character_GrandScheme_Orange", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GrandScheme_Red": { + "templateId": "AthenaCharacter:Character_GrandScheme_Red", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GrandScheme_Yellow": { + "templateId": "AthenaCharacter:Character_GrandScheme_Yellow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GreenJacketFNCS": { + "templateId": "AthenaCharacter:Character_GreenJacketFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_GroovyReader": { + "templateId": "AthenaCharacter:Character_GroovyReader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HauntKoi": { + "templateId": "AthenaCharacter:Character_HauntKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HeadhunterStar": { + "templateId": "AthenaCharacter:Character_HeadhunterStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HeadhunterStarFNCS": { + "templateId": "AthenaCharacter:Character_HeadhunterStarFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Headset": { + "templateId": "AthenaCharacter:Character_Headset", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage4", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HeavyRoar": { + "templateId": "AthenaCharacter:Character_HeavyRoar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HeistSleek": { + "templateId": "AthenaCharacter:Character_HeistSleek", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HeistSleek_NPC": { + "templateId": "AthenaCharacter:Character_HeistSleek_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HenchmanToughDark_Strong": { + "templateId": "AthenaCharacter:Character_HenchmanToughDark_Strong", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HighBeam": { + "templateId": "AthenaCharacter:Character_HighBeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HighMotion": { + "templateId": "AthenaCharacter:Character_HighMotion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Hitman_Dark": { + "templateId": "AthenaCharacter:Character_Hitman_Dark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HornedJudgment_Midgard": { + "templateId": "AthenaCharacter:Character_HornedJudgment_Midgard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HornettaVine": { + "templateId": "AthenaCharacter:Character_HornettaVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HumanBeing": { + "templateId": "AthenaCharacter:Character_HumanBeing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_HydroIgnite": { + "templateId": "AthenaCharacter:Character_HydroIgnite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_IceRetreat": { + "templateId": "AthenaCharacter:Character_IceRetreat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_IchorIncisor": { + "templateId": "AthenaCharacter:Character_IchorIncisor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Imitator": { + "templateId": "AthenaCharacter:Character_Imitator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Imitator_NPC": { + "templateId": "AthenaCharacter:Character_Imitator_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Impulse": { + "templateId": "AthenaCharacter:Character_Impulse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Pattern", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Stage10", + "Stage11", + "Stage12", + "Stage13", + "Stage14", + "Stage15", + "Stage16", + "Stage17" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ImpulseSpring": { + "templateId": "AthenaCharacter:Character_ImpulseSpring", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Pattern", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Stage10", + "Stage11", + "Stage12", + "Stage13", + "Stage14", + "Stage15", + "Stage16", + "Stage17" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ImpulseSpring_B": { + "templateId": "AthenaCharacter:Character_ImpulseSpring_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Pattern", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Stage10", + "Stage11", + "Stage12", + "Stage13", + "Stage14", + "Stage15", + "Stage16", + "Stage17" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ImpulseSpring_C": { + "templateId": "AthenaCharacter:Character_ImpulseSpring_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Pattern", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Stage10", + "Stage11", + "Stage12", + "Stage13", + "Stage14", + "Stage15", + "Stage16", + "Stage17" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ImpulseSpring_D": { + "templateId": "AthenaCharacter:Character_ImpulseSpring_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Pattern", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Stage10", + "Stage11", + "Stage12", + "Stage13", + "Stage14", + "Stage15", + "Stage16", + "Stage17" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ImpulseSpring_E": { + "templateId": "AthenaCharacter:Character_ImpulseSpring_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Pattern", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Stage10", + "Stage11", + "Stage12", + "Stage13", + "Stage14", + "Stage15", + "Stage16", + "Stage17" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Impulse_B": { + "templateId": "AthenaCharacter:Character_Impulse_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Pattern", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Stage10", + "Stage11", + "Stage12", + "Stage13", + "Stage14", + "Stage15", + "Stage16", + "Stage17" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Impulse_C": { + "templateId": "AthenaCharacter:Character_Impulse_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Pattern", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Stage10", + "Stage11", + "Stage12", + "Stage13", + "Stage14", + "Stage15", + "Stage16", + "Stage17" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Impulse_D": { + "templateId": "AthenaCharacter:Character_Impulse_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Pattern", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Stage10", + "Stage11", + "Stage12", + "Stage13", + "Stage14", + "Stage15", + "Stage16", + "Stage17" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Impulse_E": { + "templateId": "AthenaCharacter:Character_Impulse_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Pattern", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Stage10", + "Stage11", + "Stage12", + "Stage13", + "Stage14", + "Stage15", + "Stage16", + "Stage17" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_IndieBucket": { + "templateId": "AthenaCharacter:Character_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat3", + "owned": [ + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Inferno": { + "templateId": "AthenaCharacter:Character_Inferno", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_InnovatorSand": { + "templateId": "AthenaCharacter:Character_InnovatorSand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_InspireSpell": { + "templateId": "AthenaCharacter:Character_InspireSpell", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3" + ] + }, + { + "channel": "Mesh", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_InstantGravel": { + "templateId": "AthenaCharacter:Character_InstantGravel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_InstantGravelNoble": { + "templateId": "AthenaCharacter:Character_InstantGravelNoble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_IonVial": { + "templateId": "AthenaCharacter:Character_IonVial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_IronBlaze": { + "templateId": "AthenaCharacter:Character_IronBlaze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_IvyCross": { + "templateId": "AthenaCharacter:Character_IvyCross", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_JonesyOrangeFNCS": { + "templateId": "AthenaCharacter:Character_JonesyOrangeFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_JoyfulGrin": { + "templateId": "AthenaCharacter:Character_JoyfulGrin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Jumpsuit_Mutable": { + "templateId": "AthenaCharacter:Character_Jumpsuit_Mutable", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat14", + "owned": [ + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Mat26", + "Mat27" + ] + }, + { + "channel": "Parts", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6", + "Particle7", + "Particle8", + "Particle9", + "Particle10", + "Particle11", + "Particle12", + "Particle13" + ] + }, + { + "channel": "Corruption", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + }, + { + "channel": "Mesh", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13" + ] + }, + { + "channel": "RichColor", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Jumpsuit_Scrap_Mutable": { + "templateId": "AthenaCharacter:Character_Jumpsuit_Scrap_Mutable", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat14", + "owned": [ + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24", + "Mat25", + "Mat26", + "Mat27" + ] + }, + { + "channel": "Parts", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6", + "Particle7", + "Particle8", + "Particle9", + "Particle10", + "Particle11", + "Particle12", + "Particle13" + ] + }, + { + "channel": "Corruption", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + }, + { + "channel": "Mesh", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13" + ] + }, + { + "channel": "RichColor", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_JungleBoss_NPC": { + "templateId": "AthenaCharacter:Character_JungleBoss_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_KeyTracker": { + "templateId": "AthenaCharacter:Character_KeyTracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_KnightCatRacket": { + "templateId": "AthenaCharacter:Character_KnightCatRacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Knight_Boss_NPC": { + "templateId": "AthenaCharacter:Character_Knight_Boss_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LastVoiceDive": { + "templateId": "AthenaCharacter:Character_LastVoiceDive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LastVoiceSteel": { + "templateId": "AthenaCharacter:Character_LastVoiceSteel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LazarusLens": { + "templateId": "AthenaCharacter:Character_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Secondary", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2", + "Emissive3", + "Emissive4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LazarusLensStyle_NPC": { + "templateId": "AthenaCharacter:Character_LazarusLensStyle_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LazarusLensWings_NPC": { + "templateId": "AthenaCharacter:Character_LazarusLensWings_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LethalVae": { + "templateId": "AthenaCharacter:Character_LethalVae", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Lettuce": { + "templateId": "AthenaCharacter:Character_Lettuce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LettuceCat": { + "templateId": "AthenaCharacter:Character_LettuceCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LexaEarlGrey": { + "templateId": "AthenaCharacter:Character_LexaEarlGrey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LightningDragon": { + "templateId": "AthenaCharacter:Character_LightningDragon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "ClothingColor", + "active": "000", + "owned": [ + "000", + "001" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Lilac": { + "templateId": "AthenaCharacter:Character_Lilac", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LilSplit_Sprinkles": { + "templateId": "AthenaCharacter:Character_LilSplit_Sprinkles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LocalZilla": { + "templateId": "AthenaCharacter:Character_LocalZilla", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Looper": { + "templateId": "AthenaCharacter:Character_Looper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LopexSnow": { + "templateId": "AthenaCharacter:Character_LopexSnow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LoudPhoenix": { + "templateId": "AthenaCharacter:Character_LoudPhoenix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_LucidAzalea": { + "templateId": "AthenaCharacter:Character_LucidAzalea", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MadameMoth_NPC": { + "templateId": "AthenaCharacter:Character_MadameMoth_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MadameMoth_Posh": { + "templateId": "AthenaCharacter:Character_MadameMoth_Posh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage2", + "owned": [ + "Stage2", + "Stage1" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MagicMeadow": { + "templateId": "AthenaCharacter:Character_MagicMeadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MasterKeyOrder": { + "templateId": "AthenaCharacter:Character_MasterKeyOrder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MastermindSummer": { + "templateId": "AthenaCharacter:Character_MastermindSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MechanicalEngineerRev": { + "templateId": "AthenaCharacter:Character_MechanicalEngineerRev", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MechPilotSharkSpeed": { + "templateId": "AthenaCharacter:Character_MechPilotSharkSpeed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MechPilotSharkVelocity": { + "templateId": "AthenaCharacter:Character_MechPilotSharkVelocity", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MelodyUrchin": { + "templateId": "AthenaCharacter:Character_MelodyUrchin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MercurialStorm": { + "templateId": "AthenaCharacter:Character_MercurialStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1", + "Emissive2", + "Emissive3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MetalScout": { + "templateId": "AthenaCharacter:Character_MetalScout", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Meteorwomen_Alt": { + "templateId": "AthenaCharacter:Character_Meteorwomen_Alt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2", + "Emissive3", + "Emissive4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MillionaireCowgirl": { + "templateId": "AthenaCharacter:Character_MillionaireCowgirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MillionaireGem": { + "templateId": "AthenaCharacter:Character_MillionaireGem", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MillionaireTuna": { + "templateId": "AthenaCharacter:Character_MillionaireTuna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MindPinch": { + "templateId": "AthenaCharacter:Character_MindPinch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MindPinch_NPC": { + "templateId": "AthenaCharacter:Character_MindPinch_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MirageHike": { + "templateId": "AthenaCharacter:Character_MirageHike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Mochi": { + "templateId": "AthenaCharacter:Character_Mochi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ModernMilitary_Crisp": { + "templateId": "AthenaCharacter:Character_ModernMilitary_Crisp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MoonShock": { + "templateId": "AthenaCharacter:Character_MoonShock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Mouse": { + "templateId": "AthenaCharacter:Character_Mouse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Mummy": { + "templateId": "AthenaCharacter:Character_Mummy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MusketSlinger": { + "templateId": "AthenaCharacter:Character_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_MuteRibbon": { + "templateId": "AthenaCharacter:Character_MuteRibbon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Nebula": { + "templateId": "AthenaCharacter:Character_Nebula", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_NightHawk": { + "templateId": "AthenaCharacter:Character_NightHawk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_NitroFlow": { + "templateId": "AthenaCharacter:Character_NitroFlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage4", + "Stage2", + "Stage3", + "Stage5" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Nox": { + "templateId": "AthenaCharacter:Character_Nox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_NPCHireReward": { + "templateId": "AthenaCharacter:Character_NPCHireReward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_OceanBreeze": { + "templateId": "AthenaCharacter:Character_OceanBreeze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_OpenEnded": { + "templateId": "AthenaCharacter:Character_OpenEnded", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_OrinChai": { + "templateId": "AthenaCharacter:Character_OrinChai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_OuterGarment": { + "templateId": "AthenaCharacter:Character_OuterGarment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PalmTree": { + "templateId": "AthenaCharacter:Character_PalmTree", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ParrotPen": { + "templateId": "AthenaCharacter:Character_ParrotPen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Patches": { + "templateId": "AthenaCharacter:Character_Patches", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Pencil_Apple": { + "templateId": "AthenaCharacter:Character_Pencil_Apple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Slot", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive0", + "Emissive1" + ] + }, + { + "channel": "JerseyColor", + "active": "Emissive5", + "owned": [ + "Emissive5", + "Emissive4", + "Emissive3" + ] + }, + { + "channel": "Pattern", + "active": "Emissive7", + "owned": [ + "Emissive7", + "Emissive6", + "Emissive8" + ] + }, + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + }, + { + "channel": "Mesh", + "active": "Stage30", + "owned": [ + "Stage30", + "Stage31", + "Stage32" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Pencil_Cherry": { + "templateId": "AthenaCharacter:Character_Pencil_Cherry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Slot", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive0", + "Emissive2" + ] + }, + { + "channel": "JerseyColor", + "active": "Emissive5", + "owned": [ + "Emissive5", + "Emissive3", + "Emissive4" + ] + }, + { + "channel": "Pattern", + "active": "Emissive8", + "owned": [ + "Emissive8", + "Emissive7", + "Emissive6" + ] + }, + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + }, + { + "channel": "Mesh", + "active": "Stage30", + "owned": [ + "Stage30", + "Stage31", + "Stage32" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Pencil_Fig": { + "templateId": "AthenaCharacter:Character_Pencil_Fig", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Slot", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive0", + "Emissive2" + ] + }, + { + "channel": "JerseyColor", + "active": "Emissive5", + "owned": [ + "Emissive5", + "Emissive3", + "Emissive4" + ] + }, + { + "channel": "Pattern", + "active": "Emissive8", + "owned": [ + "Emissive8", + "Emissive7", + "Emissive6" + ] + }, + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + }, + { + "channel": "Mesh", + "active": "Stage30", + "owned": [ + "Stage30", + "Stage31", + "Stage32" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Pencil_Grape": { + "templateId": "AthenaCharacter:Character_Pencil_Grape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Slot", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive0", + "Emissive1" + ] + }, + { + "channel": "JerseyColor", + "active": "Emissive5", + "owned": [ + "Emissive5", + "Emissive4", + "Emissive3" + ] + }, + { + "channel": "Pattern", + "active": "Emissive7", + "owned": [ + "Emissive7", + "Emissive6", + "Emissive8" + ] + }, + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + }, + { + "channel": "Mesh", + "active": "Stage30", + "owned": [ + "Stage30", + "Stage31", + "Stage32" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Pencil_Guava": { + "templateId": "AthenaCharacter:Character_Pencil_Guava", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Slot", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive0", + "Emissive2" + ] + }, + { + "channel": "JerseyColor", + "active": "Emissive5", + "owned": [ + "Emissive5", + "Emissive3", + "Emissive4" + ] + }, + { + "channel": "Pattern", + "active": "Emissive8", + "owned": [ + "Emissive8", + "Emissive7", + "Emissive6" + ] + }, + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + }, + { + "channel": "Mesh", + "active": "Stage30", + "owned": [ + "Stage30", + "Stage31", + "Stage32" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Pencil_Kiwi": { + "templateId": "AthenaCharacter:Character_Pencil_Kiwi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Slot", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive0", + "Emissive1" + ] + }, + { + "channel": "JerseyColor", + "active": "Emissive5", + "owned": [ + "Emissive5", + "Emissive4", + "Emissive3" + ] + }, + { + "channel": "Pattern", + "active": "Emissive7", + "owned": [ + "Emissive7", + "Emissive6", + "Emissive8" + ] + }, + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + }, + { + "channel": "Mesh", + "active": "Stage30", + "owned": [ + "Stage30", + "Stage31", + "Stage32" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Pencil_Lime": { + "templateId": "AthenaCharacter:Character_Pencil_Lime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Slot", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive0", + "Emissive1" + ] + }, + { + "channel": "JerseyColor", + "active": "Emissive5", + "owned": [ + "Emissive5", + "Emissive4", + "Emissive3" + ] + }, + { + "channel": "Pattern", + "active": "Emissive7", + "owned": [ + "Emissive7", + "Emissive6", + "Emissive8" + ] + }, + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + }, + { + "channel": "Mesh", + "active": "Stage30", + "owned": [ + "Stage30", + "Stage31", + "Stage32" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Pencil_Mango": { + "templateId": "AthenaCharacter:Character_Pencil_Mango", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Slot", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive0", + "Emissive2" + ] + }, + { + "channel": "JerseyColor", + "active": "Emissive5", + "owned": [ + "Emissive5", + "Emissive3", + "Emissive4" + ] + }, + { + "channel": "Pattern", + "active": "Emissive8", + "owned": [ + "Emissive8", + "Emissive7", + "Emissive6" + ] + }, + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + }, + { + "channel": "Mesh", + "active": "Stage30", + "owned": [ + "Stage30", + "Stage31", + "Stage32" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Pencil_Pear": { + "templateId": "AthenaCharacter:Character_Pencil_Pear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Slot", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive0", + "Emissive2" + ] + }, + { + "channel": "JerseyColor", + "active": "Emissive5", + "owned": [ + "Emissive5", + "Emissive3", + "Emissive4" + ] + }, + { + "channel": "Pattern", + "active": "Emissive8", + "owned": [ + "Emissive8", + "Emissive7", + "Emissive6" + ] + }, + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + }, + { + "channel": "Mesh", + "active": "Stage30", + "owned": [ + "Stage30", + "Stage31", + "Stage32" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Pencil_Raspberry": { + "templateId": "AthenaCharacter:Character_Pencil_Raspberry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Slot", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive0", + "Emissive1" + ] + }, + { + "channel": "JerseyColor", + "active": "Emissive5", + "owned": [ + "Emissive5", + "Emissive4", + "Emissive3" + ] + }, + { + "channel": "Pattern", + "active": "Emissive7", + "owned": [ + "Emissive7", + "Emissive6", + "Emissive8" + ] + }, + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + }, + { + "channel": "Mesh", + "active": "Stage30", + "owned": [ + "Stage30", + "Stage31", + "Stage32" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PennantSeasGlare": { + "templateId": "AthenaCharacter:Character_PennantSeasGlare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PennantSeasGlare_B": { + "templateId": "AthenaCharacter:Character_PennantSeasGlare_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PennantSeasGlare_C": { + "templateId": "AthenaCharacter:Character_PennantSeasGlare_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PennantSeasGlare_D": { + "templateId": "AthenaCharacter:Character_PennantSeasGlare_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PennantSeasGlare_E": { + "templateId": "AthenaCharacter:Character_PennantSeasGlare_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PennantSeasShade": { + "templateId": "AthenaCharacter:Character_PennantSeasShade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PennantSeasShade_B": { + "templateId": "AthenaCharacter:Character_PennantSeasShade_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PennantSeasShade_C": { + "templateId": "AthenaCharacter:Character_PennantSeasShade_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PennantSeasShade_D": { + "templateId": "AthenaCharacter:Character_PennantSeasShade_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PennantSeasShade_E": { + "templateId": "AthenaCharacter:Character_PennantSeasShade_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Photographer_Holiday": { + "templateId": "AthenaCharacter:Character_Photographer_Holiday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PinkJet": { + "templateId": "AthenaCharacter:Character_PinkJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PinkSpike": { + "templateId": "AthenaCharacter:Character_PinkSpike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PinkTrooperDark": { + "templateId": "AthenaCharacter:Character_PinkTrooperDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PirouetteWeld": { + "templateId": "AthenaCharacter:Character_PirouetteWeld", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PitGlass": { + "templateId": "AthenaCharacter:Character_PitGlass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PizzaParty": { + "templateId": "AthenaCharacter:Character_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Mesh", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PlotTwist": { + "templateId": "AthenaCharacter:Character_PlotTwist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Possession": { + "templateId": "AthenaCharacter:Character_Possession", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PossessionHologram_NPC": { + "templateId": "AthenaCharacter:Character_PossessionHologram_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PowerFarmer": { + "templateId": "AthenaCharacter:Character_PowerFarmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PowerfulDozen": { + "templateId": "AthenaCharacter:Character_PowerfulDozen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PrimeOrder": { + "templateId": "AthenaCharacter:Character_PrimeOrder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PrimeRedux": { + "templateId": "AthenaCharacter:Character_PrimeRedux", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PrimeRedux_B": { + "templateId": "AthenaCharacter:Character_PrimeRedux_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PrimeRedux_C": { + "templateId": "AthenaCharacter:Character_PrimeRedux_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PrimeRedux_D": { + "templateId": "AthenaCharacter:Character_PrimeRedux_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PrimeRedux_E": { + "templateId": "AthenaCharacter:Character_PrimeRedux_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PrimeRedux_F": { + "templateId": "AthenaCharacter:Character_PrimeRedux_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PrimeRedux_G": { + "templateId": "AthenaCharacter:Character_PrimeRedux_G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PrimeRedux_H": { + "templateId": "AthenaCharacter:Character_PrimeRedux_H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PrimeRedux_I": { + "templateId": "AthenaCharacter:Character_PrimeRedux_I", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PrimeRedux_J": { + "templateId": "AthenaCharacter:Character_PrimeRedux_J", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PrisonBreak": { + "templateId": "AthenaCharacter:Character_PrisonBreak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PrivateJet": { + "templateId": "AthenaCharacter:Character_PrivateJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ProdigyFire": { + "templateId": "AthenaCharacter:Character_ProdigyFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ProdigyHaughty": { + "templateId": "AthenaCharacter:Character_ProdigyHaughty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ProdigySage": { + "templateId": "AthenaCharacter:Character_ProdigySage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PumpkinPunk_Glitch": { + "templateId": "AthenaCharacter:Character_PumpkinPunk_Glitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_PumpkinSkeleton": { + "templateId": "AthenaCharacter:Character_PumpkinSkeleton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_QualityCreek": { + "templateId": "AthenaCharacter:Character_QualityCreek", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_QuietPeanuts": { + "templateId": "AthenaCharacter:Character_QuietPeanuts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RaiderPink_Sherbert": { + "templateId": "AthenaCharacter:Character_RaiderPink_Sherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RebelClaw_Aviator": { + "templateId": "AthenaCharacter:Character_RebelClaw_Aviator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ReconExpert_FNCS": { + "templateId": "AthenaCharacter:Character_ReconExpert_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RecordScratch": { + "templateId": "AthenaCharacter:Character_RecordScratch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RedOasisApricot": { + "templateId": "AthenaCharacter:Character_RedOasisApricot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RedOasisBlackberry": { + "templateId": "AthenaCharacter:Character_RedOasisBlackberry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RedOasisGooseberry": { + "templateId": "AthenaCharacter:Character_RedOasisGooseberry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RedOasisJackfruit": { + "templateId": "AthenaCharacter:Character_RedOasisJackfruit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RedOasisPomegranate": { + "templateId": "AthenaCharacter:Character_RedOasisPomegranate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RedPepper": { + "templateId": "AthenaCharacter:Character_RedPepper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RhombCamo": { + "templateId": "AthenaCharacter:Character_RhombCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + }, + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RhombCamo_NPC": { + "templateId": "AthenaCharacter:Character_RhombCamo_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RhombGuard_NPC": { + "templateId": "AthenaCharacter:Character_RhombGuard_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RhombPatrol_NPC": { + "templateId": "AthenaCharacter:Character_RhombPatrol_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RippedHarvester": { + "templateId": "AthenaCharacter:Character_RippedHarvester", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Robot_Hologram_NPC": { + "templateId": "AthenaCharacter:Character_Robot_Hologram_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RockerPunkAlt": { + "templateId": "AthenaCharacter:Character_RockerPunkAlt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RollerBlade": { + "templateId": "AthenaCharacter:Character_RollerBlade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RoosterMelt": { + "templateId": "AthenaCharacter:Character_RoosterMelt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RoseDust": { + "templateId": "AthenaCharacter:Character_RoseDust", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RoseForm": { + "templateId": "AthenaCharacter:Character_RoseForm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_RoyalDusk": { + "templateId": "AthenaCharacter:Character_RoyalDusk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Ruins": { + "templateId": "AthenaCharacter:Character_Ruins", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Sahara": { + "templateId": "AthenaCharacter:Character_Sahara", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Mesh", + "active": "Stage3", + "owned": [ + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SailorSquadLeaderKoi": { + "templateId": "AthenaCharacter:Character_SailorSquadLeaderKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ScareyBeary": { + "templateId": "AthenaCharacter:Character_ScareyBeary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ScarletBionic": { + "templateId": "AthenaCharacter:Character_ScarletBionic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ScorpionZero": { + "templateId": "AthenaCharacter:Character_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Scribble": { + "templateId": "AthenaCharacter:Character_Scribble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SerpentCoil": { + "templateId": "AthenaCharacter:Character_SerpentCoil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SharpFang": { + "templateId": "AthenaCharacter:Character_SharpFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SharpMagnet": { + "templateId": "AthenaCharacter:Character_SharpMagnet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ShiitakeShaolin_Rouge": { + "templateId": "AthenaCharacter:Character_ShiitakeShaolin_Rouge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ShinyStar": { + "templateId": "AthenaCharacter:Character_ShinyStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Silencer": { + "templateId": "AthenaCharacter:Character_Silencer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SilentTempo": { + "templateId": "AthenaCharacter:Character_SilentTempo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SirWolf": { + "templateId": "AthenaCharacter:Character_SirWolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SkeleProbe": { + "templateId": "AthenaCharacter:Character_SkeleProbe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SkippingClouds": { + "templateId": "AthenaCharacter:Character_SkippingClouds", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SlicedBread": { + "templateId": "AthenaCharacter:Character_SlicedBread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SmartHyena": { + "templateId": "AthenaCharacter:Character_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SnakeCrest": { + "templateId": "AthenaCharacter:Character_SnakeCrest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SnowKnight_Helm": { + "templateId": "AthenaCharacter:Character_SnowKnight_Helm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Pattern", + "active": "Stage11", + "owned": [ + "Stage11", + "Stage12", + "Stage13", + "Stage14" + ] + }, + { + "channel": "Particle", + "active": "Stage21", + "owned": [ + "Stage21", + "Stage22", + "Stage23", + "Stage24" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SnowSoldierFashion": { + "templateId": "AthenaCharacter:Character_SnowSoldierFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SolarTheory": { + "templateId": "AthenaCharacter:Character_SolarTheory", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SparkArcher": { + "templateId": "AthenaCharacter:Character_SparkArcher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Sparrow": { + "templateId": "AthenaCharacter:Character_Sparrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny": { + "templateId": "AthenaCharacter:Character_SpeedBonny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer_B": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer_C": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer_D": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer_E": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer_F": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedBonny_Racer_G": { + "templateId": "AthenaCharacter:Character_SpeedBonny_Racer_G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedDial": { + "templateId": "AthenaCharacter:Character_SpeedDial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedDialBattle": { + "templateId": "AthenaCharacter:Character_SpeedDialBattle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer_B": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer_C": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer_D": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer_E": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer_F": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SpeedKidd_Racer_G": { + "templateId": "AthenaCharacter:Character_SpeedKidd_Racer_G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SplitDiamond": { + "templateId": "AthenaCharacter:Character_SplitDiamond", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SportsFashion_Winter": { + "templateId": "AthenaCharacter:Character_SportsFashion_Winter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_StallionAviator": { + "templateId": "AthenaCharacter:Character_StallionAviator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_StallionSmoke": { + "templateId": "AthenaCharacter:Character_StallionSmoke", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_StarStray": { + "templateId": "AthenaCharacter:Character_StarStray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_StarWalkerFNCS": { + "templateId": "AthenaCharacter:Character_StarWalkerFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_StaticShades": { + "templateId": "AthenaCharacter:Character_StaticShades", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SteamPower": { + "templateId": "AthenaCharacter:Character_SteamPower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_StreetGothSummer": { + "templateId": "AthenaCharacter:Character_StreetGothSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_StrontiumSpark": { + "templateId": "AthenaCharacter:Character_StrontiumSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SunbeamQuest": { + "templateId": "AthenaCharacter:Character_SunbeamQuest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SunBurst": { + "templateId": "AthenaCharacter:Character_SunBurst", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + }, + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SunBurstAlt": { + "templateId": "AthenaCharacter:Character_SunBurstAlt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Sunlit": { + "templateId": "AthenaCharacter:Character_Sunlit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SunShine": { + "templateId": "AthenaCharacter:Character_SunShine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SuperNovaTaro": { + "templateId": "AthenaCharacter:Character_SuperNovaTaro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SwampFish": { + "templateId": "AthenaCharacter:Character_SwampFish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_SwampKnight": { + "templateId": "AthenaCharacter:Character_SwampKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_TalonHime": { + "templateId": "AthenaCharacter:Character_TalonHime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_TheHerald": { + "templateId": "AthenaCharacter:Character_TheHerald", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_TheHerald_NPC": { + "templateId": "AthenaCharacter:Character_TheHerald_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_TigerRootFame": { + "templateId": "AthenaCharacter:Character_TigerRootFame", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_TigerRootHype": { + "templateId": "AthenaCharacter:Character_TigerRootHype", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_TimeInterval": { + "templateId": "AthenaCharacter:Character_TimeInterval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Titanium": { + "templateId": "AthenaCharacter:Character_Titanium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Titanium_NPC": { + "templateId": "AthenaCharacter:Character_Titanium_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_TrainingGroundBot_NPC": { + "templateId": "AthenaCharacter:Character_TrainingGroundBot_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_TreasureHunterFashionsFNCS": { + "templateId": "AthenaCharacter:Character_TreasureHunterFashionsFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Troops": { + "templateId": "AthenaCharacter:Character_Troops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_TungStan": { + "templateId": "AthenaCharacter:Character_TungStan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_UndergroundRebel_Fashion": { + "templateId": "AthenaCharacter:Character_UndergroundRebel_Fashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_VectorSpark": { + "templateId": "AthenaCharacter:Character_VectorSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Veiled": { + "templateId": "AthenaCharacter:Character_Veiled", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_VelociTeeth": { + "templateId": "AthenaCharacter:Character_VelociTeeth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Venice": { + "templateId": "AthenaCharacter:Character_Venice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_Virtuous": { + "templateId": "AthenaCharacter:Character_Virtuous", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_VitalInventor": { + "templateId": "AthenaCharacter:Character_VitalInventor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_VitalInventorBlock": { + "templateId": "AthenaCharacter:Character_VitalInventorBlock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_VitalPsych": { + "templateId": "AthenaCharacter:Character_VitalPsych", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage4", + "Stage2", + "Stage3", + "Stage5" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_VoidRedemption_Rebel": { + "templateId": "AthenaCharacter:Character_VoidRedemption_Rebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WaterMolecules": { + "templateId": "AthenaCharacter:Character_WaterMolecules", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WeepingWoodsFestive": { + "templateId": "AthenaCharacter:Character_WeepingWoodsFestive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby_B": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby_C": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby_D": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby_E": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby_F": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderClef_Ruby_G": { + "templateId": "AthenaCharacter:Character_WonderClef_Ruby_G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby_B": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby_C": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby_D": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby_E": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby_F": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_WonderHill_Ruby_G": { + "templateId": "AthenaCharacter:Character_WonderHill_Ruby_G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ZebraScramble_Bacon": { + "templateId": "AthenaCharacter:Character_ZebraScramble_Bacon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ZebraScramble_NPC": { + "templateId": "AthenaCharacter:Character_ZebraScramble_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Character_ZirconSweep": { + "templateId": "AthenaCharacter:Character_ZirconSweep", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_001_Athena_Commando_F_Default": { + "templateId": "AthenaCharacter:CID_001_Athena_Commando_F_Default", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_002_Athena_Commando_F_Default": { + "templateId": "AthenaCharacter:CID_002_Athena_Commando_F_Default", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_003_Athena_Commando_F_Default": { + "templateId": "AthenaCharacter:CID_003_Athena_Commando_F_Default", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_004_Athena_Commando_F_Default": { + "templateId": "AthenaCharacter:CID_004_Athena_Commando_F_Default", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_005_Athena_Commando_M_Default": { + "templateId": "AthenaCharacter:CID_005_Athena_Commando_M_Default", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_006_Athena_Commando_M_Default": { + "templateId": "AthenaCharacter:CID_006_Athena_Commando_M_Default", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_007_Athena_Commando_M_Default": { + "templateId": "AthenaCharacter:CID_007_Athena_Commando_M_Default", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_008_Athena_Commando_M_Default": { + "templateId": "AthenaCharacter:CID_008_Athena_Commando_M_Default", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_009_Athena_Commando_M": { + "templateId": "AthenaCharacter:CID_009_Athena_Commando_M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_010_Athena_Commando_M": { + "templateId": "AthenaCharacter:CID_010_Athena_Commando_M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_011_Athena_Commando_M": { + "templateId": "AthenaCharacter:CID_011_Athena_Commando_M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_012_Athena_Commando_M": { + "templateId": "AthenaCharacter:CID_012_Athena_Commando_M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_013_Athena_Commando_F": { + "templateId": "AthenaCharacter:CID_013_Athena_Commando_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_014_Athena_Commando_F": { + "templateId": "AthenaCharacter:CID_014_Athena_Commando_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_015_Athena_Commando_F": { + "templateId": "AthenaCharacter:CID_015_Athena_Commando_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_016_Athena_Commando_F": { + "templateId": "AthenaCharacter:CID_016_Athena_Commando_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_017_Athena_Commando_M": { + "templateId": "AthenaCharacter:CID_017_Athena_Commando_M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_018_Athena_Commando_M": { + "templateId": "AthenaCharacter:CID_018_Athena_Commando_M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_019_Athena_Commando_M": { + "templateId": "AthenaCharacter:CID_019_Athena_Commando_M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_020_Athena_Commando_M": { + "templateId": "AthenaCharacter:CID_020_Athena_Commando_M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_021_Athena_Commando_F": { + "templateId": "AthenaCharacter:CID_021_Athena_Commando_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_022_Athena_Commando_F": { + "templateId": "AthenaCharacter:CID_022_Athena_Commando_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_023_Athena_Commando_F": { + "templateId": "AthenaCharacter:CID_023_Athena_Commando_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_024_Athena_Commando_F": { + "templateId": "AthenaCharacter:CID_024_Athena_Commando_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_025_Athena_Commando_M": { + "templateId": "AthenaCharacter:CID_025_Athena_Commando_M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_026_Athena_Commando_M": { + "templateId": "AthenaCharacter:CID_026_Athena_Commando_M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_027_Athena_Commando_F": { + "templateId": "AthenaCharacter:CID_027_Athena_Commando_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_028_Athena_Commando_F": { + "templateId": "AthenaCharacter:CID_028_Athena_Commando_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_029_Athena_Commando_F_Halloween": { + "templateId": "AthenaCharacter:CID_029_Athena_Commando_F_Halloween", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_030_Athena_Commando_M_Halloween": { + "templateId": "AthenaCharacter:CID_030_Athena_Commando_M_Halloween", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_031_Athena_Commando_M_Retro": { + "templateId": "AthenaCharacter:CID_031_Athena_Commando_M_Retro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_032_Athena_Commando_M_Medieval": { + "templateId": "AthenaCharacter:CID_032_Athena_Commando_M_Medieval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_033_Athena_Commando_F_Medieval": { + "templateId": "AthenaCharacter:CID_033_Athena_Commando_F_Medieval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_034_Athena_Commando_F_Medieval": { + "templateId": "AthenaCharacter:CID_034_Athena_Commando_F_Medieval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_035_Athena_Commando_M_Medieval": { + "templateId": "AthenaCharacter:CID_035_Athena_Commando_M_Medieval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_036_Athena_Commando_M_WinterCamo": { + "templateId": "AthenaCharacter:CID_036_Athena_Commando_M_WinterCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_037_Athena_Commando_F_WinterCamo": { + "templateId": "AthenaCharacter:CID_037_Athena_Commando_F_WinterCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_038_Athena_Commando_M_Disco": { + "templateId": "AthenaCharacter:CID_038_Athena_Commando_M_Disco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_039_Athena_Commando_F_Disco": { + "templateId": "AthenaCharacter:CID_039_Athena_Commando_F_Disco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_040_Athena_Commando_M_District": { + "templateId": "AthenaCharacter:CID_040_Athena_Commando_M_District", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_041_Athena_Commando_F_District": { + "templateId": "AthenaCharacter:CID_041_Athena_Commando_F_District", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_042_Athena_Commando_M_Cyberpunk": { + "templateId": "AthenaCharacter:CID_042_Athena_Commando_M_Cyberpunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_043_Athena_Commando_F_Stealth": { + "templateId": "AthenaCharacter:CID_043_Athena_Commando_F_Stealth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_044_Athena_Commando_F_SciPop": { + "templateId": "AthenaCharacter:CID_044_Athena_Commando_F_SciPop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_045_Athena_Commando_M_HolidaySweater": { + "templateId": "AthenaCharacter:CID_045_Athena_Commando_M_HolidaySweater", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_046_Athena_Commando_F_HolidaySweater": { + "templateId": "AthenaCharacter:CID_046_Athena_Commando_F_HolidaySweater", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_047_Athena_Commando_F_HolidayReindeer": { + "templateId": "AthenaCharacter:CID_047_Athena_Commando_F_HolidayReindeer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_048_Athena_Commando_F_HolidayGingerbread": { + "templateId": "AthenaCharacter:CID_048_Athena_Commando_F_HolidayGingerbread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_049_Athena_Commando_M_HolidayGingerbread": { + "templateId": "AthenaCharacter:CID_049_Athena_Commando_M_HolidayGingerbread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_050_Athena_Commando_M_HolidayNutcracker": { + "templateId": "AthenaCharacter:CID_050_Athena_Commando_M_HolidayNutcracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_051_Athena_Commando_M_HolidayElf": { + "templateId": "AthenaCharacter:CID_051_Athena_Commando_M_HolidayElf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_052_Athena_Commando_F_PSBlue": { + "templateId": "AthenaCharacter:CID_052_Athena_Commando_F_PSBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_053_Athena_Commando_M_SkiDude": { + "templateId": "AthenaCharacter:CID_053_Athena_Commando_M_SkiDude", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_054_Athena_Commando_M_SkiDude_USA": { + "templateId": "AthenaCharacter:CID_054_Athena_Commando_M_SkiDude_USA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_055_Athena_Commando_M_SkiDude_CAN": { + "templateId": "AthenaCharacter:CID_055_Athena_Commando_M_SkiDude_CAN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_056_Athena_Commando_M_SkiDude_GBR": { + "templateId": "AthenaCharacter:CID_056_Athena_Commando_M_SkiDude_GBR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_057_Athena_Commando_M_SkiDude_FRA": { + "templateId": "AthenaCharacter:CID_057_Athena_Commando_M_SkiDude_FRA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_058_Athena_Commando_M_SkiDude_GER": { + "templateId": "AthenaCharacter:CID_058_Athena_Commando_M_SkiDude_GER", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_059_Athena_Commando_M_SkiDude_CHN": { + "templateId": "AthenaCharacter:CID_059_Athena_Commando_M_SkiDude_CHN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_060_Athena_Commando_M_SkiDude_KOR": { + "templateId": "AthenaCharacter:CID_060_Athena_Commando_M_SkiDude_KOR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_061_Athena_Commando_F_SkiGirl": { + "templateId": "AthenaCharacter:CID_061_Athena_Commando_F_SkiGirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_062_Athena_Commando_F_SkiGirl_USA": { + "templateId": "AthenaCharacter:CID_062_Athena_Commando_F_SkiGirl_USA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_063_Athena_Commando_F_SkiGirl_CAN": { + "templateId": "AthenaCharacter:CID_063_Athena_Commando_F_SkiGirl_CAN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_064_Athena_Commando_F_SkiGirl_GBR": { + "templateId": "AthenaCharacter:CID_064_Athena_Commando_F_SkiGirl_GBR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_065_Athena_Commando_F_SkiGirl_FRA": { + "templateId": "AthenaCharacter:CID_065_Athena_Commando_F_SkiGirl_FRA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_066_Athena_Commando_F_SkiGirl_GER": { + "templateId": "AthenaCharacter:CID_066_Athena_Commando_F_SkiGirl_GER", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_067_Athena_Commando_F_SkiGirl_CHN": { + "templateId": "AthenaCharacter:CID_067_Athena_Commando_F_SkiGirl_CHN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_068_Athena_Commando_F_SkiGirl_KOR": { + "templateId": "AthenaCharacter:CID_068_Athena_Commando_F_SkiGirl_KOR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_069_Athena_Commando_F_PinkBear": { + "templateId": "AthenaCharacter:CID_069_Athena_Commando_F_PinkBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_070_Athena_Commando_M_Cupid": { + "templateId": "AthenaCharacter:CID_070_Athena_Commando_M_Cupid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_071_Athena_Commando_M_Wukong": { + "templateId": "AthenaCharacter:CID_071_Athena_Commando_M_Wukong", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_072_Athena_Commando_M_Scout": { + "templateId": "AthenaCharacter:CID_072_Athena_Commando_M_Scout", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_073_Athena_Commando_F_Scuba": { + "templateId": "AthenaCharacter:CID_073_Athena_Commando_F_Scuba", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_074_Athena_Commando_F_Stripe": { + "templateId": "AthenaCharacter:CID_074_Athena_Commando_F_Stripe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_075_Athena_Commando_F_Stripe": { + "templateId": "AthenaCharacter:CID_075_Athena_Commando_F_Stripe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_076_Athena_Commando_F_Sup": { + "templateId": "AthenaCharacter:CID_076_Athena_Commando_F_Sup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_077_Athena_Commando_M_Sup": { + "templateId": "AthenaCharacter:CID_077_Athena_Commando_M_Sup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_078_Athena_Commando_M_Camo": { + "templateId": "AthenaCharacter:CID_078_Athena_Commando_M_Camo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_079_Athena_Commando_F_Camo": { + "templateId": "AthenaCharacter:CID_079_Athena_Commando_F_Camo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_080_Athena_Commando_M_Space": { + "templateId": "AthenaCharacter:CID_080_Athena_Commando_M_Space", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_081_Athena_Commando_F_Space": { + "templateId": "AthenaCharacter:CID_081_Athena_Commando_F_Space", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_082_Athena_Commando_M_Scavenger": { + "templateId": "AthenaCharacter:CID_082_Athena_Commando_M_Scavenger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_083_Athena_Commando_F_Tactical": { + "templateId": "AthenaCharacter:CID_083_Athena_Commando_F_Tactical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_084_Athena_Commando_M_Assassin": { + "templateId": "AthenaCharacter:CID_084_Athena_Commando_M_Assassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_085_Athena_Commando_M_Twitch": { + "templateId": "AthenaCharacter:CID_085_Athena_Commando_M_Twitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_086_Athena_Commando_M_RedSilk": { + "templateId": "AthenaCharacter:CID_086_Athena_Commando_M_RedSilk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_087_Athena_Commando_F_RedSilk": { + "templateId": "AthenaCharacter:CID_087_Athena_Commando_F_RedSilk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_088_Athena_Commando_M_SpaceBlack": { + "templateId": "AthenaCharacter:CID_088_Athena_Commando_M_SpaceBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_089_Athena_Commando_M_RetroGrey": { + "templateId": "AthenaCharacter:CID_089_Athena_Commando_M_RetroGrey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_090_Athena_Commando_M_Tactical": { + "templateId": "AthenaCharacter:CID_090_Athena_Commando_M_Tactical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_091_Athena_Commando_M_RedShirt": { + "templateId": "AthenaCharacter:CID_091_Athena_Commando_M_RedShirt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_092_Athena_Commando_F_RedShirt": { + "templateId": "AthenaCharacter:CID_092_Athena_Commando_F_RedShirt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_093_Athena_Commando_M_Dinosaur": { + "templateId": "AthenaCharacter:CID_093_Athena_Commando_M_Dinosaur", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_094_Athena_Commando_M_Rider": { + "templateId": "AthenaCharacter:CID_094_Athena_Commando_M_Rider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_095_Athena_Commando_M_Founder": { + "templateId": "AthenaCharacter:CID_095_Athena_Commando_M_Founder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_096_Athena_Commando_F_Founder": { + "templateId": "AthenaCharacter:CID_096_Athena_Commando_F_Founder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_097_Athena_Commando_F_RockerPunk": { + "templateId": "AthenaCharacter:CID_097_Athena_Commando_F_RockerPunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_098_Athena_Commando_F_StPatty": { + "templateId": "AthenaCharacter:CID_098_Athena_Commando_F_StPatty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_099_Athena_Commando_F_Scathach": { + "templateId": "AthenaCharacter:CID_099_Athena_Commando_F_Scathach", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_100_Athena_Commando_M_CuChulainn": { + "templateId": "AthenaCharacter:CID_100_Athena_Commando_M_CuChulainn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_101_Athena_Commando_M_Stealth": { + "templateId": "AthenaCharacter:CID_101_Athena_Commando_M_Stealth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_102_Athena_Commando_M_Raven": { + "templateId": "AthenaCharacter:CID_102_Athena_Commando_M_Raven", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_103_Athena_Commando_M_Bunny": { + "templateId": "AthenaCharacter:CID_103_Athena_Commando_M_Bunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_104_Athena_Commando_F_Bunny": { + "templateId": "AthenaCharacter:CID_104_Athena_Commando_F_Bunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_105_Athena_Commando_F_SpaceBlack": { + "templateId": "AthenaCharacter:CID_105_Athena_Commando_F_SpaceBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_106_Athena_Commando_F_Taxi": { + "templateId": "AthenaCharacter:CID_106_Athena_Commando_F_Taxi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_107_Athena_Commando_F_PajamaParty": { + "templateId": "AthenaCharacter:CID_107_Athena_Commando_F_PajamaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_108_Athena_Commando_M_Fishhead": { + "templateId": "AthenaCharacter:CID_108_Athena_Commando_M_Fishhead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_109_Athena_Commando_M_Pizza": { + "templateId": "AthenaCharacter:CID_109_Athena_Commando_M_Pizza", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_110_Athena_Commando_F_CircuitBreaker": { + "templateId": "AthenaCharacter:CID_110_Athena_Commando_F_CircuitBreaker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_111_Athena_Commando_F_Robo": { + "templateId": "AthenaCharacter:CID_111_Athena_Commando_F_Robo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_112_Athena_Commando_M_Brite": { + "templateId": "AthenaCharacter:CID_112_Athena_Commando_M_Brite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_113_Athena_Commando_M_BlueAce": { + "templateId": "AthenaCharacter:CID_113_Athena_Commando_M_BlueAce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_114_Athena_Commando_F_TacticalWoodland": { + "templateId": "AthenaCharacter:CID_114_Athena_Commando_F_TacticalWoodland", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_115_Athena_Commando_M_CarbideBlue": { + "templateId": "AthenaCharacter:CID_115_Athena_Commando_M_CarbideBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1", + "Emissive2", + "Emissive3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_116_Athena_Commando_M_CarbideBlack": { + "templateId": "AthenaCharacter:CID_116_Athena_Commando_M_CarbideBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1", + "Emissive2", + "Emissive3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_117_Athena_Commando_M_TacticalJungle": { + "templateId": "AthenaCharacter:CID_117_Athena_Commando_M_TacticalJungle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_118_Athena_Commando_F_Valor": { + "templateId": "AthenaCharacter:CID_118_Athena_Commando_F_Valor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_119_Athena_Commando_F_Candy": { + "templateId": "AthenaCharacter:CID_119_Athena_Commando_F_Candy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_120_Athena_Commando_F_Graffiti": { + "templateId": "AthenaCharacter:CID_120_Athena_Commando_F_Graffiti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_121_Athena_Commando_M_Graffiti": { + "templateId": "AthenaCharacter:CID_121_Athena_Commando_M_Graffiti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_122_Athena_Commando_M_Metal": { + "templateId": "AthenaCharacter:CID_122_Athena_Commando_M_Metal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_123_Athena_Commando_F_Metal": { + "templateId": "AthenaCharacter:CID_123_Athena_Commando_F_Metal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_124_Athena_Commando_F_AuroraGlow": { + "templateId": "AthenaCharacter:CID_124_Athena_Commando_F_AuroraGlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_125_Athena_Commando_M_TacticalWoodland": { + "templateId": "AthenaCharacter:CID_125_Athena_Commando_M_TacticalWoodland", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_126_Athena_Commando_M_AuroraGlow": { + "templateId": "AthenaCharacter:CID_126_Athena_Commando_M_AuroraGlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_127_Athena_Commando_M_Hazmat": { + "templateId": "AthenaCharacter:CID_127_Athena_Commando_M_Hazmat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_128_Athena_Commando_F_Hazmat": { + "templateId": "AthenaCharacter:CID_128_Athena_Commando_F_Hazmat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_129_Athena_Commando_M_Deco": { + "templateId": "AthenaCharacter:CID_129_Athena_Commando_M_Deco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_130_Athena_Commando_M_Merman": { + "templateId": "AthenaCharacter:CID_130_Athena_Commando_M_Merman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_131_Athena_Commando_M_Warpaint": { + "templateId": "AthenaCharacter:CID_131_Athena_Commando_M_Warpaint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_132_Athena_Commando_M_Venus": { + "templateId": "AthenaCharacter:CID_132_Athena_Commando_M_Venus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_133_Athena_Commando_F_Deco": { + "templateId": "AthenaCharacter:CID_133_Athena_Commando_F_Deco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_134_Athena_Commando_M_Jailbird": { + "templateId": "AthenaCharacter:CID_134_Athena_Commando_M_Jailbird", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_135_Athena_Commando_F_Jailbird": { + "templateId": "AthenaCharacter:CID_135_Athena_Commando_F_Jailbird", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_136_Athena_Commando_M_StreetBasketball": { + "templateId": "AthenaCharacter:CID_136_Athena_Commando_M_StreetBasketball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_137_Athena_Commando_F_StreetBasketball": { + "templateId": "AthenaCharacter:CID_137_Athena_Commando_F_StreetBasketball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_138_Athena_Commando_M_PSBurnout": { + "templateId": "AthenaCharacter:CID_138_Athena_Commando_M_PSBurnout", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_139_Athena_Commando_M_FighterPilot": { + "templateId": "AthenaCharacter:CID_139_Athena_Commando_M_FighterPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_140_Athena_Commando_M_Visitor": { + "templateId": "AthenaCharacter:CID_140_Athena_Commando_M_Visitor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_141_Athena_Commando_M_DarkEagle": { + "templateId": "AthenaCharacter:CID_141_Athena_Commando_M_DarkEagle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_142_Athena_Commando_M_WWIIPilot": { + "templateId": "AthenaCharacter:CID_142_Athena_Commando_M_WWIIPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_143_Athena_Commando_F_DarkNinja": { + "templateId": "AthenaCharacter:CID_143_Athena_Commando_F_DarkNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_144_Athena_Commando_M_SoccerDudeA": { + "templateId": "AthenaCharacter:CID_144_Athena_Commando_M_SoccerDudeA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "Fortnite", + "owned": [ + "Fortnite", + "Argentina", + "Australia", + "Belgium", + "Brazil", + "Canada", + "Colombia", + "Denmark", + "Egypt", + "England", + "France", + "Germany", + "Iceland", + "Italy", + "Ireland", + "Japan", + "Korea", + "Mexico", + "Netherlands", + "NewZealand", + "Nigeria", + "Norway", + "Poland", + "Portugal", + "Russia", + "Saudi", + "Spain", + "Sweden", + "Switzerland", + "Terkey", + "Uruguay", + "USA" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_145_Athena_Commando_M_SoccerDudeB": { + "templateId": "AthenaCharacter:CID_145_Athena_Commando_M_SoccerDudeB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "Fortnite", + "owned": [ + "Fortnite", + "Argentina", + "Australia", + "Belgium", + "Brazil", + "Canada", + "Colombia", + "Denmark", + "Egypt", + "England", + "France", + "Germany", + "Iceland", + "Italy", + "Ireland", + "Japan", + "Korea", + "Mexico", + "Netherlands", + "NewZealand", + "Nigeria", + "Norway", + "Poland", + "Portugal", + "Russia", + "Saudi", + "Spain", + "Sweden", + "Switzerland", + "Terkey", + "Uruguay", + "USA" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_146_Athena_Commando_M_SoccerDudeC": { + "templateId": "AthenaCharacter:CID_146_Athena_Commando_M_SoccerDudeC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "Fortnite", + "owned": [ + "Fortnite", + "Argentina", + "Australia", + "Belgium", + "Brazil", + "Canada", + "Colombia", + "Denmark", + "Egypt", + "England", + "France", + "Germany", + "Iceland", + "Italy", + "Ireland", + "Japan", + "Korea", + "Mexico", + "Netherlands", + "NewZealand", + "Nigeria", + "Norway", + "Poland", + "Portugal", + "Russia", + "Saudi", + "Spain", + "Sweden", + "Switzerland", + "Terkey", + "Uruguay", + "USA" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_147_Athena_Commando_M_SoccerDudeD": { + "templateId": "AthenaCharacter:CID_147_Athena_Commando_M_SoccerDudeD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "Fortnite", + "owned": [ + "Fortnite", + "Argentina", + "Australia", + "Belgium", + "Brazil", + "Canada", + "Colombia", + "Denmark", + "Egypt", + "England", + "France", + "Germany", + "Iceland", + "Italy", + "Ireland", + "Japan", + "Korea", + "Mexico", + "Netherlands", + "NewZealand", + "Nigeria", + "Norway", + "Poland", + "Portugal", + "Russia", + "Saudi", + "Spain", + "Sweden", + "Switzerland", + "Terkey", + "Uruguay", + "USA" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_148_Athena_Commando_F_SoccerGirlA": { + "templateId": "AthenaCharacter:CID_148_Athena_Commando_F_SoccerGirlA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "Fortnite", + "owned": [ + "Fortnite", + "Argentina", + "Australia", + "Belgium", + "Brazil", + "Canada", + "Colombia", + "Denmark", + "Egypt", + "England", + "France", + "Germany", + "Iceland", + "Italy", + "Ireland", + "Japan", + "Korea", + "Mexico", + "Netherlands", + "NewZealand", + "Nigeria", + "Norway", + "Poland", + "Portugal", + "Russia", + "Saudi", + "Spain", + "Sweden", + "Switzerland", + "Terkey", + "Uruguay", + "USA" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_149_Athena_Commando_F_SoccerGirlB": { + "templateId": "AthenaCharacter:CID_149_Athena_Commando_F_SoccerGirlB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "Fortnite", + "owned": [ + "Fortnite", + "Argentina", + "Australia", + "Belgium", + "Brazil", + "Canada", + "Colombia", + "Denmark", + "Egypt", + "England", + "France", + "Germany", + "Iceland", + "Italy", + "Ireland", + "Japan", + "Korea", + "Mexico", + "Netherlands", + "NewZealand", + "Nigeria", + "Norway", + "Poland", + "Portugal", + "Russia", + "Saudi", + "Spain", + "Sweden", + "Switzerland", + "Terkey", + "Uruguay", + "USA" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_150_Athena_Commando_F_SoccerGirlC": { + "templateId": "AthenaCharacter:CID_150_Athena_Commando_F_SoccerGirlC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "Fortnite", + "owned": [ + "Fortnite", + "Argentina", + "Australia", + "Belgium", + "Brazil", + "Canada", + "Colombia", + "Denmark", + "Egypt", + "England", + "France", + "Germany", + "Iceland", + "Italy", + "Ireland", + "Japan", + "Korea", + "Mexico", + "Netherlands", + "NewZealand", + "Nigeria", + "Norway", + "Poland", + "Portugal", + "Russia", + "Saudi", + "Spain", + "Sweden", + "Switzerland", + "Terkey", + "Uruguay", + "USA" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_151_Athena_Commando_F_SoccerGirlD": { + "templateId": "AthenaCharacter:CID_151_Athena_Commando_F_SoccerGirlD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "Fortnite", + "owned": [ + "Fortnite", + "Argentina", + "Australia", + "Belgium", + "Brazil", + "Canada", + "Colombia", + "Denmark", + "Egypt", + "England", + "France", + "Germany", + "Iceland", + "Italy", + "Ireland", + "Japan", + "Korea", + "Mexico", + "Netherlands", + "NewZealand", + "Nigeria", + "Norway", + "Poland", + "Portugal", + "Russia", + "Saudi", + "Spain", + "Sweden", + "Switzerland", + "Terkey", + "Uruguay", + "USA" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_152_Athena_Commando_F_CarbideOrange": { + "templateId": "AthenaCharacter:CID_152_Athena_Commando_F_CarbideOrange", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_153_Athena_Commando_F_CarbideBlack": { + "templateId": "AthenaCharacter:CID_153_Athena_Commando_F_CarbideBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_154_Athena_Commando_M_Gumshoe": { + "templateId": "AthenaCharacter:CID_154_Athena_Commando_M_Gumshoe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_155_Athena_Commando_F_Gumshoe": { + "templateId": "AthenaCharacter:CID_155_Athena_Commando_F_Gumshoe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_156_Athena_Commando_F_FuzzyBearInd": { + "templateId": "AthenaCharacter:CID_156_Athena_Commando_F_FuzzyBearInd", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_157_Athena_Commando_M_StarsAndStripes": { + "templateId": "AthenaCharacter:CID_157_Athena_Commando_M_StarsAndStripes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_158_Athena_Commando_F_StarsAndStripes": { + "templateId": "AthenaCharacter:CID_158_Athena_Commando_F_StarsAndStripes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_159_Athena_Commando_M_GumshoeDark": { + "templateId": "AthenaCharacter:CID_159_Athena_Commando_M_GumshoeDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_160_Athena_Commando_M_SpeedyRed": { + "templateId": "AthenaCharacter:CID_160_Athena_Commando_M_SpeedyRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_161_Athena_Commando_M_Drift": { + "templateId": "AthenaCharacter:CID_161_Athena_Commando_M_Drift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_162_Athena_Commando_F_StreetRacer": { + "templateId": "AthenaCharacter:CID_162_Athena_Commando_F_StreetRacer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_163_Athena_Commando_F_Viking": { + "templateId": "AthenaCharacter:CID_163_Athena_Commando_F_Viking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_164_Athena_Commando_M_Viking": { + "templateId": "AthenaCharacter:CID_164_Athena_Commando_M_Viking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_165_Athena_Commando_M_DarkViking": { + "templateId": "AthenaCharacter:CID_165_Athena_Commando_M_DarkViking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_166_Athena_Commando_F_Lifeguard": { + "templateId": "AthenaCharacter:CID_166_Athena_Commando_F_Lifeguard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_167_Athena_Commando_M_TacticalBadass": { + "templateId": "AthenaCharacter:CID_167_Athena_Commando_M_TacticalBadass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_168_Athena_Commando_M_Shark": { + "templateId": "AthenaCharacter:CID_168_Athena_Commando_M_Shark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_169_Athena_Commando_M_Luchador": { + "templateId": "AthenaCharacter:CID_169_Athena_Commando_M_Luchador", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_170_Athena_Commando_F_Luchador": { + "templateId": "AthenaCharacter:CID_170_Athena_Commando_F_Luchador", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_171_Athena_Commando_M_SharpDresser": { + "templateId": "AthenaCharacter:CID_171_Athena_Commando_M_SharpDresser", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_172_Athena_Commando_F_SharpDresser": { + "templateId": "AthenaCharacter:CID_172_Athena_Commando_F_SharpDresser", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_173_Athena_Commando_F_StarfishUniform": { + "templateId": "AthenaCharacter:CID_173_Athena_Commando_F_StarfishUniform", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_174_Athena_Commando_F_CarbideWhite": { + "templateId": "AthenaCharacter:CID_174_Athena_Commando_F_CarbideWhite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_175_Athena_Commando_M_Celestial": { + "templateId": "AthenaCharacter:CID_175_Athena_Commando_M_Celestial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_176_Athena_Commando_M_Lifeguard": { + "templateId": "AthenaCharacter:CID_176_Athena_Commando_M_Lifeguard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_177_Athena_Commando_M_StreetRacerCobra": { + "templateId": "AthenaCharacter:CID_177_Athena_Commando_M_StreetRacerCobra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_178_Athena_Commando_F_StreetRacerCobra": { + "templateId": "AthenaCharacter:CID_178_Athena_Commando_F_StreetRacerCobra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_179_Athena_Commando_F_Scuba": { + "templateId": "AthenaCharacter:CID_179_Athena_Commando_F_Scuba", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_180_Athena_Commando_M_Scuba": { + "templateId": "AthenaCharacter:CID_180_Athena_Commando_M_Scuba", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_182_Athena_Commando_M_ModernMilitary": { + "templateId": "AthenaCharacter:CID_182_Athena_Commando_M_ModernMilitary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_183_Athena_Commando_M_ModernMilitaryRed": { + "templateId": "AthenaCharacter:CID_183_Athena_Commando_M_ModernMilitaryRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_184_Athena_Commando_M_DurrburgerWorker": { + "templateId": "AthenaCharacter:CID_184_Athena_Commando_M_DurrburgerWorker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_185_Athena_Commando_M_DurrburgerHero": { + "templateId": "AthenaCharacter:CID_185_Athena_Commando_M_DurrburgerHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_186_Athena_Commando_M_Exercise": { + "templateId": "AthenaCharacter:CID_186_Athena_Commando_M_Exercise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_187_Athena_Commando_F_FuzzyBearPanda": { + "templateId": "AthenaCharacter:CID_187_Athena_Commando_F_FuzzyBearPanda", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_188_Athena_Commando_F_StreetRacerWhite": { + "templateId": "AthenaCharacter:CID_188_Athena_Commando_F_StreetRacerWhite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_189_Athena_Commando_F_Exercise": { + "templateId": "AthenaCharacter:CID_189_Athena_Commando_F_Exercise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_190_Athena_Commando_M_StreetRacerWhite": { + "templateId": "AthenaCharacter:CID_190_Athena_Commando_M_StreetRacerWhite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_191_Athena_Commando_M_SushiChef": { + "templateId": "AthenaCharacter:CID_191_Athena_Commando_M_SushiChef", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_192_Athena_Commando_M_Hippie": { + "templateId": "AthenaCharacter:CID_192_Athena_Commando_M_Hippie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_193_Athena_Commando_F_Hippie": { + "templateId": "AthenaCharacter:CID_193_Athena_Commando_F_Hippie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_194_Athena_Commando_F_RavenQuill": { + "templateId": "AthenaCharacter:CID_194_Athena_Commando_F_RavenQuill", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_195_Athena_Commando_F_Bling": { + "templateId": "AthenaCharacter:CID_195_Athena_Commando_F_Bling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_196_Athena_Commando_M_Biker": { + "templateId": "AthenaCharacter:CID_196_Athena_Commando_M_Biker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_197_Athena_Commando_F_Biker": { + "templateId": "AthenaCharacter:CID_197_Athena_Commando_F_Biker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_198_Athena_Commando_M_BlueSamurai": { + "templateId": "AthenaCharacter:CID_198_Athena_Commando_M_BlueSamurai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_199_Athena_Commando_F_BlueSamurai": { + "templateId": "AthenaCharacter:CID_199_Athena_Commando_F_BlueSamurai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_200_Athena_Commando_M_DarkPaintballer": { + "templateId": "AthenaCharacter:CID_200_Athena_Commando_M_DarkPaintballer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_201_Athena_Commando_M_DesertOps": { + "templateId": "AthenaCharacter:CID_201_Athena_Commando_M_DesertOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_202_Athena_Commando_F_DesertOps": { + "templateId": "AthenaCharacter:CID_202_Athena_Commando_F_DesertOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_203_Athena_Commando_M_CloakedStar": { + "templateId": "AthenaCharacter:CID_203_Athena_Commando_M_CloakedStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_204_Athena_Commando_M_GarageBand": { + "templateId": "AthenaCharacter:CID_204_Athena_Commando_M_GarageBand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_205_Athena_Commando_F_GarageBand": { + "templateId": "AthenaCharacter:CID_205_Athena_Commando_F_GarageBand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_206_Athena_Commando_M_Bling": { + "templateId": "AthenaCharacter:CID_206_Athena_Commando_M_Bling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_207_Athena_Commando_M_FootballDudeA": { + "templateId": "AthenaCharacter:CID_207_Athena_Commando_M_FootballDudeA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "036", + "032", + "033", + "034", + "035" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_208_Athena_Commando_M_FootballDudeB": { + "templateId": "AthenaCharacter:CID_208_Athena_Commando_M_FootballDudeB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "036", + "032", + "033", + "034", + "035" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_209_Athena_Commando_M_FootballDudeC": { + "templateId": "AthenaCharacter:CID_209_Athena_Commando_M_FootballDudeC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "036", + "032", + "033", + "034", + "035" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_210_Athena_Commando_F_FootballGirlA": { + "templateId": "AthenaCharacter:CID_210_Athena_Commando_F_FootballGirlA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "036", + "032", + "033", + "034", + "035" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_211_Athena_Commando_F_FootballGirlB": { + "templateId": "AthenaCharacter:CID_211_Athena_Commando_F_FootballGirlB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "036", + "032", + "033", + "034", + "035" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_212_Athena_Commando_F_FootballGirlC": { + "templateId": "AthenaCharacter:CID_212_Athena_Commando_F_FootballGirlC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "036", + "032", + "033", + "034", + "035" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_214_Athena_Commando_F_FootballReferee": { + "templateId": "AthenaCharacter:CID_214_Athena_Commando_F_FootballReferee", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_215_Athena_Commando_M_FootballReferee": { + "templateId": "AthenaCharacter:CID_215_Athena_Commando_M_FootballReferee", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_216_Athena_Commando_F_Medic": { + "templateId": "AthenaCharacter:CID_216_Athena_Commando_F_Medic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_217_Athena_Commando_M_Medic": { + "templateId": "AthenaCharacter:CID_217_Athena_Commando_M_Medic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_218_Athena_Commando_M_GreenBeret": { + "templateId": "AthenaCharacter:CID_218_Athena_Commando_M_GreenBeret", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_219_Athena_Commando_M_Hacivat": { + "templateId": "AthenaCharacter:CID_219_Athena_Commando_M_Hacivat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_220_Athena_Commando_F_Clown": { + "templateId": "AthenaCharacter:CID_220_Athena_Commando_F_Clown", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_221_Athena_Commando_M_Clown": { + "templateId": "AthenaCharacter:CID_221_Athena_Commando_M_Clown", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_222_Athena_Commando_F_DarkViking": { + "templateId": "AthenaCharacter:CID_222_Athena_Commando_F_DarkViking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_223_Athena_Commando_M_Dieselpunk": { + "templateId": "AthenaCharacter:CID_223_Athena_Commando_M_Dieselpunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_224_Athena_Commando_F_Dieselpunk": { + "templateId": "AthenaCharacter:CID_224_Athena_Commando_F_Dieselpunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_225_Athena_Commando_M_Octoberfest": { + "templateId": "AthenaCharacter:CID_225_Athena_Commando_M_Octoberfest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_226_Athena_Commando_F_Octoberfest": { + "templateId": "AthenaCharacter:CID_226_Athena_Commando_F_Octoberfest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_227_Athena_Commando_F_Vampire": { + "templateId": "AthenaCharacter:CID_227_Athena_Commando_F_Vampire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_228_Athena_Commando_M_Vampire": { + "templateId": "AthenaCharacter:CID_228_Athena_Commando_M_Vampire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_229_Athena_Commando_F_DarkBomber": { + "templateId": "AthenaCharacter:CID_229_Athena_Commando_F_DarkBomber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_230_Athena_Commando_M_Werewolf": { + "templateId": "AthenaCharacter:CID_230_Athena_Commando_M_Werewolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_231_Athena_Commando_F_RedRiding": { + "templateId": "AthenaCharacter:CID_231_Athena_Commando_F_RedRiding", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_232_Athena_Commando_F_HalloweenTomato": { + "templateId": "AthenaCharacter:CID_232_Athena_Commando_F_HalloweenTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_233_Athena_Commando_M_FortniteDJ": { + "templateId": "AthenaCharacter:CID_233_Athena_Commando_M_FortniteDJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_234_Athena_Commando_M_LlamaRider": { + "templateId": "AthenaCharacter:CID_234_Athena_Commando_M_LlamaRider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_235_Athena_Commando_M_Scarecrow": { + "templateId": "AthenaCharacter:CID_235_Athena_Commando_M_Scarecrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_236_Athena_Commando_F_Scarecrow": { + "templateId": "AthenaCharacter:CID_236_Athena_Commando_F_Scarecrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_237_Athena_Commando_F_Cowgirl": { + "templateId": "AthenaCharacter:CID_237_Athena_Commando_F_Cowgirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_238_Athena_Commando_F_FootballGirlD": { + "templateId": "AthenaCharacter:CID_238_Athena_Commando_F_FootballGirlD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "036", + "032", + "033", + "034", + "035" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_239_Athena_Commando_M_FootballDudeD": { + "templateId": "AthenaCharacter:CID_239_Athena_Commando_M_FootballDudeD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "036", + "032", + "033", + "034", + "035" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_240_Athena_Commando_F_Plague": { + "templateId": "AthenaCharacter:CID_240_Athena_Commando_F_Plague", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_241_Athena_Commando_M_Plague": { + "templateId": "AthenaCharacter:CID_241_Athena_Commando_M_Plague", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_242_Athena_Commando_F_Bullseye": { + "templateId": "AthenaCharacter:CID_242_Athena_Commando_F_Bullseye", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_243_Athena_Commando_M_PumpkinSlice": { + "templateId": "AthenaCharacter:CID_243_Athena_Commando_M_PumpkinSlice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_244_Athena_Commando_M_PumpkinSuit": { + "templateId": "AthenaCharacter:CID_244_Athena_Commando_M_PumpkinSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_245_Athena_Commando_F_DurrburgerPjs": { + "templateId": "AthenaCharacter:CID_245_Athena_Commando_F_DurrburgerPjs", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_246_Athena_Commando_F_Grave": { + "templateId": "AthenaCharacter:CID_246_Athena_Commando_F_Grave", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "ClothingColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_247_Athena_Commando_M_GuanYu": { + "templateId": "AthenaCharacter:CID_247_Athena_Commando_M_GuanYu", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_248_Athena_Commando_M_BlackWidow": { + "templateId": "AthenaCharacter:CID_248_Athena_Commando_M_BlackWidow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_249_Athena_Commando_F_BlackWidow": { + "templateId": "AthenaCharacter:CID_249_Athena_Commando_F_BlackWidow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_250_Athena_Commando_M_EvilCowboy": { + "templateId": "AthenaCharacter:CID_250_Athena_Commando_M_EvilCowboy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_251_Athena_Commando_F_Muertos": { + "templateId": "AthenaCharacter:CID_251_Athena_Commando_F_Muertos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_252_Athena_Commando_M_Muertos": { + "templateId": "AthenaCharacter:CID_252_Athena_Commando_M_Muertos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_253_Athena_Commando_M_MilitaryFashion2": { + "templateId": "AthenaCharacter:CID_253_Athena_Commando_M_MilitaryFashion2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_254_Athena_Commando_M_Zombie": { + "templateId": "AthenaCharacter:CID_254_Athena_Commando_M_Zombie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_255_Athena_Commando_F_HalloweenBunny": { + "templateId": "AthenaCharacter:CID_255_Athena_Commando_F_HalloweenBunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_256_Athena_Commando_M_Pumpkin": { + "templateId": "AthenaCharacter:CID_256_Athena_Commando_M_Pumpkin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_257_Athena_Commando_M_SamuraiUltra": { + "templateId": "AthenaCharacter:CID_257_Athena_Commando_M_SamuraiUltra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_258_Athena_Commando_F_FuzzyBearHalloween": { + "templateId": "AthenaCharacter:CID_258_Athena_Commando_F_FuzzyBearHalloween", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_259_Athena_Commando_M_StreetOps": { + "templateId": "AthenaCharacter:CID_259_Athena_Commando_M_StreetOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_260_Athena_Commando_F_StreetOps": { + "templateId": "AthenaCharacter:CID_260_Athena_Commando_F_StreetOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_261_Athena_Commando_M_RaptorArcticCamo": { + "templateId": "AthenaCharacter:CID_261_Athena_Commando_M_RaptorArcticCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_262_Athena_Commando_M_MadCommander": { + "templateId": "AthenaCharacter:CID_262_Athena_Commando_M_MadCommander", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_263_Athena_Commando_F_MadCommander": { + "templateId": "AthenaCharacter:CID_263_Athena_Commando_F_MadCommander", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_264_Athena_Commando_M_AnimalJackets": { + "templateId": "AthenaCharacter:CID_264_Athena_Commando_M_AnimalJackets", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_265_Athena_Commando_F_AnimalJackets": { + "templateId": "AthenaCharacter:CID_265_Athena_Commando_F_AnimalJackets", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_266_Athena_Commando_F_LlamaRider": { + "templateId": "AthenaCharacter:CID_266_Athena_Commando_F_LlamaRider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_267_Athena_Commando_M_RobotRed": { + "templateId": "AthenaCharacter:CID_267_Athena_Commando_M_RobotRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_268_Athena_Commando_M_RockerPunk": { + "templateId": "AthenaCharacter:CID_268_Athena_Commando_M_RockerPunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_269_Athena_Commando_M_Wizard": { + "templateId": "AthenaCharacter:CID_269_Athena_Commando_M_Wizard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_270_Athena_Commando_F_Witch": { + "templateId": "AthenaCharacter:CID_270_Athena_Commando_F_Witch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_271_Athena_Commando_F_SushiChef": { + "templateId": "AthenaCharacter:CID_271_Athena_Commando_F_SushiChef", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_272_Athena_Commando_M_HornedMask": { + "templateId": "AthenaCharacter:CID_272_Athena_Commando_M_HornedMask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_273_Athena_Commando_F_HornedMask": { + "templateId": "AthenaCharacter:CID_273_Athena_Commando_F_HornedMask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_274_Athena_Commando_M_Feathers": { + "templateId": "AthenaCharacter:CID_274_Athena_Commando_M_Feathers", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_275_Athena_Commando_M_SniperHood": { + "templateId": "AthenaCharacter:CID_275_Athena_Commando_M_SniperHood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_276_Athena_Commando_F_SniperHood": { + "templateId": "AthenaCharacter:CID_276_Athena_Commando_F_SniperHood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_277_Athena_Commando_M_Moth": { + "templateId": "AthenaCharacter:CID_277_Athena_Commando_M_Moth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_278_Athena_Commando_M_Yeti": { + "templateId": "AthenaCharacter:CID_278_Athena_Commando_M_Yeti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_279_Athena_Commando_M_TacticalSanta": { + "templateId": "AthenaCharacter:CID_279_Athena_Commando_M_TacticalSanta", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_280_Athena_Commando_M_Snowman": { + "templateId": "AthenaCharacter:CID_280_Athena_Commando_M_Snowman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_281_Athena_Commando_F_SnowBoard": { + "templateId": "AthenaCharacter:CID_281_Athena_Commando_F_SnowBoard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_286_Athena_Commando_F_NeonCat": { + "templateId": "AthenaCharacter:CID_286_Athena_Commando_F_NeonCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2", + "Stage4", + "Stage3", + "Stage5" + ] + }, + { + "channel": "Particle", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_287_Athena_Commando_M_ArcticSniper": { + "templateId": "AthenaCharacter:CID_287_Athena_Commando_M_ArcticSniper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Particle", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1", + "Emissive2", + "Emissive3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_288_Athena_Commando_M_IceKing": { + "templateId": "AthenaCharacter:CID_288_Athena_Commando_M_IceKing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_290_Athena_Commando_F_BlueBadass": { + "templateId": "AthenaCharacter:CID_290_Athena_Commando_F_BlueBadass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_291_Athena_Commando_M_Dieselpunk02": { + "templateId": "AthenaCharacter:CID_291_Athena_Commando_M_Dieselpunk02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_292_Athena_Commando_F_Dieselpunk02": { + "templateId": "AthenaCharacter:CID_292_Athena_Commando_F_Dieselpunk02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_293_Athena_Commando_M_RavenWinter": { + "templateId": "AthenaCharacter:CID_293_Athena_Commando_M_RavenWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_294_Athena_Commando_F_RedKnightWinter": { + "templateId": "AthenaCharacter:CID_294_Athena_Commando_F_RedKnightWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_295_Athena_Commando_M_CupidWinter": { + "templateId": "AthenaCharacter:CID_295_Athena_Commando_M_CupidWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_296_Athena_Commando_M_Math": { + "templateId": "AthenaCharacter:CID_296_Athena_Commando_M_Math", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_297_Athena_Commando_F_Math": { + "templateId": "AthenaCharacter:CID_297_Athena_Commando_F_Math", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_298_Athena_Commando_F_IceMaiden": { + "templateId": "AthenaCharacter:CID_298_Athena_Commando_F_IceMaiden", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_299_Athena_Commando_M_SnowNinja": { + "templateId": "AthenaCharacter:CID_299_Athena_Commando_M_SnowNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_300_Athena_Commando_F_Angel": { + "templateId": "AthenaCharacter:CID_300_Athena_Commando_F_Angel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_301_Athena_Commando_M_Rhino": { + "templateId": "AthenaCharacter:CID_301_Athena_Commando_M_Rhino", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_302_Athena_Commando_F_Nutcracker": { + "templateId": "AthenaCharacter:CID_302_Athena_Commando_F_Nutcracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_303_Athena_Commando_F_SnowFairy": { + "templateId": "AthenaCharacter:CID_303_Athena_Commando_F_SnowFairy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_304_Athena_Commando_M_Gnome": { + "templateId": "AthenaCharacter:CID_304_Athena_Commando_M_Gnome", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_308_Athena_Commando_F_FortniteDJ": { + "templateId": "AthenaCharacter:CID_308_Athena_Commando_F_FortniteDJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_309_Athena_Commando_M_StreetGoth": { + "templateId": "AthenaCharacter:CID_309_Athena_Commando_M_StreetGoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_310_Athena_Commando_F_StreetGoth": { + "templateId": "AthenaCharacter:CID_310_Athena_Commando_F_StreetGoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_311_Athena_Commando_M_Reindeer": { + "templateId": "AthenaCharacter:CID_311_Athena_Commando_M_Reindeer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_312_Athena_Commando_F_FunkOps": { + "templateId": "AthenaCharacter:CID_312_Athena_Commando_F_FunkOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_313_Athena_Commando_M_KpopFashion": { + "templateId": "AthenaCharacter:CID_313_Athena_Commando_M_KpopFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_314_Athena_Commando_M_Krampus": { + "templateId": "AthenaCharacter:CID_314_Athena_Commando_M_Krampus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_315_Athena_Commando_M_TeriyakiFish": { + "templateId": "AthenaCharacter:CID_315_Athena_Commando_M_TeriyakiFish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_316_Athena_Commando_F_WinterHoliday": { + "templateId": "AthenaCharacter:CID_316_Athena_Commando_F_WinterHoliday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_317_Athena_Commando_M_WinterGhoul": { + "templateId": "AthenaCharacter:CID_317_Athena_Commando_M_WinterGhoul", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_318_Athena_Commando_M_Demon": { + "templateId": "AthenaCharacter:CID_318_Athena_Commando_M_Demon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_319_Athena_Commando_F_Nautilus": { + "templateId": "AthenaCharacter:CID_319_Athena_Commando_F_Nautilus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_320_Athena_Commando_M_Nautilus": { + "templateId": "AthenaCharacter:CID_320_Athena_Commando_M_Nautilus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_321_Athena_Commando_M_MilitaryFashion1": { + "templateId": "AthenaCharacter:CID_321_Athena_Commando_M_MilitaryFashion1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_322_Athena_Commando_M_TechOps": { + "templateId": "AthenaCharacter:CID_322_Athena_Commando_M_TechOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_323_Athena_Commando_M_Barbarian": { + "templateId": "AthenaCharacter:CID_323_Athena_Commando_M_Barbarian", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_324_Athena_Commando_F_Barbarian": { + "templateId": "AthenaCharacter:CID_324_Athena_Commando_F_Barbarian", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_325_Athena_Commando_M_WavyMan": { + "templateId": "AthenaCharacter:CID_325_Athena_Commando_M_WavyMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_326_Athena_Commando_F_WavyMan": { + "templateId": "AthenaCharacter:CID_326_Athena_Commando_F_WavyMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_327_Athena_Commando_M_BlueMystery": { + "templateId": "AthenaCharacter:CID_327_Athena_Commando_M_BlueMystery", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_328_Athena_Commando_F_Tennis": { + "templateId": "AthenaCharacter:CID_328_Athena_Commando_F_Tennis", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_329_Athena_Commando_F_SnowNinja": { + "templateId": "AthenaCharacter:CID_329_Athena_Commando_F_SnowNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_330_Athena_Commando_F_IceQueen": { + "templateId": "AthenaCharacter:CID_330_Athena_Commando_F_IceQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_331_Athena_Commando_M_Taxi": { + "templateId": "AthenaCharacter:CID_331_Athena_Commando_M_Taxi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_332_Athena_Commando_M_Prisoner": { + "templateId": "AthenaCharacter:CID_332_Athena_Commando_M_Prisoner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_333_Athena_Commando_M_Squishy": { + "templateId": "AthenaCharacter:CID_333_Athena_Commando_M_Squishy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_334_Athena_Commando_M_Scrapyard": { + "templateId": "AthenaCharacter:CID_334_Athena_Commando_M_Scrapyard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_335_Athena_Commando_F_Scrapyard": { + "templateId": "AthenaCharacter:CID_335_Athena_Commando_F_Scrapyard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_336_Athena_Commando_M_DragonMask": { + "templateId": "AthenaCharacter:CID_336_Athena_Commando_M_DragonMask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_337_Athena_Commando_F_Celestial": { + "templateId": "AthenaCharacter:CID_337_Athena_Commando_F_Celestial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_338_Athena_Commando_M_DumplingMan": { + "templateId": "AthenaCharacter:CID_338_Athena_Commando_M_DumplingMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_339_Athena_Commando_M_RobotTrouble": { + "templateId": "AthenaCharacter:CID_339_Athena_Commando_M_RobotTrouble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_340_Athena_Commando_F_RobotTrouble": { + "templateId": "AthenaCharacter:CID_340_Athena_Commando_F_RobotTrouble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_341_Athena_Commando_F_SkullBrite": { + "templateId": "AthenaCharacter:CID_341_Athena_Commando_F_SkullBrite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_342_Athena_Commando_M_StreetRacerMetallic": { + "templateId": "AthenaCharacter:CID_342_Athena_Commando_M_StreetRacerMetallic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_343_Athena_Commando_M_CupidDark": { + "templateId": "AthenaCharacter:CID_343_Athena_Commando_M_CupidDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_344_Athena_Commando_M_IceCream": { + "templateId": "AthenaCharacter:CID_344_Athena_Commando_M_IceCream", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_345_Athena_Commando_M_LoveLlama": { + "templateId": "AthenaCharacter:CID_345_Athena_Commando_M_LoveLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_346_Athena_Commando_M_DragonNinja": { + "templateId": "AthenaCharacter:CID_346_Athena_Commando_M_DragonNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + }, + { + "channel": "Particle", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2", + "Emissive3", + "Emissive4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_347_Athena_Commando_M_PirateProgressive": { + "templateId": "AthenaCharacter:CID_347_Athena_Commando_M_PirateProgressive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6", + "Stage7", + "Stage8" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_348_Athena_Commando_F_Medusa": { + "templateId": "AthenaCharacter:CID_348_Athena_Commando_F_Medusa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_349_Athena_Commando_M_Banana": { + "templateId": "AthenaCharacter:CID_349_Athena_Commando_M_Banana", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_350_Athena_Commando_M_MasterKey": { + "templateId": "AthenaCharacter:CID_350_Athena_Commando_M_MasterKey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_351_Athena_Commando_F_FireElf": { + "templateId": "AthenaCharacter:CID_351_Athena_Commando_F_FireElf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_352_Athena_Commando_F_Shiny": { + "templateId": "AthenaCharacter:CID_352_Athena_Commando_F_Shiny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_353_Athena_Commando_F_Bandolier": { + "templateId": "AthenaCharacter:CID_353_Athena_Commando_F_Bandolier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_354_Athena_Commando_M_MunitionsExpert": { + "templateId": "AthenaCharacter:CID_354_Athena_Commando_M_MunitionsExpert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_355_Athena_Commando_M_Farmer": { + "templateId": "AthenaCharacter:CID_355_Athena_Commando_M_Farmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_356_Athena_Commando_F_Farmer": { + "templateId": "AthenaCharacter:CID_356_Athena_Commando_F_Farmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_357_Athena_Commando_M_OrangeCamo": { + "templateId": "AthenaCharacter:CID_357_Athena_Commando_M_OrangeCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_358_Athena_Commando_M_Aztec": { + "templateId": "AthenaCharacter:CID_358_Athena_Commando_M_Aztec", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_359_Athena_Commando_F_Aztec": { + "templateId": "AthenaCharacter:CID_359_Athena_Commando_F_Aztec", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_360_Athena_Commando_M_TechOpsBlue": { + "templateId": "AthenaCharacter:CID_360_Athena_Commando_M_TechOpsBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_361_Athena_Commando_M_BandageNinja": { + "templateId": "AthenaCharacter:CID_361_Athena_Commando_M_BandageNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_362_Athena_Commando_F_BandageNinja": { + "templateId": "AthenaCharacter:CID_362_Athena_Commando_F_BandageNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_363_Athena_Commando_M_SciOps": { + "templateId": "AthenaCharacter:CID_363_Athena_Commando_M_SciOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_364_Athena_Commando_F_SciOps": { + "templateId": "AthenaCharacter:CID_364_Athena_Commando_F_SciOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_365_Athena_Commando_M_LuckyRider": { + "templateId": "AthenaCharacter:CID_365_Athena_Commando_M_LuckyRider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_366_Athena_Commando_M_Tropical": { + "templateId": "AthenaCharacter:CID_366_Athena_Commando_M_Tropical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_367_Athena_Commando_F_Tropical": { + "templateId": "AthenaCharacter:CID_367_Athena_Commando_F_Tropical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_369_Athena_Commando_F_DevilRock": { + "templateId": "AthenaCharacter:CID_369_Athena_Commando_F_DevilRock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_370_Athena_Commando_M_EvilSuit": { + "templateId": "AthenaCharacter:CID_370_Athena_Commando_M_EvilSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_371_Athena_Commando_M_SpeedyMidnight": { + "templateId": "AthenaCharacter:CID_371_Athena_Commando_M_SpeedyMidnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_372_Athena_Commando_F_Pirate01": { + "templateId": "AthenaCharacter:CID_372_Athena_Commando_F_Pirate01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_373_Athena_Commando_M_Pirate01": { + "templateId": "AthenaCharacter:CID_373_Athena_Commando_M_Pirate01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_376_Athena_Commando_M_DarkShaman": { + "templateId": "AthenaCharacter:CID_376_Athena_Commando_M_DarkShaman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_377_Athena_Commando_F_DarkShaman": { + "templateId": "AthenaCharacter:CID_377_Athena_Commando_F_DarkShaman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_378_Athena_Commando_M_FurnaceFace": { + "templateId": "AthenaCharacter:CID_378_Athena_Commando_M_FurnaceFace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_379_Athena_Commando_M_BattleHoundFire": { + "templateId": "AthenaCharacter:CID_379_Athena_Commando_M_BattleHoundFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_380_Athena_Commando_F_DarkViking_Fire": { + "templateId": "AthenaCharacter:CID_380_Athena_Commando_F_DarkViking_Fire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_381_Athena_Commando_F_BaseballKitbash": { + "templateId": "AthenaCharacter:CID_381_Athena_Commando_F_BaseballKitbash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_382_Athena_Commando_M_BaseballKitbash": { + "templateId": "AthenaCharacter:CID_382_Athena_Commando_M_BaseballKitbash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_383_Athena_Commando_F_Cacti": { + "templateId": "AthenaCharacter:CID_383_Athena_Commando_F_Cacti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_384_Athena_Commando_M_StreetAssassin": { + "templateId": "AthenaCharacter:CID_384_Athena_Commando_M_StreetAssassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_385_Athena_Commando_M_PilotSkull": { + "templateId": "AthenaCharacter:CID_385_Athena_Commando_M_PilotSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_386_Athena_Commando_M_StreetOpsStealth": { + "templateId": "AthenaCharacter:CID_386_Athena_Commando_M_StreetOpsStealth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_387_Athena_Commando_F_Golf": { + "templateId": "AthenaCharacter:CID_387_Athena_Commando_F_Golf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_388_Athena_Commando_M_TheBomb": { + "templateId": "AthenaCharacter:CID_388_Athena_Commando_M_TheBomb", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_390_Athena_Commando_M_EvilBunny": { + "templateId": "AthenaCharacter:CID_390_Athena_Commando_M_EvilBunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_391_Athena_Commando_M_HoppityHeist": { + "templateId": "AthenaCharacter:CID_391_Athena_Commando_M_HoppityHeist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_392_Athena_Commando_F_BountyBunny": { + "templateId": "AthenaCharacter:CID_392_Athena_Commando_F_BountyBunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_393_Athena_Commando_M_Shiny": { + "templateId": "AthenaCharacter:CID_393_Athena_Commando_M_Shiny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_394_Athena_Commando_M_MoonlightAssassin": { + "templateId": "AthenaCharacter:CID_394_Athena_Commando_M_MoonlightAssassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_395_Athena_Commando_F_ShatterFly": { + "templateId": "AthenaCharacter:CID_395_Athena_Commando_F_ShatterFly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_396_Athena_Commando_F_Swashbuckler": { + "templateId": "AthenaCharacter:CID_396_Athena_Commando_F_Swashbuckler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_397_Athena_Commando_F_TreasureHunterFashion": { + "templateId": "AthenaCharacter:CID_397_Athena_Commando_F_TreasureHunterFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_398_Athena_Commando_M_TreasureHunterFashion": { + "templateId": "AthenaCharacter:CID_398_Athena_Commando_M_TreasureHunterFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_399_Athena_Commando_F_AshtonBoardwalk": { + "templateId": "AthenaCharacter:CID_399_Athena_Commando_F_AshtonBoardwalk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_400_Athena_Commando_M_AshtonSaltLake": { + "templateId": "AthenaCharacter:CID_400_Athena_Commando_M_AshtonSaltLake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_401_Athena_Commando_M_Miner": { + "templateId": "AthenaCharacter:CID_401_Athena_Commando_M_Miner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_403_Athena_Commando_M_Rooster": { + "templateId": "AthenaCharacter:CID_403_Athena_Commando_M_Rooster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_404_Athena_Commando_F_BountyHunter": { + "templateId": "AthenaCharacter:CID_404_Athena_Commando_F_BountyHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_405_Athena_Commando_F_Masako": { + "templateId": "AthenaCharacter:CID_405_Athena_Commando_F_Masako", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_406_Athena_Commando_M_StormTracker": { + "templateId": "AthenaCharacter:CID_406_Athena_Commando_M_StormTracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_407_Athena_Commando_M_BattleSuit": { + "templateId": "AthenaCharacter:CID_407_Athena_Commando_M_BattleSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_408_Athena_Commando_F_StrawberryPilot": { + "templateId": "AthenaCharacter:CID_408_Athena_Commando_F_StrawberryPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_409_Athena_Commando_M_BunkerMan": { + "templateId": "AthenaCharacter:CID_409_Athena_Commando_M_BunkerMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_410_Athena_Commando_M_CyberScavenger": { + "templateId": "AthenaCharacter:CID_410_Athena_Commando_M_CyberScavenger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_411_Athena_Commando_F_CyberScavenger": { + "templateId": "AthenaCharacter:CID_411_Athena_Commando_F_CyberScavenger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_412_Athena_Commando_F_Raptor": { + "templateId": "AthenaCharacter:CID_412_Athena_Commando_F_Raptor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_413_Athena_Commando_M_StreetDemon": { + "templateId": "AthenaCharacter:CID_413_Athena_Commando_M_StreetDemon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_414_Athena_Commando_F_MilitaryFashion": { + "templateId": "AthenaCharacter:CID_414_Athena_Commando_F_MilitaryFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_415_Athena_Commando_F_AssassinSuit": { + "templateId": "AthenaCharacter:CID_415_Athena_Commando_F_AssassinSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_416_Athena_Commando_M_AssassinSuit": { + "templateId": "AthenaCharacter:CID_416_Athena_Commando_M_AssassinSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_418_Athena_Commando_F_Geisha": { + "templateId": "AthenaCharacter:CID_418_Athena_Commando_F_Geisha", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_419_Athena_Commando_M_Pug": { + "templateId": "AthenaCharacter:CID_419_Athena_Commando_M_Pug", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_420_Athena_Commando_F_WhiteTiger": { + "templateId": "AthenaCharacter:CID_420_Athena_Commando_F_WhiteTiger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_421_Athena_Commando_M_MaskedWarrior": { + "templateId": "AthenaCharacter:CID_421_Athena_Commando_M_MaskedWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_422_Athena_Commando_F_MaskedWarrior": { + "templateId": "AthenaCharacter:CID_422_Athena_Commando_F_MaskedWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_423_Athena_Commando_F_Painter": { + "templateId": "AthenaCharacter:CID_423_Athena_Commando_F_Painter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_424_Athena_Commando_M_Vigilante": { + "templateId": "AthenaCharacter:CID_424_Athena_Commando_M_Vigilante", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_425_Athena_Commando_F_CyberRunner": { + "templateId": "AthenaCharacter:CID_425_Athena_Commando_F_CyberRunner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_426_Athena_Commando_F_DemonHunter": { + "templateId": "AthenaCharacter:CID_426_Athena_Commando_F_DemonHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_427_Athena_Commando_M_DemonHunter": { + "templateId": "AthenaCharacter:CID_427_Athena_Commando_M_DemonHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_428_Athena_Commando_M_UrbanScavenger": { + "templateId": "AthenaCharacter:CID_428_Athena_Commando_M_UrbanScavenger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_429_Athena_Commando_F_NeonLines": { + "templateId": "AthenaCharacter:CID_429_Athena_Commando_F_NeonLines", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_430_Athena_Commando_M_StormSoldier": { + "templateId": "AthenaCharacter:CID_430_Athena_Commando_M_StormSoldier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_431_Athena_Commando_F_StormPilot": { + "templateId": "AthenaCharacter:CID_431_Athena_Commando_F_StormPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_432_Athena_Commando_M_BalloonHead": { + "templateId": "AthenaCharacter:CID_432_Athena_Commando_M_BalloonHead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_433_Athena_Commando_F_TacticalDesert": { + "templateId": "AthenaCharacter:CID_433_Athena_Commando_F_TacticalDesert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_434_Athena_Commando_F_StealthHonor": { + "templateId": "AthenaCharacter:CID_434_Athena_Commando_F_StealthHonor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_435_Athena_Commando_M_MunitionsExpertGreenPlastic": { + "templateId": "AthenaCharacter:CID_435_Athena_Commando_M_MunitionsExpertGreenPlastic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_436_Athena_Commando_M_ReconSpecialist": { + "templateId": "AthenaCharacter:CID_436_Athena_Commando_M_ReconSpecialist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_437_Athena_Commando_F_AztecEclipse": { + "templateId": "AthenaCharacter:CID_437_Athena_Commando_F_AztecEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_438_Athena_Commando_M_WinterGhoulEclipse": { + "templateId": "AthenaCharacter:CID_438_Athena_Commando_M_WinterGhoulEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_439_Athena_Commando_F_SkullBriteEclipse": { + "templateId": "AthenaCharacter:CID_439_Athena_Commando_F_SkullBriteEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_440_Athena_Commando_F_BullseyeGreenPlastic": { + "templateId": "AthenaCharacter:CID_440_Athena_Commando_F_BullseyeGreenPlastic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_441_Athena_Commando_F_CyberScavengerBlue": { + "templateId": "AthenaCharacter:CID_441_Athena_Commando_F_CyberScavengerBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_442_Athena_Commando_F_BannerA": { + "templateId": "AthenaCharacter:CID_442_Athena_Commando_F_BannerA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_443_Athena_Commando_F_BannerB": { + "templateId": "AthenaCharacter:CID_443_Athena_Commando_F_BannerB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_444_Athena_Commando_F_BannerC": { + "templateId": "AthenaCharacter:CID_444_Athena_Commando_F_BannerC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_445_Athena_Commando_F_BannerD": { + "templateId": "AthenaCharacter:CID_445_Athena_Commando_F_BannerD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_446_Athena_Commando_M_BannerA": { + "templateId": "AthenaCharacter:CID_446_Athena_Commando_M_BannerA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_447_Athena_Commando_M_BannerB": { + "templateId": "AthenaCharacter:CID_447_Athena_Commando_M_BannerB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_448_Athena_Commando_M_BannerC": { + "templateId": "AthenaCharacter:CID_448_Athena_Commando_M_BannerC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_449_Athena_Commando_M_BannerD": { + "templateId": "AthenaCharacter:CID_449_Athena_Commando_M_BannerD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_450_Athena_Commando_F_Butterfly": { + "templateId": "AthenaCharacter:CID_450_Athena_Commando_F_Butterfly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_451_Athena_Commando_M_Caterpillar": { + "templateId": "AthenaCharacter:CID_451_Athena_Commando_M_Caterpillar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_452_Athena_Commando_F_CyberFu": { + "templateId": "AthenaCharacter:CID_452_Athena_Commando_F_CyberFu", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_453_Athena_Commando_F_GlowBro": { + "templateId": "AthenaCharacter:CID_453_Athena_Commando_F_GlowBro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_454_Athena_Commando_M_GlowBro": { + "templateId": "AthenaCharacter:CID_454_Athena_Commando_M_GlowBro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_455_Athena_Commando_F_Jellyfish": { + "templateId": "AthenaCharacter:CID_455_Athena_Commando_F_Jellyfish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_456_Athena_Commando_F_Sarong": { + "templateId": "AthenaCharacter:CID_456_Athena_Commando_F_Sarong", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_457_Athena_Commando_F_SpaceGirl": { + "templateId": "AthenaCharacter:CID_457_Athena_Commando_F_SpaceGirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_458_Athena_Commando_M_TechMage": { + "templateId": "AthenaCharacter:CID_458_Athena_Commando_M_TechMage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_459_Athena_Commando_F_Zodiac": { + "templateId": "AthenaCharacter:CID_459_Athena_Commando_F_Zodiac", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_460_Athena_Commando_F_BriteBomberSummer": { + "templateId": "AthenaCharacter:CID_460_Athena_Commando_F_BriteBomberSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_461_Athena_Commando_M_DriftSummer": { + "templateId": "AthenaCharacter:CID_461_Athena_Commando_M_DriftSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_462_Athena_Commando_M_HeistSummer": { + "templateId": "AthenaCharacter:CID_462_Athena_Commando_M_HeistSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_463_Athena_Commando_M_Hairy": { + "templateId": "AthenaCharacter:CID_463_Athena_Commando_M_Hairy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_464_Athena_Commando_M_Flamingo": { + "templateId": "AthenaCharacter:CID_464_Athena_Commando_M_Flamingo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_465_Athena_Commando_M_PuffyVest": { + "templateId": "AthenaCharacter:CID_465_Athena_Commando_M_PuffyVest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_466_Athena_Commando_M_WeirdObjectsCreature": { + "templateId": "AthenaCharacter:CID_466_Athena_Commando_M_WeirdObjectsCreature", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_467_Athena_Commando_M_WeirdObjectsPolice": { + "templateId": "AthenaCharacter:CID_467_Athena_Commando_M_WeirdObjectsPolice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_468_Athena_Commando_F_TennisWhite": { + "templateId": "AthenaCharacter:CID_468_Athena_Commando_F_TennisWhite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_469_Athena_Commando_F_BattleSuit": { + "templateId": "AthenaCharacter:CID_469_Athena_Commando_F_BattleSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_470_Athena_Commando_M_Anarchy": { + "templateId": "AthenaCharacter:CID_470_Athena_Commando_M_Anarchy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_471_Athena_Commando_F_Bani": { + "templateId": "AthenaCharacter:CID_471_Athena_Commando_F_Bani", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_472_Athena_Commando_F_CyberKarate": { + "templateId": "AthenaCharacter:CID_472_Athena_Commando_F_CyberKarate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_473_Athena_Commando_M_CyberKarate": { + "templateId": "AthenaCharacter:CID_473_Athena_Commando_M_CyberKarate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_474_Athena_Commando_M_Lasagna": { + "templateId": "AthenaCharacter:CID_474_Athena_Commando_M_Lasagna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_475_Athena_Commando_M_Multibot": { + "templateId": "AthenaCharacter:CID_475_Athena_Commando_M_Multibot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_476_Athena_Commando_F_FutureBiker": { + "templateId": "AthenaCharacter:CID_476_Athena_Commando_F_FutureBiker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_477_Athena_Commando_F_SpaceSuit": { + "templateId": "AthenaCharacter:CID_477_Athena_Commando_F_SpaceSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_478_Athena_Commando_F_WorldCup": { + "templateId": "AthenaCharacter:CID_478_Athena_Commando_F_WorldCup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_479_Athena_Commando_F_Davinci": { + "templateId": "AthenaCharacter:CID_479_Athena_Commando_F_Davinci", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_480_Athena_Commando_F_Bubblegum": { + "templateId": "AthenaCharacter:CID_480_Athena_Commando_F_Bubblegum", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_481_Athena_Commando_F_Geode": { + "templateId": "AthenaCharacter:CID_481_Athena_Commando_F_Geode", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_482_Athena_Commando_F_PizzaPit": { + "templateId": "AthenaCharacter:CID_482_Athena_Commando_F_PizzaPit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_483_Athena_Commando_F_GraffitiRemix": { + "templateId": "AthenaCharacter:CID_483_Athena_Commando_F_GraffitiRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_484_Athena_Commando_M_KnightRemix": { + "templateId": "AthenaCharacter:CID_484_Athena_Commando_M_KnightRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_485_Athena_Commando_F_SparkleRemix": { + "templateId": "AthenaCharacter:CID_485_Athena_Commando_F_SparkleRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_486_Athena_Commando_F_StreetRacerDrift": { + "templateId": "AthenaCharacter:CID_486_Athena_Commando_F_StreetRacerDrift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_487_Athena_Commando_M_DJRemix": { + "templateId": "AthenaCharacter:CID_487_Athena_Commando_M_DJRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_488_Athena_Commando_M_RustRemix": { + "templateId": "AthenaCharacter:CID_488_Athena_Commando_M_RustRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_489_Athena_Commando_M_VoyagerRemix": { + "templateId": "AthenaCharacter:CID_489_Athena_Commando_M_VoyagerRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_490_Athena_Commando_M_BlueBadass": { + "templateId": "AthenaCharacter:CID_490_Athena_Commando_M_BlueBadass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_491_Athena_Commando_M_BoneWasp": { + "templateId": "AthenaCharacter:CID_491_Athena_Commando_M_BoneWasp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_492_Athena_Commando_M_Bronto": { + "templateId": "AthenaCharacter:CID_492_Athena_Commando_M_Bronto", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_493_Athena_Commando_F_JurassicArchaeology": { + "templateId": "AthenaCharacter:CID_493_Athena_Commando_F_JurassicArchaeology", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_494_Athena_Commando_M_MechPilotShark": { + "templateId": "AthenaCharacter:CID_494_Athena_Commando_M_MechPilotShark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_495_Athena_Commando_F_MechPilotShark": { + "templateId": "AthenaCharacter:CID_495_Athena_Commando_F_MechPilotShark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_496_Athena_Commando_M_SurvivalSpecialist": { + "templateId": "AthenaCharacter:CID_496_Athena_Commando_M_SurvivalSpecialist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_497_Athena_Commando_F_WildWest": { + "templateId": "AthenaCharacter:CID_497_Athena_Commando_F_WildWest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_498_Athena_Commando_M_WildWest": { + "templateId": "AthenaCharacter:CID_498_Athena_Commando_M_WildWest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_499_Athena_Commando_F_AstronautEvil": { + "templateId": "AthenaCharacter:CID_499_Athena_Commando_F_AstronautEvil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_501_Athena_Commando_M_FrostMystery": { + "templateId": "AthenaCharacter:CID_501_Athena_Commando_M_FrostMystery", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_502_Athena_Commando_F_Reverb": { + "templateId": "AthenaCharacter:CID_502_Athena_Commando_F_Reverb", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_503_Athena_Commando_F_TacticalWoodlandFuture": { + "templateId": "AthenaCharacter:CID_503_Athena_Commando_F_TacticalWoodlandFuture", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_504_Athena_Commando_M_Lopex": { + "templateId": "AthenaCharacter:CID_504_Athena_Commando_M_Lopex", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_505_Athena_Commando_M_MilitiaMascotBurger": { + "templateId": "AthenaCharacter:CID_505_Athena_Commando_M_MilitiaMascotBurger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_506_Athena_Commando_M_MilitiaMascotTomato": { + "templateId": "AthenaCharacter:CID_506_Athena_Commando_M_MilitiaMascotTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_507_Athena_Commando_M_StarWalker": { + "templateId": "AthenaCharacter:CID_507_Athena_Commando_M_StarWalker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_508_Athena_Commando_M_Syko": { + "templateId": "AthenaCharacter:CID_508_Athena_Commando_M_Syko", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_509_Athena_Commando_M_WiseMaster": { + "templateId": "AthenaCharacter:CID_509_Athena_Commando_M_WiseMaster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_510_Athena_Commando_F_AngelEclipse": { + "templateId": "AthenaCharacter:CID_510_Athena_Commando_F_AngelEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_511_Athena_Commando_M_CubePaintWildCard": { + "templateId": "AthenaCharacter:CID_511_Athena_Commando_M_CubePaintWildCard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_512_Athena_Commando_F_CubePaintRedKnight": { + "templateId": "AthenaCharacter:CID_512_Athena_Commando_F_CubePaintRedKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_513_Athena_Commando_M_CubePaintJonesy": { + "templateId": "AthenaCharacter:CID_513_Athena_Commando_M_CubePaintJonesy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_514_Athena_Commando_F_ToxicKitty": { + "templateId": "AthenaCharacter:CID_514_Athena_Commando_F_ToxicKitty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_515_Athena_Commando_M_BarbequeLarry": { + "templateId": "AthenaCharacter:CID_515_Athena_Commando_M_BarbequeLarry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_516_Athena_Commando_M_BlackWidowRogue": { + "templateId": "AthenaCharacter:CID_516_Athena_Commando_M_BlackWidowRogue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_517_Athena_Commando_M_DarkEagleFire": { + "templateId": "AthenaCharacter:CID_517_Athena_Commando_M_DarkEagleFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_518_Athena_Commando_M_WWII_PilotSciFi": { + "templateId": "AthenaCharacter:CID_518_Athena_Commando_M_WWII_PilotSciFi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_519_Athena_Commando_M_RaptorBlackOps": { + "templateId": "AthenaCharacter:CID_519_Athena_Commando_M_RaptorBlackOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_520_Athena_Commando_M_PaddedArmor": { + "templateId": "AthenaCharacter:CID_520_Athena_Commando_M_PaddedArmor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_521_Athena_Commando_M_TacticalBiker": { + "templateId": "AthenaCharacter:CID_521_Athena_Commando_M_TacticalBiker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_522_Athena_Commando_M_Bullseye": { + "templateId": "AthenaCharacter:CID_522_Athena_Commando_M_Bullseye", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_523_Athena_Commando_F_Cupid": { + "templateId": "AthenaCharacter:CID_523_Athena_Commando_F_Cupid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_524_Athena_Commando_F_FutureBikerWhite": { + "templateId": "AthenaCharacter:CID_524_Athena_Commando_F_FutureBikerWhite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_525_Athena_Commando_F_LemonLime": { + "templateId": "AthenaCharacter:CID_525_Athena_Commando_F_LemonLime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_526_Athena_Commando_F_DesertOpsSwamp": { + "templateId": "AthenaCharacter:CID_526_Athena_Commando_F_DesertOpsSwamp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_527_Athena_Commando_F_StreetFashionRed": { + "templateId": "AthenaCharacter:CID_527_Athena_Commando_F_StreetFashionRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_528_Athena_Commando_M_BlackMondayHouston_7DGBT": { + "templateId": "AthenaCharacter:CID_528_Athena_Commando_M_BlackMondayHouston_7DGBT", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_529_Athena_Commando_M_BlackMondayKansas_HWD90": { + "templateId": "AthenaCharacter:CID_529_Athena_Commando_M_BlackMondayKansas_HWD90", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_530_Athena_Commando_F_BlackMonday_1BV6J": { + "templateId": "AthenaCharacter:CID_530_Athena_Commando_F_BlackMonday_1BV6J", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_531_Athena_Commando_M_Sleepytime": { + "templateId": "AthenaCharacter:CID_531_Athena_Commando_M_Sleepytime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_532_Athena_Commando_F_Punchy": { + "templateId": "AthenaCharacter:CID_532_Athena_Commando_F_Punchy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_533_Athena_Commando_M_StreetUrchin": { + "templateId": "AthenaCharacter:CID_533_Athena_Commando_M_StreetUrchin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_534_Athena_Commando_M_PeelyMech": { + "templateId": "AthenaCharacter:CID_534_Athena_Commando_M_PeelyMech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_535_Athena_Commando_M_Traveler": { + "templateId": "AthenaCharacter:CID_535_Athena_Commando_M_Traveler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_536_Athena_Commando_F_DurrburgerWorker": { + "templateId": "AthenaCharacter:CID_536_Athena_Commando_F_DurrburgerWorker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_537_Athena_Commando_M_Jumpstart": { + "templateId": "AthenaCharacter:CID_537_Athena_Commando_M_Jumpstart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_538_Athena_Commando_M_Taco": { + "templateId": "AthenaCharacter:CID_538_Athena_Commando_M_Taco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_539_Athena_Commando_F_StreetGothCandy": { + "templateId": "AthenaCharacter:CID_539_Athena_Commando_F_StreetGothCandy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_540_Athena_Commando_M_MeteorManRemix": { + "templateId": "AthenaCharacter:CID_540_Athena_Commando_M_MeteorManRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_541_Athena_Commando_M_GraffitiGold": { + "templateId": "AthenaCharacter:CID_541_Athena_Commando_M_GraffitiGold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_542_Athena_Commando_F_CarbideFrostMystery": { + "templateId": "AthenaCharacter:CID_542_Athena_Commando_F_CarbideFrostMystery", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_543_Athena_Commando_M_LlamaHero": { + "templateId": "AthenaCharacter:CID_543_Athena_Commando_M_LlamaHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_544_Athena_Commando_M_Kurohomura": { + "templateId": "AthenaCharacter:CID_544_Athena_Commando_M_Kurohomura", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_545_Athena_Commando_F_SushiNinja": { + "templateId": "AthenaCharacter:CID_545_Athena_Commando_F_SushiNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_546_Athena_Commando_F_TacticalRed": { + "templateId": "AthenaCharacter:CID_546_Athena_Commando_F_TacticalRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_547_Athena_Commando_F_Meteorwoman": { + "templateId": "AthenaCharacter:CID_547_Athena_Commando_F_Meteorwoman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_548_Athena_Commando_M_YellowCamoA": { + "templateId": "AthenaCharacter:CID_548_Athena_Commando_M_YellowCamoA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_549_Athena_Commando_M_YellowCamoB": { + "templateId": "AthenaCharacter:CID_549_Athena_Commando_M_YellowCamoB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_550_Athena_Commando_M_YellowCamoC": { + "templateId": "AthenaCharacter:CID_550_Athena_Commando_M_YellowCamoC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_551_Athena_Commando_M_YellowCamoD": { + "templateId": "AthenaCharacter:CID_551_Athena_Commando_M_YellowCamoD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_552_Athena_Commando_F_TaxiUpgrade": { + "templateId": "AthenaCharacter:CID_552_Athena_Commando_F_TaxiUpgrade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_553_Athena_Commando_M_BrightGunnerRemix": { + "templateId": "AthenaCharacter:CID_553_Athena_Commando_M_BrightGunnerRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_554_Athena_Commando_F_MilitiaMascotCuddle": { + "templateId": "AthenaCharacter:CID_554_Athena_Commando_F_MilitiaMascotCuddle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_556_Athena_Commando_F_RebirthDefaultA": { + "templateId": "AthenaCharacter:CID_556_Athena_Commando_F_RebirthDefaultA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_557_Athena_Commando_F_RebirthDefaultB": { + "templateId": "AthenaCharacter:CID_557_Athena_Commando_F_RebirthDefaultB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_558_Athena_Commando_F_RebirthDefaultC": { + "templateId": "AthenaCharacter:CID_558_Athena_Commando_F_RebirthDefaultC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_559_Athena_Commando_F_RebirthDefaultD": { + "templateId": "AthenaCharacter:CID_559_Athena_Commando_F_RebirthDefaultD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_560_Athena_Commando_M_RebirthDefaultA": { + "templateId": "AthenaCharacter:CID_560_Athena_Commando_M_RebirthDefaultA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_561_Athena_Commando_M_RebirthDefaultB": { + "templateId": "AthenaCharacter:CID_561_Athena_Commando_M_RebirthDefaultB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_562_Athena_Commando_M_RebirthDefaultC": { + "templateId": "AthenaCharacter:CID_562_Athena_Commando_M_RebirthDefaultC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_563_Athena_Commando_M_RebirthDefaultD": { + "templateId": "AthenaCharacter:CID_563_Athena_Commando_M_RebirthDefaultD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_564_Athena_Commando_M_TacticalFisherman": { + "templateId": "AthenaCharacter:CID_564_Athena_Commando_M_TacticalFisherman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_565_Athena_Commando_F_RockClimber": { + "templateId": "AthenaCharacter:CID_565_Athena_Commando_F_RockClimber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_566_Athena_Commando_M_CrazyEight": { + "templateId": "AthenaCharacter:CID_566_Athena_Commando_M_CrazyEight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_567_Athena_Commando_F_RebirthMedic": { + "templateId": "AthenaCharacter:CID_567_Athena_Commando_F_RebirthMedic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_568_Athena_Commando_M_RebirthSoldier": { + "templateId": "AthenaCharacter:CID_568_Athena_Commando_M_RebirthSoldier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_570_Athena_Commando_M_SlurpMonster": { + "templateId": "AthenaCharacter:CID_570_Athena_Commando_M_SlurpMonster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_571_Athena_Commando_F_Sheath": { + "templateId": "AthenaCharacter:CID_571_Athena_Commando_F_Sheath", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_572_Athena_Commando_M_Viper": { + "templateId": "AthenaCharacter:CID_572_Athena_Commando_M_Viper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_573_Athena_Commando_M_Haunt": { + "templateId": "AthenaCharacter:CID_573_Athena_Commando_M_Haunt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_574_Athena_Commando_F_CubeRockerPunk": { + "templateId": "AthenaCharacter:CID_574_Athena_Commando_F_CubeRockerPunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_575_Athena_Commando_F_BulletBlue": { + "templateId": "AthenaCharacter:CID_575_Athena_Commando_F_BulletBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_576_Athena_Commando_M_CODSquadPlaid": { + "templateId": "AthenaCharacter:CID_576_Athena_Commando_M_CODSquadPlaid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_577_Athena_Commando_F_CODSquadPlaid": { + "templateId": "AthenaCharacter:CID_577_Athena_Commando_F_CODSquadPlaid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_578_Athena_Commando_F_Fisherman": { + "templateId": "AthenaCharacter:CID_578_Athena_Commando_F_Fisherman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_579_Athena_Commando_F_RedRidingRemix": { + "templateId": "AthenaCharacter:CID_579_Athena_Commando_F_RedRidingRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_580_Athena_Commando_M_CuddleTeamDark": { + "templateId": "AthenaCharacter:CID_580_Athena_Commando_M_CuddleTeamDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_581_Athena_Commando_M_DarkDino": { + "templateId": "AthenaCharacter:CID_581_Athena_Commando_M_DarkDino", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_582_Athena_Commando_F_DarkDino": { + "templateId": "AthenaCharacter:CID_582_Athena_Commando_F_DarkDino", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_583_Athena_Commando_F_NoshHunter": { + "templateId": "AthenaCharacter:CID_583_Athena_Commando_F_NoshHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_584_Athena_Commando_M_Nosh": { + "templateId": "AthenaCharacter:CID_584_Athena_Commando_M_Nosh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_585_Athena_Commando_F_FlowerSkeleton": { + "templateId": "AthenaCharacter:CID_585_Athena_Commando_F_FlowerSkeleton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_586_Athena_Commando_F_PunkDevil": { + "templateId": "AthenaCharacter:CID_586_Athena_Commando_F_PunkDevil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_587_Athena_Commando_M_DevilRock": { + "templateId": "AthenaCharacter:CID_587_Athena_Commando_M_DevilRock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_588_Athena_Commando_M_GoatRobe": { + "templateId": "AthenaCharacter:CID_588_Athena_Commando_M_GoatRobe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_589_Athena_Commando_M_SoccerZombieA": { + "templateId": "AthenaCharacter:CID_589_Athena_Commando_M_SoccerZombieA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_590_Athena_Commando_M_SoccerZombieB": { + "templateId": "AthenaCharacter:CID_590_Athena_Commando_M_SoccerZombieB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_591_Athena_Commando_M_SoccerZombieC": { + "templateId": "AthenaCharacter:CID_591_Athena_Commando_M_SoccerZombieC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_592_Athena_Commando_M_SoccerZombieD": { + "templateId": "AthenaCharacter:CID_592_Athena_Commando_M_SoccerZombieD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_593_Athena_Commando_F_SoccerZombieA": { + "templateId": "AthenaCharacter:CID_593_Athena_Commando_F_SoccerZombieA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_594_Athena_Commando_F_SoccerZombieB": { + "templateId": "AthenaCharacter:CID_594_Athena_Commando_F_SoccerZombieB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_595_Athena_Commando_F_SoccerZombieC": { + "templateId": "AthenaCharacter:CID_595_Athena_Commando_F_SoccerZombieC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_596_Athena_Commando_F_SoccerZombieD": { + "templateId": "AthenaCharacter:CID_596_Athena_Commando_F_SoccerZombieD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_597_Athena_Commando_M_Freak": { + "templateId": "AthenaCharacter:CID_597_Athena_Commando_M_Freak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_598_Athena_Commando_M_Mastermind": { + "templateId": "AthenaCharacter:CID_598_Athena_Commando_M_Mastermind", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_599_Athena_Commando_M_Phantom": { + "templateId": "AthenaCharacter:CID_599_Athena_Commando_M_Phantom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_600_Athena_Commando_M_SkeletonHunter": { + "templateId": "AthenaCharacter:CID_600_Athena_Commando_M_SkeletonHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_601_Athena_Commando_F_Palespooky": { + "templateId": "AthenaCharacter:CID_601_Athena_Commando_F_Palespooky", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_602_Athena_Commando_M_NanaSplit": { + "templateId": "AthenaCharacter:CID_602_Athena_Commando_M_NanaSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_603_Athena_Commando_M_SpookyNeon": { + "templateId": "AthenaCharacter:CID_603_Athena_Commando_M_SpookyNeon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_604_Athena_Commando_F_Razor": { + "templateId": "AthenaCharacter:CID_604_Athena_Commando_F_Razor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_605_Athena_Commando_M_TourBus": { + "templateId": "AthenaCharacter:CID_605_Athena_Commando_M_TourBus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_606_Athena_Commando_F_JetSki": { + "templateId": "AthenaCharacter:CID_606_Athena_Commando_F_JetSki", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_607_Athena_Commando_M_JetSki": { + "templateId": "AthenaCharacter:CID_607_Athena_Commando_M_JetSki", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_608_Athena_Commando_F_ModernWitch": { + "templateId": "AthenaCharacter:CID_608_Athena_Commando_F_ModernWitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_609_Athena_Commando_M_Submariner": { + "templateId": "AthenaCharacter:CID_609_Athena_Commando_M_Submariner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_610_Athena_Commando_M_ShiitakeShaolin": { + "templateId": "AthenaCharacter:CID_610_Athena_Commando_M_ShiitakeShaolin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_611_Athena_Commando_M_WeepingWoods": { + "templateId": "AthenaCharacter:CID_611_Athena_Commando_M_WeepingWoods", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_612_Athena_Commando_F_StreetOpsPink": { + "templateId": "AthenaCharacter:CID_612_Athena_Commando_F_StreetOpsPink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_613_Athena_Commando_M_Columbus_7Y4QE": { + "templateId": "AthenaCharacter:CID_613_Athena_Commando_M_Columbus_7Y4QE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_614_Athena_Commando_M_MissingLink": { + "templateId": "AthenaCharacter:CID_614_Athena_Commando_M_MissingLink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_615_Athena_Commando_F_Bane": { + "templateId": "AthenaCharacter:CID_615_Athena_Commando_F_Bane", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_616_Athena_Commando_F_CavalryBandit": { + "templateId": "AthenaCharacter:CID_616_Athena_Commando_F_CavalryBandit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_617_Athena_Commando_F_ForestQueen": { + "templateId": "AthenaCharacter:CID_617_Athena_Commando_F_ForestQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_618_Athena_Commando_M_ForestDweller": { + "templateId": "AthenaCharacter:CID_618_Athena_Commando_M_ForestDweller", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_619_Athena_Commando_F_TechLlama": { + "templateId": "AthenaCharacter:CID_619_Athena_Commando_F_TechLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_620_Athena_Commando_L_BigChuggus": { + "templateId": "AthenaCharacter:CID_620_Athena_Commando_L_BigChuggus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_621_Athena_Commando_M_BoneSnake": { + "templateId": "AthenaCharacter:CID_621_Athena_Commando_M_BoneSnake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_622_Athena_Commando_M_BulletBlue": { + "templateId": "AthenaCharacter:CID_622_Athena_Commando_M_BulletBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_623_Athena_Commando_M_Frogman": { + "templateId": "AthenaCharacter:CID_623_Athena_Commando_M_Frogman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_624_Athena_Commando_M_TeriyakiWarrior": { + "templateId": "AthenaCharacter:CID_624_Athena_Commando_M_TeriyakiWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_625_Athena_Commando_F_PinkTrooper": { + "templateId": "AthenaCharacter:CID_625_Athena_Commando_F_PinkTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_626_Athena_Commando_M_PinkTrooper": { + "templateId": "AthenaCharacter:CID_626_Athena_Commando_M_PinkTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_627_Athena_Commando_F_SnufflesLeader": { + "templateId": "AthenaCharacter:CID_627_Athena_Commando_F_SnufflesLeader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_628_Athena_Commando_M_HolidayTime": { + "templateId": "AthenaCharacter:CID_628_Athena_Commando_M_HolidayTime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_629_Athena_Commando_M_SnowGlobe": { + "templateId": "AthenaCharacter:CID_629_Athena_Commando_M_SnowGlobe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_630_Athena_Commando_M_Kane": { + "templateId": "AthenaCharacter:CID_630_Athena_Commando_M_Kane", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_631_Athena_Commando_M_GalileoKayak_VXLDB": { + "templateId": "AthenaCharacter:CID_631_Athena_Commando_M_GalileoKayak_VXLDB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_632_Athena_Commando_F_GalileoZeppelin_SJKPW": { + "templateId": "AthenaCharacter:CID_632_Athena_Commando_F_GalileoZeppelin_SJKPW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_633_Athena_Commando_M_GalileoFerry_PA3E1": { + "templateId": "AthenaCharacter:CID_633_Athena_Commando_M_GalileoFerry_PA3E1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_634_Athena_Commando_F_GalileoRocket_ARVEH": { + "templateId": "AthenaCharacter:CID_634_Athena_Commando_F_GalileoRocket_ARVEH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_635_Athena_Commando_M_GalileoSled_FHJVM": { + "templateId": "AthenaCharacter:CID_635_Athena_Commando_M_GalileoSled_FHJVM", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_636_Athena_Commando_M_GalileoGondola_78MFZ": { + "templateId": "AthenaCharacter:CID_636_Athena_Commando_M_GalileoGondola_78MFZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_637_Athena_Commando_M_GalileoOutrigger_7Q0YU": { + "templateId": "AthenaCharacter:CID_637_Athena_Commando_M_GalileoOutrigger_7Q0YU", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_638_Athena_Commando_M_NeonAnimal": { + "templateId": "AthenaCharacter:CID_638_Athena_Commando_M_NeonAnimal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_639_Athena_Commando_F_NeonAnimal": { + "templateId": "AthenaCharacter:CID_639_Athena_Commando_F_NeonAnimal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_640_Athena_Commando_M_TacticalBear": { + "templateId": "AthenaCharacter:CID_640_Athena_Commando_M_TacticalBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_641_Athena_Commando_M_SweaterWeather": { + "templateId": "AthenaCharacter:CID_641_Athena_Commando_M_SweaterWeather", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_642_Athena_Commando_F_ConstellationStar": { + "templateId": "AthenaCharacter:CID_642_Athena_Commando_F_ConstellationStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_643_Athena_Commando_M_OrnamentSoldier": { + "templateId": "AthenaCharacter:CID_643_Athena_Commando_M_OrnamentSoldier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_644_Athena_Commando_M_Cattus": { + "templateId": "AthenaCharacter:CID_644_Athena_Commando_M_Cattus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_645_Athena_Commando_F_Wolly": { + "templateId": "AthenaCharacter:CID_645_Athena_Commando_F_Wolly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_646_Athena_Commando_F_ElfAttack": { + "templateId": "AthenaCharacter:CID_646_Athena_Commando_F_ElfAttack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_647_Athena_Commando_F_WingedFury": { + "templateId": "AthenaCharacter:CID_647_Athena_Commando_F_WingedFury", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_648_Athena_Commando_F_MsAlpine": { + "templateId": "AthenaCharacter:CID_648_Athena_Commando_F_MsAlpine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_649_Athena_Commando_F_HolidayPJ": { + "templateId": "AthenaCharacter:CID_649_Athena_Commando_F_HolidayPJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_650_Athena_Commando_F_HolidayPJ_B": { + "templateId": "AthenaCharacter:CID_650_Athena_Commando_F_HolidayPJ_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_651_Athena_Commando_F_HolidayPJ_C": { + "templateId": "AthenaCharacter:CID_651_Athena_Commando_F_HolidayPJ_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_652_Athena_Commando_F_HolidayPJ_D": { + "templateId": "AthenaCharacter:CID_652_Athena_Commando_F_HolidayPJ_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_653_Athena_Commando_F_UglySweaterFrozen": { + "templateId": "AthenaCharacter:CID_653_Athena_Commando_F_UglySweaterFrozen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_654_Athena_Commando_F_GiftWrap": { + "templateId": "AthenaCharacter:CID_654_Athena_Commando_F_GiftWrap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_655_Athena_Commando_F_Barefoot": { + "templateId": "AthenaCharacter:CID_655_Athena_Commando_F_Barefoot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_656_Athena_Commando_M_TeriyakiFishFreezerBurn": { + "templateId": "AthenaCharacter:CID_656_Athena_Commando_M_TeriyakiFishFreezerBurn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_657_Athena_Commando_F_TechOpsBlue": { + "templateId": "AthenaCharacter:CID_657_Athena_Commando_F_TechOpsBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_658_Athena_Commando_F_ToyMonkey": { + "templateId": "AthenaCharacter:CID_658_Athena_Commando_F_ToyMonkey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_659_Athena_Commando_M_MrIceGuy": { + "templateId": "AthenaCharacter:CID_659_Athena_Commando_M_MrIceGuy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_660_Athena_Commando_F_BandageNinjaBlue": { + "templateId": "AthenaCharacter:CID_660_Athena_Commando_F_BandageNinjaBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_662_Athena_Commando_M_FlameSkull": { + "templateId": "AthenaCharacter:CID_662_Athena_Commando_M_FlameSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_663_Athena_Commando_F_Frogman": { + "templateId": "AthenaCharacter:CID_663_Athena_Commando_F_Frogman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_664_Athena_Commando_M_Gummi": { + "templateId": "AthenaCharacter:CID_664_Athena_Commando_M_Gummi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_665_Athena_Commando_F_NeonGraffiti": { + "templateId": "AthenaCharacter:CID_665_Athena_Commando_F_NeonGraffiti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_666_Athena_Commando_M_ArcticCamo": { + "templateId": "AthenaCharacter:CID_666_Athena_Commando_M_ArcticCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_667_Athena_Commando_M_ArcticCamo_Dark": { + "templateId": "AthenaCharacter:CID_667_Athena_Commando_M_ArcticCamo_Dark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_668_Athena_Commando_M_ArcticCamo_Gray": { + "templateId": "AthenaCharacter:CID_668_Athena_Commando_M_ArcticCamo_Gray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_669_Athena_Commando_M_ArcticCamo_Slate": { + "templateId": "AthenaCharacter:CID_669_Athena_Commando_M_ArcticCamo_Slate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_670_Athena_Commando_F_ArcticCamo": { + "templateId": "AthenaCharacter:CID_670_Athena_Commando_F_ArcticCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_671_Athena_Commando_F_ArcticCamo_Dark": { + "templateId": "AthenaCharacter:CID_671_Athena_Commando_F_ArcticCamo_Dark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_672_Athena_Commando_F_ArcticCamo_Gray": { + "templateId": "AthenaCharacter:CID_672_Athena_Commando_F_ArcticCamo_Gray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_673_Athena_Commando_F_ArcticCamo_Slate": { + "templateId": "AthenaCharacter:CID_673_Athena_Commando_F_ArcticCamo_Slate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_674_Athena_Commando_F_HoodieBandit": { + "templateId": "AthenaCharacter:CID_674_Athena_Commando_F_HoodieBandit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_675_Athena_Commando_M_TheGoldenSkeleton": { + "templateId": "AthenaCharacter:CID_675_Athena_Commando_M_TheGoldenSkeleton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_676_Athena_Commando_M_CODSquadHoodie": { + "templateId": "AthenaCharacter:CID_676_Athena_Commando_M_CODSquadHoodie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_677_Athena_Commando_M_SharkAttack": { + "templateId": "AthenaCharacter:CID_677_Athena_Commando_M_SharkAttack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_679_Athena_Commando_M_ModernMilitaryEclipse": { + "templateId": "AthenaCharacter:CID_679_Athena_Commando_M_ModernMilitaryEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_680_Athena_Commando_M_StreetRat": { + "templateId": "AthenaCharacter:CID_680_Athena_Commando_M_StreetRat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_681_Athena_Commando_M_MartialArtist": { + "templateId": "AthenaCharacter:CID_681_Athena_Commando_M_MartialArtist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_682_Athena_Commando_M_VirtualShadow": { + "templateId": "AthenaCharacter:CID_682_Athena_Commando_M_VirtualShadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_683_Athena_Commando_F_TigerFashion": { + "templateId": "AthenaCharacter:CID_683_Athena_Commando_F_TigerFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_684_Athena_Commando_F_DragonRacer": { + "templateId": "AthenaCharacter:CID_684_Athena_Commando_F_DragonRacer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_685_Athena_Commando_M_TundraYellow": { + "templateId": "AthenaCharacter:CID_685_Athena_Commando_M_TundraYellow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_687_Athena_Commando_M_AgentAce": { + "templateId": "AthenaCharacter:CID_687_Athena_Commando_M_AgentAce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_688_Athena_Commando_F_AgentRogue": { + "templateId": "AthenaCharacter:CID_688_Athena_Commando_F_AgentRogue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_689_Athena_Commando_M_SpyTechHacker": { + "templateId": "AthenaCharacter:CID_689_Athena_Commando_M_SpyTechHacker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_690_Athena_Commando_F_Photographer": { + "templateId": "AthenaCharacter:CID_690_Athena_Commando_F_Photographer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_691_Athena_Commando_F_TNTina": { + "templateId": "AthenaCharacter:CID_691_Athena_Commando_F_TNTina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage7", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_692_Athena_Commando_M_HenchmanTough": { + "templateId": "AthenaCharacter:CID_692_Athena_Commando_M_HenchmanTough", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_693_Athena_Commando_M_BuffCat": { + "templateId": "AthenaCharacter:CID_693_Athena_Commando_M_BuffCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_694_Athena_Commando_M_CatBurglar": { + "templateId": "AthenaCharacter:CID_694_Athena_Commando_M_CatBurglar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_695_Athena_Commando_F_DesertOpsCamo": { + "templateId": "AthenaCharacter:CID_695_Athena_Commando_F_DesertOpsCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "ClothingColor", + "active": "003", + "owned": [ + "003", + "004", + "005" + ] + }, + { + "channel": "Parts", + "active": "Stage6", + "owned": [ + "Stage6", + "Stage7", + "Stage8", + "Stage9", + "Stage10", + "Stage11" + ] + }, + { + "channel": "Hair", + "active": "014", + "owned": [ + "014", + "015", + "016", + "017" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22", + "Mat23", + "Mat24" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat9", + "owned": [ + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2", + "Emissive3", + "Emissive4", + "Emissive5" + ] + }, + { + "channel": "Pattern", + "active": "001", + "owned": [ + "001", + "002" + ] + }, + { + "channel": "Mesh", + "active": "009", + "owned": [ + "009", + "010", + "011", + "012", + "013" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_696_Athena_Commando_F_DarkHeart": { + "templateId": "AthenaCharacter:CID_696_Athena_Commando_F_DarkHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_697_Athena_Commando_F_GraffitiFuture": { + "templateId": "AthenaCharacter:CID_697_Athena_Commando_F_GraffitiFuture", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_698_Athena_Commando_M_CuteDuo": { + "templateId": "AthenaCharacter:CID_698_Athena_Commando_M_CuteDuo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_699_Athena_Commando_F_BrokenHeart": { + "templateId": "AthenaCharacter:CID_699_Athena_Commando_F_BrokenHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_700_Athena_Commando_M_Candy": { + "templateId": "AthenaCharacter:CID_700_Athena_Commando_M_Candy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_701_Athena_Commando_M_BananaAgent": { + "templateId": "AthenaCharacter:CID_701_Athena_Commando_M_BananaAgent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_702_Athena_Commando_M_AssassinX": { + "templateId": "AthenaCharacter:CID_702_Athena_Commando_M_AssassinX", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_703_Athena_Commando_M_Cyclone": { + "templateId": "AthenaCharacter:CID_703_Athena_Commando_M_Cyclone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_704_Athena_Commando_F_LollipopTrickster": { + "templateId": "AthenaCharacter:CID_704_Athena_Commando_F_LollipopTrickster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_705_Athena_Commando_M_Donut": { + "templateId": "AthenaCharacter:CID_705_Athena_Commando_M_Donut", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_706_Athena_Commando_M_HenchmanBad_34LVU": { + "templateId": "AthenaCharacter:CID_706_Athena_Commando_M_HenchmanBad_34LVU", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_707_Athena_Commando_M_HenchmanGood_9OBH6": { + "templateId": "AthenaCharacter:CID_707_Athena_Commando_M_HenchmanGood_9OBH6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_708_Athena_Commando_M_SoldierSlurp": { + "templateId": "AthenaCharacter:CID_708_Athena_Commando_M_SoldierSlurp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_709_Athena_Commando_F_BandolierSlurp": { + "templateId": "AthenaCharacter:CID_709_Athena_Commando_F_BandolierSlurp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_710_Athena_Commando_M_FishheadSlurp": { + "templateId": "AthenaCharacter:CID_710_Athena_Commando_M_FishheadSlurp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_711_Athena_Commando_M_LongShorts": { + "templateId": "AthenaCharacter:CID_711_Athena_Commando_M_LongShorts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_712_Athena_Commando_M_Spy": { + "templateId": "AthenaCharacter:CID_712_Athena_Commando_M_Spy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_713_Athena_Commando_M_MaskedWarriorSpring": { + "templateId": "AthenaCharacter:CID_713_Athena_Commando_M_MaskedWarriorSpring", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_714_Athena_Commando_M_AnarchyAcresFarmer": { + "templateId": "AthenaCharacter:CID_714_Athena_Commando_M_AnarchyAcresFarmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_715_Athena_Commando_F_TwinDark": { + "templateId": "AthenaCharacter:CID_715_Athena_Commando_F_TwinDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_716_Athena_Commando_M_BlueFlames": { + "templateId": "AthenaCharacter:CID_716_Athena_Commando_M_BlueFlames", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_717_Athena_Commando_F_BlueFlames": { + "templateId": "AthenaCharacter:CID_717_Athena_Commando_F_BlueFlames", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_718_Athena_Commando_F_LuckyHero": { + "templateId": "AthenaCharacter:CID_718_Athena_Commando_F_LuckyHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_719_Athena_Commando_F_Blonde": { + "templateId": "AthenaCharacter:CID_719_Athena_Commando_F_Blonde", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_720_Athena_Commando_F_StreetFashionEmerald": { + "templateId": "AthenaCharacter:CID_720_Athena_Commando_F_StreetFashionEmerald", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_721_Athena_Commando_F_PineappleBandit": { + "templateId": "AthenaCharacter:CID_721_Athena_Commando_F_PineappleBandit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_722_Athena_Commando_M_TeriyakiFishAssassin": { + "templateId": "AthenaCharacter:CID_722_Athena_Commando_M_TeriyakiFishAssassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_723_Athena_Commando_F_SpyTech": { + "templateId": "AthenaCharacter:CID_723_Athena_Commando_F_SpyTech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_724_Athena_Commando_M_SpyTech": { + "templateId": "AthenaCharacter:CID_724_Athena_Commando_M_SpyTech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_725_Athena_Commando_F_AgentX": { + "templateId": "AthenaCharacter:CID_725_Athena_Commando_F_AgentX", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_726_Athena_Commando_M_TargetPractice": { + "templateId": "AthenaCharacter:CID_726_Athena_Commando_M_TargetPractice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_727_Athena_Commando_M_Tailor": { + "templateId": "AthenaCharacter:CID_727_Athena_Commando_M_Tailor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_728_Athena_Commando_M_MinotaurLuck": { + "templateId": "AthenaCharacter:CID_728_Athena_Commando_M_MinotaurLuck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_729_Athena_Commando_M_Neon": { + "templateId": "AthenaCharacter:CID_729_Athena_Commando_M_Neon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_730_Athena_Commando_M_Stars": { + "templateId": "AthenaCharacter:CID_730_Athena_Commando_M_Stars", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_731_Athena_Commando_F_Neon": { + "templateId": "AthenaCharacter:CID_731_Athena_Commando_F_Neon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_732_Athena_Commando_F_Stars": { + "templateId": "AthenaCharacter:CID_732_Athena_Commando_F_Stars", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_733_Athena_Commando_M_BannerRed": { + "templateId": "AthenaCharacter:CID_733_Athena_Commando_M_BannerRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_734_Athena_Commando_F_BannerRed": { + "templateId": "AthenaCharacter:CID_734_Athena_Commando_F_BannerRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_735_Athena_Commando_M_Informer": { + "templateId": "AthenaCharacter:CID_735_Athena_Commando_M_Informer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_736_Athena_Commando_F_DonutDish": { + "templateId": "AthenaCharacter:CID_736_Athena_Commando_F_DonutDish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_737_Athena_Commando_F_DonutPlate": { + "templateId": "AthenaCharacter:CID_737_Athena_Commando_F_DonutPlate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_738_Athena_Commando_M_DonutCup": { + "templateId": "AthenaCharacter:CID_738_Athena_Commando_M_DonutCup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_739_Athena_Commando_M_CardboardCrew": { + "templateId": "AthenaCharacter:CID_739_Athena_Commando_M_CardboardCrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_740_Athena_Commando_F_CardboardCrew": { + "templateId": "AthenaCharacter:CID_740_Athena_Commando_F_CardboardCrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_741_Athena_Commando_F_HalloweenBunnySpring": { + "templateId": "AthenaCharacter:CID_741_Athena_Commando_F_HalloweenBunnySpring", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_742_Athena_Commando_M_ChocoBunny": { + "templateId": "AthenaCharacter:CID_742_Athena_Commando_M_ChocoBunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_743_Athena_Commando_M_Handyman": { + "templateId": "AthenaCharacter:CID_743_Athena_Commando_M_Handyman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_744_Athena_Commando_F_DuckHero": { + "templateId": "AthenaCharacter:CID_744_Athena_Commando_F_DuckHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_745_Athena_Commando_M_RavenQuill": { + "templateId": "AthenaCharacter:CID_745_Athena_Commando_M_RavenQuill", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_746_Athena_Commando_F_FuzzyBear": { + "templateId": "AthenaCharacter:CID_746_Athena_Commando_F_FuzzyBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_747_Athena_Commando_M_BadEgg": { + "templateId": "AthenaCharacter:CID_747_Athena_Commando_M_BadEgg", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_748_Athena_Commando_F_Hitman": { + "templateId": "AthenaCharacter:CID_748_Athena_Commando_F_Hitman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_749_Athena_Commando_F_GraffitiAssassin": { + "templateId": "AthenaCharacter:CID_749_Athena_Commando_F_GraffitiAssassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_750_Athena_Commando_M_Hurricane": { + "templateId": "AthenaCharacter:CID_750_Athena_Commando_M_Hurricane", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_751_Athena_Commando_F_NeonCatSpy": { + "templateId": "AthenaCharacter:CID_751_Athena_Commando_F_NeonCatSpy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_752_Athena_Commando_M_Comet": { + "templateId": "AthenaCharacter:CID_752_Athena_Commando_M_Comet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_753_Athena_Commando_F_Hostile": { + "templateId": "AthenaCharacter:CID_753_Athena_Commando_F_Hostile", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_754_Athena_Commando_F_RaveNinja": { + "templateId": "AthenaCharacter:CID_754_Athena_Commando_F_RaveNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_755_Athena_Commando_M_Splinter": { + "templateId": "AthenaCharacter:CID_755_Athena_Commando_M_Splinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_756_Athena_Commando_M_JonesyAgent": { + "templateId": "AthenaCharacter:CID_756_Athena_Commando_M_JonesyAgent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_757_Athena_Commando_F_WildCat": { + "templateId": "AthenaCharacter:CID_757_Athena_Commando_F_WildCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_758_Athena_Commando_M_TechExplorer": { + "templateId": "AthenaCharacter:CID_758_Athena_Commando_M_TechExplorer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_759_Athena_Commando_F_RapVillainess": { + "templateId": "AthenaCharacter:CID_759_Athena_Commando_F_RapVillainess", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_760_Athena_Commando_F_NeonTightSuit": { + "templateId": "AthenaCharacter:CID_760_Athena_Commando_F_NeonTightSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_761_Athena_Commando_M_CycloneSpace": { + "templateId": "AthenaCharacter:CID_761_Athena_Commando_M_CycloneSpace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_762_Athena_Commando_M_BrightGunnerSpy": { + "templateId": "AthenaCharacter:CID_762_Athena_Commando_M_BrightGunnerSpy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_763_Athena_Commando_F_ShinyJacket": { + "templateId": "AthenaCharacter:CID_763_Athena_Commando_F_ShinyJacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_764_Athena_Commando_F_Loofah": { + "templateId": "AthenaCharacter:CID_764_Athena_Commando_F_Loofah", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_765_Athena_Commando_F_SpaceWanderer": { + "templateId": "AthenaCharacter:CID_765_Athena_Commando_F_SpaceWanderer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_767_Athena_Commando_F_BlackKnight": { + "templateId": "AthenaCharacter:CID_767_Athena_Commando_F_BlackKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_768_Athena_Commando_F_HardcoreSportz": { + "templateId": "AthenaCharacter:CID_768_Athena_Commando_F_HardcoreSportz", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_769_Athena_Commando_M_HardcoreSportz": { + "templateId": "AthenaCharacter:CID_769_Athena_Commando_M_HardcoreSportz", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_770_Athena_Commando_F_MechanicalEngineer": { + "templateId": "AthenaCharacter:CID_770_Athena_Commando_F_MechanicalEngineer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_771_Athena_Commando_F_OceanRider": { + "templateId": "AthenaCharacter:CID_771_Athena_Commando_F_OceanRider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_772_Athena_Commando_M_Sandcastle": { + "templateId": "AthenaCharacter:CID_772_Athena_Commando_M_Sandcastle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_773_Athena_Commando_M_Beacon": { + "templateId": "AthenaCharacter:CID_773_Athena_Commando_M_Beacon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_774_Athena_Commando_M_TacticalScuba": { + "templateId": "AthenaCharacter:CID_774_Athena_Commando_M_TacticalScuba", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_775_Athena_Commando_F_StreetRacerCobraGold": { + "templateId": "AthenaCharacter:CID_775_Athena_Commando_F_StreetRacerCobraGold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_776_Athena_Commando_M_ProfessorPup": { + "templateId": "AthenaCharacter:CID_776_Athena_Commando_M_ProfessorPup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_777_Athena_Commando_M_RacerZero": { + "templateId": "AthenaCharacter:CID_777_Athena_Commando_M_RacerZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_778_Athena_Commando_M_Gator": { + "templateId": "AthenaCharacter:CID_778_Athena_Commando_M_Gator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_779_Athena_Commando_M_HenchmanGoodShorts": { + "templateId": "AthenaCharacter:CID_779_Athena_Commando_M_HenchmanGoodShorts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_780_Athena_Commando_M_HenchmanBadShorts": { + "templateId": "AthenaCharacter:CID_780_Athena_Commando_M_HenchmanBadShorts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_781_Athena_Commando_F_FuzzyBearTEDDY": { + "templateId": "AthenaCharacter:CID_781_Athena_Commando_F_FuzzyBearTEDDY", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_782_Athena_Commando_M_BrightGunnerEclipse": { + "templateId": "AthenaCharacter:CID_782_Athena_Commando_M_BrightGunnerEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_783_Athena_Commando_M_AquaJacket": { + "templateId": "AthenaCharacter:CID_783_Athena_Commando_M_AquaJacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_784_Athena_Commando_F_RenegadeRaiderFire": { + "templateId": "AthenaCharacter:CID_784_Athena_Commando_F_RenegadeRaiderFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_785_Athena_Commando_F_Python": { + "templateId": "AthenaCharacter:CID_785_Athena_Commando_F_Python", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_786_Athena_Commando_F_CavalryBandit_Ghost": { + "templateId": "AthenaCharacter:CID_786_Athena_Commando_F_CavalryBandit_Ghost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_787_Athena_Commando_M_Heist_Ghost": { + "templateId": "AthenaCharacter:CID_787_Athena_Commando_M_Heist_Ghost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_788_Athena_Commando_M_Mastermind_Ghost": { + "templateId": "AthenaCharacter:CID_788_Athena_Commando_M_Mastermind_Ghost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_789_Athena_Commando_M_HenchmanGoodShorts_B": { + "templateId": "AthenaCharacter:CID_789_Athena_Commando_M_HenchmanGoodShorts_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_790_Athena_Commando_M_HenchmanGoodShorts_C": { + "templateId": "AthenaCharacter:CID_790_Athena_Commando_M_HenchmanGoodShorts_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_791_Athena_Commando_M_HenchmanGoodShorts_D": { + "templateId": "AthenaCharacter:CID_791_Athena_Commando_M_HenchmanGoodShorts_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_792_Athena_Commando_M_HenchmanBadShorts_B": { + "templateId": "AthenaCharacter:CID_792_Athena_Commando_M_HenchmanBadShorts_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_793_Athena_Commando_M_HenchmanBadShorts_C": { + "templateId": "AthenaCharacter:CID_793_Athena_Commando_M_HenchmanBadShorts_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_794_Athena_Commando_M_HenchmanBadShorts_D": { + "templateId": "AthenaCharacter:CID_794_Athena_Commando_M_HenchmanBadShorts_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_795_Athena_Commando_M_Dummeez": { + "templateId": "AthenaCharacter:CID_795_Athena_Commando_M_Dummeez", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_796_Athena_Commando_F_Tank": { + "templateId": "AthenaCharacter:CID_796_Athena_Commando_F_Tank", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_797_Athena_Commando_F_Taco": { + "templateId": "AthenaCharacter:CID_797_Athena_Commando_F_Taco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_798_Athena_Commando_M_JonesyVagabond": { + "templateId": "AthenaCharacter:CID_798_Athena_Commando_M_JonesyVagabond", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_799_Athena_Commando_F_CupidDark": { + "templateId": "AthenaCharacter:CID_799_Athena_Commando_F_CupidDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_800_Athena_Commando_M_Robro": { + "templateId": "AthenaCharacter:CID_800_Athena_Commando_M_Robro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_801_Athena_Commando_F_GolfSummer": { + "templateId": "AthenaCharacter:CID_801_Athena_Commando_F_GolfSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_802_Athena_Commando_F_HeartBreaker": { + "templateId": "AthenaCharacter:CID_802_Athena_Commando_F_HeartBreaker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_803_Athena_Commando_F_SharkSuit": { + "templateId": "AthenaCharacter:CID_803_Athena_Commando_F_SharkSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_804_Athena_Commando_M_SharkSuit": { + "templateId": "AthenaCharacter:CID_804_Athena_Commando_M_SharkSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_805_Athena_Commando_F_PunkDevilSummer": { + "templateId": "AthenaCharacter:CID_805_Athena_Commando_F_PunkDevilSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_806_Athena_Commando_F_GreenJacket": { + "templateId": "AthenaCharacter:CID_806_Athena_Commando_F_GreenJacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_807_Athena_Commando_M_CandyApple_B1U7X": { + "templateId": "AthenaCharacter:CID_807_Athena_Commando_M_CandyApple_B1U7X", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_808_Athena_Commando_F_ConstellationSun": { + "templateId": "AthenaCharacter:CID_808_Athena_Commando_F_ConstellationSun", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_809_Athena_Commando_M_Seaweed_IXRLQ": { + "templateId": "AthenaCharacter:CID_809_Athena_Commando_M_Seaweed_IXRLQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_810_Athena_Commando_M_MilitaryFashionSummer": { + "templateId": "AthenaCharacter:CID_810_Athena_Commando_M_MilitaryFashionSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_811_Athena_Commando_F_CandySummer": { + "templateId": "AthenaCharacter:CID_811_Athena_Commando_F_CandySummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_812_Athena_Commando_F_RedRidingSummer": { + "templateId": "AthenaCharacter:CID_812_Athena_Commando_F_RedRidingSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_813_Athena_Commando_M_TeriyakiAtlantis": { + "templateId": "AthenaCharacter:CID_813_Athena_Commando_M_TeriyakiAtlantis", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_814_Athena_Commando_M_BananaSummer": { + "templateId": "AthenaCharacter:CID_814_Athena_Commando_M_BananaSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_815_Athena_Commando_F_DurrburgerHero": { + "templateId": "AthenaCharacter:CID_815_Athena_Commando_F_DurrburgerHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_816_Athena_Commando_F_DirtyDocks": { + "templateId": "AthenaCharacter:CID_816_Athena_Commando_F_DirtyDocks", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_817_Athena_Commando_M_DirtyDocks": { + "templateId": "AthenaCharacter:CID_817_Athena_Commando_M_DirtyDocks", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_818_Athena_Commando_F_NeonTightSuit_A": { + "templateId": "AthenaCharacter:CID_818_Athena_Commando_F_NeonTightSuit_A", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_819_Athena_Commando_F_NeonTightSuit_B": { + "templateId": "AthenaCharacter:CID_819_Athena_Commando_F_NeonTightSuit_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_820_Athena_Commando_F_NeonTightSuit_C": { + "templateId": "AthenaCharacter:CID_820_Athena_Commando_F_NeonTightSuit_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_822_Athena_Commando_F_Angler": { + "templateId": "AthenaCharacter:CID_822_Athena_Commando_F_Angler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_823_Athena_Commando_F_Islander": { + "templateId": "AthenaCharacter:CID_823_Athena_Commando_F_Islander", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_824_Athena_Commando_F_RaiderPink": { + "templateId": "AthenaCharacter:CID_824_Athena_Commando_F_RaiderPink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_825_Athena_Commando_F_SportsFashion": { + "templateId": "AthenaCharacter:CID_825_Athena_Commando_F_SportsFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_826_Athena_Commando_M_FloatillaCaptain": { + "templateId": "AthenaCharacter:CID_826_Athena_Commando_M_FloatillaCaptain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_827_Athena_Commando_M_MultibotStealth": { + "templateId": "AthenaCharacter:CID_827_Athena_Commando_M_MultibotStealth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_828_Athena_Commando_F_Valet": { + "templateId": "AthenaCharacter:CID_828_Athena_Commando_F_Valet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_829_Athena_Commando_M_Valet": { + "templateId": "AthenaCharacter:CID_829_Athena_Commando_M_Valet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_830_Athena_Commando_M_SpaceWanderer": { + "templateId": "AthenaCharacter:CID_830_Athena_Commando_M_SpaceWanderer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_831_Athena_Commando_F_PIzzaPitMascot": { + "templateId": "AthenaCharacter:CID_831_Athena_Commando_F_PIzzaPitMascot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_832_Athena_Commando_F_AntiLlama": { + "templateId": "AthenaCharacter:CID_832_Athena_Commando_F_AntiLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_833_Athena_Commando_F_TripleScoop": { + "templateId": "AthenaCharacter:CID_833_Athena_Commando_F_TripleScoop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_834_Athena_Commando_M_Axl": { + "templateId": "AthenaCharacter:CID_834_Athena_Commando_M_Axl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_835_Athena_Commando_F_LadyAtlantis": { + "templateId": "AthenaCharacter:CID_835_Athena_Commando_F_LadyAtlantis", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_836_Athena_Commando_M_JonesyFlare": { + "templateId": "AthenaCharacter:CID_836_Athena_Commando_M_JonesyFlare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_837_Athena_Commando_M_MaskedDancer": { + "templateId": "AthenaCharacter:CID_837_Athena_Commando_M_MaskedDancer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_838_Athena_Commando_M_JunkSamurai": { + "templateId": "AthenaCharacter:CID_838_Athena_Commando_M_JunkSamurai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_839_Athena_Commando_F_HightowerSquash": { + "templateId": "AthenaCharacter:CID_839_Athena_Commando_F_HightowerSquash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_840_Athena_Commando_M_HightowerGrape": { + "templateId": "AthenaCharacter:CID_840_Athena_Commando_M_HightowerGrape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_841_Athena_Commando_M_HightowerWasabi": { + "templateId": "AthenaCharacter:CID_841_Athena_Commando_M_HightowerWasabi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_842_Athena_Commando_F_HightowerHoneydew": { + "templateId": "AthenaCharacter:CID_842_Athena_Commando_F_HightowerHoneydew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_843_Athena_Commando_M_HightowerTomato_Casual": { + "templateId": "AthenaCharacter:CID_843_Athena_Commando_M_HightowerTomato_Casual", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_844_Athena_Commando_F_HightowerMango": { + "templateId": "AthenaCharacter:CID_844_Athena_Commando_F_HightowerMango", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_845_Athena_Commando_M_HightowerTapas": { + "templateId": "AthenaCharacter:CID_845_Athena_Commando_M_HightowerTapas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_846_Athena_Commando_M_HightowerDate": { + "templateId": "AthenaCharacter:CID_846_Athena_Commando_M_HightowerDate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_847_Athena_Commando_M_Soy_2AS3C": { + "templateId": "AthenaCharacter:CID_847_Athena_Commando_M_Soy_2AS3C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_848_Athena_Commando_F_DarkNinjaPurple": { + "templateId": "AthenaCharacter:CID_848_Athena_Commando_F_DarkNinjaPurple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_849_Athena_Commando_M_DarkEaglePurple": { + "templateId": "AthenaCharacter:CID_849_Athena_Commando_M_DarkEaglePurple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_850_Athena_Commando_F_SkullBriteCube": { + "templateId": "AthenaCharacter:CID_850_Athena_Commando_F_SkullBriteCube", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_851_Athena_Commando_M_Bittenhead": { + "templateId": "AthenaCharacter:CID_851_Athena_Commando_M_Bittenhead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_852_Athena_Commando_F_BlackWidowCorrupt": { + "templateId": "AthenaCharacter:CID_852_Athena_Commando_F_BlackWidowCorrupt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_853_Athena_Commando_F_SniperHoodCorrupt": { + "templateId": "AthenaCharacter:CID_853_Athena_Commando_F_SniperHoodCorrupt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_854_Athena_Commando_M_SamuraiUltraArmorCorrupt": { + "templateId": "AthenaCharacter:CID_854_Athena_Commando_M_SamuraiUltraArmorCorrupt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_855_Athena_Commando_M_Elastic": { + "templateId": "AthenaCharacter:CID_855_Athena_Commando_M_Elastic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Hair", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Emissive", + "active": "001", + "owned": [ + "001", + "002" + ] + }, + { + "channel": "Pattern", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage0" + ] + }, + { + "channel": "Particle", + "active": "001", + "owned": [ + "001", + "002" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_856_Athena_Commando_M_Elastic_B": { + "templateId": "AthenaCharacter:CID_856_Athena_Commando_M_Elastic_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Hair", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Emissive", + "active": "001", + "owned": [ + "001", + "003" + ] + }, + { + "channel": "Pattern", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007" + ] + }, + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage0" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Particle", + "active": "001", + "owned": [ + "001", + "002" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_857_Athena_Commando_M_Elastic_C": { + "templateId": "AthenaCharacter:CID_857_Athena_Commando_M_Elastic_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Hair", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Emissive", + "active": "001", + "owned": [ + "001", + "003" + ] + }, + { + "channel": "Pattern", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007" + ] + }, + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage0" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Particle", + "active": "001", + "owned": [ + "001", + "002" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_858_Athena_Commando_M_Elastic_D": { + "templateId": "AthenaCharacter:CID_858_Athena_Commando_M_Elastic_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Hair", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Emissive", + "active": "001", + "owned": [ + "001", + "003" + ] + }, + { + "channel": "Pattern", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007" + ] + }, + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage0" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Particle", + "active": "001", + "owned": [ + "001", + "002" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_859_Athena_Commando_M_Elastic_E": { + "templateId": "AthenaCharacter:CID_859_Athena_Commando_M_Elastic_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Hair", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Emissive", + "active": "001", + "owned": [ + "001", + "003" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Pattern", + "active": "Color", + "owned": [ + "Color", + "002", + "003", + "004", + "005", + "006", + "007" + ] + }, + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage0" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Particle", + "active": "001", + "owned": [ + "001", + "002" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_860_Athena_Commando_F_Elastic": { + "templateId": "AthenaCharacter:CID_860_Athena_Commando_F_Elastic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Hair", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "PetTemperament", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage0" + ] + }, + { + "channel": "Pattern", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007" + ] + }, + { + "channel": "Emissive", + "active": "001", + "owned": [ + "001", + "003" + ] + }, + { + "channel": "Particle", + "active": "001", + "owned": [ + "001", + "002" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_861_Athena_Commando_F_Elastic_B": { + "templateId": "AthenaCharacter:CID_861_Athena_Commando_F_Elastic_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Hair", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "PetTemperament", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage0" + ] + }, + { + "channel": "Pattern", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007" + ] + }, + { + "channel": "Particle", + "active": "001", + "owned": [ + "001", + "002" + ] + }, + { + "channel": "Emissive", + "active": "001", + "owned": [ + "001", + "003" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_862_Athena_Commando_F_Elastic_C": { + "templateId": "AthenaCharacter:CID_862_Athena_Commando_F_Elastic_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Hair", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "PetTemperament", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22" + ] + }, + { + "channel": "Pattern", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage0" + ] + }, + { + "channel": "Emissive", + "active": "001", + "owned": [ + "001", + "003" + ] + }, + { + "channel": "Particle", + "active": "001", + "owned": [ + "001", + "002" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_863_Athena_Commando_F_Elastic_D": { + "templateId": "AthenaCharacter:CID_863_Athena_Commando_F_Elastic_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Hair", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Pattern", + "active": "000", + "owned": [ + "000", + "002", + "003", + "004", + "005", + "006", + "007" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "PetTemperament", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22" + ] + }, + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage0" + ] + }, + { + "channel": "Emissive", + "active": "001", + "owned": [ + "001", + "003" + ] + }, + { + "channel": "Particle", + "active": "001", + "owned": [ + "001", + "002" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_864_Athena_Commando_F_Elastic_E": { + "templateId": "AthenaCharacter:CID_864_Athena_Commando_F_Elastic_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Hair", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "PetTemperament", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10", + "Mat11", + "Mat12", + "Mat13", + "Mat14", + "Mat15", + "Mat16", + "Mat17", + "Mat18", + "Mat19", + "Mat20", + "Mat21", + "Mat22" + ] + }, + { + "channel": "Pattern", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "JerseyColor", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage0" + ] + }, + { + "channel": "Emissive", + "active": "001", + "owned": [ + "001", + "003" + ] + }, + { + "channel": "Particle", + "active": "001", + "owned": [ + "001", + "002" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_865_Athena_Commando_F_CloakedAssassin_1XKHT": { + "templateId": "AthenaCharacter:CID_865_Athena_Commando_F_CloakedAssassin_1XKHT", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_866_Athena_Commando_F_Myth": { + "templateId": "AthenaCharacter:CID_866_Athena_Commando_F_Myth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_867_Athena_Commando_M_Myth": { + "templateId": "AthenaCharacter:CID_867_Athena_Commando_M_Myth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_868_Athena_Commando_M_Backspin_3U6CA": { + "templateId": "AthenaCharacter:CID_868_Athena_Commando_M_Backspin_3U6CA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_869_Athena_Commando_F_Cavalry": { + "templateId": "AthenaCharacter:CID_869_Athena_Commando_F_Cavalry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_870_Athena_Commando_M_KevinCouture": { + "templateId": "AthenaCharacter:CID_870_Athena_Commando_M_KevinCouture", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_871_Athena_Commando_F_StreetFashionGarnet": { + "templateId": "AthenaCharacter:CID_871_Athena_Commando_F_StreetFashionGarnet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_872_Athena_Commando_F_TeriyakiFishPrincess": { + "templateId": "AthenaCharacter:CID_872_Athena_Commando_F_TeriyakiFishPrincess", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_873_Athena_Commando_M_RebirthDefaultE": { + "templateId": "AthenaCharacter:CID_873_Athena_Commando_M_RebirthDefaultE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_874_Athena_Commando_M_RebirthDefaultF": { + "templateId": "AthenaCharacter:CID_874_Athena_Commando_M_RebirthDefaultF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_875_Athena_Commando_M_RebirthDefaultG": { + "templateId": "AthenaCharacter:CID_875_Athena_Commando_M_RebirthDefaultG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_876_Athena_Commando_M_RebirthDefaultH": { + "templateId": "AthenaCharacter:CID_876_Athena_Commando_M_RebirthDefaultH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_877_Athena_Commando_M_RebirthDefaultI": { + "templateId": "AthenaCharacter:CID_877_Athena_Commando_M_RebirthDefaultI", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_878_Athena_Commando_F_RebirthDefault_E": { + "templateId": "AthenaCharacter:CID_878_Athena_Commando_F_RebirthDefault_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_879_Athena_Commando_F_RebirthDefault_F": { + "templateId": "AthenaCharacter:CID_879_Athena_Commando_F_RebirthDefault_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_880_Athena_Commando_F_RebirthDefault_G": { + "templateId": "AthenaCharacter:CID_880_Athena_Commando_F_RebirthDefault_G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_881_Athena_Commando_F_RebirthDefault_H": { + "templateId": "AthenaCharacter:CID_881_Athena_Commando_F_RebirthDefault_H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_882_Athena_Commando_F_RebirthDefault_I": { + "templateId": "AthenaCharacter:CID_882_Athena_Commando_F_RebirthDefault_I", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_883_Athena_Commando_M_ChOneJonesy": { + "templateId": "AthenaCharacter:CID_883_Athena_Commando_M_ChOneJonesy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_883_Athena_M_3L_LOD2": { + "templateId": "AthenaCharacter:CID_883_Athena_M_3L_LOD2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_883_Athena_M_FN_Jonesy": { + "templateId": "AthenaCharacter:CID_883_Athena_M_FN_Jonesy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_884_Athena_Commando_F_ChOneRamirez": { + "templateId": "AthenaCharacter:CID_884_Athena_Commando_F_ChOneRamirez", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_885_Athena_Commando_M_ChOneHawk": { + "templateId": "AthenaCharacter:CID_885_Athena_Commando_M_ChOneHawk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_886_Athena_Commando_M_ChOneRenegade": { + "templateId": "AthenaCharacter:CID_886_Athena_Commando_M_ChOneRenegade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_887_Athena_Commando_M_ChOneSpitfire": { + "templateId": "AthenaCharacter:CID_887_Athena_Commando_M_ChOneSpitfire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_888_Athena_Commando_F_ChOneBanshee": { + "templateId": "AthenaCharacter:CID_888_Athena_Commando_F_ChOneBanshee", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_889_Athena_Commando_F_ChOneWildcat": { + "templateId": "AthenaCharacter:CID_889_Athena_Commando_F_ChOneWildcat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_890_Athena_Commando_F_ChOneHeadhunter": { + "templateId": "AthenaCharacter:CID_890_Athena_Commando_F_ChOneHeadhunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_891_Athena_Commando_M_LunchBox": { + "templateId": "AthenaCharacter:CID_891_Athena_Commando_M_LunchBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_892_Athena_Commando_F_VampireCasual": { + "templateId": "AthenaCharacter:CID_892_Athena_Commando_F_VampireCasual", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_893_Athena_Commando_F_BlackWidowJacket": { + "templateId": "AthenaCharacter:CID_893_Athena_Commando_F_BlackWidowJacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_894_Athena_Commando_M_Palespooky": { + "templateId": "AthenaCharacter:CID_894_Athena_Commando_M_Palespooky", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_895_Athena_Commando_M_DeliSandwich": { + "templateId": "AthenaCharacter:CID_895_Athena_Commando_M_DeliSandwich", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_896_Athena_Commando_F_SpookyNeon": { + "templateId": "AthenaCharacter:CID_896_Athena_Commando_F_SpookyNeon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_897_Athena_Commando_F_DarkBomberSummer": { + "templateId": "AthenaCharacter:CID_897_Athena_Commando_F_DarkBomberSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_898_Athena_Commando_M_FlowerSkeleton": { + "templateId": "AthenaCharacter:CID_898_Athena_Commando_M_FlowerSkeleton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_899_Athena_Commando_F_Poison": { + "templateId": "AthenaCharacter:CID_899_Athena_Commando_F_Poison", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_900_Athena_Commando_M_Famine": { + "templateId": "AthenaCharacter:CID_900_Athena_Commando_M_Famine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_901_Athena_Commando_F_PumpkinSpice": { + "templateId": "AthenaCharacter:CID_901_Athena_Commando_F_PumpkinSpice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_902_Athena_Commando_M_PumpkinPunk": { + "templateId": "AthenaCharacter:CID_902_Athena_Commando_M_PumpkinPunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_903_Athena_Commando_F_Frankie": { + "templateId": "AthenaCharacter:CID_903_Athena_Commando_F_Frankie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_904_Athena_Commando_M_Jekyll": { + "templateId": "AthenaCharacter:CID_904_Athena_Commando_M_Jekyll", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_905_Athena_Commando_M_York": { + "templateId": "AthenaCharacter:CID_905_Athena_Commando_M_York", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_906_Athena_Commando_M_York_B": { + "templateId": "AthenaCharacter:CID_906_Athena_Commando_M_York_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_907_Athena_Commando_M_York_C": { + "templateId": "AthenaCharacter:CID_907_Athena_Commando_M_York_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_908_Athena_Commando_M_York_D": { + "templateId": "AthenaCharacter:CID_908_Athena_Commando_M_York_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_909_Athena_Commando_M_York_E": { + "templateId": "AthenaCharacter:CID_909_Athena_Commando_M_York_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_910_Athena_Commando_F_York": { + "templateId": "AthenaCharacter:CID_910_Athena_Commando_F_York", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_911_Athena_Commando_F_York_B": { + "templateId": "AthenaCharacter:CID_911_Athena_Commando_F_York_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_912_Athena_Commando_F_York_C": { + "templateId": "AthenaCharacter:CID_912_Athena_Commando_F_York_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_913_Athena_Commando_F_York_D": { + "templateId": "AthenaCharacter:CID_913_Athena_Commando_F_York_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_914_Athena_Commando_F_York_E": { + "templateId": "AthenaCharacter:CID_914_Athena_Commando_F_York_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_915_Athena_Commando_F_RavenQuillSkull": { + "templateId": "AthenaCharacter:CID_915_Athena_Commando_F_RavenQuillSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_916_Athena_Commando_F_FuzzyBearSkull": { + "templateId": "AthenaCharacter:CID_916_Athena_Commando_F_FuzzyBearSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_917_Athena_Commando_M_DurrburgerSkull": { + "templateId": "AthenaCharacter:CID_917_Athena_Commando_M_DurrburgerSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_918_Athena_Commando_M_TeriyakiFishSkull": { + "templateId": "AthenaCharacter:CID_918_Athena_Commando_M_TeriyakiFishSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_919_Athena_Commando_F_BabaYaga": { + "templateId": "AthenaCharacter:CID_919_Athena_Commando_F_BabaYaga", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_920_Athena_Commando_M_PartyTrooper": { + "templateId": "AthenaCharacter:CID_920_Athena_Commando_M_PartyTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_921_Athena_Commando_F_ParcelPetal": { + "templateId": "AthenaCharacter:CID_921_Athena_Commando_F_ParcelPetal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_922_Athena_Commando_M_ParcelPrank": { + "templateId": "AthenaCharacter:CID_922_Athena_Commando_M_ParcelPrank", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_923_Athena_Commando_M_ParcelGold": { + "templateId": "AthenaCharacter:CID_923_Athena_Commando_M_ParcelGold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_924_Athena_Commando_M_Embers": { + "templateId": "AthenaCharacter:CID_924_Athena_Commando_M_Embers", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_925_Athena_Commando_F_TapDance": { + "templateId": "AthenaCharacter:CID_925_Athena_Commando_F_TapDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_926_Athena_Commando_F_StreetFashionDiamond": { + "templateId": "AthenaCharacter:CID_926_Athena_Commando_F_StreetFashionDiamond", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_927_Athena_Commando_M_NauticalPajamas": { + "templateId": "AthenaCharacter:CID_927_Athena_Commando_M_NauticalPajamas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_928_Athena_Commando_M_NauticalPajamas_B": { + "templateId": "AthenaCharacter:CID_928_Athena_Commando_M_NauticalPajamas_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_929_Athena_Commando_M_NauticalPajamas_C": { + "templateId": "AthenaCharacter:CID_929_Athena_Commando_M_NauticalPajamas_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_930_Athena_Commando_M_NauticalPajamas_D": { + "templateId": "AthenaCharacter:CID_930_Athena_Commando_M_NauticalPajamas_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_931_Athena_Commando_M_NauticalPajamas_E": { + "templateId": "AthenaCharacter:CID_931_Athena_Commando_M_NauticalPajamas_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_932_Athena_Commando_M_ShockWave": { + "templateId": "AthenaCharacter:CID_932_Athena_Commando_M_ShockWave", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_933_Athena_Commando_F_FuturePink": { + "templateId": "AthenaCharacter:CID_933_Athena_Commando_F_FuturePink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_934_Athena_Commando_M_Vertigo": { + "templateId": "AthenaCharacter:CID_934_Athena_Commando_M_Vertigo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_935_Athena_Commando_F_Eternity": { + "templateId": "AthenaCharacter:CID_935_Athena_Commando_F_Eternity", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_936_Athena_Commando_F_RaiderSilver": { + "templateId": "AthenaCharacter:CID_936_Athena_Commando_F_RaiderSilver", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_937_Athena_Commando_M_Football20_UIC2Q": { + "templateId": "AthenaCharacter:CID_937_Athena_Commando_M_Football20_UIC2Q", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "000", + "owned": [ + "000", + "063", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "032", + "033", + "034", + "035", + "036", + "037", + "038", + "039", + "040", + "041", + "042", + "043", + "044", + "045", + "046", + "047", + "048", + "049", + "050", + "051", + "052", + "053", + "054", + "055", + "056", + "057", + "058", + "059", + "060", + "061", + "062", + "064", + "065" + ] + }, + { + "channel": "Particle", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_938_Athena_Commando_M_Football20_B_I18W6": { + "templateId": "AthenaCharacter:CID_938_Athena_Commando_M_Football20_B_I18W6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "000", + "owned": [ + "000", + "063", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "032", + "033", + "034", + "035", + "036", + "037", + "038", + "039", + "040", + "041", + "042", + "043", + "044", + "045", + "046", + "047", + "048", + "049", + "050", + "051", + "052", + "053", + "054", + "055", + "056", + "057", + "058", + "059", + "060", + "061", + "062", + "064", + "065" + ] + }, + { + "channel": "Particle", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_939_Athena_Commando_M_Football20_C_9OP0F": { + "templateId": "AthenaCharacter:CID_939_Athena_Commando_M_Football20_C_9OP0F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Material", + "active": "000", + "owned": [ + "000", + "063", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "032", + "033", + "034", + "035", + "036", + "037", + "038", + "039", + "040", + "041", + "042", + "043", + "044", + "045", + "046", + "047", + "048", + "049", + "050", + "051", + "052", + "053", + "054", + "055", + "056", + "057", + "058", + "059", + "060", + "061", + "062", + "064", + "065" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_940_Athena_Commando_M_Football20_D_ZID7Q": { + "templateId": "AthenaCharacter:CID_940_Athena_Commando_M_Football20_D_ZID7Q", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Material", + "active": "000", + "owned": [ + "000", + "063", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "032", + "033", + "034", + "035", + "036", + "037", + "038", + "039", + "040", + "041", + "042", + "043", + "044", + "045", + "046", + "047", + "048", + "049", + "050", + "051", + "052", + "053", + "054", + "055", + "056", + "057", + "058", + "059", + "060", + "061", + "062", + "064", + "065" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_941_Athena_Commando_M_Football20_E_KNWUY": { + "templateId": "AthenaCharacter:CID_941_Athena_Commando_M_Football20_E_KNWUY", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Material", + "active": "000", + "owned": [ + "000", + "063", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "032", + "033", + "034", + "035", + "036", + "037", + "038", + "039", + "040", + "041", + "042", + "043", + "044", + "045", + "046", + "047", + "048", + "049", + "050", + "051", + "052", + "053", + "054", + "055", + "056", + "057", + "058", + "059", + "060", + "061", + "062", + "064", + "065" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_942_Athena_Commando_F_Football20_YQUPK": { + "templateId": "AthenaCharacter:CID_942_Athena_Commando_F_Football20_YQUPK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "000", + "owned": [ + "000", + "063", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "032", + "033", + "034", + "035", + "036", + "037", + "038", + "039", + "040", + "041", + "042", + "043", + "044", + "045", + "046", + "047", + "048", + "049", + "050", + "051", + "052", + "053", + "054", + "055", + "056", + "057", + "058", + "059", + "060", + "061", + "062", + "064", + "065" + ] + }, + { + "channel": "Particle", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_943_Athena_Commando_F_Football20_B_GR3WN": { + "templateId": "AthenaCharacter:CID_943_Athena_Commando_F_Football20_B_GR3WN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "000", + "owned": [ + "000", + "063", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "032", + "033", + "034", + "035", + "036", + "037", + "038", + "039", + "040", + "041", + "042", + "043", + "044", + "045", + "046", + "047", + "048", + "049", + "050", + "051", + "052", + "053", + "054", + "055", + "056", + "057", + "058", + "059", + "060", + "061", + "062", + "064", + "065" + ] + }, + { + "channel": "Particle", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_944_Athena_Commando_F_Football20_C_FO6IY": { + "templateId": "AthenaCharacter:CID_944_Athena_Commando_F_Football20_C_FO6IY", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Material", + "active": "000", + "owned": [ + "000", + "063", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "032", + "033", + "034", + "035", + "036", + "037", + "038", + "039", + "040", + "041", + "042", + "043", + "044", + "045", + "046", + "047", + "048", + "049", + "050", + "051", + "052", + "053", + "054", + "055", + "056", + "057", + "058", + "059", + "060", + "061", + "062", + "064", + "065" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_945_Athena_Commando_F_Football20_D_G1UYT": { + "templateId": "AthenaCharacter:CID_945_Athena_Commando_F_Football20_D_G1UYT", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "000", + "owned": [ + "000", + "063", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "032", + "033", + "034", + "035", + "036", + "037", + "038", + "039", + "040", + "041", + "042", + "043", + "044", + "045", + "046", + "047", + "048", + "049", + "050", + "051", + "052", + "053", + "054", + "055", + "056", + "057", + "058", + "059", + "060", + "061", + "062", + "064", + "065" + ] + }, + { + "channel": "Particle", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_946_Athena_Commando_F_Football20_E_EFKP3": { + "templateId": "AthenaCharacter:CID_946_Athena_Commando_F_Football20_E_EFKP3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "000", + "owned": [ + "000", + "063", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024", + "025", + "026", + "027", + "028", + "029", + "030", + "031", + "032", + "033", + "034", + "035", + "036", + "037", + "038", + "039", + "040", + "041", + "042", + "043", + "044", + "045", + "046", + "047", + "048", + "049", + "050", + "051", + "052", + "053", + "054", + "055", + "056", + "057", + "058", + "059", + "060", + "061", + "062", + "064", + "065" + ] + }, + { + "channel": "Particle", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_947_Athena_Commando_M_Football20Referee_IN7EY": { + "templateId": "AthenaCharacter:CID_947_Athena_Commando_M_Football20Referee_IN7EY", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_948_Athena_Commando_M_Football20Referee_B_QPXTH": { + "templateId": "AthenaCharacter:CID_948_Athena_Commando_M_Football20Referee_B_QPXTH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_949_Athena_Commando_M_Football20Referee_C_SMMEY": { + "templateId": "AthenaCharacter:CID_949_Athena_Commando_M_Football20Referee_C_SMMEY", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_950_Athena_Commando_M_Football20Referee_D_MIHME": { + "templateId": "AthenaCharacter:CID_950_Athena_Commando_M_Football20Referee_D_MIHME", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_951_Athena_Commando_M_Football20Referee_E_QBIBA": { + "templateId": "AthenaCharacter:CID_951_Athena_Commando_M_Football20Referee_E_QBIBA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_952_Athena_Commando_F_Football20Referee_ZX4IC": { + "templateId": "AthenaCharacter:CID_952_Athena_Commando_F_Football20Referee_ZX4IC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_953_Athena_Commando_F_Football20Referee_B_5SV7Q": { + "templateId": "AthenaCharacter:CID_953_Athena_Commando_F_Football20Referee_B_5SV7Q", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_954_Athena_Commando_F_Football20Referee_C_NAQ0G": { + "templateId": "AthenaCharacter:CID_954_Athena_Commando_F_Football20Referee_C_NAQ0G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_955_Athena_Commando_F_Football20Referee_D_OFZIL": { + "templateId": "AthenaCharacter:CID_955_Athena_Commando_F_Football20Referee_D_OFZIL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_956_Athena_Commando_F_Football20Referee_E_DQTP6": { + "templateId": "AthenaCharacter:CID_956_Athena_Commando_F_Football20Referee_E_DQTP6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_957_Athena_Commando_F_Ponytail": { + "templateId": "AthenaCharacter:CID_957_Athena_Commando_F_Ponytail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_958_Athena_Commando_M_PieMan": { + "templateId": "AthenaCharacter:CID_958_Athena_Commando_M_PieMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_959_Athena_Commando_M_Corny": { + "templateId": "AthenaCharacter:CID_959_Athena_Commando_M_Corny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_960_Athena_Commando_M_Cosmos": { + "templateId": "AthenaCharacter:CID_960_Athena_Commando_M_Cosmos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + }, + { + "channel": "Parts", + "active": "Stage3", + "owned": [ + "Stage3", + "Stage4" + ] + }, + { + "channel": "JerseyColor", + "active": "Stage5", + "owned": [ + "Stage5", + "Stage6" + ] + }, + { + "channel": "Pattern", + "active": "Stage7", + "owned": [ + "Stage7", + "Stage8" + ] + }, + { + "channel": "Numeric", + "active": "Stage9", + "owned": [ + "Stage9", + "Stage10" + ] + }, + { + "channel": "ClothingColor", + "active": "Stage11", + "owned": [ + "Stage11", + "Stage12" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_961_Athena_Commando_F_Shapeshifter": { + "templateId": "AthenaCharacter:CID_961_Athena_Commando_F_Shapeshifter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_962_Athena_Commando_M_FlapjackWrangler": { + "templateId": "AthenaCharacter:CID_962_Athena_Commando_M_FlapjackWrangler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6", + "Stage7" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_963_Athena_Commando_F_Lexa": { + "templateId": "AthenaCharacter:CID_963_Athena_Commando_F_Lexa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_964_Athena_Commando_M_Historian_869BC": { + "templateId": "AthenaCharacter:CID_964_Athena_Commando_M_Historian_869BC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_965_Athena_Commando_F_SpaceFighter": { + "templateId": "AthenaCharacter:CID_965_Athena_Commando_F_SpaceFighter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_966_Athena_Commando_M_FutureSamurai": { + "templateId": "AthenaCharacter:CID_966_Athena_Commando_M_FutureSamurai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_967_Athena_Commando_M_AncientGladiator": { + "templateId": "AthenaCharacter:CID_967_Athena_Commando_M_AncientGladiator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage5", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat5", + "Mat4", + "Mat6" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_968_Athena_Commando_M_TeriyakiFishElf": { + "templateId": "AthenaCharacter:CID_968_Athena_Commando_M_TeriyakiFishElf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_969_Athena_Commando_M_SnowmanFashion": { + "templateId": "AthenaCharacter:CID_969_Athena_Commando_M_SnowmanFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_970_Athena_Commando_F_RenegadeRaiderHoliday": { + "templateId": "AthenaCharacter:CID_970_Athena_Commando_F_RenegadeRaiderHoliday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_971_Athena_Commando_M_Jupiter_S0Z6M": { + "templateId": "AthenaCharacter:CID_971_Athena_Commando_M_Jupiter_S0Z6M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_972_Athena_Commando_F_ArcticCamoWoods": { + "templateId": "AthenaCharacter:CID_972_Athena_Commando_F_ArcticCamoWoods", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_973_Athena_Commando_F_Mechstructor": { + "templateId": "AthenaCharacter:CID_973_Athena_Commando_F_Mechstructor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_974_Athena_Commando_F_StreetFashionHoliday": { + "templateId": "AthenaCharacter:CID_974_Athena_Commando_F_StreetFashionHoliday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_975_Athena_Commando_F_Cherry_B8XN5": { + "templateId": "AthenaCharacter:CID_975_Athena_Commando_F_Cherry_B8XN5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_976_Athena_Commando_F_Wombat_0GRTQ": { + "templateId": "AthenaCharacter:CID_976_Athena_Commando_F_Wombat_0GRTQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_977_Athena_Commando_M_Wombat_R7Q8K": { + "templateId": "AthenaCharacter:CID_977_Athena_Commando_M_Wombat_R7Q8K", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_978_Athena_Commando_M_FancyCandy": { + "templateId": "AthenaCharacter:CID_978_Athena_Commando_M_FancyCandy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_979_Athena_Commando_M_Snowboarder": { + "templateId": "AthenaCharacter:CID_979_Athena_Commando_M_Snowboarder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_980_Athena_Commando_F_Elf": { + "templateId": "AthenaCharacter:CID_980_Athena_Commando_F_Elf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_981_Athena_Commando_M_JonesyHoliday": { + "templateId": "AthenaCharacter:CID_981_Athena_Commando_M_JonesyHoliday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_982_Athena_Commando_M_DriftWinter": { + "templateId": "AthenaCharacter:CID_982_Athena_Commando_M_DriftWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_983_Athena_Commando_F_CupidWinter": { + "templateId": "AthenaCharacter:CID_983_Athena_Commando_F_CupidWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_984_Athena_Commando_M_HolidayLights": { + "templateId": "AthenaCharacter:CID_984_Athena_Commando_M_HolidayLights", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_985_Athena_Commando_M_TipToe_5L424": { + "templateId": "AthenaCharacter:CID_985_Athena_Commando_M_TipToe_5L424", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_986_Athena_Commando_M_PlumRetro_4AJA2": { + "templateId": "AthenaCharacter:CID_986_Athena_Commando_M_PlumRetro_4AJA2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_987_Athena_Commando_M_Frostbyte": { + "templateId": "AthenaCharacter:CID_987_Athena_Commando_M_Frostbyte", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_988_Athena_Commando_M_Tiramisu_5KHZP": { + "templateId": "AthenaCharacter:CID_988_Athena_Commando_M_Tiramisu_5KHZP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_989_Athena_Commando_M_ProgressiveJonesy": { + "templateId": "AthenaCharacter:CID_989_Athena_Commando_M_ProgressiveJonesy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage6", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_990_Athena_Commando_M_GrilledCheese_SNX4K": { + "templateId": "AthenaCharacter:CID_990_Athena_Commando_M_GrilledCheese_SNX4K", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_991_Athena_Commando_M_Nightmare_NM1C8": { + "templateId": "AthenaCharacter:CID_991_Athena_Commando_M_Nightmare_NM1C8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_992_Athena_Commando_F_Typhoon_LPFU6": { + "templateId": "AthenaCharacter:CID_992_Athena_Commando_F_Typhoon_LPFU6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_993_Athena_Commando_M_TyphoonRobot_2YRGV": { + "templateId": "AthenaCharacter:CID_993_Athena_Commando_M_TyphoonRobot_2YRGV", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_994_Athena_Commando_M_Lexa": { + "templateId": "AthenaCharacter:CID_994_Athena_Commando_M_Lexa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_995_Athena_Commando_M_GlobalFB_H5OIJ": { + "templateId": "AthenaCharacter:CID_995_Athena_Commando_M_GlobalFB_H5OIJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "011", + "owned": [ + "011", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "012", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_996_Athena_Commando_M_GlobalFB_B_RVED4": { + "templateId": "AthenaCharacter:CID_996_Athena_Commando_M_GlobalFB_B_RVED4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "010", + "owned": [ + "010", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "011", + "012", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_997_Athena_Commando_M_GlobalFB_C_N6I4H": { + "templateId": "AthenaCharacter:CID_997_Athena_Commando_M_GlobalFB_C_N6I4H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "012", + "owned": [ + "012", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_998_Athena_Commando_M_GlobalFB_D_UTIB8": { + "templateId": "AthenaCharacter:CID_998_Athena_Commando_M_GlobalFB_D_UTIB8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "007", + "owned": [ + "007", + "001", + "002", + "003", + "004", + "005", + "006", + "008", + "009", + "010", + "011", + "012", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_999_Athena_Commando_M_GlobalFB_E_OISU6": { + "templateId": "AthenaCharacter:CID_999_Athena_Commando_M_GlobalFB_E_OISU6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_001_Athena_Commando_F_GlobalFB_HDL2W": { + "templateId": "AthenaCharacter:CID_A_001_Athena_Commando_F_GlobalFB_HDL2W", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "009", + "owned": [ + "009", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "010", + "011", + "012", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_002_Athena_Commando_F_GlobalFB_B_0CH64": { + "templateId": "AthenaCharacter:CID_A_002_Athena_Commando_F_GlobalFB_B_0CH64", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "017", + "owned": [ + "017", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "014", + "015", + "016", + "018", + "019", + "020", + "021", + "022", + "023", + "024" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_003_Athena_Commando_F_GlobalFB_C_J4H5J": { + "templateId": "AthenaCharacter:CID_A_003_Athena_Commando_F_GlobalFB_C_J4H5J", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "019", + "owned": [ + "019", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "014", + "015", + "016", + "017", + "018", + "020", + "021", + "022", + "023", + "024" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_004_Athena_Commando_F_GlobalFB_D_62OZ5": { + "templateId": "AthenaCharacter:CID_A_004_Athena_Commando_F_GlobalFB_D_62OZ5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "002", + "owned": [ + "002", + "001", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_005_Athena_Commando_F_GlobalFB_E_GTH5I": { + "templateId": "AthenaCharacter:CID_A_005_Athena_Commando_F_GlobalFB_E_GTH5I", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "016", + "owned": [ + "016", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "014", + "015", + "017", + "018", + "019", + "020", + "021", + "022", + "023", + "024" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_006_Athena_Commando_M_ConvoyTarantula_641PZ": { + "templateId": "AthenaCharacter:CID_A_006_Athena_Commando_M_ConvoyTarantula_641PZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_007_Athena_Commando_F_StreetFashionEclipse": { + "templateId": "AthenaCharacter:CID_A_007_Athena_Commando_F_StreetFashionEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_008_Athena_Commando_F_CombatDoll": { + "templateId": "AthenaCharacter:CID_A_008_Athena_Commando_F_CombatDoll", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_009_Athena_Commando_F_FoxWarrior_21B9R": { + "templateId": "AthenaCharacter:CID_A_009_Athena_Commando_F_FoxWarrior_21B9R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_010_Athena_Commando_M_Tar_46FMC": { + "templateId": "AthenaCharacter:CID_A_010_Athena_Commando_M_Tar_46FMC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_011_Athena_Commando_M_StreetCuddles": { + "templateId": "AthenaCharacter:CID_A_011_Athena_Commando_M_StreetCuddles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_012_Athena_Commando_M_Mainframe_V7Q8R": { + "templateId": "AthenaCharacter:CID_A_012_Athena_Commando_M_Mainframe_V7Q8R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_013_Athena_Commando_M_Mainframe_B_70Z5M": { + "templateId": "AthenaCharacter:CID_A_013_Athena_Commando_M_Mainframe_B_70Z5M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_014_Athena_Commando_M_Mainframe_C_YVDOL": { + "templateId": "AthenaCharacter:CID_A_014_Athena_Commando_M_Mainframe_C_YVDOL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_015_Athena_Commando_M_Mainframe_D_S625D": { + "templateId": "AthenaCharacter:CID_A_015_Athena_Commando_M_Mainframe_D_S625D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_016_Athena_Commando_M_Mainframe_E_KPZJL": { + "templateId": "AthenaCharacter:CID_A_016_Athena_Commando_M_Mainframe_E_KPZJL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_017_Athena_Commando_F_Mainframe_CYL17": { + "templateId": "AthenaCharacter:CID_A_017_Athena_Commando_F_Mainframe_CYL17", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_018_Athena_Commando_F_Mainframe_B_T6GY4": { + "templateId": "AthenaCharacter:CID_A_018_Athena_Commando_F_Mainframe_B_T6GY4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_019_Athena_Commando_F_Mainframe_C_U5RI4": { + "templateId": "AthenaCharacter:CID_A_019_Athena_Commando_F_Mainframe_C_U5RI4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_020_Athena_Commando_F_Mainframe_D_ZHVEM": { + "templateId": "AthenaCharacter:CID_A_020_Athena_Commando_F_Mainframe_D_ZHVEM", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_021_Athena_Commando_F_Mainframe_E_L34E4": { + "templateId": "AthenaCharacter:CID_A_021_Athena_Commando_F_Mainframe_E_L34E4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_022_Athena_Commando_F_Crush": { + "templateId": "AthenaCharacter:CID_A_022_Athena_Commando_F_Crush", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_023_Athena_Commando_M_Skirmish_W1N7H": { + "templateId": "AthenaCharacter:CID_A_023_Athena_Commando_M_Skirmish_W1N7H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_024_Athena_Commando_F_Skirmish_QW2BQ": { + "templateId": "AthenaCharacter:CID_A_024_Athena_Commando_F_Skirmish_QW2BQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_025_Athena_Commando_M_Kepler_UEN6V": { + "templateId": "AthenaCharacter:CID_A_025_Athena_Commando_M_Kepler_UEN6V", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_026_Athena_Commando_F_Kepler_2G59M": { + "templateId": "AthenaCharacter:CID_A_026_Athena_Commando_F_Kepler_2G59M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_027_Athena_Commando_F_CasualBomberLight": { + "templateId": "AthenaCharacter:CID_A_027_Athena_Commando_F_CasualBomberLight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_028_Athena_Commando_F_AncientGladiator": { + "templateId": "AthenaCharacter:CID_A_028_Athena_Commando_F_AncientGladiator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_029_Athena_Commando_M_LlamaHeroWinter_C83TZ": { + "templateId": "AthenaCharacter:CID_A_029_Athena_Commando_M_LlamaHeroWinter_C83TZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_031_Athena_Commando_M_Builder": { + "templateId": "AthenaCharacter:CID_A_031_Athena_Commando_M_Builder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_032_Athena_Commando_M_SpaceWarrior": { + "templateId": "AthenaCharacter:CID_A_032_Athena_Commando_M_SpaceWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_033_Athena_Commando_M_SmallFry_Z73EK": { + "templateId": "AthenaCharacter:CID_A_033_Athena_Commando_M_SmallFry_Z73EK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_034_Athena_Commando_F_CatBurglar": { + "templateId": "AthenaCharacter:CID_A_034_Athena_Commando_F_CatBurglar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_035_Athena_Commando_M_LionSoldier": { + "templateId": "AthenaCharacter:CID_A_035_Athena_Commando_M_LionSoldier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_036_Athena_Commando_F_Obsidian": { + "templateId": "AthenaCharacter:CID_A_036_Athena_Commando_F_Obsidian", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_037_Athena_Commando_F_DinoHunter": { + "templateId": "AthenaCharacter:CID_A_037_Athena_Commando_F_DinoHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_038_Athena_Commando_F_TowerSentinel": { + "templateId": "AthenaCharacter:CID_A_038_Athena_Commando_F_TowerSentinel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_039_Athena_Commando_M_ChickenWarrior": { + "templateId": "AthenaCharacter:CID_A_039_Athena_Commando_M_ChickenWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_040_Athena_Commando_F_Temple": { + "templateId": "AthenaCharacter:CID_A_040_Athena_Commando_F_Temple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_041_Athena_Commando_M_CubeNinja": { + "templateId": "AthenaCharacter:CID_A_041_Athena_Commando_M_CubeNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_042_Athena_Commando_F_Scholar": { + "templateId": "AthenaCharacter:CID_A_042_Athena_Commando_F_Scholar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_043_Athena_Commando_M_DarkMinion": { + "templateId": "AthenaCharacter:CID_A_043_Athena_Commando_M_DarkMinion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_044_Athena_Commando_F_NeonCatFashion_64JW3": { + "templateId": "AthenaCharacter:CID_A_044_Athena_Commando_F_NeonCatFashion_64JW3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_045_Athena_Commando_M_BananaLeader": { + "templateId": "AthenaCharacter:CID_A_045_Athena_Commando_M_BananaLeader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_046_Athena_Commando_F_AssembleR": { + "templateId": "AthenaCharacter:CID_A_046_Athena_Commando_F_AssembleR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_047_Athena_Commando_F_Windwalker": { + "templateId": "AthenaCharacter:CID_A_047_Athena_Commando_F_Windwalker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_048_Athena_Commando_F_SailorSquadLeader": { + "templateId": "AthenaCharacter:CID_A_048_Athena_Commando_F_SailorSquadLeader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_049_Athena_Commando_F_SailorSquadRebel": { + "templateId": "AthenaCharacter:CID_A_049_Athena_Commando_F_SailorSquadRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_050_Athena_Commando_F_SailorSquadRose": { + "templateId": "AthenaCharacter:CID_A_050_Athena_Commando_F_SailorSquadRose", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_051_Athena_Commando_M_HipHare": { + "templateId": "AthenaCharacter:CID_A_051_Athena_Commando_M_HipHare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_052_Athena_Commando_F_BunnyFashion": { + "templateId": "AthenaCharacter:CID_A_052_Athena_Commando_F_BunnyFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_053_Athena_Commando_F_BunnyFashion_B": { + "templateId": "AthenaCharacter:CID_A_053_Athena_Commando_F_BunnyFashion_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_054_Athena_Commando_F_BunnyFashion_C": { + "templateId": "AthenaCharacter:CID_A_054_Athena_Commando_F_BunnyFashion_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_055_Athena_Commando_F_BunnyFashion_D": { + "templateId": "AthenaCharacter:CID_A_055_Athena_Commando_F_BunnyFashion_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_056_Athena_Commando_F_BunnyFashion_E": { + "templateId": "AthenaCharacter:CID_A_056_Athena_Commando_F_BunnyFashion_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_057_Athena_Commando_F_TheGoldenSkeleton": { + "templateId": "AthenaCharacter:CID_A_057_Athena_Commando_F_TheGoldenSkeleton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_058_Athena_Commando_F_WickedDuck": { + "templateId": "AthenaCharacter:CID_A_058_Athena_Commando_F_WickedDuck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_059_Athena_Commando_M_WickedDuck": { + "templateId": "AthenaCharacter:CID_A_059_Athena_Commando_M_WickedDuck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_060_Athena_Commando_M_Daytrader_8MRO2": { + "templateId": "AthenaCharacter:CID_A_060_Athena_Commando_M_Daytrader_8MRO2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_061_Athena_Commando_M_PaddedArmorOrder": { + "templateId": "AthenaCharacter:CID_A_061_Athena_Commando_M_PaddedArmorOrder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_062_Athena_Commando_F_Alchemy_XD6GP": { + "templateId": "AthenaCharacter:CID_A_062_Athena_Commando_F_Alchemy_XD6GP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_063_Athena_Commando_F_CottonCandy": { + "templateId": "AthenaCharacter:CID_A_063_Athena_Commando_F_CottonCandy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_064_Athena_Commando_F_SurvivalSpecialistAutumn": { + "templateId": "AthenaCharacter:CID_A_064_Athena_Commando_F_SurvivalSpecialistAutumn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_068_Athena_Commando_M_TerrainMan": { + "templateId": "AthenaCharacter:CID_A_068_Athena_Commando_M_TerrainMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_069_Athena_Commando_M_Accumulate": { + "templateId": "AthenaCharacter:CID_A_069_Athena_Commando_M_Accumulate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_070_Athena_Commando_M_Cavern_3I6I1": { + "templateId": "AthenaCharacter:CID_A_070_Athena_Commando_M_Cavern_3I6I1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_071_Athena_Commando_M_Cranium": { + "templateId": "AthenaCharacter:CID_A_071_Athena_Commando_M_Cranium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_072_Athena_Commando_M_BuffCatComic_XG5XC": { + "templateId": "AthenaCharacter:CID_A_072_Athena_Commando_M_BuffCatComic_XG5XC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_073_Athena_Commando_F_TacoKnight": { + "templateId": "AthenaCharacter:CID_A_073_Athena_Commando_F_TacoKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_074_Athena_Commando_M_TomatoKnight": { + "templateId": "AthenaCharacter:CID_A_074_Athena_Commando_M_TomatoKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_075_Athena_Commando_M_DurrburgerKnight": { + "templateId": "AthenaCharacter:CID_A_075_Athena_Commando_M_DurrburgerKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_076_Athena_Commando_F_DinoCollector": { + "templateId": "AthenaCharacter:CID_A_076_Athena_Commando_F_DinoCollector", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_077_Athena_Commando_F_ArmoredEngineer": { + "templateId": "AthenaCharacter:CID_A_077_Athena_Commando_F_ArmoredEngineer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_078_Athena_Commando_M_Bicycle": { + "templateId": "AthenaCharacter:CID_A_078_Athena_Commando_M_Bicycle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_079_Athena_Commando_M_RaptorKnight": { + "templateId": "AthenaCharacter:CID_A_079_Athena_Commando_M_RaptorKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_080_Athena_Commando_M_Hardwood_I15AL": { + "templateId": "AthenaCharacter:CID_A_080_Athena_Commando_M_Hardwood_I15AL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "027", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "028", + "017", + "018", + "029", + "019", + "031", + "020", + "021", + "022", + "023", + "030", + "024", + "025", + "026", + "032", + "033" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_081_Athena_Commando_M_Hardwood_B_JRP29": { + "templateId": "AthenaCharacter:CID_A_081_Athena_Commando_M_Hardwood_B_JRP29", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "027", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "028", + "017", + "018", + "029", + "019", + "031", + "020", + "021", + "022", + "023", + "030", + "024", + "025", + "026", + "032", + "033" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_082_Athena_Commando_M_Hardwood_C_YS5XC": { + "templateId": "AthenaCharacter:CID_A_082_Athena_Commando_M_Hardwood_C_YS5XC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "027", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "028", + "017", + "018", + "029", + "019", + "031", + "020", + "021", + "022", + "023", + "030", + "024", + "025", + "026", + "032", + "033" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_083_Athena_Commando_M_Hardwood_D_7S0PN": { + "templateId": "AthenaCharacter:CID_A_083_Athena_Commando_M_Hardwood_D_7S0PN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "027", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "028", + "017", + "018", + "029", + "019", + "031", + "020", + "021", + "022", + "023", + "030", + "024", + "025", + "026", + "032", + "033" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_084_Athena_Commando_M_Hardwood_E_II9YS": { + "templateId": "AthenaCharacter:CID_A_084_Athena_Commando_M_Hardwood_E_II9YS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "027", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "028", + "017", + "018", + "029", + "019", + "031", + "020", + "021", + "022", + "023", + "030", + "024", + "025", + "032", + "033" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_085_Athena_Commando_F_Hardwood_K7ZZ1": { + "templateId": "AthenaCharacter:CID_A_085_Athena_Commando_F_Hardwood_K7ZZ1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "027", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "028", + "017", + "018", + "029", + "019", + "030", + "020", + "021", + "022", + "023", + "031", + "024", + "025", + "026", + "032", + "033" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_086_Athena_Commando_F_Hardwood_B_B7ZQA": { + "templateId": "AthenaCharacter:CID_A_086_Athena_Commando_F_Hardwood_B_B7ZQA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "027", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "028", + "017", + "018", + "029", + "019", + "030", + "020", + "021", + "022", + "023", + "031", + "024", + "025", + "026", + "032", + "033" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_087_Athena_Commando_F_Hardwood_C_AOU16": { + "templateId": "AthenaCharacter:CID_A_087_Athena_Commando_F_Hardwood_C_AOU16", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "027", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "028", + "017", + "018", + "029", + "019", + "030", + "020", + "021", + "022", + "023", + "031", + "024", + "025", + "026", + "032", + "033" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_088_Athena_Commando_F_Hardwood_D_WPHX2": { + "templateId": "AthenaCharacter:CID_A_088_Athena_Commando_F_Hardwood_D_WPHX2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "027", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "028", + "017", + "018", + "029", + "019", + "030", + "020", + "021", + "022", + "023", + "031", + "024", + "025", + "026", + "032", + "033" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_089_Athena_Commando_F_Hardwood_E_4TDWH": { + "templateId": "AthenaCharacter:CID_A_089_Athena_Commando_F_Hardwood_E_4TDWH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "027", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "028", + "017", + "018", + "029", + "019", + "030", + "020", + "021", + "022", + "023", + "031", + "024", + "025", + "026", + "032", + "033" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_090_Athena_Commando_M_Caveman": { + "templateId": "AthenaCharacter:CID_A_090_Athena_Commando_M_Caveman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_091_Athena_Commando_F_DarkElf": { + "templateId": "AthenaCharacter:CID_A_091_Athena_Commando_F_DarkElf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_092_Athena_Commando_M_Broccoli_PR297": { + "templateId": "AthenaCharacter:CID_A_092_Athena_Commando_M_Broccoli_PR297", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_093_Athena_Commando_F_StoneViper": { + "templateId": "AthenaCharacter:CID_A_093_Athena_Commando_F_StoneViper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_094_Athena_Commando_F_Cavern_33LMC": { + "templateId": "AthenaCharacter:CID_A_094_Athena_Commando_F_Cavern_33LMC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_095_Athena_Commando_M_DoubleAgentGrey": { + "templateId": "AthenaCharacter:CID_A_095_Athena_Commando_M_DoubleAgentGrey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_096_Athena_Commando_F_TaxiUpgradedMulticolor": { + "templateId": "AthenaCharacter:CID_A_096_Athena_Commando_F_TaxiUpgradedMulticolor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_097_Athena_Commando_F_WastelandWarrior": { + "templateId": "AthenaCharacter:CID_A_097_Athena_Commando_F_WastelandWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_098_Athena_Commando_F_SpartanFuture": { + "templateId": "AthenaCharacter:CID_A_098_Athena_Commando_F_SpartanFuture", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_099_Athena_Commando_F_Shrapnel": { + "templateId": "AthenaCharacter:CID_A_099_Athena_Commando_F_Shrapnel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_100_Athena_Commando_M_Downpour_KC39P": { + "templateId": "AthenaCharacter:CID_A_100_Athena_Commando_M_Downpour_KC39P", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_101_Athena_Commando_M_TacticalWoodlandBlue": { + "templateId": "AthenaCharacter:CID_A_101_Athena_Commando_M_TacticalWoodlandBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_102_Athena_Commando_M_AssembleL": { + "templateId": "AthenaCharacter:CID_A_102_Athena_Commando_M_AssembleL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_103_Athena_Commando_M_Grim_VM52M": { + "templateId": "AthenaCharacter:CID_A_103_Athena_Commando_M_Grim_VM52M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_104_Athena_Commando_M_TowerSentinel": { + "templateId": "AthenaCharacter:CID_A_104_Athena_Commando_M_TowerSentinel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_105_Athena_Commando_F_SpaceCuddles_5TEVA": { + "templateId": "AthenaCharacter:CID_A_105_Athena_Commando_F_SpaceCuddles_5TEVA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_106_Athena_Commando_F_FuturePinkGoal": { + "templateId": "AthenaCharacter:CID_A_106_Athena_Commando_F_FuturePinkGoal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_107_Athena_Commando_M_Lasso_JHZA3": { + "templateId": "AthenaCharacter:CID_A_107_Athena_Commando_M_Lasso_JHZA3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_108_Athena_Commando_M_LassoPolo_8GAM0": { + "templateId": "AthenaCharacter:CID_A_108_Athena_Commando_M_LassoPolo_8GAM0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_109_Athena_Commando_M_Emperor": { + "templateId": "AthenaCharacter:CID_A_109_Athena_Commando_M_Emperor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_110_Athena_Commando_M_AlienTrooper": { + "templateId": "AthenaCharacter:CID_A_110_Athena_Commando_M_AlienTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "003", + "owned": [ + "003", + "005", + "002", + "004", + "006", + "000", + "001" + ] + }, + { + "channel": "Parts", + "active": "Stage4", + "owned": [ + "Stage4", + "Stage2", + "Stage7", + "Stage1", + "Stage3", + "Stage5", + "Stage6" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat4", + "Mat1", + "Mat5", + "Mat6", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Pattern", + "active": "Mat6", + "owned": [ + "Mat6", + "Mat5", + "Mat2", + "Mat0", + "Mat4", + "Mat1", + "Mat3" + ] + }, + { + "channel": "Hair", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004", + "005", + "006" + ] + }, + { + "channel": "Numeric", + "active": "000", + "owned": [ + "000", + "005", + "001", + "002", + "003", + "004", + "006" + ] + }, + { + "channel": "ClothingColor", + "active": "000", + "owned": [ + "000", + "003", + "002", + "005", + "004", + "006", + "001" + ] + }, + { + "channel": "JerseyColor", + "active": "000", + "owned": [ + "000", + "003", + "006", + "002", + "004", + "005", + "001" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_111_Athena_Commando_M_Faux": { + "templateId": "AthenaCharacter:CID_A_111_Athena_Commando_M_Faux", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_112_Athena_Commando_M_Ruckus": { + "templateId": "AthenaCharacter:CID_A_112_Athena_Commando_M_Ruckus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_113_Athena_Commando_F_Innovator": { + "templateId": "AthenaCharacter:CID_A_113_Athena_Commando_F_Innovator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage3", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_114_Athena_Commando_F_Believer": { + "templateId": "AthenaCharacter:CID_A_114_Athena_Commando_F_Believer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_115_Athena_Commando_M_Antique": { + "templateId": "AthenaCharacter:CID_A_115_Athena_Commando_M_Antique", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_116_Athena_Commando_M_Invader": { + "templateId": "AthenaCharacter:CID_A_116_Athena_Commando_M_Invader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_117_Athena_Commando_F_Rockstar": { + "templateId": "AthenaCharacter:CID_A_117_Athena_Commando_F_Rockstar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_118_Athena_Commando_M_JonesyCattle": { + "templateId": "AthenaCharacter:CID_A_118_Athena_Commando_M_JonesyCattle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_119_Athena_Commando_M_Golf": { + "templateId": "AthenaCharacter:CID_A_119_Athena_Commando_M_Golf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_120_Athena_Commando_M_Golf_B": { + "templateId": "AthenaCharacter:CID_A_120_Athena_Commando_M_Golf_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_121_Athena_Commando_M_Golf_C": { + "templateId": "AthenaCharacter:CID_A_121_Athena_Commando_M_Golf_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_122_Athena_Commando_M_Golf_D": { + "templateId": "AthenaCharacter:CID_A_122_Athena_Commando_M_Golf_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_123_Athena_Commando_M_Golf_E": { + "templateId": "AthenaCharacter:CID_A_123_Athena_Commando_M_Golf_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_124_Athena_Commando_M_CavernArmored": { + "templateId": "AthenaCharacter:CID_A_124_Athena_Commando_M_CavernArmored", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_125_Athena_Commando_M_Firecracker": { + "templateId": "AthenaCharacter:CID_A_125_Athena_Commando_M_Firecracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_126_Athena_Commando_M_Linguini_PX0QU": { + "templateId": "AthenaCharacter:CID_A_126_Athena_Commando_M_Linguini_PX0QU", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_127_Athena_Commando_F_MechanicalEngineerSummer": { + "templateId": "AthenaCharacter:CID_A_127_Athena_Commando_F_MechanicalEngineerSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_128_Athena_Commando_M_Menace": { + "templateId": "AthenaCharacter:CID_A_128_Athena_Commando_M_Menace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_129_Athena_Commando_M_CatBurglarSummer": { + "templateId": "AthenaCharacter:CID_A_129_Athena_Commando_M_CatBurglarSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_130_Athena_Commando_M_HenchmanSummer": { + "templateId": "AthenaCharacter:CID_A_130_Athena_Commando_M_HenchmanSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_131_Athena_Commando_F_JurassicArchaeologySummer": { + "templateId": "AthenaCharacter:CID_A_131_Athena_Commando_F_JurassicArchaeologySummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_132_Athena_Commando_M_ScavengerFire": { + "templateId": "AthenaCharacter:CID_A_132_Athena_Commando_M_ScavengerFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_133_Athena_Commando_M_DarkVikingFire": { + "templateId": "AthenaCharacter:CID_A_133_Athena_Commando_M_DarkVikingFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_134_Athena_Commando_F_BandageNinjaFire": { + "templateId": "AthenaCharacter:CID_A_134_Athena_Commando_F_BandageNinjaFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_135_Athena_Commando_F_StreetFashionSummer": { + "templateId": "AthenaCharacter:CID_A_135_Athena_Commando_F_StreetFashionSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_136_Athena_Commando_M_Majesty_YR1GJ": { + "templateId": "AthenaCharacter:CID_A_136_Athena_Commando_M_Majesty_YR1GJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_137_Athena_Commando_M_MajestyBlue_3RVJS": { + "templateId": "AthenaCharacter:CID_A_137_Athena_Commando_M_MajestyBlue_3RVJS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_138_Athena_Commando_F_Foray_YQPB0": { + "templateId": "AthenaCharacter:CID_A_138_Athena_Commando_F_Foray_YQPB0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_139_Athena_Commando_M_Foray_SD8AA": { + "templateId": "AthenaCharacter:CID_A_139_Athena_Commando_M_Foray_SD8AA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_140_Athena_Commando_M_BlueCheese": { + "templateId": "AthenaCharacter:CID_A_140_Athena_Commando_M_BlueCheese", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_141_Athena_Commando_M_Dojo": { + "templateId": "AthenaCharacter:CID_A_141_Athena_Commando_M_Dojo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_142_Athena_Commando_M_Pliant": { + "templateId": "AthenaCharacter:CID_A_142_Athena_Commando_M_Pliant", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_143_Athena_Commando_M_Pliant_B": { + "templateId": "AthenaCharacter:CID_A_143_Athena_Commando_M_Pliant_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_144_Athena_Commando_M_Pliant_C": { + "templateId": "AthenaCharacter:CID_A_144_Athena_Commando_M_Pliant_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_145_Athena_Commando_M_Pliant_D": { + "templateId": "AthenaCharacter:CID_A_145_Athena_Commando_M_Pliant_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_146_Athena_Commando_M_Pliant_E": { + "templateId": "AthenaCharacter:CID_A_146_Athena_Commando_M_Pliant_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_147_Athena_Commando_F_Pliant": { + "templateId": "AthenaCharacter:CID_A_147_Athena_Commando_F_Pliant", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_148_Athena_Commando_F_Pliant_B": { + "templateId": "AthenaCharacter:CID_A_148_Athena_Commando_F_Pliant_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_149_Athena_Commando_F_Pliant_C": { + "templateId": "AthenaCharacter:CID_A_149_Athena_Commando_F_Pliant_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_150_Athena_Commando_F_Pliant_D": { + "templateId": "AthenaCharacter:CID_A_150_Athena_Commando_F_Pliant_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_151_Athena_Commando_F_Pliant_E": { + "templateId": "AthenaCharacter:CID_A_151_Athena_Commando_F_Pliant_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_152_Athena_Commando_F_Musician": { + "templateId": "AthenaCharacter:CID_A_152_Athena_Commando_F_Musician", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_153_Athena_Commando_F_BuffCatFan_TS2DR": { + "templateId": "AthenaCharacter:CID_A_153_Athena_Commando_F_BuffCatFan_TS2DR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_154_Athena_Commando_F_TreasureHunterFashionMint": { + "templateId": "AthenaCharacter:CID_A_154_Athena_Commando_F_TreasureHunterFashionMint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_155_Athena_Commando_F_BrightBomberMint": { + "templateId": "AthenaCharacter:CID_A_155_Athena_Commando_F_BrightBomberMint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_156_Athena_Commando_M_GoldenSkeletonMint": { + "templateId": "AthenaCharacter:CID_A_156_Athena_Commando_M_GoldenSkeletonMint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_157_Athena_Commando_F_Stereo_3A08Z": { + "templateId": "AthenaCharacter:CID_A_157_Athena_Commando_F_Stereo_3A08Z", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_158_Athena_Commando_F_Buffet_YC20H": { + "templateId": "AthenaCharacter:CID_A_158_Athena_Commando_F_Buffet_YC20H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_159_Athena_Commando_M_Cashier_7K3F0": { + "templateId": "AthenaCharacter:CID_A_159_Athena_Commando_M_Cashier_7K3F0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_160_Athena_Commando_M_SeesawSlipper": { + "templateId": "AthenaCharacter:CID_A_160_Athena_Commando_M_SeesawSlipper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_161_Athena_Commando_M_Quarrel_SLXQG": { + "templateId": "AthenaCharacter:CID_A_161_Athena_Commando_M_Quarrel_SLXQG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_162_Athena_Commando_F_Quarrel_E5D63": { + "templateId": "AthenaCharacter:CID_A_162_Athena_Commando_F_Quarrel_E5D63", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_163_Athena_Commando_M_Stands": { + "templateId": "AthenaCharacter:CID_A_163_Athena_Commando_M_Stands", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_164_Athena_Commando_M_Stands_B": { + "templateId": "AthenaCharacter:CID_A_164_Athena_Commando_M_Stands_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_165_Athena_Commando_M_Stands_C": { + "templateId": "AthenaCharacter:CID_A_165_Athena_Commando_M_Stands_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_166_Athena_Commando_M_Stands_D": { + "templateId": "AthenaCharacter:CID_A_166_Athena_Commando_M_Stands_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_167_Athena_Commando_M_Stands_E": { + "templateId": "AthenaCharacter:CID_A_167_Athena_Commando_M_Stands_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_168_Athena_Commando_F_Stands": { + "templateId": "AthenaCharacter:CID_A_168_Athena_Commando_F_Stands", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_169_Athena_Commando_F_Stands_B": { + "templateId": "AthenaCharacter:CID_A_169_Athena_Commando_F_Stands_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_170_Athena_Commando_F_Stands_C": { + "templateId": "AthenaCharacter:CID_A_170_Athena_Commando_F_Stands_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_171_Athena_Commando_F_Stands_D": { + "templateId": "AthenaCharacter:CID_A_171_Athena_Commando_F_Stands_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_172_Athena_Commando_F_Stands_E": { + "templateId": "AthenaCharacter:CID_A_172_Athena_Commando_F_Stands_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_173_Athena_Commando_F_PartyTrooperBuffet_55Z8G": { + "templateId": "AthenaCharacter:CID_A_173_Athena_Commando_F_PartyTrooperBuffet_55Z8G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_174_Athena_Commando_F_CelestialGlow": { + "templateId": "AthenaCharacter:CID_A_174_Athena_Commando_F_CelestialGlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_175_Athena_Commando_M_AlienSummer": { + "templateId": "AthenaCharacter:CID_A_175_Athena_Commando_M_AlienSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat5", + "owned": [ + "Mat5", + "Mat7", + "Mat8", + "Mat9" + ] + }, + { + "channel": "JerseyColor", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010" + ] + }, + { + "channel": "Particle", + "active": "011", + "owned": [ + "011", + "012", + "013", + "014", + "015", + "017", + "016" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_176_Athena_Commando_F_TieDyeFashion": { + "templateId": "AthenaCharacter:CID_A_176_Athena_Commando_F_TieDyeFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat6", + "owned": [ + "Mat6", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat7", + "Mat8", + "Mat9" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_177_Athena_Commando_F_TieDyeFashion_B": { + "templateId": "AthenaCharacter:CID_A_177_Athena_Commando_F_TieDyeFashion_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat5", + "owned": [ + "Mat5", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat6", + "Mat7", + "Mat8", + "Mat9" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_178_Athena_Commando_F_TieDyeFashion_C": { + "templateId": "AthenaCharacter:CID_A_178_Athena_Commando_F_TieDyeFashion_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat2", + "owned": [ + "Mat2", + "Mat1", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_179_Athena_Commando_F_TieDyeFashion_D": { + "templateId": "AthenaCharacter:CID_A_179_Athena_Commando_F_TieDyeFashion_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat4", + "owned": [ + "Mat4", + "Mat1", + "Mat2", + "Mat3", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_180_Athena_Commando_F_TieDyeFashion_E": { + "templateId": "AthenaCharacter:CID_A_180_Athena_Commando_F_TieDyeFashion_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_181_Athena_Commando_M_RuckusMini_A6VG6": { + "templateId": "AthenaCharacter:CID_A_181_Athena_Commando_M_RuckusMini_A6VG6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_182_Athena_Commando_M_Vivid_LZGQ3": { + "templateId": "AthenaCharacter:CID_A_182_Athena_Commando_M_Vivid_LZGQ3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_183_Athena_Commando_M_AntiquePal_S7A9W": { + "templateId": "AthenaCharacter:CID_A_183_Athena_Commando_M_AntiquePal_S7A9W", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_184_Athena_Commando_M_NinjaWolf_F09O3": { + "templateId": "AthenaCharacter:CID_A_184_Athena_Commando_M_NinjaWolf_F09O3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_185_Athena_Commando_M_Polygon": { + "templateId": "AthenaCharacter:CID_A_185_Athena_Commando_M_Polygon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_186_Athena_Commando_M_Lars": { + "templateId": "AthenaCharacter:CID_A_186_Athena_Commando_M_Lars", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_187_Athena_Commando_F_Monarch": { + "templateId": "AthenaCharacter:CID_A_187_Athena_Commando_F_Monarch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_188_Athena_Commando_M_ColorBlock": { + "templateId": "AthenaCharacter:CID_A_188_Athena_Commando_M_ColorBlock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_189_Athena_Commando_M_Lavish_HUU31": { + "templateId": "AthenaCharacter:CID_A_189_Athena_Commando_M_Lavish_HUU31", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_190_Athena_Commando_M_AlienAgent": { + "templateId": "AthenaCharacter:CID_A_190_Athena_Commando_M_AlienAgent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_191_Athena_Commando_M_AlienFlora": { + "templateId": "AthenaCharacter:CID_A_191_Athena_Commando_M_AlienFlora", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_192_Athena_Commando_F_Suspenders": { + "templateId": "AthenaCharacter:CID_A_192_Athena_Commando_F_Suspenders", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_193_Athena_Commando_M_Dragonfruit_7N3A3": { + "templateId": "AthenaCharacter:CID_A_193_Athena_Commando_M_Dragonfruit_7N3A3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_194_Athena_Commando_F_AngelDark": { + "templateId": "AthenaCharacter:CID_A_194_Athena_Commando_F_AngelDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_195_Athena_Commando_M_Crisis": { + "templateId": "AthenaCharacter:CID_A_195_Athena_Commando_M_Crisis", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_196_Athena_Commando_F_FNCSGreen": { + "templateId": "AthenaCharacter:CID_A_196_Athena_Commando_F_FNCSGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_197_Athena_Commando_M_Clash": { + "templateId": "AthenaCharacter:CID_A_197_Athena_Commando_M_Clash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_198_Athena_Commando_M_CerealBox": { + "templateId": "AthenaCharacter:CID_A_198_Athena_Commando_M_CerealBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_199_Athena_Commando_M_SpaceChimp": { + "templateId": "AthenaCharacter:CID_A_199_Athena_Commando_M_SpaceChimp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_200_Athena_Commando_F_GhostHunter": { + "templateId": "AthenaCharacter:CID_A_200_Athena_Commando_F_GhostHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_201_Athena_Commando_M_TeriyakiFishToon": { + "templateId": "AthenaCharacter:CID_A_201_Athena_Commando_M_TeriyakiFishToon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "039", + "041", + "042", + "044", + "031", + "046", + "047", + "022", + "034", + "035", + "032", + "023", + "027", + "024", + "036", + "025", + "026", + "033", + "040", + "037", + "029" + ] + }, + { + "channel": "JerseyColor", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "000" + ] + }, + { + "channel": "PetTemperament", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "000" + ] + }, + { + "channel": "Hair", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "000" + ] + }, + { + "channel": "Pattern", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "000" + ] + }, + { + "channel": "ClothingColor", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "000" + ] + }, + { + "channel": "Emissive", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "000" + ] + }, + { + "channel": "Numeric", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "000" + ] + }, + { + "channel": "Particle", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Progressive", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "000" + ] + }, + { + "channel": "ProfileBanner", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "000" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_202_Athena_Commando_F_Division": { + "templateId": "AthenaCharacter:CID_A_202_Athena_Commando_F_Division", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_203_Athena_Commando_F_PunkKoi": { + "templateId": "AthenaCharacter:CID_A_203_Athena_Commando_F_PunkKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6", + "Stage7" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_204_Athena_Commando_M_ClashV_SQNVJ": { + "templateId": "AthenaCharacter:CID_A_204_Athena_Commando_M_ClashV_SQNVJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_205_Athena_Commando_F_TextileRam_GMRJ0": { + "templateId": "AthenaCharacter:CID_A_205_Athena_Commando_F_TextileRam_GMRJ0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive0" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_206_Athena_Commando_F_TextileSparkle_V8YSA": { + "templateId": "AthenaCharacter:CID_A_206_Athena_Commando_F_TextileSparkle_V8YSA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Emissive", + "active": "Emissive2", + "owned": [ + "Emissive2", + "Emissive0" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_207_Athena_Commando_M_TextileKnight_9TE8L": { + "templateId": "AthenaCharacter:CID_A_207_Athena_Commando_M_TextileKnight_9TE8L", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_208_Athena_Commando_M_TextilePup_C85OD": { + "templateId": "AthenaCharacter:CID_A_208_Athena_Commando_M_TextilePup_C85OD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_209_Athena_Commando_F_Werewolf": { + "templateId": "AthenaCharacter:CID_A_209_Athena_Commando_F_Werewolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_210_Athena_Commando_F_RenegadeSkull": { + "templateId": "AthenaCharacter:CID_A_210_Athena_Commando_F_RenegadeSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_211_Athena_Commando_M_Psyche_JWQP3": { + "templateId": "AthenaCharacter:CID_A_211_Athena_Commando_M_Psyche_JWQP3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_212_Athena_Commando_M_Tomcat_M1Z6G": { + "templateId": "AthenaCharacter:CID_A_212_Athena_Commando_M_Tomcat_M1Z6G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_213_Athena_Commando_M_CritterCuddle": { + "templateId": "AthenaCharacter:CID_A_213_Athena_Commando_M_CritterCuddle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_214_Athena_Commando_M_CritterFrenzy_YDM1L": { + "templateId": "AthenaCharacter:CID_A_214_Athena_Commando_M_CritterFrenzy_YDM1L", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_215_Athena_Commando_F_SunriseCastle_48TIZ": { + "templateId": "AthenaCharacter:CID_A_215_Athena_Commando_F_SunriseCastle_48TIZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_216_Athena_Commando_M_SunrisePalace_BBQY0": { + "templateId": "AthenaCharacter:CID_A_216_Athena_Commando_M_SunrisePalace_BBQY0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_217_Athena_Commando_M_CritterRaven": { + "templateId": "AthenaCharacter:CID_A_217_Athena_Commando_M_CritterRaven", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_218_Athena_Commando_M_CritterManiac_KV6J0": { + "templateId": "AthenaCharacter:CID_A_218_Athena_Commando_M_CritterManiac_KV6J0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_219_Athena_Commando_M_Giggle_C2UK0": { + "templateId": "AthenaCharacter:CID_A_219_Athena_Commando_M_Giggle_C2UK0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_220_Athena_Commando_F_PinkEmo": { + "templateId": "AthenaCharacter:CID_A_220_Athena_Commando_F_PinkEmo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_221_Athena_Commando_M_Relish_8364H": { + "templateId": "AthenaCharacter:CID_A_221_Athena_Commando_M_Relish_8364H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_222_Athena_Commando_F_Relish_G6S5T": { + "templateId": "AthenaCharacter:CID_A_222_Athena_Commando_F_Relish_G6S5T", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_223_Athena_Commando_M_Glitz_MJ5WQ": { + "templateId": "AthenaCharacter:CID_A_223_Athena_Commando_M_Glitz_MJ5WQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_224_Athena_Commando_F_ScholarGhoul": { + "templateId": "AthenaCharacter:CID_A_224_Athena_Commando_F_ScholarGhoul", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_225_Athena_Commando_F_CubeQueen": { + "templateId": "AthenaCharacter:CID_A_225_Athena_Commando_F_CubeQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_226_Athena_Commando_M_SweetTeriyakiRed": { + "templateId": "AthenaCharacter:CID_A_226_Athena_Commando_M_SweetTeriyakiRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2", + "Emissive3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_227_Athena_Commando_F_BistroAstronaut_JJLK5": { + "templateId": "AthenaCharacter:CID_A_227_Athena_Commando_F_BistroAstronaut_JJLK5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_228_Athena_Commando_M_DisguiseBlack": { + "templateId": "AthenaCharacter:CID_A_228_Athena_Commando_M_DisguiseBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage3", + "owned": [ + "Stage3", + "Stage1", + "Stage2", + "Stage4", + "Stage5", + "Stage6", + "Stage7", + "Stage8" + ] + }, + { + "channel": "Material", + "active": "Mat5", + "owned": [ + "Mat5", + "Mat2", + "Mat3", + "Mat4", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_229_Athena_Commando_F_DisguiseBlack": { + "templateId": "AthenaCharacter:CID_A_229_Athena_Commando_F_DisguiseBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage5", + "owned": [ + "Stage5", + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage6", + "Stage7", + "Stage8" + ] + }, + { + "channel": "Material", + "active": "Mat5", + "owned": [ + "Mat5", + "Mat2", + "Mat3", + "Mat4", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_230_Athena_Commando_M_DriftHorror": { + "templateId": "AthenaCharacter:CID_A_230_Athena_Commando_M_DriftHorror", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_231_Athena_Commando_F_Ashes_TKGK9": { + "templateId": "AthenaCharacter:CID_A_231_Athena_Commando_F_Ashes_TKGK9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_232_Athena_Commando_F_CritterStreak_YILHR": { + "templateId": "AthenaCharacter:CID_A_232_Athena_Commando_F_CritterStreak_YILHR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_233_Athena_Commando_M_Grasshopper_5GTT3": { + "templateId": "AthenaCharacter:CID_A_233_Athena_Commando_M_Grasshopper_5GTT3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_234_Athena_Commando_M_Grasshopper_A_57ARK": { + "templateId": "AthenaCharacter:CID_A_234_Athena_Commando_M_Grasshopper_A_57ARK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_235_Athena_Commando_M_Grasshopper_B_RHQUY": { + "templateId": "AthenaCharacter:CID_A_235_Athena_Commando_M_Grasshopper_B_RHQUY", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_236_Athena_Commando_M_Grasshopper_C_47TZ8": { + "templateId": "AthenaCharacter:CID_A_236_Athena_Commando_M_Grasshopper_C_47TZ8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_237_Athena_Commando_M_Grasshopper_D_5OEIK": { + "templateId": "AthenaCharacter:CID_A_237_Athena_Commando_M_Grasshopper_D_5OEIK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_238_Athena_Commando_M_Grasshopper_E_Q14K1": { + "templateId": "AthenaCharacter:CID_A_238_Athena_Commando_M_Grasshopper_E_Q14K1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_239_Athena_Commando_F_Grasshopper_H6LB7": { + "templateId": "AthenaCharacter:CID_A_239_Athena_Commando_F_Grasshopper_H6LB7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_240_Athena_Commando_F_Grasshopper_B_9RSI1": { + "templateId": "AthenaCharacter:CID_A_240_Athena_Commando_F_Grasshopper_B_9RSI1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_241_Athena_Commando_F_Grasshopper_C_QGV1I": { + "templateId": "AthenaCharacter:CID_A_241_Athena_Commando_F_Grasshopper_C_QGV1I", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_242_Athena_Commando_F_Grasshopper_D_EIQ7X": { + "templateId": "AthenaCharacter:CID_A_242_Athena_Commando_F_Grasshopper_D_EIQ7X", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_243_Athena_Commando_F_Grasshopper_E_L6I24": { + "templateId": "AthenaCharacter:CID_A_243_Athena_Commando_F_Grasshopper_E_L6I24", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_244_Athena_Commando_M_ZombieElastic": { + "templateId": "AthenaCharacter:CID_A_244_Athena_Commando_M_ZombieElastic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat8", + "owned": [ + "Mat8", + "Mat9", + "Mat10" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004", + "005", + "006" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_245_Athena_Commando_M_ZombieElastic_B": { + "templateId": "AthenaCharacter:CID_A_245_Athena_Commando_M_ZombieElastic_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat8", + "owned": [ + "Mat8", + "Mat9", + "Mat10" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "004", + "owned": [ + "004", + "000", + "001", + "002", + "003", + "005", + "006" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_246_Athena_Commando_M_ZombieElastic_C": { + "templateId": "AthenaCharacter:CID_A_246_Athena_Commando_M_ZombieElastic_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat8", + "owned": [ + "Mat8", + "Mat9", + "Mat10" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "003", + "owned": [ + "003", + "000", + "001", + "002", + "004", + "005", + "006" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_247_Athena_Commando_M_ZombieElastic_D": { + "templateId": "AthenaCharacter:CID_A_247_Athena_Commando_M_ZombieElastic_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat8", + "owned": [ + "Mat8", + "Mat9", + "Mat10" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "005", + "owned": [ + "005", + "000", + "001", + "002", + "003", + "004", + "006" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_248_Athena_Commando_M_ZombieElastic_E": { + "templateId": "AthenaCharacter:CID_A_248_Athena_Commando_M_ZombieElastic_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat8", + "owned": [ + "Mat8", + "Mat9", + "Mat10" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "001", + "owned": [ + "001", + "000", + "002", + "003", + "004", + "005", + "006" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_249_Athena_Commando_F_ZombieElastic": { + "templateId": "AthenaCharacter:CID_A_249_Athena_Commando_F_ZombieElastic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat8", + "owned": [ + "Mat8", + "Mat9", + "Mat10" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003", + "004", + "005", + "006" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_250_Athena_Commando_F_ZombieElastic_B": { + "templateId": "AthenaCharacter:CID_A_250_Athena_Commando_F_ZombieElastic_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat8", + "owned": [ + "Mat8", + "Mat9", + "Mat10" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "006", + "owned": [ + "006", + "000", + "001", + "002", + "003", + "004", + "005" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_251_Athena_Commando_F_ZombieElastic_C": { + "templateId": "AthenaCharacter:CID_A_251_Athena_Commando_F_ZombieElastic_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat8", + "owned": [ + "Mat8", + "Mat9", + "Mat10" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "002", + "owned": [ + "002", + "000", + "001", + "003", + "004", + "005", + "006" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_252_Athena_Commando_F_ZombieElastic_D": { + "templateId": "AthenaCharacter:CID_A_252_Athena_Commando_F_ZombieElastic_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat8", + "owned": [ + "Mat8", + "Mat9", + "Mat10" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "004", + "owned": [ + "004", + "000", + "001", + "002", + "003", + "005", + "006" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_253_Athena_Commando_F_ZombieElastic_E": { + "templateId": "AthenaCharacter:CID_A_253_Athena_Commando_F_ZombieElastic_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Pattern", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat8", + "owned": [ + "Mat8", + "Mat9", + "Mat10" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "003", + "owned": [ + "003", + "000", + "001", + "002", + "004", + "005", + "006" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_254_Athena_Commando_M_ButterJack": { + "templateId": "AthenaCharacter:CID_A_254_Athena_Commando_M_ButterJack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_255_Athena_Commando_F_SAM_QA7ZS": { + "templateId": "AthenaCharacter:CID_A_255_Athena_Commando_F_SAM_QA7ZS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_256_Athena_Commando_F_UproarBraids_8IOZW": { + "templateId": "AthenaCharacter:CID_A_256_Athena_Commando_F_UproarBraids_8IOZW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_257_Athena_Commando_M_CatBurglar_Ghost": { + "templateId": "AthenaCharacter:CID_A_257_Athena_Commando_M_CatBurglar_Ghost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_258_Athena_Commando_F_NeonCatTech": { + "templateId": "AthenaCharacter:CID_A_258_Athena_Commando_F_NeonCatTech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_259_Athena_Commando_M_PeelyTech": { + "templateId": "AthenaCharacter:CID_A_259_Athena_Commando_M_PeelyTech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_260_Athena_Commando_M_CrazyEightTech": { + "templateId": "AthenaCharacter:CID_A_260_Athena_Commando_M_CrazyEightTech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_261_Athena_Commando_M_Headband": { + "templateId": "AthenaCharacter:CID_A_261_Athena_Commando_M_Headband", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_262_Athena_Commando_M_HeadbandK": { + "templateId": "AthenaCharacter:CID_A_262_Athena_Commando_M_HeadbandK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_263_Athena_Commando_M_HeadbandS": { + "templateId": "AthenaCharacter:CID_A_263_Athena_Commando_M_HeadbandS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_264_Athena_Commando_F_HeadbandS": { + "templateId": "AthenaCharacter:CID_A_264_Athena_Commando_F_HeadbandS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_265_Athena_Commando_M_Grandeur_TBC0O": { + "templateId": "AthenaCharacter:CID_A_265_Athena_Commando_M_Grandeur_TBC0O", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_266_Athena_Commando_F_Grandeur_9CO1M": { + "templateId": "AthenaCharacter:CID_A_266_Athena_Commando_F_Grandeur_9CO1M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_267_Athena_Commando_M_Nucleus_XVIVU": { + "templateId": "AthenaCharacter:CID_A_267_Athena_Commando_M_Nucleus_XVIVU", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_268_Athena_Commando_M_AssembleK": { + "templateId": "AthenaCharacter:CID_A_268_Athena_Commando_M_AssembleK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_269_Athena_Commando_F_HasteStreet_B563I": { + "templateId": "AthenaCharacter:CID_A_269_Athena_Commando_F_HasteStreet_B563I", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_270_Athena_Commando_M_HasteDouble_8GQHC": { + "templateId": "AthenaCharacter:CID_A_270_Athena_Commando_M_HasteDouble_8GQHC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_271_Athena_Commando_M_FNCS_Purple": { + "templateId": "AthenaCharacter:CID_A_271_Athena_Commando_M_FNCS_Purple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_272_Athena_Commando_F_Prime": { + "templateId": "AthenaCharacter:CID_A_272_Athena_Commando_F_Prime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_273_Athena_Commando_F_Prime_B": { + "templateId": "AthenaCharacter:CID_A_273_Athena_Commando_F_Prime_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_274_Athena_Commando_F_Prime_C": { + "templateId": "AthenaCharacter:CID_A_274_Athena_Commando_F_Prime_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_275_Athena_Commando_F_Prime_D": { + "templateId": "AthenaCharacter:CID_A_275_Athena_Commando_F_Prime_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_276_Athena_Commando_F_Prime_E": { + "templateId": "AthenaCharacter:CID_A_276_Athena_Commando_F_Prime_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_277_Athena_Commando_F_Prime_F": { + "templateId": "AthenaCharacter:CID_A_277_Athena_Commando_F_Prime_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_278_Athena_Commando_F_Prime_G": { + "templateId": "AthenaCharacter:CID_A_278_Athena_Commando_F_Prime_G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_279_Athena_Commando_M_Prime": { + "templateId": "AthenaCharacter:CID_A_279_Athena_Commando_M_Prime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_280_Athena_Commando_M_Prime_B": { + "templateId": "AthenaCharacter:CID_A_280_Athena_Commando_M_Prime_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_281_Athena_Commando_M_Prime_C": { + "templateId": "AthenaCharacter:CID_A_281_Athena_Commando_M_Prime_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_282_Athena_Commando_M_Prime_D": { + "templateId": "AthenaCharacter:CID_A_282_Athena_Commando_M_Prime_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_283_Athena_Commando_M_Prime_E": { + "templateId": "AthenaCharacter:CID_A_283_Athena_Commando_M_Prime_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_284_Athena_Commando_M_Prime_F": { + "templateId": "AthenaCharacter:CID_A_284_Athena_Commando_M_Prime_F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_285_Athena_Commando_M_Prime_G": { + "templateId": "AthenaCharacter:CID_A_285_Athena_Commando_M_Prime_G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_286_Athena_Commando_M_Turtleneck": { + "templateId": "AthenaCharacter:CID_A_286_Athena_Commando_M_Turtleneck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2", + "Emissive3", + "Emissive4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_287_Athena_Commando_M_LoneWolf": { + "templateId": "AthenaCharacter:CID_A_287_Athena_Commando_M_LoneWolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Parts", + "active": "Stage4", + "owned": [ + "Stage4", + "Stage5" + ] + }, + { + "channel": "Material", + "active": "Mat11", + "owned": [ + "Mat11", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_288_Athena_Commando_M_BuffLlama": { + "templateId": "AthenaCharacter:CID_A_288_Athena_Commando_M_BuffLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat3", + "Mat2", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_289_Athena_Commando_M_Gumball": { + "templateId": "AthenaCharacter:CID_A_289_Athena_Commando_M_Gumball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_290_Athena_Commando_F_Motorcyclist": { + "templateId": "AthenaCharacter:CID_A_290_Athena_Commando_F_Motorcyclist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage3" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + }, + { + "channel": "ClothingColor", + "active": "Mat3", + "owned": [ + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_291_Athena_Commando_F_IslandNomad": { + "templateId": "AthenaCharacter:CID_A_291_Athena_Commando_F_IslandNomad", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6", + "Stage7", + "Stage8", + "Stage9", + "Stage10", + "Stage11", + "Stage12", + "Stage13", + "Stage14", + "Stage18", + "Stage19", + "Stage20", + "Stage27", + "Stage28", + "Stage29", + "Stage21", + "Stage23", + "Stage22", + "Stage15", + "Stage16", + "Stage17", + "Stage24", + "Stage25", + "Stage26", + "Stage30", + "Stage31", + "Stage32" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_292_Athena_Commando_F_ExoSuit": { + "templateId": "AthenaCharacter:CID_A_292_Athena_Commando_F_ExoSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + }, + { + "channel": "Mesh", + "active": "Mat3", + "owned": [ + "Mat3", + "Mat4" + ] + }, + { + "channel": "ClothingColor", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_293_Athena_Commando_M_ParallelComic": { + "templateId": "AthenaCharacter:CID_A_293_Athena_Commando_M_ParallelComic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_294_Athena_Commando_F_RustyBolt_DB20X": { + "templateId": "AthenaCharacter:CID_A_294_Athena_Commando_F_RustyBolt_DB20X", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_295_Athena_Commando_M_RustyBolt_FEHJ0": { + "templateId": "AthenaCharacter:CID_A_295_Athena_Commando_M_RustyBolt_FEHJ0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_296_Athena_Commando_M_DarkPit": { + "templateId": "AthenaCharacter:CID_A_296_Athena_Commando_M_DarkPit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_297_Athena_Commando_F_Network": { + "templateId": "AthenaCharacter:CID_A_297_Athena_Commando_F_Network", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_298_Athena_Commando_M_Slither_EJ6DB": { + "templateId": "AthenaCharacter:CID_A_298_Athena_Commando_M_Slither_EJ6DB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_299_Athena_Commando_M_Slither_B_1X28D": { + "templateId": "AthenaCharacter:CID_A_299_Athena_Commando_M_Slither_B_1X28D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_300_Athena_Commando_M_Slither_C_IJ94B": { + "templateId": "AthenaCharacter:CID_A_300_Athena_Commando_M_Slither_C_IJ94B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_301_Athena_Commando_M_Slither_D_O7BM2": { + "templateId": "AthenaCharacter:CID_A_301_Athena_Commando_M_Slither_D_O7BM2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_302_Athena_Commando_M_Slither_E_U47BK": { + "templateId": "AthenaCharacter:CID_A_302_Athena_Commando_M_Slither_E_U47BK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_303_Athena_Commando_F_Slither_D0YX9": { + "templateId": "AthenaCharacter:CID_A_303_Athena_Commando_F_Slither_D0YX9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_304_Athena_Commando_F_Slither_B_MO4VZ": { + "templateId": "AthenaCharacter:CID_A_304_Athena_Commando_F_Slither_B_MO4VZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_305_Athena_Commando_F_Slither_C_UE2Q9": { + "templateId": "AthenaCharacter:CID_A_305_Athena_Commando_F_Slither_C_UE2Q9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_306_Athena_Commando_F_Slither_D_I6D2O": { + "templateId": "AthenaCharacter:CID_A_306_Athena_Commando_F_Slither_D_I6D2O", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_307_Athena_Commando_F_Slither_E_CSPZ8": { + "templateId": "AthenaCharacter:CID_A_307_Athena_Commando_F_Slither_E_CSPZ8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_308_Athena_Commando_F_Sunshine": { + "templateId": "AthenaCharacter:CID_A_308_Athena_Commando_F_Sunshine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_309_Athena_Commando_M_OrbitTeal_9RBJL": { + "templateId": "AthenaCharacter:CID_A_309_Athena_Commando_M_OrbitTeal_9RBJL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_310_Athena_Commando_F_ScholarFestive": { + "templateId": "AthenaCharacter:CID_A_310_Athena_Commando_F_ScholarFestive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_311_Athena_Commando_F_ScholarFestiveWinter": { + "templateId": "AthenaCharacter:CID_A_311_Athena_Commando_F_ScholarFestiveWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_312_Athena_Commando_F_RainbowHat": { + "templateId": "AthenaCharacter:CID_A_312_Athena_Commando_F_RainbowHat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_313_Athena_Commando_M_BlizzardBomber": { + "templateId": "AthenaCharacter:CID_A_313_Athena_Commando_M_BlizzardBomber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_314_Athena_Commando_F_NightCapsule_TAK2P": { + "templateId": "AthenaCharacter:CID_A_314_Athena_Commando_F_NightCapsule_TAK2P", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_315_Athena_Commando_M_NightCapsule_B31L1": { + "templateId": "AthenaCharacter:CID_A_315_Athena_Commando_M_NightCapsule_B31L1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_316_Athena_Commando_M_Lateral_K8XD9": { + "templateId": "AthenaCharacter:CID_A_316_Athena_Commando_M_Lateral_K8XD9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_317_Athena_Commando_F_Lateral_HIKN9": { + "templateId": "AthenaCharacter:CID_A_317_Athena_Commando_F_Lateral_HIKN9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_318_Athena_Commando_M_KittyWarrior": { + "templateId": "AthenaCharacter:CID_A_318_Athena_Commando_M_KittyWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_319_Athena_Commando_F_Peppermint": { + "templateId": "AthenaCharacter:CID_A_319_Athena_Commando_F_Peppermint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_320_Athena_Commando_M_CatburglarWinter": { + "templateId": "AthenaCharacter:CID_A_320_Athena_Commando_M_CatburglarWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_321_Athena_Commando_F_JurassicArchaeologyWinter": { + "templateId": "AthenaCharacter:CID_A_321_Athena_Commando_F_JurassicArchaeologyWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_322_Athena_Commando_F_RenegadeRaiderIce": { + "templateId": "AthenaCharacter:CID_A_322_Athena_Commando_F_RenegadeRaiderIce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_323_Athena_Commando_M_BananaWinter": { + "templateId": "AthenaCharacter:CID_A_323_Athena_Commando_M_BananaWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_324_Athena_Commando_F_InnovatorFestive_3FUPH": { + "templateId": "AthenaCharacter:CID_A_324_Athena_Commando_F_InnovatorFestive_3FUPH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_325_Athena_Commando_F_Scout": { + "templateId": "AthenaCharacter:CID_A_325_Athena_Commando_F_Scout", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_326_Athena_Commando_M_SharpDresserBlack": { + "templateId": "AthenaCharacter:CID_A_326_Athena_Commando_M_SharpDresserBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_327_Athena_Commando_M_SkullPunk_9QTQI": { + "templateId": "AthenaCharacter:CID_A_327_Athena_Commando_M_SkullPunk_9QTQI", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_328_Athena_Commando_M_Foe_S31ZA": { + "templateId": "AthenaCharacter:CID_A_328_Athena_Commando_M_Foe_S31ZA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_329_Athena_Commando_F_Uproar_I5N5Z": { + "templateId": "AthenaCharacter:CID_A_329_Athena_Commando_F_Uproar_I5N5Z", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_330_Athena_Commando_M_Keen_2DTXM": { + "templateId": "AthenaCharacter:CID_A_330_Athena_Commando_M_Keen_2DTXM", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_331_Athena_Commando_F_Keen_B4LF5": { + "templateId": "AthenaCharacter:CID_A_331_Athena_Commando_F_Keen_B4LF5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_332_Athena_Commando_F_PrimalFalcon_3ITKM": { + "templateId": "AthenaCharacter:CID_A_332_Athena_Commando_F_PrimalFalcon_3ITKM", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_333_Athena_Commando_M_Solstice_C1YP3": { + "templateId": "AthenaCharacter:CID_A_333_Athena_Commando_M_Solstice_C1YP3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_334_Athena_Commando_M_Sleek_U06KF": { + "templateId": "AthenaCharacter:CID_A_334_Athena_Commando_M_Sleek_U06KF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_335_Athena_Commando_M_SleekGlasses_8SYX2": { + "templateId": "AthenaCharacter:CID_A_335_Athena_Commando_M_SleekGlasses_8SYX2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_336_Athena_Commando_M_Zest_66JC5": { + "templateId": "AthenaCharacter:CID_A_336_Athena_Commando_M_Zest_66JC5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_337_Athena_Commando_F_Zest_ZBXGN": { + "templateId": "AthenaCharacter:CID_A_337_Athena_Commando_F_Zest_ZBXGN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_338_Athena_Commando_F_Galactic_HN9DO": { + "templateId": "AthenaCharacter:CID_A_338_Athena_Commando_F_Galactic_HN9DO", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_339_Athena_Commando_F_LoveQueen": { + "templateId": "AthenaCharacter:CID_A_339_Athena_Commando_F_LoveQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_340_Athena_Commando_M_Gimmick_HK68X": { + "templateId": "AthenaCharacter:CID_A_340_Athena_Commando_M_Gimmick_HK68X", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_341_Athena_Commando_F_Gimmick_RB41V": { + "templateId": "AthenaCharacter:CID_A_341_Athena_Commando_F_Gimmick_RB41V", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_342_Athena_Commando_M_Rover_WKA61": { + "templateId": "AthenaCharacter:CID_A_342_Athena_Commando_M_Rover_WKA61", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_343_Athena_Commando_F_Rover_KR41G": { + "templateId": "AthenaCharacter:CID_A_343_Athena_Commando_F_Rover_KR41G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_344_Athena_Commando_M_TreyCozy_6ZK7H": { + "templateId": "AthenaCharacter:CID_A_344_Athena_Commando_M_TreyCozy_6ZK7H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat2", + "owned": [ + "Mat2", + "Mat1", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_345_Athena_Commando_M_TreyCozy_B_4EP38": { + "templateId": "AthenaCharacter:CID_A_345_Athena_Commando_M_TreyCozy_B_4EP38", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_346_Athena_Commando_M_TreyCozy_C_7P9HU": { + "templateId": "AthenaCharacter:CID_A_346_Athena_Commando_M_TreyCozy_C_7P9HU", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_347_Athena_Commando_M_TreyCozy_D_OKJU9": { + "templateId": "AthenaCharacter:CID_A_347_Athena_Commando_M_TreyCozy_D_OKJU9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat3", + "owned": [ + "Mat3", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_348_Athena_Commando_M_TreyCozy_E_VH8P6": { + "templateId": "AthenaCharacter:CID_A_348_Athena_Commando_M_TreyCozy_E_VH8P6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat2", + "owned": [ + "Mat2", + "Mat1", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_349_Athena_Commando_F_TreyCozy_Y4D2W": { + "templateId": "AthenaCharacter:CID_A_349_Athena_Commando_F_TreyCozy_Y4D2W", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_350_Athena_Commando_F_TreyCozy_B_8TH8C": { + "templateId": "AthenaCharacter:CID_A_350_Athena_Commando_F_TreyCozy_B_8TH8C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat2", + "owned": [ + "Mat2", + "Mat1", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_351_Athena_Commando_F_TreyCozy_C_A9Q45": { + "templateId": "AthenaCharacter:CID_A_351_Athena_Commando_F_TreyCozy_C_A9Q45", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_352_Athena_Commando_F_TreyCozy_D_2CLR3": { + "templateId": "AthenaCharacter:CID_A_352_Athena_Commando_F_TreyCozy_D_2CLR3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat3", + "owned": [ + "Mat3", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_353_Athena_Commando_F_TreyCozy_E_JRL60": { + "templateId": "AthenaCharacter:CID_A_353_Athena_Commando_F_TreyCozy_E_JRL60", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat2", + "owned": [ + "Mat2", + "Mat1", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_354_Athena_Commando_F_ShatterFlyEclipse": { + "templateId": "AthenaCharacter:CID_A_354_Athena_Commando_F_ShatterFlyEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_355_Athena_Commando_M_PeelyToon": { + "templateId": "AthenaCharacter:CID_A_355_Athena_Commando_M_PeelyToon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_356_Athena_Commando_M_WeepingWoodsToon": { + "templateId": "AthenaCharacter:CID_A_356_Athena_Commando_M_WeepingWoodsToon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_357_Athena_Commando_F_ValentineFashion_B3S3R": { + "templateId": "AthenaCharacter:CID_A_357_Athena_Commando_F_ValentineFashion_B3S3R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_358_Athena_Commando_F_Lurk": { + "templateId": "AthenaCharacter:CID_A_358_Athena_Commando_F_Lurk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_359_Athena_Commando_F_BunnyPurple": { + "templateId": "AthenaCharacter:CID_A_359_Athena_Commando_F_BunnyPurple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_360_Athena_Commando_F_LeatherJacketPurple": { + "templateId": "AthenaCharacter:CID_A_360_Athena_Commando_F_LeatherJacketPurple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_361_Athena_Commando_F_Thrive": { + "templateId": "AthenaCharacter:CID_A_361_Athena_Commando_F_Thrive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_362_Athena_Commando_F_ThriveSpirit": { + "templateId": "AthenaCharacter:CID_A_362_Athena_Commando_F_ThriveSpirit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_363_Athena_Commando_M_Journey": { + "templateId": "AthenaCharacter:CID_A_363_Athena_Commando_M_Journey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_364_Athena_Commando_F_Jade": { + "templateId": "AthenaCharacter:CID_A_364_Athena_Commando_F_Jade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_365_Athena_Commando_F_FNCS_Blue": { + "templateId": "AthenaCharacter:CID_A_365_Athena_Commando_F_FNCS_Blue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_366_Athena_Commando_M_AssembleP": { + "templateId": "AthenaCharacter:CID_A_366_Athena_Commando_M_AssembleP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_367_Athena_Commando_M_Mystic": { + "templateId": "AthenaCharacter:CID_A_367_Athena_Commando_M_Mystic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_368_Athena_Commando_M_Sienna": { + "templateId": "AthenaCharacter:CID_A_368_Athena_Commando_M_Sienna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_369_Athena_Commando_F_CyberArmor": { + "templateId": "AthenaCharacter:CID_A_369_Athena_Commando_F_CyberArmor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage3", + "Stage2", + "Stage4", + "Stage5", + "Stage6", + "Stage7" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_370_Athena_Commando_M_OrderGuard": { + "templateId": "AthenaCharacter:CID_A_370_Athena_Commando_M_OrderGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage4", + "Stage3", + "Stage5", + "Stage6", + "Stage7" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_371_Athena_Commando_F_Cadet": { + "templateId": "AthenaCharacter:CID_A_371_Athena_Commando_F_Cadet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_372_Athena_Commando_F_KnightCat": { + "templateId": "AthenaCharacter:CID_A_372_Athena_Commando_F_KnightCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_373_Athena_Commando_M_OriginPrisoner": { + "templateId": "AthenaCharacter:CID_A_373_Athena_Commando_M_OriginPrisoner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Pattern", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_374_Athena_Commando_F_Binary": { + "templateId": "AthenaCharacter:CID_A_374_Athena_Commando_F_Binary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_375_Athena_Commando_F_Snowfall_WXW2T": { + "templateId": "AthenaCharacter:CID_A_375_Athena_Commando_F_Snowfall_WXW2T", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage4", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_376_Athena_Commando_F_JourneyMentor_66VFP": { + "templateId": "AthenaCharacter:CID_A_376_Athena_Commando_F_JourneyMentor_66VFP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_377_Athena_Commando_F_LittleEgg_OMNB5": { + "templateId": "AthenaCharacter:CID_A_377_Athena_Commando_F_LittleEgg_OMNB5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_378_Athena_Commando_F_Bacteria_8JYGU": { + "templateId": "AthenaCharacter:CID_A_378_Athena_Commando_F_Bacteria_8JYGU", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_379_Athena_Commando_F_VampireHunter": { + "templateId": "AthenaCharacter:CID_A_379_Athena_Commando_F_VampireHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_380_Athena_Commando_M_CactusRocker_SBI3T": { + "templateId": "AthenaCharacter:CID_A_380_Athena_Commando_M_CactusRocker_SBI3T", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_381_Athena_Commando_F_CactusRocker_3HTBV": { + "templateId": "AthenaCharacter:CID_A_381_Athena_Commando_F_CactusRocker_3HTBV", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_382_Athena_Commando_M_CactusDancer": { + "templateId": "AthenaCharacter:CID_A_382_Athena_Commando_M_CactusDancer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_383_Athena_Commando_F_CactusDancer": { + "templateId": "AthenaCharacter:CID_A_383_Athena_Commando_F_CactusDancer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_384_Athena_Commando_M_Rumble": { + "templateId": "AthenaCharacter:CID_A_384_Athena_Commando_M_Rumble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_385_Athena_Commando_F_Rumble": { + "templateId": "AthenaCharacter:CID_A_385_Athena_Commando_F_Rumble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_386_Athena_Commando_M_Croissant": { + "templateId": "AthenaCharacter:CID_A_386_Athena_Commando_M_Croissant", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_387_Athena_Commando_M_Lyrical": { + "templateId": "AthenaCharacter:CID_A_387_Athena_Commando_M_Lyrical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_388_Athena_Commando_F_Lyrical": { + "templateId": "AthenaCharacter:CID_A_388_Athena_Commando_F_Lyrical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_390_Athena_Commando_M_Blackbird": { + "templateId": "AthenaCharacter:CID_A_390_Athena_Commando_M_Blackbird", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_391_Athena_Commando_F_Nightingale": { + "templateId": "AthenaCharacter:CID_A_391_Athena_Commando_F_Nightingale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_392_Athena_Commando_F_Mockingbird": { + "templateId": "AthenaCharacter:CID_A_392_Athena_Commando_F_Mockingbird", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_393_Athena_Commando_F_Forsake": { + "templateId": "AthenaCharacter:CID_A_393_Athena_Commando_F_Forsake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_394_Athena_Commando_M_DarkStorm": { + "templateId": "AthenaCharacter:CID_A_394_Athena_Commando_M_DarkStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1", + "Emissive2", + "Emissive3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_395_Athena_Commando_F_BinaryTwin": { + "templateId": "AthenaCharacter:CID_A_395_Athena_Commando_F_BinaryTwin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_396_Athena_Commando_F_Raspberry": { + "templateId": "AthenaCharacter:CID_A_396_Athena_Commando_F_Raspberry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_397_Athena_Commando_M_Indigo": { + "templateId": "AthenaCharacter:CID_A_397_Athena_Commando_M_Indigo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_398_Athena_Commando_F_NeonCatSpeed": { + "templateId": "AthenaCharacter:CID_A_398_Athena_Commando_F_NeonCatSpeed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_399_Athena_Commando_F_Ultralight": { + "templateId": "AthenaCharacter:CID_A_399_Athena_Commando_F_Ultralight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_400_Athena_Commando_F_ShinyCreature": { + "templateId": "AthenaCharacter:CID_A_400_Athena_Commando_F_ShinyCreature", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_401_Athena_Commando_M_CarbideKnight": { + "templateId": "AthenaCharacter:CID_A_401_Athena_Commando_M_CarbideKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_402_Athena_Commando_F_RebirthFresh": { + "templateId": "AthenaCharacter:CID_A_402_Athena_Commando_F_RebirthFresh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_403_Athena_Commando_F_RebirthFresh_B": { + "templateId": "AthenaCharacter:CID_A_403_Athena_Commando_F_RebirthFresh_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_404_Athena_Commando_F_RebirthFresh_C": { + "templateId": "AthenaCharacter:CID_A_404_Athena_Commando_F_RebirthFresh_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_405_Athena_Commando_F_RebirthFresh_D": { + "templateId": "AthenaCharacter:CID_A_405_Athena_Commando_F_RebirthFresh_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_406_Athena_Commando_M_RebirthFresh": { + "templateId": "AthenaCharacter:CID_A_406_Athena_Commando_M_RebirthFresh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_407_Athena_Commando_M_RebirthFresh_B": { + "templateId": "AthenaCharacter:CID_A_407_Athena_Commando_M_RebirthFresh_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_408_Athena_Commando_M_RebirthFresh_C": { + "templateId": "AthenaCharacter:CID_A_408_Athena_Commando_M_RebirthFresh_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_409_Athena_Commando_M_RebirthFresh_D": { + "templateId": "AthenaCharacter:CID_A_409_Athena_Commando_M_RebirthFresh_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_410_Athena_Commando_M_MaskedDancer_FNCS": { + "templateId": "AthenaCharacter:CID_A_410_Athena_Commando_M_MaskedDancer_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_411_Athena_Commando_M_Noble": { + "templateId": "AthenaCharacter:CID_A_411_Athena_Commando_M_Noble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_412_Athena_Commando_M_FlappyGreen": { + "templateId": "AthenaCharacter:CID_A_412_Athena_Commando_M_FlappyGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_413_Athena_Commando_M_Glare": { + "templateId": "AthenaCharacter:CID_A_413_Athena_Commando_M_Glare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_414_Athena_Commando_M_ModNinja": { + "templateId": "AthenaCharacter:CID_A_414_Athena_Commando_M_ModNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_415_Athena_Commando_M_Alfredo": { + "templateId": "AthenaCharacter:CID_A_415_Athena_Commando_M_Alfredo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6", + "Stage7", + "Stage8" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_416_Athena_Commando_M_Armadillo": { + "templateId": "AthenaCharacter:CID_A_416_Athena_Commando_M_Armadillo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_417_Athena_Commando_F_Armadillo": { + "templateId": "AthenaCharacter:CID_A_417_Athena_Commando_F_Armadillo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_418_Athena_Commando_M_ArmadilloRobot": { + "templateId": "AthenaCharacter:CID_A_418_Athena_Commando_M_ArmadilloRobot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_419_Athena_Commando_F_EternalVanguard": { + "templateId": "AthenaCharacter:CID_A_419_Athena_Commando_F_EternalVanguard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_420_Athena_Commando_F_NeonGraffitiLava": { + "templateId": "AthenaCharacter:CID_A_420_Athena_Commando_F_NeonGraffitiLava", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_421_Athena_Commando_F_BlizzardBomber": { + "templateId": "AthenaCharacter:CID_A_421_Athena_Commando_F_BlizzardBomber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_422_Athena_Commando_M_Realm": { + "templateId": "AthenaCharacter:CID_A_422_Athena_Commando_M_Realm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_423_Athena_Commando_M_Canary": { + "templateId": "AthenaCharacter:CID_A_423_Athena_Commando_M_Canary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_424_Athena_Commando_M_Lancelot": { + "templateId": "AthenaCharacter:CID_A_424_Athena_Commando_M_Lancelot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1", + "Emissive2", + "Emissive3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_425_Athena_Commando_F_BlueJay": { + "templateId": "AthenaCharacter:CID_A_425_Athena_Commando_F_BlueJay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1", + "Emissive2", + "Emissive3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_427_Athena_Commando_F_Fuchsia": { + "templateId": "AthenaCharacter:CID_A_427_Athena_Commando_F_Fuchsia", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1", + "Emissive2", + "Emissive3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_428_Athena_Commando_F_PinkWidow": { + "templateId": "AthenaCharacter:CID_A_428_Athena_Commando_F_PinkWidow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1", + "Emissive2", + "Emissive3" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_429_Athena_Commando_M_Collectable": { + "templateId": "AthenaCharacter:CID_A_429_Athena_Commando_M_Collectable", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage5", + "Stage7", + "Stage3", + "Stage4", + "Stage6", + "Stage8", + "Stage9", + "Stage10", + "Stage11", + "Stage12", + "Stage13", + "Stage14", + "Stage15", + "Stage16", + "Stage17", + "Stage18", + "Stage19", + "Stage20", + "Stage21" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + }, + { + "channel": "Mesh", + "active": "001", + "owned": [ + "001", + "002", + "005", + "003", + "004", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle5", + "Particle3", + "Particle4", + "Particle6", + "Particle7", + "Particle8", + "Particle9", + "Particle10", + "Particle11", + "Particle12", + "Particle13", + "Particle14", + "Particle15", + "Particle16", + "Particle17", + "Particle18", + "Particle19", + "Particle20", + "Particle21" + ] + }, + { + "channel": "JerseyColor", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_430_Athena_Commando_M_SpectacleWeb": { + "templateId": "AthenaCharacter:CID_A_430_Athena_Commando_M_SpectacleWeb", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_431_Athena_Commando_M_JonesyOrange": { + "templateId": "AthenaCharacter:CID_A_431_Athena_Commando_M_JonesyOrange", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_432_Athena_Commando_M_Ensemble": { + "templateId": "AthenaCharacter:CID_A_432_Athena_Commando_M_Ensemble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_433_Athena_Commando_M_EnsembleSnake": { + "templateId": "AthenaCharacter:CID_A_433_Athena_Commando_M_EnsembleSnake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_434_Athena_Commando_M_EnsembleMaroon": { + "templateId": "AthenaCharacter:CID_A_434_Athena_Commando_M_EnsembleMaroon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_435_Athena_Commando_F_Ensemble": { + "templateId": "AthenaCharacter:CID_A_435_Athena_Commando_F_Ensemble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_436_Athena_Commando_M_RedSleeves": { + "templateId": "AthenaCharacter:CID_A_436_Athena_Commando_M_RedSleeves", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_437_Athena_Commando_M_ChiselMashup": { + "templateId": "AthenaCharacter:CID_A_437_Athena_Commando_M_ChiselMashup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_438_Athena_Commando_F_Gloom": { + "templateId": "AthenaCharacter:CID_A_438_Athena_Commando_F_Gloom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_439_Athena_Commando_M_Trifle": { + "templateId": "AthenaCharacter:CID_A_439_Athena_Commando_M_Trifle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_440_Athena_Commando_F_Parfait": { + "templateId": "AthenaCharacter:CID_A_440_Athena_Commando_F_Parfait", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_441_Athena_Commando_F_PennantSeasOne": { + "templateId": "AthenaCharacter:CID_A_441_Athena_Commando_F_PennantSeasOne", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_442_Athena_Commando_F_PennantSeasOne_B": { + "templateId": "AthenaCharacter:CID_A_442_Athena_Commando_F_PennantSeasOne_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_443_Athena_Commando_F_PennantSeasOne_C": { + "templateId": "AthenaCharacter:CID_A_443_Athena_Commando_F_PennantSeasOne_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_444_Athena_Commando_F_PennantSeasOne_D": { + "templateId": "AthenaCharacter:CID_A_444_Athena_Commando_F_PennantSeasOne_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_445_Athena_Commando_F_PennantSeasOne_E": { + "templateId": "AthenaCharacter:CID_A_445_Athena_Commando_F_PennantSeasOne_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_446_Athena_Commando_M_PennantSeasOne": { + "templateId": "AthenaCharacter:CID_A_446_Athena_Commando_M_PennantSeasOne", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_447_Athena_Commando_M_PennantSeasOne_B": { + "templateId": "AthenaCharacter:CID_A_447_Athena_Commando_M_PennantSeasOne_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_448_Athena_Commando_M_PennantSeasOne_C": { + "templateId": "AthenaCharacter:CID_A_448_Athena_Commando_M_PennantSeasOne_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_449_Athena_Commando_M_PennantSeasOne_D": { + "templateId": "AthenaCharacter:CID_A_449_Athena_Commando_M_PennantSeasOne_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_450_Athena_Commando_M_PennantSeasOne_E": { + "templateId": "AthenaCharacter:CID_A_450_Athena_Commando_M_PennantSeasOne_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9", + "Mat10" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_451_Athena_Commando_F_Rays": { + "templateId": "AthenaCharacter:CID_A_451_Athena_Commando_F_Rays", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_452_Athena_Commando_F_Barium": { + "templateId": "AthenaCharacter:CID_A_452_Athena_Commando_F_Barium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + }, + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_453_Athena_Commando_F_FuzzyBearSummer": { + "templateId": "AthenaCharacter:CID_A_453_Athena_Commando_F_FuzzyBearSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_454_Athena_Commando_M_Ohana": { + "templateId": "AthenaCharacter:CID_A_454_Athena_Commando_M_Ohana", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_455_Athena_Commando_F_SummerStride": { + "templateId": "AthenaCharacter:CID_A_455_Athena_Commando_F_SummerStride", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_456_Athena_Commando_F_Fruitcake": { + "templateId": "AthenaCharacter:CID_A_456_Athena_Commando_F_Fruitcake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_457_Athena_Commando_F_PunkKoiSummer": { + "templateId": "AthenaCharacter:CID_A_457_Athena_Commando_F_PunkKoiSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_458_Athena_Commando_M_SunStar": { + "templateId": "AthenaCharacter:CID_A_458_Athena_Commando_M_SunStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_459_Athena_Commando_M_SunTide": { + "templateId": "AthenaCharacter:CID_A_459_Athena_Commando_M_SunTide", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_460_Athena_Commando_F_SunBeam": { + "templateId": "AthenaCharacter:CID_A_460_Athena_Commando_F_SunBeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_461_Athena_Commando_M_DesertShadow": { + "templateId": "AthenaCharacter:CID_A_461_Athena_Commando_M_DesertShadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_462_Athena_Commando_M_Stamina": { + "templateId": "AthenaCharacter:CID_A_462_Athena_Commando_M_Stamina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_463_Athena_Commando_M_StaminaVigor": { + "templateId": "AthenaCharacter:CID_A_463_Athena_Commando_M_StaminaVigor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_464_Athena_Commando_M_StaminaCat": { + "templateId": "AthenaCharacter:CID_A_464_Athena_Commando_M_StaminaCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_465_Athena_Commando_F_Stamina": { + "templateId": "AthenaCharacter:CID_A_465_Athena_Commando_F_Stamina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_466_Athena_Commando_F_Chaos": { + "templateId": "AthenaCharacter:CID_A_466_Athena_Commando_F_Chaos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_467_Athena_Commando_M_Wayfare": { + "templateId": "AthenaCharacter:CID_A_467_Athena_Commando_M_Wayfare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_468_Athena_Commando_F_Wayfare": { + "templateId": "AthenaCharacter:CID_A_468_Athena_Commando_F_Wayfare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_469_Athena_Commando_F_WayfareMask": { + "templateId": "AthenaCharacter:CID_A_469_Athena_Commando_F_WayfareMask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_470_Athena_Commando_M_ApexWild": { + "templateId": "AthenaCharacter:CID_A_470_Athena_Commando_M_ApexWild", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_471_Athena_Commando_M_ApexWildRed": { + "templateId": "AthenaCharacter:CID_A_471_Athena_Commando_M_ApexWildRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_472_Athena_Commando_M_FutureSamuraiSummer": { + "templateId": "AthenaCharacter:CID_A_472_Athena_Commando_M_FutureSamuraiSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_473_Athena_Commando_F_Fog": { + "templateId": "AthenaCharacter:CID_A_473_Athena_Commando_F_Fog", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_474_Athena_Commando_F_Astral": { + "templateId": "AthenaCharacter:CID_A_474_Athena_Commando_F_Astral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_475_Athena_Commando_F_PlatinumBlue": { + "templateId": "AthenaCharacter:CID_A_475_Athena_Commando_F_PlatinumBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_476_Athena_Commando_F_NeonJam": { + "templateId": "AthenaCharacter:CID_A_476_Athena_Commando_F_NeonJam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_477_Athena_Commando_F_Handlebar": { + "templateId": "AthenaCharacter:CID_A_477_Athena_Commando_F_Handlebar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_A_478_Athena_Commando_F_WildCard": { + "templateId": "AthenaCharacter:CID_A_478_Athena_Commando_F_WildCard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_Creative_Mannequin_M_Default": { + "templateId": "AthenaCharacter:CID_Creative_Mannequin_M_Default", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_Jonesy3L": { + "templateId": "AthenaCharacter:CID_Jonesy3L", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_F_CloakedAssassin": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_CloakedAssassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_F_CubeQueen": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_CubeQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_F_Fallback": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_Fallback", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_F_HenchmanSpyDark": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_HenchmanSpyDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_F_HenchmanSpyGood": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_HenchmanSpyGood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_F_MarauderElite": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_MarauderElite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_F_Prime": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_Prime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_F_PrimeOrder": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_PrimeOrder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_F_RebirthDefault_Henchman": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_RebirthDefault_Henchman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_F_TowerSentinel": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_TowerSentinel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_AlienRobot": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_AlienRobot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_AlienSummer": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_AlienSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_Apparition_Grunt": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Apparition_Grunt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_Apparition_Heavy": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Apparition_Heavy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_Broccoli": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Broccoli", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_CatBurglar_Ghost": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_CatBurglar_Ghost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_CavernArmored": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_CavernArmored", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_EmperorSuit": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_EmperorSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_Fallback": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Fallback", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_HeistSummerIsland": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_HeistSummerIsland", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_HenchmanBad": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_HenchmanBad", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_HenchmanGood": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_HenchmanGood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_HenchmanSummer": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_HenchmanSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_HightowerHenchman": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_HightowerHenchman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_HightowerHenchman_Date": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_HightowerHenchman_Date", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_Kyle": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Kyle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_MarauderGrunt": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_MarauderGrunt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_MarauderHeavy": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_MarauderHeavy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_Masterkey": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Masterkey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_OrderGuardTank": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_OrderGuardTank", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_PaddedArmorArctic": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_PaddedArmorArctic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_PaddedArmorOrder_Masked": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_PaddedArmorOrder_Masked", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_Prime": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Prime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_PrimeOrder": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_PrimeOrder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_Realm": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Realm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_Scrapyard": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Scrapyard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_SpaceWanderer": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_SpaceWanderer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_Commando_M_TacticalFishermanOil": { + "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_TacticalFishermanOil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_HenchmanBadShorts": { + "templateId": "AthenaCharacter:CID_NPC_Athena_HenchmanBadShorts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_HenchmanGoodShorts": { + "templateId": "AthenaCharacter:CID_NPC_Athena_HenchmanGoodShorts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_MadCommander": { + "templateId": "AthenaCharacter:CID_NPC_Athena_MadCommander", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_PaddedArmor": { + "templateId": "AthenaCharacter:CID_NPC_Athena_PaddedArmor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_NPC_Athena_RebirthSoldier": { + "templateId": "AthenaCharacter:CID_NPC_Athena_RebirthSoldier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_TBD_Athena_Commando_M_Banana_CINE": { + "templateId": "AthenaCharacter:CID_TBD_Athena_Commando_M_Banana_CINE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_TBD_Athena_Commando_M_Nutcracker_CINE": { + "templateId": "AthenaCharacter:CID_TBD_Athena_Commando_M_Nutcracker_CINE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_TBD_Athena_Commando_M_Turtleneck_EVENT_NOTFORSTORE": { + "templateId": "AthenaCharacter:CID_TBD_Athena_Commando_M_Turtleneck_EVENT_NOTFORSTORE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_VIP_Athena_Commando_F_GalileoRocket_SG": { + "templateId": "AthenaCharacter:CID_VIP_Athena_Commando_F_GalileoRocket_SG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_VIP_Athena_Commando_M_GalileoFerry_SG": { + "templateId": "AthenaCharacter:CID_VIP_Athena_Commando_M_GalileoFerry_SG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_VIP_Athena_Commando_M_GalileoGondola_SG": { + "templateId": "AthenaCharacter:CID_VIP_Athena_Commando_M_GalileoGondola_SG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_Apprentice": { + "templateId": "AthenaSkyDiveContrail:Contrail_Apprentice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_BadBear": { + "templateId": "AthenaSkyDiveContrail:Contrail_BadBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_BengalBasher": { + "templateId": "AthenaSkyDiveContrail:Contrail_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_BlazerVeil": { + "templateId": "AthenaSkyDiveContrail:Contrail_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_Chainmail": { + "templateId": "AthenaSkyDiveContrail:Contrail_Chainmail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_CrispRover": { + "templateId": "AthenaSkyDiveContrail:Contrail_CrispRover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_Dazzle": { + "templateId": "AthenaSkyDiveContrail:Contrail_Dazzle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_DiamondHeart": { + "templateId": "AthenaSkyDiveContrail:Contrail_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_FNCS_S26": { + "templateId": "AthenaSkyDiveContrail:Contrail_FNCS_S26", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_Hibiscus": { + "templateId": "AthenaSkyDiveContrail:Contrail_Hibiscus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_HornedJudgment": { + "templateId": "AthenaSkyDiveContrail:Contrail_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_IndieBucket": { + "templateId": "AthenaSkyDiveContrail:Contrail_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_Inferno": { + "templateId": "AthenaSkyDiveContrail:Contrail_Inferno", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_JollyTroll": { + "templateId": "AthenaSkyDiveContrail:Contrail_JollyTroll", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_LazarusLens": { + "templateId": "AthenaSkyDiveContrail:Contrail_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_LilSplit": { + "templateId": "AthenaSkyDiveContrail:Contrail_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_LoudPhoenix": { + "templateId": "AthenaSkyDiveContrail:Contrail_LoudPhoenix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_MadameMoth": { + "templateId": "AthenaSkyDiveContrail:Contrail_MadameMoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_Meteorwomen": { + "templateId": "AthenaSkyDiveContrail:Contrail_Meteorwomen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_MusketSlinger": { + "templateId": "AthenaSkyDiveContrail:Contrail_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_Nebula": { + "templateId": "AthenaSkyDiveContrail:Contrail_Nebula", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_NitroFlow": { + "templateId": "AthenaSkyDiveContrail:Contrail_NitroFlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_PinkSpike": { + "templateId": "AthenaSkyDiveContrail:Contrail_PinkSpike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_PizzaParty": { + "templateId": "AthenaSkyDiveContrail:Contrail_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_Quartz": { + "templateId": "AthenaSkyDiveContrail:Contrail_Quartz", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_RealityBloom": { + "templateId": "AthenaSkyDiveContrail:Contrail_RealityBloom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_RedPepper": { + "templateId": "AthenaSkyDiveContrail:Contrail_RedPepper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_RippedHarvester": { + "templateId": "AthenaSkyDiveContrail:Contrail_RippedHarvester", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_RoseDust": { + "templateId": "AthenaSkyDiveContrail:Contrail_RoseDust", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_SharpFang": { + "templateId": "AthenaSkyDiveContrail:Contrail_SharpFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_SilentTempo": { + "templateId": "AthenaSkyDiveContrail:Contrail_SilentTempo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_SnowKnight": { + "templateId": "AthenaSkyDiveContrail:Contrail_SnowKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_StinkyCloud": { + "templateId": "AthenaSkyDiveContrail:Contrail_StinkyCloud", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_Sunlit": { + "templateId": "AthenaSkyDiveContrail:Contrail_Sunlit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_UndergroundRebel": { + "templateId": "AthenaSkyDiveContrail:Contrail_UndergroundRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_VitalPsych": { + "templateId": "AthenaSkyDiveContrail:Contrail_VitalPsych", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_WinterFire": { + "templateId": "AthenaSkyDiveContrail:Contrail_WinterFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_ZebraScramble_Bacon": { + "templateId": "AthenaSkyDiveContrail:Contrail_ZebraScramble_Bacon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Contrail_ZirconSweep": { + "templateId": "AthenaSkyDiveContrail:Contrail_ZirconSweep", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:DefaultContrail": { + "templateId": "AthenaSkyDiveContrail:DefaultContrail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:DefaultGlider": { + "templateId": "AthenaGlider:DefaultGlider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:DefaultPickaxe": { + "templateId": "AthenaPickaxe:DefaultPickaxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Dev_Test_Pickaxe": { + "templateId": "AthenaPickaxe:Dev_Test_Pickaxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Duo_Umbrella": { + "templateId": "AthenaGlider:Duo_Umbrella", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Accolades": { + "templateId": "AthenaDance:EID_Accolades", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AcrobaticSuperhero": { + "templateId": "AthenaDance:EID_AcrobaticSuperhero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Adoration": { + "templateId": "AthenaDance:EID_Adoration", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Aerobics": { + "templateId": "AthenaDance:EID_Aerobics", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AfroHouse": { + "templateId": "AthenaDance:EID_AfroHouse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AgentSherbert": { + "templateId": "AthenaDance:EID_AgentSherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AirGuitar": { + "templateId": "AthenaDance:EID_AirGuitar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AirHorn": { + "templateId": "AthenaDance:EID_AirHorn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AirHornRaisin": { + "templateId": "AthenaDance:EID_AirHornRaisin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Alchemy_BZWS8": { + "templateId": "AthenaDance:EID_Alchemy_BZWS8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Alfredo": { + "templateId": "AthenaDance:EID_Alfredo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Alien": { + "templateId": "AthenaDance:EID_Alien", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AlienSupport": { + "templateId": "AthenaDance:EID_AlienSupport", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Alliteration": { + "templateId": "AthenaDance:EID_Alliteration", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Aloha_C82XX": { + "templateId": "AthenaDance:EID_Aloha_C82XX", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AmazingForever_Q68W0": { + "templateId": "AthenaDance:EID_AmazingForever_Q68W0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AncientGladiator": { + "templateId": "AthenaDance:EID_AncientGladiator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Annual": { + "templateId": "AthenaDance:EID_Annual", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AntiVisitorProtest": { + "templateId": "AthenaDance:EID_AntiVisitorProtest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Anxiety": { + "templateId": "AthenaDance:EID_Anxiety", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ApexWild": { + "templateId": "AthenaDance:EID_ApexWild", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Applause": { + "templateId": "AthenaDance:EID_Applause", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Apprentice": { + "templateId": "AthenaDance:EID_Apprentice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ApprenticeSwirl": { + "templateId": "AthenaDance:EID_ApprenticeSwirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Apprentice_Follower_Sync": { + "templateId": "AthenaDance:EID_Apprentice_Follower_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Apprentice_Sync": { + "templateId": "AthenaDance:EID_Apprentice_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ArcticIceBlue": { + "templateId": "AthenaDance:EID_ArcticIceBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ArcticIceTalus": { + "templateId": "AthenaDance:EID_ArcticIceTalus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Armadillo": { + "templateId": "AthenaDance:EID_Armadillo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ArmadilloRobot": { + "templateId": "AthenaDance:EID_ArmadilloRobot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ArmUpDance": { + "templateId": "AthenaDance:EID_ArmUpDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ArmWave": { + "templateId": "AthenaDance:EID_ArmWave", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ArtGiant": { + "templateId": "AthenaDance:EID_ArtGiant", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Ashes_MYQ8O": { + "templateId": "AthenaDance:EID_Ashes_MYQ8O", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AshtonBoardwalk": { + "templateId": "AthenaDance:EID_AshtonBoardwalk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AshtonSaltLake": { + "templateId": "AthenaDance:EID_AshtonSaltLake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AssassinSalute": { + "templateId": "AthenaDance:EID_AssassinSalute", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AssassinVest": { + "templateId": "AthenaDance:EID_AssassinVest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Astral": { + "templateId": "AthenaDance:EID_Astral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Astray": { + "templateId": "AthenaDance:EID_Astray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_AutumnTea": { + "templateId": "AthenaDance:EID_AutumnTea", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Backflip": { + "templateId": "AthenaDance:EID_Backflip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Backspin_R3NAI": { + "templateId": "AthenaDance:EID_Backspin_R3NAI", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BadBear": { + "templateId": "AthenaDance:EID_BadBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BadMood": { + "templateId": "AthenaDance:EID_BadMood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Balance": { + "templateId": "AthenaDance:EID_Balance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BalletJumps": { + "templateId": "AthenaDance:EID_BalletJumps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BalletSpin": { + "templateId": "AthenaDance:EID_BalletSpin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Banana": { + "templateId": "AthenaDance:EID_Banana", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BangThePan": { + "templateId": "AthenaDance:EID_BangThePan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BankNotes": { + "templateId": "AthenaDance:EID_BankNotes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BannerFlagWave": { + "templateId": "AthenaDance:EID_BannerFlagWave", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Bargain_Owned": { + "templateId": "AthenaDance:EID_Bargain_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Bargain_Owned_Follower": { + "templateId": "AthenaDance:EID_Bargain_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Bargain_Sync": { + "templateId": "AthenaDance:EID_Bargain_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Bargain_Sync_Follower": { + "templateId": "AthenaDance:EID_Bargain_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Bargain_Y5KHN": { + "templateId": "AthenaDance:EID_Bargain_Y5KHN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Barium": { + "templateId": "AthenaDance:EID_Barium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BasilStrong": { + "templateId": "AthenaDance:EID_BasilStrong", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Basketball": { + "templateId": "AthenaDance:EID_Basketball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BasketballDribble_E6OJV": { + "templateId": "AthenaDance:EID_BasketballDribble_E6OJV", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BasketballV2": { + "templateId": "AthenaDance:EID_BasketballV2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BeckonPapayaComms": { + "templateId": "AthenaDance:EID_BeckonPapayaComms", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BeHere_8070H": { + "templateId": "AthenaDance:EID_BeHere_8070H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Believer": { + "templateId": "AthenaDance:EID_Believer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Bellringer": { + "templateId": "AthenaDance:EID_Bellringer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Bendy": { + "templateId": "AthenaDance:EID_Bendy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BengalBasher": { + "templateId": "AthenaDance:EID_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BestMates": { + "templateId": "AthenaDance:EID_BestMates", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Betty": { + "templateId": "AthenaDance:EID_Betty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Betty_Owned": { + "templateId": "AthenaDance:EID_Betty_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Betty_Owned_Follower": { + "templateId": "AthenaDance:EID_Betty_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Betty_Sync": { + "templateId": "AthenaDance:EID_Betty_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Betty_Sync_Follower": { + "templateId": "AthenaDance:EID_Betty_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Beyond": { + "templateId": "AthenaDance:EID_Beyond", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Bicycle": { + "templateId": "AthenaDance:EID_Bicycle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BicycleStyle": { + "templateId": "AthenaDance:EID_BicycleStyle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BigfootWalk": { + "templateId": "AthenaDance:EID_BigfootWalk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BillyBounce": { + "templateId": "AthenaDance:EID_BillyBounce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BirdsNestBlue": { + "templateId": "AthenaDance:EID_BirdsNestBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BistroStyle_P0XFD": { + "templateId": "AthenaDance:EID_BistroStyle_P0XFD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Bites": { + "templateId": "AthenaDance:EID_Bites", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BlackMondayFemale_6HO4L": { + "templateId": "AthenaDance:EID_BlackMondayFemale_6HO4L", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BlackMondayMale2": { + "templateId": "AthenaDance:EID_BlackMondayMale2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BlackMondayMale_E0VSB": { + "templateId": "AthenaDance:EID_BlackMondayMale_E0VSB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Blaster": { + "templateId": "AthenaDance:EID_Blaster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BlazerVeil": { + "templateId": "AthenaDance:EID_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BlowingBubbles": { + "templateId": "AthenaDance:EID_BlowingBubbles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BlueApparel": { + "templateId": "AthenaDance:EID_BlueApparel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BlueJay": { + "templateId": "AthenaDance:EID_BlueJay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BluePhoto_JSG4D": { + "templateId": "AthenaDance:EID_BluePhoto_JSG4D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Bollywood": { + "templateId": "AthenaDance:EID_Bollywood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Boneless": { + "templateId": "AthenaDance:EID_Boneless", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BoogieDown": { + "templateId": "AthenaDance:EID_BoogieDown", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Boombox": { + "templateId": "AthenaDance:EID_Boombox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Boomer_N2RQT": { + "templateId": "AthenaDance:EID_Boomer_N2RQT", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BootsAndCats": { + "templateId": "AthenaDance:EID_BootsAndCats", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BottleCapChallenge": { + "templateId": "AthenaDance:EID_BottleCapChallenge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Bouquet": { + "templateId": "AthenaDance:EID_Bouquet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BrawnyBass": { + "templateId": "AthenaDance:EID_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Breakboy": { + "templateId": "AthenaDance:EID_Breakboy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BreakDance": { + "templateId": "AthenaDance:EID_BreakDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Breakdance2": { + "templateId": "AthenaDance:EID_Breakdance2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BreakfastCoffeeDance": { + "templateId": "AthenaDance:EID_BreakfastCoffeeDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Breakthrough": { + "templateId": "AthenaDance:EID_Breakthrough", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BreakYou": { + "templateId": "AthenaDance:EID_BreakYou", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BringItOn": { + "templateId": "AthenaDance:EID_BringItOn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Broccoli_PZIIW": { + "templateId": "AthenaDance:EID_Broccoli_PZIIW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BuffCat": { + "templateId": "AthenaDance:EID_BuffCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BuffCatComic_EV4HK": { + "templateId": "AthenaDance:EID_BuffCatComic_EV4HK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BuffetMoment_LCZQS": { + "templateId": "AthenaDance:EID_BuffetMoment_LCZQS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BuildASnowman": { + "templateId": "AthenaDance:EID_BuildASnowman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Builders": { + "templateId": "AthenaDance:EID_Builders", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Bulletproof": { + "templateId": "AthenaDance:EID_Bulletproof", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BunnyFlop": { + "templateId": "AthenaDance:EID_BunnyFlop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Bunnyhop": { + "templateId": "AthenaDance:EID_Bunnyhop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_BurgerFlipping": { + "templateId": "AthenaDance:EID_BurgerFlipping", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Burpee": { + "templateId": "AthenaDance:EID_Burpee", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Butter_1R26Q": { + "templateId": "AthenaDance:EID_Butter_1R26Q", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ByTheFire": { + "templateId": "AthenaDance:EID_ByTheFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ByTheFire_Follower": { + "templateId": "AthenaDance:EID_ByTheFire_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ByTheFire_Sync": { + "templateId": "AthenaDance:EID_ByTheFire_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CactusTPose": { + "templateId": "AthenaDance:EID_CactusTPose", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Cadet": { + "templateId": "AthenaDance:EID_Cadet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Calculated": { + "templateId": "AthenaDance:EID_Calculated", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Calico": { + "templateId": "AthenaDance:EID_Calico", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Caller": { + "templateId": "AthenaDance:EID_Caller", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CallMe": { + "templateId": "AthenaDance:EID_CallMe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Canary": { + "templateId": "AthenaDance:EID_Canary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Candor": { + "templateId": "AthenaDance:EID_Candor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CandyDance": { + "templateId": "AthenaDance:EID_CandyDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Capital": { + "templateId": "AthenaDance:EID_Capital", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Capoeira": { + "templateId": "AthenaDance:EID_Capoeira", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Cartwheel": { + "templateId": "AthenaDance:EID_Cartwheel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Cashier_HGQ8X": { + "templateId": "AthenaDance:EID_Cashier_HGQ8X", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CattusRoar": { + "templateId": "AthenaDance:EID_CattusRoar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Celebration": { + "templateId": "AthenaDance:EID_Celebration", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CelebrationDance": { + "templateId": "AthenaDance:EID_CelebrationDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CerealBox": { + "templateId": "AthenaDance:EID_CerealBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CeremonialGuard": { + "templateId": "AthenaDance:EID_CeremonialGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Chainmail": { + "templateId": "AthenaDance:EID_Chainmail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ChairTime": { + "templateId": "AthenaDance:EID_ChairTime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Chashu": { + "templateId": "AthenaDance:EID_Chashu", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CheckeredFlag": { + "templateId": "AthenaDance:EID_CheckeredFlag", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Checkmate": { + "templateId": "AthenaDance:EID_Checkmate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Checkmate_Owned": { + "templateId": "AthenaDance:EID_Checkmate_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Checkmate_Owned_Follower": { + "templateId": "AthenaDance:EID_Checkmate_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Checkmate_Sync": { + "templateId": "AthenaDance:EID_Checkmate_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Checkmate_Sync_Follower": { + "templateId": "AthenaDance:EID_Checkmate_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Cheerleading": { + "templateId": "AthenaDance:EID_Cheerleading", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CheerPapayaComms": { + "templateId": "AthenaDance:EID_CheerPapayaComms", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Cherish": { + "templateId": "AthenaDance:EID_Cherish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Chew": { + "templateId": "AthenaDance:EID_Chew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Chicken": { + "templateId": "AthenaDance:EID_Chicken", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ChickenLeg_TDJ0O": { + "templateId": "AthenaDance:EID_ChickenLeg_TDJ0O", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ChickenMoves": { + "templateId": "AthenaDance:EID_ChickenMoves", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ChillCat": { + "templateId": "AthenaDance:EID_ChillCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Chilled": { + "templateId": "AthenaDance:EID_Chilled", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Chopsticks": { + "templateId": "AthenaDance:EID_Chopsticks", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Chuckle": { + "templateId": "AthenaDance:EID_Chuckle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Chug": { + "templateId": "AthenaDance:EID_Chug", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Chugga": { + "templateId": "AthenaDance:EID_Chugga", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ChuggaFollower": { + "templateId": "AthenaDance:EID_ChuggaFollower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CinderMax": { + "templateId": "AthenaDance:EID_CinderMax", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Citadel": { + "templateId": "AthenaDance:EID_Citadel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Clamor": { + "templateId": "AthenaDance:EID_Clamor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Clamor_Follower": { + "templateId": "AthenaDance:EID_Clamor_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Clamor_Follower_Offset": { + "templateId": "AthenaDance:EID_Clamor_Follower_Offset", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ClapAndWave": { + "templateId": "AthenaDance:EID_ClapAndWave", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ClapPapayaComms": { + "templateId": "AthenaDance:EID_ClapPapayaComms", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Clapperboard": { + "templateId": "AthenaDance:EID_Clapperboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Clash_JLK96": { + "templateId": "AthenaDance:EID_Clash_JLK96", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ClearRadius": { + "templateId": "AthenaDance:EID_ClearRadius", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ClearRadius_Follower": { + "templateId": "AthenaDance:EID_ClearRadius_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ClearRadius_Follower_Sync": { + "templateId": "AthenaDance:EID_ClearRadius_Follower_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ClearRadius_Sync": { + "templateId": "AthenaDance:EID_ClearRadius_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ClimbTheStaff": { + "templateId": "AthenaDance:EID_ClimbTheStaff", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CloudFloat": { + "templateId": "AthenaDance:EID_CloudFloat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CoinToss": { + "templateId": "AthenaDance:EID_CoinToss", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Collectable": { + "templateId": "AthenaDance:EID_Collectable", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Competitor": { + "templateId": "AthenaDance:EID_Competitor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Comrade_6O5AK": { + "templateId": "AthenaDance:EID_Comrade_6O5AK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Concentrate_0W5GY": { + "templateId": "AthenaDance:EID_Concentrate_0W5GY", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Confused": { + "templateId": "AthenaDance:EID_Confused", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Conga": { + "templateId": "AthenaDance:EID_Conga", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Congestion": { + "templateId": "AthenaDance:EID_Congestion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ContortedScowl": { + "templateId": "AthenaDance:EID_ContortedScowl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CoolOff": { + "templateId": "AthenaDance:EID_CoolOff", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CoolRobot": { + "templateId": "AthenaDance:EID_CoolRobot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CoolRobotRaisin": { + "templateId": "AthenaDance:EID_CoolRobotRaisin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Coping": { + "templateId": "AthenaDance:EID_Coping", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Coronet": { + "templateId": "AthenaDance:EID_Coronet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CosmosPet": { + "templateId": "AthenaDance:EID_CosmosPet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Cottontail": { + "templateId": "AthenaDance:EID_Cottontail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CowboyDance": { + "templateId": "AthenaDance:EID_CowboyDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CoyoteTrail": { + "templateId": "AthenaDance:EID_CoyoteTrail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CoyoteTrail_Follower": { + "templateId": "AthenaDance:EID_CoyoteTrail_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CoyoteTrail_Sync": { + "templateId": "AthenaDance:EID_CoyoteTrail_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CrabDance": { + "templateId": "AthenaDance:EID_CrabDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Crackle": { + "templateId": "AthenaDance:EID_Crackle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CrackshotClock": { + "templateId": "AthenaDance:EID_CrackshotClock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CrackshotDance": { + "templateId": "AthenaDance:EID_CrackshotDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CrazyDance": { + "templateId": "AthenaDance:EID_CrazyDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CrazyDanceRaisin": { + "templateId": "AthenaDance:EID_CrazyDanceRaisin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CrazyFeet": { + "templateId": "AthenaDance:EID_CrazyFeet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CrimsonPeak": { + "templateId": "AthenaDance:EID_CrimsonPeak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CrispRover": { + "templateId": "AthenaDance:EID_CrispRover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CrissCross": { + "templateId": "AthenaDance:EID_CrissCross", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Cruising": { + "templateId": "AthenaDance:EID_Cruising", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Cry": { + "templateId": "AthenaDance:EID_Cry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_01": { + "templateId": "AthenaDance:EID_CT_CapturePose_01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_02": { + "templateId": "AthenaDance:EID_CT_CapturePose_02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_03": { + "templateId": "AthenaDance:EID_CT_CapturePose_03", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_04": { + "templateId": "AthenaDance:EID_CT_CapturePose_04", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_05": { + "templateId": "AthenaDance:EID_CT_CapturePose_05", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_06": { + "templateId": "AthenaDance:EID_CT_CapturePose_06", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_07": { + "templateId": "AthenaDance:EID_CT_CapturePose_07", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_08": { + "templateId": "AthenaDance:EID_CT_CapturePose_08", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_09": { + "templateId": "AthenaDance:EID_CT_CapturePose_09", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_10": { + "templateId": "AthenaDance:EID_CT_CapturePose_10", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_11": { + "templateId": "AthenaDance:EID_CT_CapturePose_11", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_12": { + "templateId": "AthenaDance:EID_CT_CapturePose_12", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_13": { + "templateId": "AthenaDance:EID_CT_CapturePose_13", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_14": { + "templateId": "AthenaDance:EID_CT_CapturePose_14", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CT_CapturePose_15": { + "templateId": "AthenaDance:EID_CT_CapturePose_15", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Custodial": { + "templateId": "AthenaDance:EID_Custodial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CyberArmor": { + "templateId": "AthenaDance:EID_CyberArmor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Cyclone": { + "templateId": "AthenaDance:EID_Cyclone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_CycloneHeadBang": { + "templateId": "AthenaDance:EID_CycloneHeadBang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Dab": { + "templateId": "AthenaDance:EID_Dab", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DaBounce": { + "templateId": "AthenaDance:EID_DaBounce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DanceMoves": { + "templateId": "AthenaDance:EID_DanceMoves", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DarkFireLegends": { + "templateId": "AthenaDance:EID_DarkFireLegends", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Dashing": { + "templateId": "AthenaDance:EID_Dashing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Davinci": { + "templateId": "AthenaDance:EID_Davinci", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Dazzle": { + "templateId": "AthenaDance:EID_Dazzle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Deceiver": { + "templateId": "AthenaDance:EID_Deceiver", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DeepDab": { + "templateId": "AthenaDance:EID_DeepDab", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Deflated_6POAZ": { + "templateId": "AthenaDance:EID_Deflated_6POAZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DesertShadow": { + "templateId": "AthenaDance:EID_DesertShadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Devotion": { + "templateId": "AthenaDance:EID_Devotion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DiamondHeart": { + "templateId": "AthenaDance:EID_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Dinosaur": { + "templateId": "AthenaDance:EID_Dinosaur", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Direction": { + "templateId": "AthenaDance:EID_Direction", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Disagree": { + "templateId": "AthenaDance:EID_Disagree", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DiscoFever": { + "templateId": "AthenaDance:EID_DiscoFever", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Disintegrate": { + "templateId": "AthenaDance:EID_Disintegrate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DistantEcho": { + "templateId": "AthenaDance:EID_DistantEcho", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DivinePose": { + "templateId": "AthenaDance:EID_DivinePose", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Division": { + "templateId": "AthenaDance:EID_Division", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DJ01": { + "templateId": "AthenaDance:EID_DJ01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DoggyStrut": { + "templateId": "AthenaDance:EID_DoggyStrut", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DontBeSquare": { + "templateId": "AthenaDance:EID_DontBeSquare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DontSneeze": { + "templateId": "AthenaDance:EID_DontSneeze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Donut1": { + "templateId": "AthenaDance:EID_Donut1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Donut2": { + "templateId": "AthenaDance:EID_Donut2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Doodling": { + "templateId": "AthenaDance:EID_Doodling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Doublesnap": { + "templateId": "AthenaDance:EID_Doublesnap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DoubleTake": { + "templateId": "AthenaDance:EID_DoubleTake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Downward_8GZUA": { + "templateId": "AthenaDance:EID_Downward_8GZUA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Dreadful": { + "templateId": "AthenaDance:EID_Dreadful", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DreamFeet": { + "templateId": "AthenaDance:EID_DreamFeet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DrumMajor": { + "templateId": "AthenaDance:EID_DrumMajor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DualParadox": { + "templateId": "AthenaDance:EID_DualParadox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DuckTeacher_9IPLU": { + "templateId": "AthenaDance:EID_DuckTeacher_9IPLU", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Dumbbell_Lift": { + "templateId": "AthenaDance:EID_Dumbbell_Lift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Dunk": { + "templateId": "AthenaDance:EID_Dunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DustingHands": { + "templateId": "AthenaDance:EID_DustingHands", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_DustOffShoulders": { + "templateId": "AthenaDance:EID_DustOffShoulders", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_EasternBloc": { + "templateId": "AthenaDance:EID_EasternBloc", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Ebony": { + "templateId": "AthenaDance:EID_Ebony", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Eerie_8WGYK": { + "templateId": "AthenaDance:EID_Eerie_8WGYK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_EgyptianDance": { + "templateId": "AthenaDance:EID_EgyptianDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Elastic": { + "templateId": "AthenaDance:EID_Elastic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ElectroShuffle": { + "templateId": "AthenaDance:EID_ElectroShuffle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ElectroShuffle_V2": { + "templateId": "AthenaDance:EID_ElectroShuffle_V2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ElectroSwing": { + "templateId": "AthenaDance:EID_ElectroSwing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_EmeraldGlassGreen": { + "templateId": "AthenaDance:EID_EmeraldGlassGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_EmeraldGlassTransform": { + "templateId": "AthenaDance:EID_EmeraldGlassTransform", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Emperor": { + "templateId": "AthenaDance:EID_Emperor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Endear": { + "templateId": "AthenaDance:EID_Endear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Energize": { + "templateId": "AthenaDance:EID_Energize", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_EnergizeStoic": { + "templateId": "AthenaDance:EID_EnergizeStoic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_EngagedWalk": { + "templateId": "AthenaDance:EID_EngagedWalk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_EpicYarn": { + "templateId": "AthenaDance:EID_EpicYarn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Everytime": { + "templateId": "AthenaDance:EID_Everytime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Exaggerated": { + "templateId": "AthenaDance:EID_Exaggerated", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Facepalm": { + "templateId": "AthenaDance:EID_Facepalm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FancyFeet": { + "templateId": "AthenaDance:EID_FancyFeet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FancyWorkout": { + "templateId": "AthenaDance:EID_FancyWorkout", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Fangs": { + "templateId": "AthenaDance:EID_Fangs", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Faux": { + "templateId": "AthenaDance:EID_Faux", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FearlessFlight": { + "templateId": "AthenaDance:EID_FearlessFlight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Feral": { + "templateId": "AthenaDance:EID_Feral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FingerGuns": { + "templateId": "AthenaDance:EID_FingerGuns", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FingerGunsV2": { + "templateId": "AthenaDance:EID_FingerGunsV2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Firecracker": { + "templateId": "AthenaDance:EID_Firecracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FirecrackerSparks": { + "templateId": "AthenaDance:EID_FirecrackerSparks", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FireDance": { + "templateId": "AthenaDance:EID_FireDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FireworksSpin": { + "templateId": "AthenaDance:EID_FireworksSpin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Fireworks_WKX2W": { + "templateId": "AthenaDance:EID_Fireworks_WKX2W", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Fishbowl": { + "templateId": "AthenaDance:EID_Fishbowl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FistPump": { + "templateId": "AthenaDance:EID_FistPump", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FlagPlant": { + "templateId": "AthenaDance:EID_FlagPlant", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FlailingFins": { + "templateId": "AthenaDance:EID_FlailingFins", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Flamenco": { + "templateId": "AthenaDance:EID_Flamenco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Flapper": { + "templateId": "AthenaDance:EID_Flapper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Flex": { + "templateId": "AthenaDance:EID_Flex", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Flex02": { + "templateId": "AthenaDance:EID_Flex02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FlipIt": { + "templateId": "AthenaDance:EID_FlipIt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Floppy": { + "templateId": "AthenaDance:EID_Floppy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Floret": { + "templateId": "AthenaDance:EID_Floret", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Floss": { + "templateId": "AthenaDance:EID_Floss", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Flourish": { + "templateId": "AthenaDance:EID_Flourish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FlyingKite": { + "templateId": "AthenaDance:EID_FlyingKite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Foe_4EWJV": { + "templateId": "AthenaDance:EID_Foe_4EWJV", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Football20Flag_C3QEE": { + "templateId": "AthenaDance:EID_Football20Flag_C3QEE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FootballTD_U2HZI": { + "templateId": "AthenaDance:EID_FootballTD_U2HZI", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Fresh": { + "templateId": "AthenaDance:EID_Fresh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FrisbeeShow": { + "templateId": "AthenaDance:EID_FrisbeeShow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Frolic": { + "templateId": "AthenaDance:EID_Frolic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Frontier": { + "templateId": "AthenaDance:EID_Frontier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FrozenReality": { + "templateId": "AthenaDance:EID_FrozenReality", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Fuchsia": { + "templateId": "AthenaDance:EID_Fuchsia", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FutureSamurai": { + "templateId": "AthenaDance:EID_FutureSamurai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_FuzzBall": { + "templateId": "AthenaDance:EID_FuzzBall", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GabbyHipHop_01": { + "templateId": "AthenaDance:EID_GabbyHipHop_01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GalaxyLevel": { + "templateId": "AthenaDance:EID_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Galileo1_B3EX6": { + "templateId": "AthenaDance:EID_Galileo1_B3EX6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Galileo2_2VYEJ": { + "templateId": "AthenaDance:EID_Galileo2_2VYEJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Galileo3_T4DKO": { + "templateId": "AthenaDance:EID_Galileo3_T4DKO", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Galileo4_PXPE0": { + "templateId": "AthenaDance:EID_Galileo4_PXPE0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GalileoShow_Cheer": { + "templateId": "AthenaDance:EID_GalileoShow_Cheer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GasStation_104FQ": { + "templateId": "AthenaDance:EID_GasStation_104FQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GetFunky": { + "templateId": "AthenaDance:EID_GetFunky", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GetOverHere": { + "templateId": "AthenaDance:EID_GetOverHere", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GetTheHorns": { + "templateId": "AthenaDance:EID_GetTheHorns", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GhostHunter": { + "templateId": "AthenaDance:EID_GhostHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Gimmick_Female_6CMF4": { + "templateId": "AthenaDance:EID_Gimmick_Female_6CMF4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Gimmick_Male_8ZFCA": { + "templateId": "AthenaDance:EID_Gimmick_Male_8ZFCA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Gleam": { + "templateId": "AthenaDance:EID_Gleam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GlowstickDance": { + "templateId": "AthenaDance:EID_GlowstickDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GoatDance": { + "templateId": "AthenaDance:EID_GoatDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GoatDance_Sync": { + "templateId": "AthenaDance:EID_GoatDance_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GoatDance_Sync_Owned": { + "templateId": "AthenaDance:EID_GoatDance_Sync_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GolfClap": { + "templateId": "AthenaDance:EID_GolfClap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Goodbye": { + "templateId": "AthenaDance:EID_Goodbye", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GoodVibes": { + "templateId": "AthenaDance:EID_GoodVibes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GothDance": { + "templateId": "AthenaDance:EID_GothDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Grapefruit": { + "templateId": "AthenaDance:EID_Grapefruit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Grasshopper_8D51K": { + "templateId": "AthenaDance:EID_Grasshopper_8D51K", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Griddles": { + "templateId": "AthenaDance:EID_Griddles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GrilledCheese_N31C9": { + "templateId": "AthenaDance:EID_GrilledCheese_N31C9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GrooveJam": { + "templateId": "AthenaDance:EID_GrooveJam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Grooving": { + "templateId": "AthenaDance:EID_Grooving", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GroovingSparkle": { + "templateId": "AthenaDance:EID_GroovingSparkle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GroovyPetals": { + "templateId": "AthenaDance:EID_GroovyPetals", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GroovyReader": { + "templateId": "AthenaDance:EID_GroovyReader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GuitarWalk": { + "templateId": "AthenaDance:EID_GuitarWalk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Gumball": { + "templateId": "AthenaDance:EID_Gumball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GunspinnerTeacup": { + "templateId": "AthenaDance:EID_GunspinnerTeacup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_GwaraDance": { + "templateId": "AthenaDance:EID_GwaraDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HackySack": { + "templateId": "AthenaDance:EID_HackySack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HailingCab": { + "templateId": "AthenaDance:EID_HailingCab", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HalloweenCandy": { + "templateId": "AthenaDance:EID_HalloweenCandy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Handlebars": { + "templateId": "AthenaDance:EID_Handlebars", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HandSignals": { + "templateId": "AthenaDance:EID_HandSignals", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HandstandLegDab": { + "templateId": "AthenaDance:EID_HandstandLegDab", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HandsUp": { + "templateId": "AthenaDance:EID_HandsUp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HappyBirthday": { + "templateId": "AthenaDance:EID_HappyBirthday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HappySkipping": { + "templateId": "AthenaDance:EID_HappySkipping", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HappyWave": { + "templateId": "AthenaDance:EID_HappyWave", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Haste1_T98Z9": { + "templateId": "AthenaDance:EID_Haste1_T98Z9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HawtChamp": { + "templateId": "AthenaDance:EID_HawtChamp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Headband": { + "templateId": "AthenaDance:EID_Headband", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HeadBang": { + "templateId": "AthenaDance:EID_HeadBang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HeadBangRaisin": { + "templateId": "AthenaDance:EID_HeadBangRaisin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Headset": { + "templateId": "AthenaDance:EID_Headset", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HeadShake": { + "templateId": "AthenaDance:EID_HeadShake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Heartsign": { + "templateId": "AthenaDance:EID_Heartsign", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Heartsign_Sync": { + "templateId": "AthenaDance:EID_Heartsign_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Heartsign_Sync_Follower": { + "templateId": "AthenaDance:EID_Heartsign_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Heartsign_Sync_Owned": { + "templateId": "AthenaDance:EID_Heartsign_Sync_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Heartsign_Sync_Owned_Follower": { + "templateId": "AthenaDance:EID_Heartsign_Sync_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HeavyRoar": { + "templateId": "AthenaDance:EID_HeavyRoar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HeavyRoarDance": { + "templateId": "AthenaDance:EID_HeavyRoarDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HeelClick": { + "templateId": "AthenaDance:EID_HeelClick", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Herald": { + "templateId": "AthenaDance:EID_Herald", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Herald_NPC": { + "templateId": "AthenaDance:EID_Herald_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HiFive": { + "templateId": "AthenaDance:EID_HiFive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HiFive_JoinAdHocSquads": { + "templateId": "AthenaDance:EID_HiFive_JoinAdHocSquads", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HiFive_Sync": { + "templateId": "AthenaDance:EID_HiFive_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HiFive_SyncOwned": { + "templateId": "AthenaDance:EID_HiFive_SyncOwned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HiFive_SyncOwned_InfiniteTolerance": { + "templateId": "AthenaDance:EID_HiFive_SyncOwned_InfiniteTolerance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HiFive_Sync_InfiniteTolerance": { + "templateId": "AthenaDance:EID_HiFive_Sync_InfiniteTolerance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HighActivity": { + "templateId": "AthenaDance:EID_HighActivity", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HighMotion": { + "templateId": "AthenaDance:EID_HighMotion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HightowerDate": { + "templateId": "AthenaDance:EID_HightowerDate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HightowerDate_NPC": { + "templateId": "AthenaDance:EID_HightowerDate_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HightowerGrape": { + "templateId": "AthenaDance:EID_HightowerGrape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HightowerHoneydew": { + "templateId": "AthenaDance:EID_HightowerHoneydew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HightowerMango": { + "templateId": "AthenaDance:EID_HightowerMango", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HightowerSquash": { + "templateId": "AthenaDance:EID_HightowerSquash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HightowerTapas": { + "templateId": "AthenaDance:EID_HightowerTapas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HightowerTomato": { + "templateId": "AthenaDance:EID_HightowerTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HightowerTomato_NPC": { + "templateId": "AthenaDance:EID_HightowerTomato_NPC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HightowerWasabi": { + "templateId": "AthenaDance:EID_HightowerWasabi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Hilda": { + "templateId": "AthenaDance:EID_Hilda", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HiLowWave": { + "templateId": "AthenaDance:EID_HiLowWave", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HipHop01": { + "templateId": "AthenaDance:EID_HipHop01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HipHopS5": { + "templateId": "AthenaDance:EID_HipHopS5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HipHopS7": { + "templateId": "AthenaDance:EID_HipHopS7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HipToBeSquare": { + "templateId": "AthenaDance:EID_HipToBeSquare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Historian_2TEF8": { + "templateId": "AthenaDance:EID_Historian_2TEF8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Hitchhiker": { + "templateId": "AthenaDance:EID_Hitchhiker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HNYGoodRiddance": { + "templateId": "AthenaDance:EID_HNYGoodRiddance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Hoist": { + "templateId": "AthenaDance:EID_Hoist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HoldOnAMinute": { + "templateId": "AthenaDance:EID_HoldOnAMinute", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HolidayCracker": { + "templateId": "AthenaDance:EID_HolidayCracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HolidayCracker_Owned": { + "templateId": "AthenaDance:EID_HolidayCracker_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HolidayCracker_Sync": { + "templateId": "AthenaDance:EID_HolidayCracker_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HolidayCracker_Sync_Follower": { + "templateId": "AthenaDance:EID_HolidayCracker_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HolidayCracker_Sync_Owned_Follower": { + "templateId": "AthenaDance:EID_HolidayCracker_Sync_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Hopper": { + "templateId": "AthenaDance:EID_Hopper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Hoppin": { + "templateId": "AthenaDance:EID_Hoppin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HornedJudgment": { + "templateId": "AthenaDance:EID_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HotPink": { + "templateId": "AthenaDance:EID_HotPink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HotStuff": { + "templateId": "AthenaDance:EID_HotStuff", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Hula": { + "templateId": "AthenaDance:EID_Hula", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HulaHoop": { + "templateId": "AthenaDance:EID_HulaHoop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_HulaHoopChallenge": { + "templateId": "AthenaDance:EID_HulaHoopChallenge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Hurrah": { + "templateId": "AthenaDance:EID_Hurrah", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Hurrah_Follower": { + "templateId": "AthenaDance:EID_Hurrah_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Hustle": { + "templateId": "AthenaDance:EID_Hustle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Huzzah": { + "templateId": "AthenaDance:EID_Huzzah", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Huzzah_Owned": { + "templateId": "AthenaDance:EID_Huzzah_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Huzzah_Owned_Follower": { + "templateId": "AthenaDance:EID_Huzzah_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Huzzah_Sync": { + "templateId": "AthenaDance:EID_Huzzah_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Huzzah_Sync_Follower": { + "templateId": "AthenaDance:EID_Huzzah_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Hydraulics": { + "templateId": "AthenaDance:EID_Hydraulics", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Hype": { + "templateId": "AthenaDance:EID_Hype", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_IceKing": { + "templateId": "AthenaDance:EID_IceKing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Iconic": { + "templateId": "AthenaDance:EID_Iconic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_IDontKnow": { + "templateId": "AthenaDance:EID_IDontKnow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Ignite": { + "templateId": "AthenaDance:EID_Ignite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Impulse": { + "templateId": "AthenaDance:EID_Impulse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Impulse_Follower": { + "templateId": "AthenaDance:EID_Impulse_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_IndianDance": { + "templateId": "AthenaDance:EID_IndianDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_IndieBucket": { + "templateId": "AthenaDance:EID_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Indigo": { + "templateId": "AthenaDance:EID_Indigo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_IndigoApple": { + "templateId": "AthenaDance:EID_IndigoApple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Inferno": { + "templateId": "AthenaDance:EID_Inferno", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_InfiniteDab": { + "templateId": "AthenaDance:EID_InfiniteDab", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_InfiniteDabRaisin": { + "templateId": "AthenaDance:EID_InfiniteDabRaisin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_InspireSpell": { + "templateId": "AthenaDance:EID_InspireSpell", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_InstantGravel": { + "templateId": "AthenaDance:EID_InstantGravel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Intensity": { + "templateId": "AthenaDance:EID_Intensity", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Intensity_Copy": { + "templateId": "AthenaDance:EID_Intensity_Copy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Interstellar": { + "templateId": "AthenaDance:EID_Interstellar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Intertwine": { + "templateId": "AthenaDance:EID_Intertwine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_IrishJig": { + "templateId": "AthenaDance:EID_IrishJig", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Irons": { + "templateId": "AthenaDance:EID_Irons", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Jammin": { + "templateId": "AthenaDance:EID_Jammin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Jammin_Copy": { + "templateId": "AthenaDance:EID_Jammin_Copy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_JanuaryBop": { + "templateId": "AthenaDance:EID_JanuaryBop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Jaywalking": { + "templateId": "AthenaDance:EID_Jaywalking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_JazzDance": { + "templateId": "AthenaDance:EID_JazzDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_JazzHands": { + "templateId": "AthenaDance:EID_JazzHands", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_JellyFrog": { + "templateId": "AthenaDance:EID_JellyFrog", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Jiggle": { + "templateId": "AthenaDance:EID_Jiggle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Jingle": { + "templateId": "AthenaDance:EID_Jingle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Jockey": { + "templateId": "AthenaDance:EID_Jockey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Jokes": { + "templateId": "AthenaDance:EID_Jokes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Journey": { + "templateId": "AthenaDance:EID_Journey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_JourneyMentor_X2D9N": { + "templateId": "AthenaDance:EID_JourneyMentor_X2D9N", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Jovial": { + "templateId": "AthenaDance:EID_Jovial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Juggler": { + "templateId": "AthenaDance:EID_Juggler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Jugular": { + "templateId": "AthenaDance:EID_Jugular", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Jugular_Banjo": { + "templateId": "AthenaDance:EID_Jugular_Banjo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Jugular_Fiddle": { + "templateId": "AthenaDance:EID_Jugular_Fiddle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Jugular_Guitar": { + "templateId": "AthenaDance:EID_Jugular_Guitar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_JulyBooks": { + "templateId": "AthenaDance:EID_JulyBooks", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_JumpingJack": { + "templateId": "AthenaDance:EID_JumpingJack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_JumpingJoy_WKPG4": { + "templateId": "AthenaDance:EID_JumpingJoy_WKPG4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_JumpStyleDance": { + "templateId": "AthenaDance:EID_JumpStyleDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_JungleBoss": { + "templateId": "AthenaDance:EID_JungleBoss", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Jupiter_7JZ9R": { + "templateId": "AthenaDance:EID_Jupiter_7JZ9R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_JustHome": { + "templateId": "AthenaDance:EID_JustHome", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KEagle": { + "templateId": "AthenaDance:EID_KEagle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KeeperDreamChorus": { + "templateId": "AthenaDance:EID_KeeperDreamChorus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KeeperDreamGlowstick": { + "templateId": "AthenaDance:EID_KeeperDreamGlowstick", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KeeperDreamHook": { + "templateId": "AthenaDance:EID_KeeperDreamHook", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KeplerFemale_C98JD": { + "templateId": "AthenaDance:EID_KeplerFemale_C98JD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KeplerMale_OQS83": { + "templateId": "AthenaDance:EID_KeplerMale_OQS83", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Kilo_VD0PK": { + "templateId": "AthenaDance:EID_Kilo_VD0PK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KingEagle": { + "templateId": "AthenaDance:EID_KingEagle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KissKiss": { + "templateId": "AthenaDance:EID_KissKiss", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KitchenNavigator": { + "templateId": "AthenaDance:EID_KitchenNavigator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Kittycat": { + "templateId": "AthenaDance:EID_Kittycat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KnightCat": { + "templateId": "AthenaDance:EID_KnightCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KPopDance01": { + "templateId": "AthenaDance:EID_KPopDance01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KPopDance02": { + "templateId": "AthenaDance:EID_KPopDance02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KPopDance03": { + "templateId": "AthenaDance:EID_KPopDance03", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KpopDance04": { + "templateId": "AthenaDance:EID_KpopDance04", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KungFuSalute": { + "templateId": "AthenaDance:EID_KungFuSalute", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_KungFuShadowBoxing": { + "templateId": "AthenaDance:EID_KungFuShadowBoxing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LasagnaDance": { + "templateId": "AthenaDance:EID_LasagnaDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LasagnaFlex": { + "templateId": "AthenaDance:EID_LasagnaFlex", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LassoPolo_G5AI0": { + "templateId": "AthenaDance:EID_LassoPolo_G5AI0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Lasso_ADP0O": { + "templateId": "AthenaDance:EID_Lasso_ADP0O", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LastVoice": { + "templateId": "AthenaDance:EID_LastVoice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Lateral_7QJD6": { + "templateId": "AthenaDance:EID_Lateral_7QJD6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Laugh": { + "templateId": "AthenaDance:EID_Laugh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LaughTrack": { + "templateId": "AthenaDance:EID_LaughTrack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Layers_BBZ49": { + "templateId": "AthenaDance:EID_Layers_BBZ49", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LazarusLens": { + "templateId": "AthenaDance:EID_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LazyShuffle": { + "templateId": "AthenaDance:EID_LazyShuffle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LetsBegin": { + "templateId": "AthenaDance:EID_LetsBegin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LetsPlay": { + "templateId": "AthenaDance:EID_LetsPlay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Lettuce": { + "templateId": "AthenaDance:EID_Lettuce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Lexa": { + "templateId": "AthenaDance:EID_Lexa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Lifted": { + "templateId": "AthenaDance:EID_Lifted", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LilSplit": { + "templateId": "AthenaDance:EID_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LimaBean": { + "templateId": "AthenaDance:EID_LimaBean", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LineDance": { + "templateId": "AthenaDance:EID_LineDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LittleEgg_69OX0": { + "templateId": "AthenaDance:EID_LittleEgg_69OX0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LivingLarge": { + "templateId": "AthenaDance:EID_LivingLarge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LlamaBell": { + "templateId": "AthenaDance:EID_LlamaBell", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LlamaBellRaisin": { + "templateId": "AthenaDance:EID_LlamaBellRaisin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LlamaFloat": { + "templateId": "AthenaDance:EID_LlamaFloat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LlamaMarch": { + "templateId": "AthenaDance:EID_LlamaMarch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LlamaRider_Glitter": { + "templateId": "AthenaDance:EID_LlamaRider_Glitter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LocalZilla": { + "templateId": "AthenaDance:EID_LocalZilla", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LockItUp": { + "templateId": "AthenaDance:EID_LockItUp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LogarithmKick_NJVD8": { + "templateId": "AthenaDance:EID_LogarithmKick_NJVD8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LogarithmWhoa_T3PF9": { + "templateId": "AthenaDance:EID_LogarithmWhoa_T3PF9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Lonely": { + "templateId": "AthenaDance:EID_Lonely", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LoneWolf": { + "templateId": "AthenaDance:EID_LoneWolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Loofah": { + "templateId": "AthenaDance:EID_Loofah", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LookAtThis": { + "templateId": "AthenaDance:EID_LookAtThis", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LoudPhoenix": { + "templateId": "AthenaDance:EID_LoudPhoenix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Lounging": { + "templateId": "AthenaDance:EID_Lounging", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_LunchBox": { + "templateId": "AthenaDance:EID_LunchBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Lyrical": { + "templateId": "AthenaDance:EID_Lyrical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Macaroon_45LHE": { + "templateId": "AthenaDance:EID_Macaroon_45LHE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MadameMoth": { + "templateId": "AthenaDance:EID_MadameMoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MagicMan": { + "templateId": "AthenaDance:EID_MagicMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MagicMeadow": { + "templateId": "AthenaDance:EID_MagicMeadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Majesty_49JWY": { + "templateId": "AthenaDance:EID_Majesty_49JWY", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MakeItPlantain": { + "templateId": "AthenaDance:EID_MakeItPlantain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MakeItRain": { + "templateId": "AthenaDance:EID_MakeItRain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MakeItRainV2": { + "templateId": "AthenaDance:EID_MakeItRainV2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Malleable": { + "templateId": "AthenaDance:EID_Malleable", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ManAndMonster": { + "templateId": "AthenaDance:EID_ManAndMonster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Maracas": { + "templateId": "AthenaDance:EID_Maracas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Marionette": { + "templateId": "AthenaDance:EID_Marionette", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Marionette_BassGuitar": { + "templateId": "AthenaDance:EID_Marionette_BassGuitar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Marionette_Drums": { + "templateId": "AthenaDance:EID_Marionette_Drums", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Marionette_Follower": { + "templateId": "AthenaDance:EID_Marionette_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Marionette_LeadGuitar": { + "templateId": "AthenaDance:EID_Marionette_LeadGuitar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Marionette_RhythmGuitar": { + "templateId": "AthenaDance:EID_Marionette_RhythmGuitar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Marionette_Sync": { + "templateId": "AthenaDance:EID_Marionette_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Marionette_Sync_Follower": { + "templateId": "AthenaDance:EID_Marionette_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Marionette_Sync_Leader": { + "templateId": "AthenaDance:EID_Marionette_Sync_Leader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MartialArts": { + "templateId": "AthenaDance:EID_MartialArts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Martian_SK4J6": { + "templateId": "AthenaDance:EID_Martian_SK4J6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Marvelous": { + "templateId": "AthenaDance:EID_Marvelous", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MashedPotato": { + "templateId": "AthenaDance:EID_MashedPotato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MathDance": { + "templateId": "AthenaDance:EID_MathDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MaxEnergize": { + "templateId": "AthenaDance:EID_MaxEnergize", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MechPeely": { + "templateId": "AthenaDance:EID_MechPeely", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Melancholy": { + "templateId": "AthenaDance:EID_Melancholy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MercurialStorm": { + "templateId": "AthenaDance:EID_MercurialStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Meticulous": { + "templateId": "AthenaDance:EID_Meticulous", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Meticulous_Owned": { + "templateId": "AthenaDance:EID_Meticulous_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Meticulous_Owned_Follower": { + "templateId": "AthenaDance:EID_Meticulous_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Meticulous_Sync": { + "templateId": "AthenaDance:EID_Meticulous_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Meticulous_Sync_Follower": { + "templateId": "AthenaDance:EID_Meticulous_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MicDrop": { + "templateId": "AthenaDance:EID_MicDrop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Mime": { + "templateId": "AthenaDance:EID_Mime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MindBlown": { + "templateId": "AthenaDance:EID_MindBlown", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ModerateAmount_9LUN1": { + "templateId": "AthenaDance:EID_ModerateAmount_9LUN1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Monarch": { + "templateId": "AthenaDance:EID_Monarch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MonteCarlo": { + "templateId": "AthenaDance:EID_MonteCarlo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MonteKeyboard": { + "templateId": "AthenaDance:EID_MonteKeyboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Moonwalking": { + "templateId": "AthenaDance:EID_Moonwalking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MotorcycleMayhem": { + "templateId": "AthenaDance:EID_MotorcycleMayhem", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Mouse": { + "templateId": "AthenaDance:EID_Mouse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MusketSlinger": { + "templateId": "AthenaDance:EID_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MyEffort_BT5Z0": { + "templateId": "AthenaDance:EID_MyEffort_BT5Z0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_MyIdol": { + "templateId": "AthenaDance:EID_MyIdol", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Mystic": { + "templateId": "AthenaDance:EID_Mystic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Nebula": { + "templateId": "AthenaDance:EID_Nebula", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_NeedToGo": { + "templateId": "AthenaDance:EID_NeedToGo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_NeonCatSpy": { + "templateId": "AthenaDance:EID_NeonCatSpy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_NeverGonna": { + "templateId": "AthenaDance:EID_NeverGonna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_NeverGonnaRaisin": { + "templateId": "AthenaDance:EID_NeverGonnaRaisin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Nighthawk": { + "templateId": "AthenaDance:EID_Nighthawk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_NightHawk_V2": { + "templateId": "AthenaDance:EID_NightHawk_V2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_NightHawk_V3": { + "templateId": "AthenaDance:EID_NightHawk_V3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Nightmare_MS3AQ": { + "templateId": "AthenaDance:EID_Nightmare_MS3AQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Nightmare_NPC_M6EXP": { + "templateId": "AthenaDance:EID_Nightmare_NPC_M6EXP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Nimble": { + "templateId": "AthenaDance:EID_Nimble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_NitroFlow": { + "templateId": "AthenaDance:EID_NitroFlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Noble": { + "templateId": "AthenaDance:EID_Noble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_NodHeadPapayaComms": { + "templateId": "AthenaDance:EID_NodHeadPapayaComms", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Noodles_X6R9E": { + "templateId": "AthenaDance:EID_Noodles_X6R9E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_NotToday": { + "templateId": "AthenaDance:EID_NotToday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_NPC_ByTheFire": { + "templateId": "AthenaDance:EID_NPC_ByTheFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Obsidian": { + "templateId": "AthenaDance:EID_Obsidian", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_OceanBreeze": { + "templateId": "AthenaDance:EID_OceanBreeze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Octopus": { + "templateId": "AthenaDance:EID_Octopus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Office": { + "templateId": "AthenaDance:EID_Office", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_OG_RunningMan": { + "templateId": "AthenaDance:EID_OG_RunningMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Ohana": { + "templateId": "AthenaDance:EID_Ohana", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_OilPaint": { + "templateId": "AthenaDance:EID_OilPaint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_OneArmFloss": { + "templateId": "AthenaDance:EID_OneArmFloss", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_OnTheHook": { + "templateId": "AthenaDance:EID_OnTheHook", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Onward": { + "templateId": "AthenaDance:EID_Onward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_OrbitTeal_1XLAO": { + "templateId": "AthenaDance:EID_OrbitTeal_1XLAO", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_OrderGuard": { + "templateId": "AthenaDance:EID_OrderGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_OriginPrisoner": { + "templateId": "AthenaDance:EID_OriginPrisoner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_OstrichSpin": { + "templateId": "AthenaDance:EID_OstrichSpin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_OuterGarment": { + "templateId": "AthenaDance:EID_OuterGarment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_OverUnder_K3T0G": { + "templateId": "AthenaDance:EID_OverUnder_K3T0G", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Pages": { + "templateId": "AthenaDance:EID_Pages", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ParallelComic": { + "templateId": "AthenaDance:EID_ParallelComic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PartyJazzTwinkleToes": { + "templateId": "AthenaDance:EID_PartyJazzTwinkleToes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PartyJazzWigglyDance": { + "templateId": "AthenaDance:EID_PartyJazzWigglyDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PatPat": { + "templateId": "AthenaDance:EID_PatPat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PatPat_Sync": { + "templateId": "AthenaDance:EID_PatPat_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PatPat_Sync_Follower": { + "templateId": "AthenaDance:EID_PatPat_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PatPat_Sync_Owned_Follower": { + "templateId": "AthenaDance:EID_PatPat_Sync_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Paws": { + "templateId": "AthenaDance:EID_Paws", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PeelyBones": { + "templateId": "AthenaDance:EID_PeelyBones", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PenguinWalk": { + "templateId": "AthenaDance:EID_PenguinWalk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Phew": { + "templateId": "AthenaDance:EID_Phew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PhoneWavePapayaComms": { + "templateId": "AthenaDance:EID_PhoneWavePapayaComms", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Phonograph": { + "templateId": "AthenaDance:EID_Phonograph", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Photographer": { + "templateId": "AthenaDance:EID_Photographer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PinkSpike": { + "templateId": "AthenaDance:EID_PinkSpike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PinkWidow": { + "templateId": "AthenaDance:EID_PinkWidow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PirateGold": { + "templateId": "AthenaDance:EID_PirateGold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PizzaParty": { + "templateId": "AthenaDance:EID_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Pizzatime": { + "templateId": "AthenaDance:EID_Pizzatime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PlayerEleven": { + "templateId": "AthenaDance:EID_PlayerEleven", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PlotTwist": { + "templateId": "AthenaDance:EID_PlotTwist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Plummet": { + "templateId": "AthenaDance:EID_Plummet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PogoTraversal": { + "templateId": "AthenaDance:EID_PogoTraversal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PointFingerPapayaComms": { + "templateId": "AthenaDance:EID_PointFingerPapayaComms", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Pompous": { + "templateId": "AthenaDance:EID_Pompous", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Ponder": { + "templateId": "AthenaDance:EID_Ponder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Popcorn": { + "templateId": "AthenaDance:EID_Popcorn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PopDance01": { + "templateId": "AthenaDance:EID_PopDance01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PopLock": { + "templateId": "AthenaDance:EID_PopLock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Potassium": { + "templateId": "AthenaDance:EID_Potassium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PoutyClap": { + "templateId": "AthenaDance:EID_PoutyClap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PowerFarmer": { + "templateId": "AthenaDance:EID_PowerFarmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PraiseStorm": { + "templateId": "AthenaDance:EID_PraiseStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PraiseTheTomato": { + "templateId": "AthenaDance:EID_PraiseTheTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Prance": { + "templateId": "AthenaDance:EID_Prance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Prance_Follower": { + "templateId": "AthenaDance:EID_Prance_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PresentOpening": { + "templateId": "AthenaDance:EID_PresentOpening", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PrivateJet": { + "templateId": "AthenaDance:EID_PrivateJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ProfessorPup": { + "templateId": "AthenaDance:EID_ProfessorPup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Promenade": { + "templateId": "AthenaDance:EID_Promenade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Promenade_Follower": { + "templateId": "AthenaDance:EID_Promenade_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Promenade_Sync": { + "templateId": "AthenaDance:EID_Promenade_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ProVisitorProtest": { + "templateId": "AthenaDance:EID_ProVisitorProtest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Psychic_7SO2Z": { + "templateId": "AthenaDance:EID_Psychic_7SO2Z", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Pump": { + "templateId": "AthenaDance:EID_Pump", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PumpkinDance": { + "templateId": "AthenaDance:EID_PumpkinDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Punctual": { + "templateId": "AthenaDance:EID_Punctual", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PunkKoi": { + "templateId": "AthenaDance:EID_PunkKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Pupil": { + "templateId": "AthenaDance:EID_Pupil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PureSalt": { + "templateId": "AthenaDance:EID_PureSalt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_PuzzleBox": { + "templateId": "AthenaDance:EID_PuzzleBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Quantity_39X5D": { + "templateId": "AthenaDance:EID_Quantity_39X5D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_QuarrelFemale_4ABL0": { + "templateId": "AthenaDance:EID_QuarrelFemale_4ABL0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_QuarrelMale_SGVNE": { + "templateId": "AthenaDance:EID_QuarrelMale_SGVNE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_QuickSweeper": { + "templateId": "AthenaDance:EID_QuickSweeper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RaceStart": { + "templateId": "AthenaDance:EID_RaceStart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RageQuit": { + "templateId": "AthenaDance:EID_RageQuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RaiseTheRoof": { + "templateId": "AthenaDance:EID_RaiseTheRoof", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RankedProgression": { + "templateId": "AthenaDance:EID_RankedProgression", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Realm": { + "templateId": "AthenaDance:EID_Realm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RebelClaw": { + "templateId": "AthenaDance:EID_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RedCard": { + "templateId": "AthenaDance:EID_RedCard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RedPepper": { + "templateId": "AthenaDance:EID_RedPepper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Reflection": { + "templateId": "AthenaDance:EID_Reflection", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RegalWave": { + "templateId": "AthenaDance:EID_RegalWave", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Reign": { + "templateId": "AthenaDance:EID_Reign", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Reign_Follower": { + "templateId": "AthenaDance:EID_Reign_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Reign_Owned": { + "templateId": "AthenaDance:EID_Reign_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Reign_Sync": { + "templateId": "AthenaDance:EID_Reign_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Reign_Sync_Follower": { + "templateId": "AthenaDance:EID_Reign_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Reign_Sync_Owned_Follower": { + "templateId": "AthenaDance:EID_Reign_Sync_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Relaxed": { + "templateId": "AthenaDance:EID_Relaxed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Relish_TNPZI": { + "templateId": "AthenaDance:EID_Relish_TNPZI", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RememberMe": { + "templateId": "AthenaDance:EID_RememberMe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RespectThePeace": { + "templateId": "AthenaDance:EID_RespectThePeace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RespectThePeace_LeaveAdHocSquad": { + "templateId": "AthenaDance:EID_RespectThePeace_LeaveAdHocSquad", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RespectThePeace_RemovePartyRift": { + "templateId": "AthenaDance:EID_RespectThePeace_RemovePartyRift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Reverence": { + "templateId": "AthenaDance:EID_Reverence", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RhymeLockReward": { + "templateId": "AthenaDance:EID_RhymeLockReward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RhymeLock_5B2Y3": { + "templateId": "AthenaDance:EID_RhymeLock_5B2Y3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RibbonDance": { + "templateId": "AthenaDance:EID_RibbonDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RichFam": { + "templateId": "AthenaDance:EID_RichFam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RideThePonyTwo": { + "templateId": "AthenaDance:EID_RideThePonyTwo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RideThePony_Athena": { + "templateId": "AthenaDance:EID_RideThePony_Athena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RigorMortis": { + "templateId": "AthenaDance:EID_RigorMortis", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RippedHarvester": { + "templateId": "AthenaDance:EID_RippedHarvester", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RoastingMarshmallow": { + "templateId": "AthenaDance:EID_RoastingMarshmallow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Robot": { + "templateId": "AthenaDance:EID_Robot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RocketRodeo": { + "templateId": "AthenaDance:EID_RocketRodeo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RockGuitar": { + "templateId": "AthenaDance:EID_RockGuitar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RockingChair": { + "templateId": "AthenaDance:EID_RockingChair", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RockPaperScissors": { + "templateId": "AthenaDance:EID_RockPaperScissors", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RollerBlade": { + "templateId": "AthenaDance:EID_RollerBlade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RoosterMech": { + "templateId": "AthenaDance:EID_RoosterMech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RoseDust": { + "templateId": "AthenaDance:EID_RoseDust", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Rover_98BFX": { + "templateId": "AthenaDance:EID_Rover_98BFX", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Roving": { + "templateId": "AthenaDance:EID_Roving", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Ruckus": { + "templateId": "AthenaDance:EID_Ruckus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RuckusMiniFollower": { + "templateId": "AthenaDance:EID_RuckusMiniFollower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RuckusMiniLeader": { + "templateId": "AthenaDance:EID_RuckusMiniLeader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RuckusMini_HW9YF": { + "templateId": "AthenaDance:EID_RuckusMini_HW9YF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Ruckus_Follower": { + "templateId": "AthenaDance:EID_Ruckus_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Rumble_Female": { + "templateId": "AthenaDance:EID_Rumble_Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Rumble_Male": { + "templateId": "AthenaDance:EID_Rumble_Male", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RunningMan": { + "templateId": "AthenaDance:EID_RunningMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RunningManv3": { + "templateId": "AthenaDance:EID_RunningManv3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_RustyBolt_ZMR13": { + "templateId": "AthenaDance:EID_RustyBolt_ZMR13", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SadTrombone": { + "templateId": "AthenaDance:EID_SadTrombone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Sahara": { + "templateId": "AthenaDance:EID_Sahara", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Salute": { + "templateId": "AthenaDance:EID_Salute", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SandwichBop": { + "templateId": "AthenaDance:EID_SandwichBop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Sashimi": { + "templateId": "AthenaDance:EID_Sashimi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Saucer": { + "templateId": "AthenaDance:EID_Saucer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Saxophone": { + "templateId": "AthenaDance:EID_Saxophone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Scholar": { + "templateId": "AthenaDance:EID_Scholar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Schoolyard": { + "templateId": "AthenaDance:EID_Schoolyard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ScoreCard": { + "templateId": "AthenaDance:EID_ScoreCard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ScoreCardBurger": { + "templateId": "AthenaDance:EID_ScoreCardBurger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ScorecardTomato": { + "templateId": "AthenaDance:EID_ScorecardTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ScorpionZero": { + "templateId": "AthenaDance:EID_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Scribe": { + "templateId": "AthenaDance:EID_Scribe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ScrubDub": { + "templateId": "AthenaDance:EID_ScrubDub", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretHandshake": { + "templateId": "AthenaDance:EID_SecretHandshake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretHandshake_Owned": { + "templateId": "AthenaDance:EID_SecretHandshake_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretHandshake_Owned_Follower": { + "templateId": "AthenaDance:EID_SecretHandshake_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretHandshake_Sync": { + "templateId": "AthenaDance:EID_SecretHandshake_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretHandshake_Sync_Follower": { + "templateId": "AthenaDance:EID_SecretHandshake_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretSlash_Owned": { + "templateId": "AthenaDance:EID_SecretSlash_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretSlash_Owned_Follower": { + "templateId": "AthenaDance:EID_SecretSlash_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretSlash_Synch": { + "templateId": "AthenaDance:EID_SecretSlash_Synch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretSlash_Synch_Follower": { + "templateId": "AthenaDance:EID_SecretSlash_Synch_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretSlash_UJT33": { + "templateId": "AthenaDance:EID_SecretSlash_UJT33", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretSplit_7FOGY": { + "templateId": "AthenaDance:EID_SecretSplit_7FOGY", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretSplit_Owned": { + "templateId": "AthenaDance:EID_SecretSplit_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretSplit_Owned_Follower": { + "templateId": "AthenaDance:EID_SecretSplit_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretSplit_Synch": { + "templateId": "AthenaDance:EID_SecretSplit_Synch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecretSplit_Synch_Follower": { + "templateId": "AthenaDance:EID_SecretSplit_Synch_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SecurityGuard": { + "templateId": "AthenaDance:EID_SecurityGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SexyFlip": { + "templateId": "AthenaDance:EID_SexyFlip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Shadowboxing": { + "templateId": "AthenaDance:EID_Shadowboxing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Shaka": { + "templateId": "AthenaDance:EID_Shaka", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ShakeHeadPapayaComms": { + "templateId": "AthenaDance:EID_ShakeHeadPapayaComms", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ShallWe": { + "templateId": "AthenaDance:EID_ShallWe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Shaolin": { + "templateId": "AthenaDance:EID_Shaolin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ShaolinSipUp": { + "templateId": "AthenaDance:EID_ShaolinSipUp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Sharpfang": { + "templateId": "AthenaDance:EID_Sharpfang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SharpMagnet": { + "templateId": "AthenaDance:EID_SharpMagnet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Shimmy": { + "templateId": "AthenaDance:EID_Shimmy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Shindig_8W1AW": { + "templateId": "AthenaDance:EID_Shindig_8W1AW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EId_Shindig_Follower": { + "templateId": "AthenaDance:EId_Shindig_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EId_Shindig_Sync": { + "templateId": "AthenaDance:EId_Shindig_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Shinobi": { + "templateId": "AthenaDance:EID_Shinobi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Shiny": { + "templateId": "AthenaDance:EID_Shiny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Shorts": { + "templateId": "AthenaDance:EID_Shorts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ShortScare": { + "templateId": "AthenaDance:EID_ShortScare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Showstopper": { + "templateId": "AthenaDance:EID_Showstopper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Sienna": { + "templateId": "AthenaDance:EID_Sienna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SignSpinner": { + "templateId": "AthenaDance:EID_SignSpinner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SilentTempo": { + "templateId": "AthenaDance:EID_SilentTempo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SillyJumps": { + "templateId": "AthenaDance:EID_SillyJumps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SingAlong": { + "templateId": "AthenaDance:EID_SingAlong", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SirWolf": { + "templateId": "AthenaDance:EID_SirWolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SitPapayaComms": { + "templateId": "AthenaDance:EID_SitPapayaComms", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Skeemote_K5J4J": { + "templateId": "AthenaDance:EID_Skeemote_K5J4J", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SkeletonDance": { + "templateId": "AthenaDance:EID_SkeletonDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SkippingClouds": { + "templateId": "AthenaDance:EID_SkippingClouds", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SkirmishFemale_I5OTJ": { + "templateId": "AthenaDance:EID_SkirmishFemale_I5OTJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SkirmishMale_FGPJ3": { + "templateId": "AthenaDance:EID_SkirmishMale_FGPJ3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Sleek_S20CU": { + "templateId": "AthenaDance:EID_Sleek_S20CU", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SleighIt": { + "templateId": "AthenaDance:EID_SleighIt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Slither_DAXD6": { + "templateId": "AthenaDance:EID_Slither_DAXD6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SlowClap": { + "templateId": "AthenaDance:EID_SlowClap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SmallFry_KFFA1": { + "templateId": "AthenaDance:EID_SmallFry_KFFA1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SmartHyena": { + "templateId": "AthenaDance:EID_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SmokeBombFail": { + "templateId": "AthenaDance:EID_SmokeBombFail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Snap": { + "templateId": "AthenaDance:EID_Snap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Snap_DeployPartyRift": { + "templateId": "AthenaDance:EID_Snap_DeployPartyRift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SneakingTraversal": { + "templateId": "AthenaDance:EID_SneakingTraversal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Snowfall_H6LU9": { + "templateId": "AthenaDance:EID_Snowfall_H6LU9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SnowGlobe": { + "templateId": "AthenaDance:EID_SnowGlobe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SnowKnight": { + "templateId": "AthenaDance:EID_SnowKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SoccerJuggling": { + "templateId": "AthenaDance:EID_SoccerJuggling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SoccerTraversal": { + "templateId": "AthenaDance:EID_SoccerTraversal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Socks_XA9HM": { + "templateId": "AthenaDance:EID_Socks_XA9HM", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SolarTheory": { + "templateId": "AthenaDance:EID_SolarTheory", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SomethingStinks": { + "templateId": "AthenaDance:EID_SomethingStinks", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SpaceChimp": { + "templateId": "AthenaDance:EID_SpaceChimp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Sparkler": { + "templateId": "AthenaDance:EID_Sparkler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SpectacleWeb": { + "templateId": "AthenaDance:EID_SpectacleWeb", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Spectacular": { + "templateId": "AthenaDance:EID_Spectacular", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Spectrum": { + "templateId": "AthenaDance:EID_Spectrum", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SpeedDial": { + "templateId": "AthenaDance:EID_SpeedDial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SpeedDial_Mask": { + "templateId": "AthenaDance:EID_SpeedDial_Mask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SpeedRun": { + "templateId": "AthenaDance:EID_SpeedRun", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Spiral": { + "templateId": "AthenaDance:EID_Spiral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Spooky": { + "templateId": "AthenaDance:EID_Spooky", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SpringRider": { + "templateId": "AthenaDance:EID_SpringRider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Sprinkler": { + "templateId": "AthenaDance:EID_Sprinkler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Spyglass": { + "templateId": "AthenaDance:EID_Spyglass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SpyMale": { + "templateId": "AthenaDance:EID_SpyMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SquishyDance": { + "templateId": "AthenaDance:EID_SquishyDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SquishyMedley": { + "templateId": "AthenaDance:EID_SquishyMedley", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_StageBow": { + "templateId": "AthenaDance:EID_StageBow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Stallion": { + "templateId": "AthenaDance:EID_Stallion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_StarStray": { + "templateId": "AthenaDance:EID_StarStray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_StatuePose": { + "templateId": "AthenaDance:EID_StatuePose", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SteamPower": { + "templateId": "AthenaDance:EID_SteamPower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Steep": { + "templateId": "AthenaDance:EID_Steep", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_StepBreakdance": { + "templateId": "AthenaDance:EID_StepBreakdance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_StrawberryPilotKpop": { + "templateId": "AthenaDance:EID_StrawberryPilotKpop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_StringDance": { + "templateId": "AthenaDance:EID_StringDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Studious": { + "templateId": "AthenaDance:EID_Studious", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Success": { + "templateId": "AthenaDance:EID_Success", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SuckerPunch": { + "templateId": "AthenaDance:EID_SuckerPunch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SugarRush": { + "templateId": "AthenaDance:EID_SugarRush", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SugarRush_Owned": { + "templateId": "AthenaDance:EID_SugarRush_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SugarRush_Owned_Follower": { + "templateId": "AthenaDance:EID_SugarRush_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SugarRush_Sync_Follower": { + "templateId": "AthenaDance:EID_SugarRush_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Suits": { + "templateId": "AthenaDance:EID_Suits", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SunBurst": { + "templateId": "AthenaDance:EID_SunBurst", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SunBurstCreative": { + "templateId": "AthenaDance:EID_SunBurstCreative", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SunBurstCreativeFloat": { + "templateId": "AthenaDance:EID_SunBurstCreativeFloat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SunBurstCreativeFull": { + "templateId": "AthenaDance:EID_SunBurstCreativeFull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SunBurstDance": { + "templateId": "AthenaDance:EID_SunBurstDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SunBurstHeart": { + "templateId": "AthenaDance:EID_SunBurstHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Sunlit": { + "templateId": "AthenaDance:EID_Sunlit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SunMelt": { + "templateId": "AthenaDance:EID_SunMelt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Sunrise_RPZ6M": { + "templateId": "AthenaDance:EID_Sunrise_RPZ6M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SuperheroBackflip": { + "templateId": "AthenaDance:EID_SuperheroBackflip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Survivorsault_NJ7WC": { + "templateId": "AthenaDance:EID_Survivorsault_NJ7WC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Suspenders": { + "templateId": "AthenaDance:EID_Suspenders", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Swatch": { + "templateId": "AthenaDance:EID_Swatch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Swatch_Owned": { + "templateId": "AthenaDance:EID_Swatch_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Swatch_Owned_Follower": { + "templateId": "AthenaDance:EID_Swatch_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Swatch_Sync": { + "templateId": "AthenaDance:EID_Swatch_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Swatch_Sync_Follower": { + "templateId": "AthenaDance:EID_Swatch_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SweetToss": { + "templateId": "AthenaDance:EID_SweetToss", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SwimDance": { + "templateId": "AthenaDance:EID_SwimDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SwingDance": { + "templateId": "AthenaDance:EID_SwingDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SwipeIt": { + "templateId": "AthenaDance:EID_SwipeIt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Swish": { + "templateId": "AthenaDance:EID_Swish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_SwitchTheWitch": { + "templateId": "AthenaDance:EID_SwitchTheWitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Swoosh": { + "templateId": "AthenaDance:EID_Swoosh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TacoTimeDance": { + "templateId": "AthenaDance:EID_TacoTimeDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TaiChi": { + "templateId": "AthenaDance:EID_TaiChi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TakeTheElf": { + "templateId": "AthenaDance:EID_TakeTheElf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TakeTheL": { + "templateId": "AthenaDance:EID_TakeTheL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TakeTheW": { + "templateId": "AthenaDance:EID_TakeTheW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TalkingGesture": { + "templateId": "AthenaDance:EID_TalkingGesture", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Tally": { + "templateId": "AthenaDance:EID_Tally", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Tapestry": { + "templateId": "AthenaDance:EID_Tapestry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TapShuffle": { + "templateId": "AthenaDance:EID_TapShuffle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Tar_S9YVE": { + "templateId": "AthenaDance:EID_Tar_S9YVE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TeamMonster": { + "templateId": "AthenaDance:EID_TeamMonster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TeamRobot": { + "templateId": "AthenaDance:EID_TeamRobot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TemperTantrum": { + "templateId": "AthenaDance:EID_TemperTantrum", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Temple": { + "templateId": "AthenaDance:EID_Temple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TennisPaddle": { + "templateId": "AthenaDance:EID_TennisPaddle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Terminal": { + "templateId": "AthenaDance:EID_Terminal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Textile_3O8QG": { + "templateId": "AthenaDance:EID_Textile_3O8QG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Texting": { + "templateId": "AthenaDance:EID_Texting", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TheShow": { + "templateId": "AthenaDance:EID_TheShow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ThighSlapper": { + "templateId": "AthenaDance:EID_ThighSlapper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Thrive": { + "templateId": "AthenaDance:EID_Thrive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ThumbsDown": { + "templateId": "AthenaDance:EID_ThumbsDown", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ThumbsUp": { + "templateId": "AthenaDance:EID_ThumbsUp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Tidy": { + "templateId": "AthenaDance:EID_Tidy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TimeOut": { + "templateId": "AthenaDance:EID_TimeOut", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TimetravelBackflip": { + "templateId": "AthenaDance:EID_TimetravelBackflip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TinyTremors": { + "templateId": "AthenaDance:EID_TinyTremors", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TnTina": { + "templateId": "AthenaDance:EID_TnTina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Toasted": { + "templateId": "AthenaDance:EID_Toasted", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Toasted_Follower": { + "templateId": "AthenaDance:EID_Toasted_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Toasted_Sync": { + "templateId": "AthenaDance:EID_Toasted_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Tonal_51QI9": { + "templateId": "AthenaDance:EID_Tonal_51QI9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TorchSnuffer": { + "templateId": "AthenaDance:EID_TorchSnuffer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Touchdown": { + "templateId": "AthenaDance:EID_Touchdown", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TourBus": { + "templateId": "AthenaDance:EID_TourBus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TowerSentinel": { + "templateId": "AthenaDance:EID_TowerSentinel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TPose": { + "templateId": "AthenaDance:EID_TPose", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TracePaper": { + "templateId": "AthenaDance:EID_TracePaper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Traction": { + "templateId": "AthenaDance:EID_Traction", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Trademark": { + "templateId": "AthenaDance:EID_Trademark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Trademark_Owned": { + "templateId": "AthenaDance:EID_Trademark_Owned", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Trademark_Owned_Follower": { + "templateId": "AthenaDance:EID_Trademark_Owned_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Trademark_Sync": { + "templateId": "AthenaDance:EID_Trademark_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Trademark_Sync_Follower": { + "templateId": "AthenaDance:EID_Trademark_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TreadmillDance": { + "templateId": "AthenaDance:EID_TreadmillDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TreeLightPose": { + "templateId": "AthenaDance:EID_TreeLightPose", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Trifle": { + "templateId": "AthenaDance:EID_Trifle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TripleScoop": { + "templateId": "AthenaDance:EID_TripleScoop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Triumphant": { + "templateId": "AthenaDance:EID_Triumphant", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Troops": { + "templateId": "AthenaDance:EID_Troops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TrophyCelebration": { + "templateId": "AthenaDance:EID_TrophyCelebration", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TrophyCelebrationFNCS": { + "templateId": "AthenaDance:EID_TrophyCelebrationFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TruckerHorn": { + "templateId": "AthenaDance:EID_TruckerHorn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TrueLove": { + "templateId": "AthenaDance:EID_TrueLove", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Turtleneck": { + "templateId": "AthenaDance:EID_Turtleneck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Twist": { + "templateId": "AthenaDance:EID_Twist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TwistDaytona": { + "templateId": "AthenaDance:EID_TwistDaytona", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TwistEternity": { + "templateId": "AthenaDance:EID_TwistEternity", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TwistEternity_Sync": { + "templateId": "AthenaDance:EID_TwistEternity_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TwistEternity_Sync_Follower": { + "templateId": "AthenaDance:EID_TwistEternity_Sync_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TwistFire_I2VTA": { + "templateId": "AthenaDance:EID_TwistFire_I2VTA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TwistRaisin": { + "templateId": "AthenaDance:EID_TwistRaisin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TwistWasp_Follower": { + "templateId": "AthenaDance:EID_TwistWasp_Follower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TwistWasp_Sync": { + "templateId": "AthenaDance:EID_TwistWasp_Sync", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TwistWasp_T2I4J": { + "templateId": "AthenaDance:EID_TwistWasp_T2I4J", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_TwoHype": { + "templateId": "AthenaDance:EID_TwoHype", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Typhoon_VO9OF": { + "templateId": "AthenaDance:EID_Typhoon_VO9OF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_UkuleleTime": { + "templateId": "AthenaDance:EID_UkuleleTime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_UltraEnergize": { + "templateId": "AthenaDance:EID_UltraEnergize", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Ultralight": { + "templateId": "AthenaDance:EID_Ultralight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_UndergroundRebel": { + "templateId": "AthenaDance:EID_UndergroundRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_UnicycleTraversal": { + "templateId": "AthenaDance:EID_UnicycleTraversal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Unified": { + "templateId": "AthenaDance:EID_Unified", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Uproar_496SC": { + "templateId": "AthenaDance:EID_Uproar_496SC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_VectorSpark": { + "templateId": "AthenaDance:EID_VectorSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_VectorSparkv2": { + "templateId": "AthenaDance:EID_VectorSparkv2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_VectorSparkv3": { + "templateId": "AthenaDance:EID_VectorSparkv3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Veiled": { + "templateId": "AthenaDance:EID_Veiled", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Venice": { + "templateId": "AthenaDance:EID_Venice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Vertigo": { + "templateId": "AthenaDance:EID_Vertigo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Victorious": { + "templateId": "AthenaDance:EID_Victorious", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_VikingHorn": { + "templateId": "AthenaDance:EID_VikingHorn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Viral": { + "templateId": "AthenaDance:EID_Viral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Vivid_I434X": { + "templateId": "AthenaDance:EID_Vivid_I434X", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_VoidRedemption": { + "templateId": "AthenaDance:EID_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_WackyWavy": { + "templateId": "AthenaDance:EID_WackyWavy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_WalkieWalk": { + "templateId": "AthenaDance:EID_WalkieWalk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Warehouse": { + "templateId": "AthenaDance:EID_Warehouse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_WatchThis": { + "templateId": "AthenaDance:EID_WatchThis", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Wave": { + "templateId": "AthenaDance:EID_Wave", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_WaveDance": { + "templateId": "AthenaDance:EID_WaveDance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_WavePapayaComms": { + "templateId": "AthenaDance:EID_WavePapayaComms", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Wayfare": { + "templateId": "AthenaDance:EID_Wayfare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_WellPlayed": { + "templateId": "AthenaDance:EID_WellPlayed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_WhereIsMatt": { + "templateId": "AthenaDance:EID_WhereIsMatt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Whirlwind": { + "templateId": "AthenaDance:EID_Whirlwind", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Wiggle": { + "templateId": "AthenaDance:EID_Wiggle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_WiggleRaisin": { + "templateId": "AthenaDance:EID_WiggleRaisin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_WindmillFloss": { + "templateId": "AthenaDance:EID_WindmillFloss", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_WIR": { + "templateId": "AthenaDance:EID_WIR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Wizard": { + "templateId": "AthenaDance:EID_Wizard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_WolfHowl": { + "templateId": "AthenaDance:EID_WolfHowl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Worm": { + "templateId": "AthenaDance:EID_Worm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_WristFlick": { + "templateId": "AthenaDance:EID_WristFlick", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_WrongWay_M47AL": { + "templateId": "AthenaDance:EID_WrongWay_M47AL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_YayExcited": { + "templateId": "AthenaDance:EID_YayExcited", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Yeet": { + "templateId": "AthenaDance:EID_Yeet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_YouBoreMe": { + "templateId": "AthenaDance:EID_YouBoreMe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_YoureAwesome": { + "templateId": "AthenaDance:EID_YoureAwesome", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_YouThere": { + "templateId": "AthenaDance:EID_YouThere", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ZebraScramble": { + "templateId": "AthenaDance:EID_ZebraScramble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Zest_Q1K5V": { + "templateId": "AthenaDance:EID_Zest_Q1K5V", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Zippy": { + "templateId": "AthenaDance:EID_Zippy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ZirconSweep": { + "templateId": "AthenaDance:EID_ZirconSweep", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Zombie": { + "templateId": "AthenaDance:EID_Zombie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ZombieElastic": { + "templateId": "AthenaDance:EID_ZombieElastic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_ZombieWalk": { + "templateId": "AthenaDance:EID_ZombieWalk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_100APlus": { + "templateId": "AthenaDance:Emoji_100APlus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_1HP": { + "templateId": "AthenaDance:Emoji_1HP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_200IQPlay": { + "templateId": "AthenaDance:Emoji_200IQPlay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_200m": { + "templateId": "AthenaDance:Emoji_200m", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_4LeafClover": { + "templateId": "AthenaDance:Emoji_4LeafClover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Ace": { + "templateId": "AthenaDance:Emoji_Ace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Alarm": { + "templateId": "AthenaDance:Emoji_Alarm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Angel": { + "templateId": "AthenaDance:Emoji_Angel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_AngryVolcano": { + "templateId": "AthenaDance:Emoji_AngryVolcano", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_APlus": { + "templateId": "AthenaDance:Emoji_APlus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_ArmFlex": { + "templateId": "AthenaDance:Emoji_ArmFlex", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_AshtonChicago": { + "templateId": "AthenaDance:Emoji_AshtonChicago", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_AshtonTurbo": { + "templateId": "AthenaDance:Emoji_AshtonTurbo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Awww": { + "templateId": "AthenaDance:Emoji_Awww", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_AztecMask": { + "templateId": "AthenaDance:Emoji_AztecMask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_BabySeal": { + "templateId": "AthenaDance:Emoji_BabySeal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_BadApple": { + "templateId": "AthenaDance:Emoji_BadApple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Baited": { + "templateId": "AthenaDance:Emoji_Baited", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Banana": { + "templateId": "AthenaDance:Emoji_Banana", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Bang": { + "templateId": "AthenaDance:Emoji_Bang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_BattleBus": { + "templateId": "AthenaDance:Emoji_BattleBus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Birthday2018": { + "templateId": "AthenaDance:Emoji_Birthday2018", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Birthday2019": { + "templateId": "AthenaDance:Emoji_Birthday2019", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_BlackCat": { + "templateId": "AthenaDance:Emoji_BlackCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_BoogieBomb": { + "templateId": "AthenaDance:Emoji_BoogieBomb", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Boombox": { + "templateId": "AthenaDance:Emoji_Boombox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Bullseye": { + "templateId": "AthenaDance:Emoji_Bullseye", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Bush": { + "templateId": "AthenaDance:Emoji_Bush", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Camera": { + "templateId": "AthenaDance:Emoji_Camera", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Camper": { + "templateId": "AthenaDance:Emoji_Camper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Celebrate": { + "templateId": "AthenaDance:Emoji_Celebrate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Chicken": { + "templateId": "AthenaDance:Emoji_Chicken", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Clapping": { + "templateId": "AthenaDance:Emoji_Clapping", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Clown": { + "templateId": "AthenaDance:Emoji_Clown", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Comm": { + "templateId": "AthenaDance:Emoji_Comm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_CoolPepper": { + "templateId": "AthenaDance:Emoji_CoolPepper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Crabby": { + "templateId": "AthenaDance:Emoji_Crabby", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Crackshot": { + "templateId": "AthenaDance:Emoji_Crackshot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_CrossSwords": { + "templateId": "AthenaDance:Emoji_CrossSwords", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Cuddle": { + "templateId": "AthenaDance:Emoji_Cuddle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_CuddleTeamHead": { + "templateId": "AthenaDance:Emoji_CuddleTeamHead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_DealWithIt": { + "templateId": "AthenaDance:Emoji_DealWithIt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Disco": { + "templateId": "AthenaDance:Emoji_Disco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_DJYonder": { + "templateId": "AthenaDance:Emoji_DJYonder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_DriftHead": { + "templateId": "AthenaDance:Emoji_DriftHead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_DurrburgerHead": { + "templateId": "AthenaDance:Emoji_DurrburgerHead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_DurrrBurger": { + "templateId": "AthenaDance:Emoji_DurrrBurger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Dynamite": { + "templateId": "AthenaDance:Emoji_Dynamite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Embarrassed": { + "templateId": "AthenaDance:Emoji_Embarrassed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Exclamation": { + "templateId": "AthenaDance:Emoji_Exclamation", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Explosion": { + "templateId": "AthenaDance:Emoji_Explosion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Fiery": { + "templateId": "AthenaDance:Emoji_Fiery", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_FistBump": { + "templateId": "AthenaDance:Emoji_FistBump", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_FKey": { + "templateId": "AthenaDance:Emoji_FKey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_FlamingRage": { + "templateId": "AthenaDance:Emoji_FlamingRage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_FoamFinger": { + "templateId": "AthenaDance:Emoji_FoamFinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Fortnitemares": { + "templateId": "AthenaDance:Emoji_Fortnitemares", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_GG": { + "templateId": "AthenaDance:Emoji_GG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_GGJellyfish": { + "templateId": "AthenaDance:Emoji_GGJellyfish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_GGWreath": { + "templateId": "AthenaDance:Emoji_GGWreath", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Ghost": { + "templateId": "AthenaDance:Emoji_Ghost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_GingerbreadHappy": { + "templateId": "AthenaDance:Emoji_GingerbreadHappy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_GingerbreadMad": { + "templateId": "AthenaDance:Emoji_GingerbreadMad", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Go": { + "templateId": "AthenaDance:Emoji_Go", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_GoodGame": { + "templateId": "AthenaDance:Emoji_GoodGame", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Headshot": { + "templateId": "AthenaDance:Emoji_Headshot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Heartbroken": { + "templateId": "AthenaDance:Emoji_Heartbroken", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_HeartHands": { + "templateId": "AthenaDance:Emoji_HeartHands", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Hoarder": { + "templateId": "AthenaDance:Emoji_Hoarder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_HotChocolate": { + "templateId": "AthenaDance:Emoji_HotChocolate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_HotDawg": { + "templateId": "AthenaDance:Emoji_HotDawg", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_HuskWow": { + "templateId": "AthenaDance:Emoji_HuskWow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_IceHeart": { + "templateId": "AthenaDance:Emoji_IceHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_InLove": { + "templateId": "AthenaDance:Emoji_InLove", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_ISeeYou": { + "templateId": "AthenaDance:Emoji_ISeeYou", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Kaboom": { + "templateId": "AthenaDance:Emoji_Kaboom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_LifePreserver": { + "templateId": "AthenaDance:Emoji_LifePreserver", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_LOL": { + "templateId": "AthenaDance:Emoji_LOL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_LoveRanger": { + "templateId": "AthenaDance:Emoji_LoveRanger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Lucky": { + "templateId": "AthenaDance:Emoji_Lucky", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Majestic": { + "templateId": "AthenaDance:Emoji_Majestic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Meet": { + "templateId": "AthenaDance:Emoji_Meet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Mistletoe": { + "templateId": "AthenaDance:Emoji_Mistletoe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Mittens": { + "templateId": "AthenaDance:Emoji_Mittens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_MVP": { + "templateId": "AthenaDance:Emoji_MVP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Number1": { + "templateId": "AthenaDance:Emoji_Number1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_OctoPirate": { + "templateId": "AthenaDance:Emoji_OctoPirate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_OnFire": { + "templateId": "AthenaDance:Emoji_OnFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_PalmTree": { + "templateId": "AthenaDance:Emoji_PalmTree", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_PeaceSign": { + "templateId": "AthenaDance:Emoji_PeaceSign", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Penguin": { + "templateId": "AthenaDance:Emoji_Penguin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_PickAxe": { + "templateId": "AthenaDance:Emoji_PickAxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Pizza": { + "templateId": "AthenaDance:Emoji_Pizza", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Placeholder": { + "templateId": "AthenaDance:Emoji_Placeholder", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Plotting": { + "templateId": "AthenaDance:Emoji_Plotting", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Plunger": { + "templateId": "AthenaDance:Emoji_Plunger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_PoolParty": { + "templateId": "AthenaDance:Emoji_PoolParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Popcorn": { + "templateId": "AthenaDance:Emoji_Popcorn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Positivity": { + "templateId": "AthenaDance:Emoji_Positivity", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_PotatoAim": { + "templateId": "AthenaDance:Emoji_PotatoAim", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Potion": { + "templateId": "AthenaDance:Emoji_Potion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_PotOfGold": { + "templateId": "AthenaDance:Emoji_PotOfGold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Prickly": { + "templateId": "AthenaDance:Emoji_Prickly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Rabid": { + "templateId": "AthenaDance:Emoji_Rabid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Rage": { + "templateId": "AthenaDance:Emoji_Rage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Rainbow": { + "templateId": "AthenaDance:Emoji_Rainbow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_RedKnight": { + "templateId": "AthenaDance:Emoji_RedKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Rekt": { + "templateId": "AthenaDance:Emoji_Rekt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_RexHead": { + "templateId": "AthenaDance:Emoji_RexHead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_RIP": { + "templateId": "AthenaDance:Emoji_RIP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Rock": { + "templateId": "AthenaDance:Emoji_Rock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_RocketRide": { + "templateId": "AthenaDance:Emoji_RocketRide", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_RockOn": { + "templateId": "AthenaDance:Emoji_RockOn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_RustLord": { + "templateId": "AthenaDance:Emoji_RustLord", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S10Lvl100": { + "templateId": "AthenaDance:Emoji_S10Lvl100", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S11_CheckeredFlag": { + "templateId": "AthenaDance:Emoji_S11_CheckeredFlag", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S11_Headshot": { + "templateId": "AthenaDance:Emoji_S11_Headshot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S11_HotDrop": { + "templateId": "AthenaDance:Emoji_S11_HotDrop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S11_Kiss": { + "templateId": "AthenaDance:Emoji_S11_Kiss", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S11_NoScope": { + "templateId": "AthenaDance:Emoji_S11_NoScope", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S11_SlurpGG": { + "templateId": "AthenaDance:Emoji_S11_SlurpGG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S11_Sweater": { + "templateId": "AthenaDance:Emoji_S11_Sweater", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S11_UTurn": { + "templateId": "AthenaDance:Emoji_S11_UTurn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S11_Wink": { + "templateId": "AthenaDance:Emoji_S11_Wink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S11_WinterSnowball": { + "templateId": "AthenaDance:Emoji_S11_WinterSnowball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S12_AdventureGirl": { + "templateId": "AthenaDance:Emoji_S12_AdventureGirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S12_Alter": { + "templateId": "AthenaDance:Emoji_S12_Alter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S12_BananaAgent": { + "templateId": "AthenaDance:Emoji_S12_BananaAgent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S12_Ego": { + "templateId": "AthenaDance:Emoji_S12_Ego", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S12_FNCS": { + "templateId": "AthenaDance:Emoji_S12_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S12_Meowscles": { + "templateId": "AthenaDance:Emoji_S12_Meowscles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S12_Midas": { + "templateId": "AthenaDance:Emoji_S12_Midas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S12_SkullDude": { + "templateId": "AthenaDance:Emoji_S12_SkullDude", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S12_TNTina": { + "templateId": "AthenaDance:Emoji_S12_TNTina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S13_BlackKnight": { + "templateId": "AthenaDance:Emoji_S13_BlackKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S13_FNCS": { + "templateId": "AthenaDance:Emoji_S13_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S13_MechanicalEngineer": { + "templateId": "AthenaDance:Emoji_S13_MechanicalEngineer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S13_OceanRider": { + "templateId": "AthenaDance:Emoji_S13_OceanRider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S13_ProfessorPup": { + "templateId": "AthenaDance:Emoji_S13_ProfessorPup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S13_RacerZero": { + "templateId": "AthenaDance:Emoji_S13_RacerZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S13_SandCastle": { + "templateId": "AthenaDance:Emoji_S13_SandCastle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S13_TacticalScuba": { + "templateId": "AthenaDance:Emoji_S13_TacticalScuba", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_3rd_Birthday": { + "templateId": "AthenaDance:Emoji_S14_3rd_Birthday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_BestFriends": { + "templateId": "AthenaDance:Emoji_S14_BestFriends", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Bomb": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Bomb", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Butterfly": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Butterfly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Cupcake": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Cupcake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Disguise": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Disguise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_DogAndBones": { + "templateId": "AthenaDance:Emoji_S14_Elastic_DogAndBones", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Ducky": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Ducky", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Fire": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Fire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_FishBone": { + "templateId": "AthenaDance:Emoji_S14_Elastic_FishBone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Flask": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Flask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Fly": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Fly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_GreenSkull": { + "templateId": "AthenaDance:Emoji_S14_Elastic_GreenSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Molecule": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Molecule", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_PinkArrow": { + "templateId": "AthenaDance:Emoji_S14_Elastic_PinkArrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Snail": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Snail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Spider": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Spider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Taco": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Taco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Umbrella": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Umbrella", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Water": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Water", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Elastic_Web": { + "templateId": "AthenaDance:Emoji_S14_Elastic_Web", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_FNCS": { + "templateId": "AthenaDance:Emoji_S14_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Fortnitemares2020": { + "templateId": "AthenaDance:Emoji_S14_Fortnitemares2020", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_FortnitemaresMonkeyToy": { + "templateId": "AthenaDance:Emoji_S14_FortnitemaresMonkeyToy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_HighTowerDate": { + "templateId": "AthenaDance:Emoji_S14_HighTowerDate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_HighTowerGrape": { + "templateId": "AthenaDance:Emoji_S14_HighTowerGrape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_HighTowerHoneyDew": { + "templateId": "AthenaDance:Emoji_S14_HighTowerHoneyDew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_HighTowerMango": { + "templateId": "AthenaDance:Emoji_S14_HighTowerMango", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_HighTowerSquash": { + "templateId": "AthenaDance:Emoji_S14_HighTowerSquash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_HighTowerTapas": { + "templateId": "AthenaDance:Emoji_S14_HighTowerTapas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_HighTowerTomato": { + "templateId": "AthenaDance:Emoji_S14_HighTowerTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_HighTowerWasabi": { + "templateId": "AthenaDance:Emoji_S14_HighTowerWasabi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Horseshoe": { + "templateId": "AthenaDance:Emoji_S14_Horseshoe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_KingOfTheHill": { + "templateId": "AthenaDance:Emoji_S14_KingOfTheHill", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_LlamaSurprise": { + "templateId": "AthenaDance:Emoji_S14_LlamaSurprise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_Medal": { + "templateId": "AthenaDance:Emoji_S14_Medal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_PS_PlusPack_11": { + "templateId": "AthenaDance:Emoji_S14_PS_PlusPack_11", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_RebootAFriend": { + "templateId": "AthenaDance:Emoji_S14_RebootAFriend", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S14_RLxFN": { + "templateId": "AthenaDance:Emoji_S14_RLxFN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_AncientGladiator": { + "templateId": "AthenaDance:Emoji_S15_AncientGladiator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_CosmosA": { + "templateId": "AthenaDance:Emoji_S15_CosmosA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_CosmosB": { + "templateId": "AthenaDance:Emoji_S15_CosmosB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_Flapjack": { + "templateId": "AthenaDance:Emoji_S15_Flapjack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_FNCS": { + "templateId": "AthenaDance:Emoji_S15_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_FuturePink": { + "templateId": "AthenaDance:Emoji_S15_FuturePink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_FuturePinkOrange": { + "templateId": "AthenaDance:Emoji_S15_FuturePinkOrange", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_FutureSamurai": { + "templateId": "AthenaDance:Emoji_S15_FutureSamurai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_Holiday2": { + "templateId": "AthenaDance:Emoji_S15_Holiday2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_Holiday3": { + "templateId": "AthenaDance:Emoji_S15_Holiday3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_Holidays2020": { + "templateId": "AthenaDance:Emoji_S15_Holidays2020", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_Lexa": { + "templateId": "AthenaDance:Emoji_S15_Lexa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_Nightmare": { + "templateId": "AthenaDance:Emoji_S15_Nightmare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_PS_PlusPack_2021": { + "templateId": "AthenaDance:Emoji_S15_PS_PlusPack_2021", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_SpaceFighter": { + "templateId": "AthenaDance:Emoji_S15_SpaceFighter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S15_Valentines2021": { + "templateId": "AthenaDance:Emoji_S15_Valentines2021", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_AgentJonesy": { + "templateId": "AthenaDance:Emoji_S16_AgentJonesy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_Alt_1": { + "templateId": "AthenaDance:Emoji_S16_Alt_1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_Alt_2": { + "templateId": "AthenaDance:Emoji_S16_Alt_2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_Bicycle": { + "templateId": "AthenaDance:Emoji_S16_Bicycle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_Bicycle2": { + "templateId": "AthenaDance:Emoji_S16_Bicycle2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_BuffCat": { + "templateId": "AthenaDance:Emoji_S16_BuffCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_ChickenWarrior": { + "templateId": "AthenaDance:Emoji_S16_ChickenWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_CubeNinja": { + "templateId": "AthenaDance:Emoji_S16_CubeNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_DinoHunter": { + "templateId": "AthenaDance:Emoji_S16_DinoHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_FlapjackWrangler": { + "templateId": "AthenaDance:Emoji_S16_FlapjackWrangler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_FNCS": { + "templateId": "AthenaDance:Emoji_S16_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_MaskedWarrior": { + "templateId": "AthenaDance:Emoji_S16_MaskedWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_Obsidian": { + "templateId": "AthenaDance:Emoji_S16_Obsidian", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_Sentinel": { + "templateId": "AthenaDance:Emoji_S16_Sentinel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S16_Temple": { + "templateId": "AthenaDance:Emoji_S16_Temple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_AlienTrooper": { + "templateId": "AthenaDance:Emoji_S17_AlienTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_Alt_1": { + "templateId": "AthenaDance:Emoji_S17_Alt_1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_Alt_2": { + "templateId": "AthenaDance:Emoji_S17_Alt_2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_AngryCow": { + "templateId": "AthenaDance:Emoji_S17_AngryCow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_Antique": { + "templateId": "AthenaDance:Emoji_S17_Antique", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_Believer": { + "templateId": "AthenaDance:Emoji_S17_Believer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_Emperor": { + "templateId": "AthenaDance:Emoji_S17_Emperor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_Faux": { + "templateId": "AthenaDance:Emoji_S17_Faux", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_Fest": { + "templateId": "AthenaDance:Emoji_S17_Fest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_FNCS": { + "templateId": "AthenaDance:Emoji_S17_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_FNCS_AllStars": { + "templateId": "AthenaDance:Emoji_S17_FNCS_AllStars", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_FriendFrenzy": { + "templateId": "AthenaDance:Emoji_S17_FriendFrenzy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_ImposterWink": { + "templateId": "AthenaDance:Emoji_S17_ImposterWink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_Island": { + "templateId": "AthenaDance:Emoji_S17_Island", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_ReferAfriendTaxi": { + "templateId": "AthenaDance:Emoji_S17_ReferAfriendTaxi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_RiftTour": { + "templateId": "AthenaDance:Emoji_S17_RiftTour", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_Ruckus": { + "templateId": "AthenaDance:Emoji_S17_Ruckus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_Soccer": { + "templateId": "AthenaDance:Emoji_S17_Soccer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_StreamElementsBeefBoss": { + "templateId": "AthenaDance:Emoji_S17_StreamElementsBeefBoss", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_StreamElementsDJ": { + "templateId": "AthenaDance:Emoji_S17_StreamElementsDJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_StreamElementsPeely": { + "templateId": "AthenaDance:Emoji_S17_StreamElementsPeely", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_StreamElementsRaptor": { + "templateId": "AthenaDance:Emoji_S17_StreamElementsRaptor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_StreamElementsSlurpMonster": { + "templateId": "AthenaDance:Emoji_S17_StreamElementsSlurpMonster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S17_Summer2021": { + "templateId": "AthenaDance:Emoji_S17_Summer2021", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_AnimToonFishstick": { + "templateId": "AthenaDance:Emoji_S18_AnimToonFishstick", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_CerealBox": { + "templateId": "AthenaDance:Emoji_S18_CerealBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_Clash": { + "templateId": "AthenaDance:Emoji_S18_Clash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ClashV_I1DF9": { + "templateId": "AthenaDance:Emoji_S18_ClashV_I1DF9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_CubeQueen": { + "templateId": "AthenaDance:Emoji_S18_CubeQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_Division": { + "templateId": "AthenaDance:Emoji_S18_Division", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_DriftDash": { + "templateId": "AthenaDance:Emoji_S18_DriftDash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_FNBirthday_G7ZPV": { + "templateId": "AthenaDance:Emoji_S18_FNBirthday_G7ZPV", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_FNCS": { + "templateId": "AthenaDance:Emoji_S18_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_FortnitemaresCup": { + "templateId": "AthenaDance:Emoji_S18_FortnitemaresCup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_F_Headband_S": { + "templateId": "AthenaDance:Emoji_S18_F_Headband_S", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_GhostHunter": { + "templateId": "AthenaDance:Emoji_S18_GhostHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_GrandRoyaleCompetition": { + "templateId": "AthenaDance:Emoji_S18_GrandRoyaleCompetition", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_Headband": { + "templateId": "AthenaDance:Emoji_S18_Headband", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_Headband_K": { + "templateId": "AthenaDance:Emoji_S18_Headband_K", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_Headband_S": { + "templateId": "AthenaDance:Emoji_S18_Headband_S", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_Italian": { + "templateId": "AthenaDance:Emoji_S18_Italian", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_PunkKoi": { + "templateId": "AthenaDance:Emoji_S18_PunkKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_RenegadeSkull": { + "templateId": "AthenaDance:Emoji_S18_RenegadeSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_SadToonFishstick": { + "templateId": "AthenaDance:Emoji_S18_SadToonFishstick", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_SpaceChimp": { + "templateId": "AthenaDance:Emoji_S18_SpaceChimp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_TeriyakiFishToon": { + "templateId": "AthenaDance:Emoji_S18_TeriyakiFishToon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ZombieElastic_Banana": { + "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Banana", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ZombieElastic_BaseballBats": { + "templateId": "AthenaDance:Emoji_S18_ZombieElastic_BaseballBats", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ZombieElastic_Brain": { + "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Brain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ZombieElastic_Burger": { + "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Burger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ZombieElastic_Duck": { + "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Duck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ZombieElastic_Eye": { + "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Eye", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ZombieElastic_FingerWalk": { + "templateId": "AthenaDance:Emoji_S18_ZombieElastic_FingerWalk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ZombieElastic_GG": { + "templateId": "AthenaDance:Emoji_S18_ZombieElastic_GG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ZombieElastic_Hand": { + "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Hand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ZombieElastic_Head": { + "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Head", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ZombieElastic_Pumpkin": { + "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Pumpkin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ZombieElastic_Scythe": { + "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Scythe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S18_ZombieElastic_Z": { + "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Z", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_AnimWinterFest2021": { + "templateId": "AthenaDance:Emoji_S19_AnimWinterFest2021", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_BlizzardBomber": { + "templateId": "AthenaDance:Emoji_S19_BlizzardBomber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_BlueStriker": { + "templateId": "AthenaDance:Emoji_S19_BlueStriker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_BuffLlama": { + "templateId": "AthenaDance:Emoji_S19_BuffLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_FlowerSkeleton": { + "templateId": "AthenaDance:Emoji_S19_FlowerSkeleton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_FNCS_AnimatedBeep": { + "templateId": "AthenaDance:Emoji_S19_FNCS_AnimatedBeep", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_FNCS_BusBounce": { + "templateId": "AthenaDance:Emoji_S19_FNCS_BusBounce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_FNCS_Drops": { + "templateId": "AthenaDance:Emoji_S19_FNCS_Drops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_FNCS_GOAT": { + "templateId": "AthenaDance:Emoji_S19_FNCS_GOAT", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_FNCS_PeelyHype": { + "templateId": "AthenaDance:Emoji_S19_FNCS_PeelyHype", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_FootballDrops": { + "templateId": "AthenaDance:Emoji_S19_FootballDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_Gumball": { + "templateId": "AthenaDance:Emoji_S19_Gumball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_IslandNomad": { + "templateId": "AthenaDance:Emoji_S19_IslandNomad", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_LoneWolf": { + "templateId": "AthenaDance:Emoji_S19_LoneWolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_LoveQueenCreative": { + "templateId": "AthenaDance:Emoji_S19_LoveQueenCreative", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_Motorcyclist": { + "templateId": "AthenaDance:Emoji_S19_Motorcyclist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_NeoVersa": { + "templateId": "AthenaDance:Emoji_S19_NeoVersa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_ParallelSenses": { + "templateId": "AthenaDance:Emoji_S19_ParallelSenses", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_ParallelSling": { + "templateId": "AthenaDance:Emoji_S19_ParallelSling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_ShowdownPanda": { + "templateId": "AthenaDance:Emoji_S19_ShowdownPanda", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_ShowdownReaper": { + "templateId": "AthenaDance:Emoji_S19_ShowdownReaper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_ShowdownTomato": { + "templateId": "AthenaDance:Emoji_S19_ShowdownTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_TouchdownDrops": { + "templateId": "AthenaDance:Emoji_S19_TouchdownDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_Turtleneck": { + "templateId": "AthenaDance:Emoji_S19_Turtleneck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S19_WinterFestCreative": { + "templateId": "AthenaDance:Emoji_S19_WinterFestCreative", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_Alfredo_Tournament": { + "templateId": "AthenaDance:Emoji_S20_Alfredo_Tournament", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_BestFriendzyV2": { + "templateId": "AthenaDance:Emoji_S20_BestFriendzyV2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_BunnyBrawl": { + "templateId": "AthenaDance:Emoji_S20_BunnyBrawl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_CactusDancer": { + "templateId": "AthenaDance:Emoji_S20_CactusDancer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_Cadet": { + "templateId": "AthenaDance:Emoji_S20_Cadet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_Cheers_Competitive": { + "templateId": "AthenaDance:Emoji_S20_Cheers_Competitive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_CubeKing": { + "templateId": "AthenaDance:Emoji_S20_CubeKing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_CyberArmor": { + "templateId": "AthenaDance:Emoji_S20_CyberArmor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_EyeRoll": { + "templateId": "AthenaDance:Emoji_S20_EyeRoll", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_FNCSDrops": { + "templateId": "AthenaDance:Emoji_S20_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_GG_CampFire": { + "templateId": "AthenaDance:Emoji_S20_GG_CampFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_GG_Cube": { + "templateId": "AthenaDance:Emoji_S20_GG_Cube", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_GG_CuddleTeam": { + "templateId": "AthenaDance:Emoji_S20_GG_CuddleTeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_GG_Fire": { + "templateId": "AthenaDance:Emoji_S20_GG_Fire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_GG_Gas": { + "templateId": "AthenaDance:Emoji_S20_GG_Gas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_GG_Gold": { + "templateId": "AthenaDance:Emoji_S20_GG_Gold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_GG_Ice_Version1": { + "templateId": "AthenaDance:Emoji_S20_GG_Ice_Version1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_GG_Ice_Version2": { + "templateId": "AthenaDance:Emoji_S20_GG_Ice_Version2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_GG_Pizza": { + "templateId": "AthenaDance:Emoji_S20_GG_Pizza", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_GG_Point": { + "templateId": "AthenaDance:Emoji_S20_GG_Point", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_GG_Smooth": { + "templateId": "AthenaDance:Emoji_S20_GG_Smooth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_JourneyMentor": { + "templateId": "AthenaDance:Emoji_S20_JourneyMentor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_KnightCat": { + "templateId": "AthenaDance:Emoji_S20_KnightCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_Lyrical": { + "templateId": "AthenaDance:Emoji_S20_Lyrical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_Mystic": { + "templateId": "AthenaDance:Emoji_S20_Mystic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_NeedLoot": { + "templateId": "AthenaDance:Emoji_S20_NeedLoot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_NeonGG_Competitive": { + "templateId": "AthenaDance:Emoji_S20_NeonGG_Competitive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_OrderGuard": { + "templateId": "AthenaDance:Emoji_S20_OrderGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_Shrug": { + "templateId": "AthenaDance:Emoji_S20_Shrug", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_Sienna": { + "templateId": "AthenaDance:Emoji_S20_Sienna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_Sweaty": { + "templateId": "AthenaDance:Emoji_S20_Sweaty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S20_Teknique_Competitive": { + "templateId": "AthenaDance:Emoji_S20_Teknique_Competitive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_BlueJay": { + "templateId": "AthenaDance:Emoji_S21_BlueJay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Canary": { + "templateId": "AthenaDance:Emoji_S21_Canary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_CatDrop": { + "templateId": "AthenaDance:Emoji_S21_CatDrop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Collectable": { + "templateId": "AthenaDance:Emoji_S21_Collectable", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_CritterDrop": { + "templateId": "AthenaDance:Emoji_S21_CritterDrop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_DarkStorm": { + "templateId": "AthenaDance:Emoji_S21_DarkStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Ensemble_Grey": { + "templateId": "AthenaDance:Emoji_S21_Ensemble_Grey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Ensemble_Maroon": { + "templateId": "AthenaDance:Emoji_S21_Ensemble_Maroon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Ensemble_Seal": { + "templateId": "AthenaDance:Emoji_S21_Ensemble_Seal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Ensemble_Snake": { + "templateId": "AthenaDance:Emoji_S21_Ensemble_Snake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Flappy": { + "templateId": "AthenaDance:Emoji_S21_Flappy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_FNCS": { + "templateId": "AthenaDance:Emoji_S21_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Fuchsia": { + "templateId": "AthenaDance:Emoji_S21_Fuchsia", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Ketchup": { + "templateId": "AthenaDance:Emoji_S21_Ketchup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Lancelot": { + "templateId": "AthenaDance:Emoji_S21_Lancelot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_PinkWidow": { + "templateId": "AthenaDance:Emoji_S21_PinkWidow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_RainbowRoyale": { + "templateId": "AthenaDance:Emoji_S21_RainbowRoyale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Realm": { + "templateId": "AthenaDance:Emoji_S21_Realm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_ReferFriend": { + "templateId": "AthenaDance:Emoji_S21_ReferFriend", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_RL": { + "templateId": "AthenaDance:Emoji_S21_RL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Stamina_Cat": { + "templateId": "AthenaDance:Emoji_S21_Stamina_Cat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Stamina_Female": { + "templateId": "AthenaDance:Emoji_S21_Stamina_Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Stamina_Smart": { + "templateId": "AthenaDance:Emoji_S21_Stamina_Smart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Stamina_Vigor": { + "templateId": "AthenaDance:Emoji_S21_Stamina_Vigor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Summer_GG": { + "templateId": "AthenaDance:Emoji_S21_Summer_GG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Wavy_Drift": { + "templateId": "AthenaDance:Emoji_S21_Wavy_Drift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Wavy_Komplex": { + "templateId": "AthenaDance:Emoji_S21_Wavy_Komplex", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Wavy_MechaCuddle": { + "templateId": "AthenaDance:Emoji_S21_Wavy_MechaCuddle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Wavy_Powerchord1": { + "templateId": "AthenaDance:Emoji_S21_Wavy_Powerchord1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Wavy_Powerchord2": { + "templateId": "AthenaDance:Emoji_S21_Wavy_Powerchord2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S21_Wavy_TropicalZoey": { + "templateId": "AthenaDance:Emoji_S21_Wavy_TropicalZoey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_BadBear": { + "templateId": "AthenaDance:Emoji_S22_BadBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_Bites": { + "templateId": "AthenaDance:Emoji_S22_Bites", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_Candor": { + "templateId": "AthenaDance:Emoji_S22_Candor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_ChillCat_Claw": { + "templateId": "AthenaDance:Emoji_S22_ChillCat_Claw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_Fortnitemares_2022": { + "templateId": "AthenaDance:Emoji_S22_Fortnitemares_2022", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_FunBreak": { + "templateId": "AthenaDance:Emoji_S22_FunBreak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_Headset": { + "templateId": "AthenaDance:Emoji_S22_Headset", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_Impulse": { + "templateId": "AthenaDance:Emoji_S22_Impulse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_Invitational": { + "templateId": "AthenaDance:Emoji_S22_Invitational", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_Meteorwomen": { + "templateId": "AthenaDance:Emoji_S22_Meteorwomen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_PinkSpike": { + "templateId": "AthenaDance:Emoji_S22_PinkSpike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_RebootRally_RenegadeRaider": { + "templateId": "AthenaDance:Emoji_S22_RebootRally_RenegadeRaider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_RL_Vista": { + "templateId": "AthenaDance:Emoji_S22_RL_Vista", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_RoseDust": { + "templateId": "AthenaDance:Emoji_S22_RoseDust", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_Showdown_Co": { + "templateId": "AthenaDance:Emoji_S22_Showdown_Co", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_Showdown_Mae": { + "templateId": "AthenaDance:Emoji_S22_Showdown_Mae", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_Showdown_Pi": { + "templateId": "AthenaDance:Emoji_S22_Showdown_Pi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_Showdown_Zet": { + "templateId": "AthenaDance:Emoji_S22_Showdown_Zet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S22_TheHerald": { + "templateId": "AthenaDance:Emoji_S22_TheHerald", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_Amour": { + "templateId": "AthenaDance:Emoji_S23_Amour", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_Cipher_QuestReward": { + "templateId": "AthenaDance:Emoji_S23_Cipher_QuestReward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_Citadel": { + "templateId": "AthenaDance:Emoji_S23_Citadel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_Competitive_Fistbump": { + "templateId": "AthenaDance:Emoji_S23_Competitive_Fistbump", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_EmeraldGlass_Punch": { + "templateId": "AthenaDance:Emoji_S23_EmeraldGlass_Punch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_FindItInFortnite_1": { + "templateId": "AthenaDance:Emoji_S23_FindItInFortnite_1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_FindItInFortnite_2": { + "templateId": "AthenaDance:Emoji_S23_FindItInFortnite_2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_MagicMeadow": { + "templateId": "AthenaDance:Emoji_S23_MagicMeadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_MostWanted": { + "templateId": "AthenaDance:Emoji_S23_MostWanted", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_OceanBreeze_Hello": { + "templateId": "AthenaDance:Emoji_S23_OceanBreeze_Hello", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_OceanBreeze_Smile": { + "templateId": "AthenaDance:Emoji_S23_OceanBreeze_Smile", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_Project_Maze_Be": { + "templateId": "AthenaDance:Emoji_S23_Project_Maze_Be", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_Project_Maze_Ca": { + "templateId": "AthenaDance:Emoji_S23_Project_Maze_Ca", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_Project_Maze_Gr": { + "templateId": "AthenaDance:Emoji_S23_Project_Maze_Gr", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_Project_Maze_Ll": { + "templateId": "AthenaDance:Emoji_S23_Project_Maze_Ll", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_Project_Maze_Ma": { + "templateId": "AthenaDance:Emoji_S23_Project_Maze_Ma", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_Project_Vi": { + "templateId": "AthenaDance:Emoji_S23_Project_Vi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_RebootRally": { + "templateId": "AthenaDance:Emoji_S23_RebootRally", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_RedPepper": { + "templateId": "AthenaDance:Emoji_S23_RedPepper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_ReferFriend": { + "templateId": "AthenaDance:Emoji_S23_ReferFriend", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_RuslordFire": { + "templateId": "AthenaDance:Emoji_S23_RuslordFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_SharpFang": { + "templateId": "AthenaDance:Emoji_S23_SharpFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_SnowSoldierFashion": { + "templateId": "AthenaDance:Emoji_S23_SnowSoldierFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_SunBurst_Tournament": { + "templateId": "AthenaDance:Emoji_S23_SunBurst_Tournament", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_Sunlit": { + "templateId": "AthenaDance:Emoji_S23_Sunlit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_Venice": { + "templateId": "AthenaDance:Emoji_S23_Venice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_Winterfest_2022": { + "templateId": "AthenaDance:Emoji_S23_Winterfest_2022", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S23_ZeroWeekEvent": { + "templateId": "AthenaDance:Emoji_S23_ZeroWeekEvent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_ClearRadius": { + "templateId": "AthenaDance:Emoji_S24_ClearRadius", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_CreativeQuest": { + "templateId": "AthenaDance:Emoji_S24_CreativeQuest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_Dazzle": { + "templateId": "AthenaDance:Emoji_S24_Dazzle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_EbonyNarrative_QuestReward": { + "templateId": "AthenaDance:Emoji_S24_EbonyNarrative_QuestReward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_Emphasis": { + "templateId": "AthenaDance:Emoji_S24_Emphasis", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_FearlessWeb": { + "templateId": "AthenaDance:Emoji_S24_FearlessWeb", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_FearlessWeb2": { + "templateId": "AthenaDance:Emoji_S24_FearlessWeb2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_FNCSDrops": { + "templateId": "AthenaDance:Emoji_S24_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_HeadHunter2": { + "templateId": "AthenaDance:Emoji_S24_HeadHunter2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_Inferno": { + "templateId": "AthenaDance:Emoji_S24_Inferno", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_LocalZilla": { + "templateId": "AthenaDance:Emoji_S24_LocalZilla", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_MTH_CirrusVine": { + "templateId": "AthenaDance:Emoji_S24_MTH_CirrusVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_MTH_GrandScheme": { + "templateId": "AthenaDance:Emoji_S24_MTH_GrandScheme", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_MTH_Pre": { + "templateId": "AthenaDance:Emoji_S24_MTH_Pre", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_Nebula": { + "templateId": "AthenaDance:Emoji_S24_Nebula", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_NitroFlow": { + "templateId": "AthenaDance:Emoji_S24_NitroFlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_RebootRally": { + "templateId": "AthenaDance:Emoji_S24_RebootRally", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_TigerRootQuest": { + "templateId": "AthenaDance:Emoji_S24_TigerRootQuest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_TigerRootQuest2": { + "templateId": "AthenaDance:Emoji_S24_TigerRootQuest2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S24_VitalPsych": { + "templateId": "AthenaDance:Emoji_S24_VitalPsych", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_AgentSherbert": { + "templateId": "AthenaDance:Emoji_S25_AgentSherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_AloeCrouton": { + "templateId": "AthenaDance:Emoji_S25_AloeCrouton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_BuffCatCruise": { + "templateId": "AthenaDance:Emoji_S25_BuffCatCruise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_CinderMax": { + "templateId": "AthenaDance:Emoji_S25_CinderMax", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_CrispRover": { + "templateId": "AthenaDance:Emoji_S25_CrispRover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_DiscordWeekly": { + "templateId": "AthenaDance:Emoji_S25_DiscordWeekly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_DiscordWeekly2": { + "templateId": "AthenaDance:Emoji_S25_DiscordWeekly2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_Event_CL": { + "templateId": "AthenaDance:Emoji_S25_Event_CL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_Event_N": { + "templateId": "AthenaDance:Emoji_S25_Event_N", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_Event_Y": { + "templateId": "AthenaDance:Emoji_S25_Event_Y", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_FNCSDrops": { + "templateId": "AthenaDance:Emoji_S25_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_FortniteStories": { + "templateId": "AthenaDance:Emoji_S25_FortniteStories", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_LastVoice": { + "templateId": "AthenaDance:Emoji_S25_LastVoice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_LoudPhoenix": { + "templateId": "AthenaDance:Emoji_S25_LoudPhoenix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_Maze": { + "templateId": "AthenaDance:Emoji_S25_Maze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_Maze2": { + "templateId": "AthenaDance:Emoji_S25_Maze2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_RainbowRoyale": { + "templateId": "AthenaDance:Emoji_S25_RainbowRoyale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_RippedHarvester": { + "templateId": "AthenaDance:Emoji_S25_RippedHarvester", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_SilentTempo": { + "templateId": "AthenaDance:Emoji_S25_SilentTempo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_StarStrayFN": { + "templateId": "AthenaDance:Emoji_S25_StarStrayFN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_Tournament_DD": { + "templateId": "AthenaDance:Emoji_S25_Tournament_DD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_Tournament_Winking": { + "templateId": "AthenaDance:Emoji_S25_Tournament_Winking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S25_ZirconSweep_Thinking": { + "templateId": "AthenaDance:Emoji_S25_ZirconSweep_Thinking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_BlazerVeil": { + "templateId": "AthenaDance:Emoji_S26_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_BrawnyBass": { + "templateId": "AthenaDance:Emoji_S26_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_FNCSDrops": { + "templateId": "AthenaDance:Emoji_S26_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_Fortnitemares_Quest": { + "templateId": "AthenaDance:Emoji_S26_Fortnitemares_Quest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_GalaxyLevel": { + "templateId": "AthenaDance:Emoji_S26_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_IndieBucket": { + "templateId": "AthenaDance:Emoji_S26_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_IWD": { + "templateId": "AthenaDance:Emoji_S26_IWD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_LazarusLens": { + "templateId": "AthenaDance:Emoji_S26_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_Leaderboard": { + "templateId": "AthenaDance:Emoji_S26_Leaderboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_MusketSlinger": { + "templateId": "AthenaDance:Emoji_S26_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_PizzaParty": { + "templateId": "AthenaDance:Emoji_S26_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_Ranked": { + "templateId": "AthenaDance:Emoji_S26_Ranked", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_Ranked2": { + "templateId": "AthenaDance:Emoji_S26_Ranked2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_Ranked3": { + "templateId": "AthenaDance:Emoji_S26_Ranked3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_ReferAFriend": { + "templateId": "AthenaDance:Emoji_S26_ReferAFriend", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_ScorpionZero": { + "templateId": "AthenaDance:Emoji_S26_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S26_SmartHyena": { + "templateId": "AthenaDance:Emoji_S26_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_HornedJudgement": { + "templateId": "AthenaDance:Emoji_S27_HornedJudgement", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_LilSplit": { + "templateId": "AthenaDance:Emoji_S27_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_Ranked1": { + "templateId": "AthenaDance:Emoji_S27_Ranked1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_Ranked2": { + "templateId": "AthenaDance:Emoji_S27_Ranked2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_Ranked3": { + "templateId": "AthenaDance:Emoji_S27_Ranked3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_RebelClaw": { + "templateId": "AthenaDance:Emoji_S27_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S27_RebootRally": { + "templateId": "AthenaDance:Emoji_S27_RebootRally", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_BengalBasher": { + "templateId": "AthenaDance:Emoji_S28_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_CeremonialGuard": { + "templateId": "AthenaDance:Emoji_S28_CeremonialGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_DiamondHeart": { + "templateId": "AthenaDance:Emoji_S28_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_MadameMoth": { + "templateId": "AthenaDance:Emoji_S28_MadameMoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_Ranked_Biohazard": { + "templateId": "AthenaDance:Emoji_S28_Ranked_Biohazard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_Ranked_Target": { + "templateId": "AthenaDance:Emoji_S28_Ranked_Target", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_Ranked_Trophy": { + "templateId": "AthenaDance:Emoji_S28_Ranked_Trophy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_Sparks_Equalizer": { + "templateId": "AthenaDance:Emoji_S28_Sparks_Equalizer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_Sparks_Llama": { + "templateId": "AthenaDance:Emoji_S28_Sparks_Llama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_Sparks_SpeedDial": { + "templateId": "AthenaDance:Emoji_S28_Sparks_SpeedDial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_UndergroundRebel": { + "templateId": "AthenaDance:Emoji_S28_UndergroundRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_VoidRedemption": { + "templateId": "AthenaDance:Emoji_S28_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S28_ZebraScramble": { + "templateId": "AthenaDance:Emoji_S28_ZebraScramble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S6Lvl100": { + "templateId": "AthenaDance:Emoji_S6Lvl100", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S7Lvl100": { + "templateId": "AthenaDance:Emoji_S7Lvl100", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S8Lvl100": { + "templateId": "AthenaDance:Emoji_S8Lvl100", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_S9Lvl100": { + "templateId": "AthenaDance:Emoji_S9Lvl100", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Salty": { + "templateId": "AthenaDance:Emoji_Salty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_ScreamingWukong": { + "templateId": "AthenaDance:Emoji_ScreamingWukong", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_SilentMaven": { + "templateId": "AthenaDance:Emoji_SilentMaven", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_SkepticalFishstix": { + "templateId": "AthenaDance:Emoji_SkepticalFishstix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_SkullBrite": { + "templateId": "AthenaDance:Emoji_SkullBrite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Skulltrooper": { + "templateId": "AthenaDance:Emoji_Skulltrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Snowflake": { + "templateId": "AthenaDance:Emoji_Snowflake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Snowman": { + "templateId": "AthenaDance:Emoji_Snowman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_SparkleSpecialist": { + "templateId": "AthenaDance:Emoji_SparkleSpecialist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Spicy": { + "templateId": "AthenaDance:Emoji_Spicy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Stealthy": { + "templateId": "AthenaDance:Emoji_Stealthy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Stinky": { + "templateId": "AthenaDance:Emoji_Stinky", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Stop": { + "templateId": "AthenaDance:Emoji_Stop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Storm": { + "templateId": "AthenaDance:Emoji_Storm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Sucker": { + "templateId": "AthenaDance:Emoji_Sucker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_SummerDays": { + "templateId": "AthenaDance:Emoji_SummerDays", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Sun": { + "templateId": "AthenaDance:Emoji_Sun", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_SupDood": { + "templateId": "AthenaDance:Emoji_SupDood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Sweaty": { + "templateId": "AthenaDance:Emoji_Sweaty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Tasty": { + "templateId": "AthenaDance:Emoji_Tasty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Tattered": { + "templateId": "AthenaDance:Emoji_Tattered", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Teamwork": { + "templateId": "AthenaDance:Emoji_Teamwork", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_TechOpsBlue": { + "templateId": "AthenaDance:Emoji_TechOpsBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Teknique": { + "templateId": "AthenaDance:Emoji_Teknique", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Thief": { + "templateId": "AthenaDance:Emoji_Thief", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_ThumbsDown": { + "templateId": "AthenaDance:Emoji_ThumbsDown", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_ThumbsUp": { + "templateId": "AthenaDance:Emoji_ThumbsUp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_TomatoHead": { + "templateId": "AthenaDance:Emoji_TomatoHead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_TP": { + "templateId": "AthenaDance:Emoji_TP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Trap": { + "templateId": "AthenaDance:Emoji_Trap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_VictoryRoyale": { + "templateId": "AthenaDance:Emoji_VictoryRoyale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_WhiteFlag": { + "templateId": "AthenaDance:Emoji_WhiteFlag", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_WitchsBrew": { + "templateId": "AthenaDance:Emoji_WitchsBrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_Wow": { + "templateId": "AthenaDance:Emoji_Wow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Emoji_ZZZ": { + "templateId": "AthenaDance:Emoji_ZZZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:FounderGlider": { + "templateId": "AthenaGlider:FounderGlider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:FounderUmbrella": { + "templateId": "AthenaGlider:FounderUmbrella", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Gadget_AlienSignalDetector": { + "templateId": "AthenaBackpack:Gadget_AlienSignalDetector", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Gadget_DetectorGadget": { + "templateId": "AthenaBackpack:Gadget_DetectorGadget", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Gadget_DetectorGadget_Ch4S2": { + "templateId": "AthenaBackpack:Gadget_DetectorGadget_Ch4S2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Gadget_HighTechBackpack": { + "templateId": "AthenaBackpack:Gadget_HighTechBackpack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Gadget_RealityBloom": { + "templateId": "AthenaBackpack:Gadget_RealityBloom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:Gadget_SpiritVessel": { + "templateId": "AthenaBackpack:Gadget_SpiritVessel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_354_BinaryFemale": { + "templateId": "AthenaGlider:Glider_354_BinaryFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_AgentSherbert": { + "templateId": "AthenaGlider:Glider_AgentSherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Apprentice": { + "templateId": "AthenaGlider:Glider_Apprentice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ArcticIceBlue": { + "templateId": "AthenaGlider:Glider_ArcticIceBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ArcticIceTalus": { + "templateId": "AthenaGlider:Glider_ArcticIceTalus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_BadBear": { + "templateId": "AthenaGlider:Glider_BadBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_BengalBasher": { + "templateId": "AthenaGlider:Glider_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_BirdNest": { + "templateId": "AthenaGlider:Glider_BirdNest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Bites": { + "templateId": "AthenaGlider:Glider_Bites", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Bold": { + "templateId": "AthenaGlider:Glider_Bold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_BoneMarrow": { + "templateId": "AthenaGlider:Glider_BoneMarrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_BraveBuild": { + "templateId": "AthenaGlider:Glider_BraveBuild", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_BrawnyBass": { + "templateId": "AthenaGlider:Glider_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Broomstick": { + "templateId": "AthenaGlider:Glider_Broomstick", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_BuffCatCruise": { + "templateId": "AthenaGlider:Glider_BuffCatCruise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Candor": { + "templateId": "AthenaGlider:Glider_Candor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_CeremonialGuard": { + "templateId": "AthenaGlider:Glider_CeremonialGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Chainmail": { + "templateId": "AthenaGlider:Glider_Chainmail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ChillCat": { + "templateId": "AthenaGlider:Glider_ChillCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_CinderMax": { + "templateId": "AthenaGlider:Glider_CinderMax", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_CirrusVine": { + "templateId": "AthenaGlider:Glider_CirrusVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Citadel": { + "templateId": "AthenaGlider:Glider_Citadel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_CleverEdge": { + "templateId": "AthenaGlider:Glider_CleverEdge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_CoyoteTrail": { + "templateId": "AthenaGlider:Glider_CoyoteTrail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_CrispRover": { + "templateId": "AthenaGlider:Glider_CrispRover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_CyberFuGlitch": { + "templateId": "AthenaGlider:Glider_CyberFuGlitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Dazzle": { + "templateId": "AthenaGlider:Glider_Dazzle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Default_Jolly": { + "templateId": "AthenaGlider:Glider_Default_Jolly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_DiamondHeart": { + "templateId": "AthenaGlider:Glider_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_DistantEchoPro": { + "templateId": "AthenaGlider:Glider_DistantEchoPro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Ebony": { + "templateId": "AthenaGlider:Glider_Ebony", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Elevate": { + "templateId": "AthenaGlider:Glider_Elevate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Flames": { + "templateId": "AthenaGlider:Glider_Flames", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_FlowerPOwer": { + "templateId": "AthenaGlider:Glider_FlowerPOwer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_GalaxyLevel": { + "templateId": "AthenaGlider:Glider_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Genius": { + "templateId": "AthenaGlider:Glider_Genius", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_GeniusBlob": { + "templateId": "AthenaGlider:Glider_GeniusBlob", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Headset": { + "templateId": "AthenaGlider:Glider_Headset", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_HighBeam": { + "templateId": "AthenaGlider:Glider_HighBeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_HornedJudgment": { + "templateId": "AthenaGlider:Glider_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_001": { + "templateId": "AthenaGlider:Glider_ID_001", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_002_Medieval": { + "templateId": "AthenaGlider:Glider_ID_002_Medieval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_003_District": { + "templateId": "AthenaGlider:Glider_ID_003_District", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_004_Disco": { + "templateId": "AthenaGlider:Glider_ID_004_Disco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_005_HolidaySweater": { + "templateId": "AthenaGlider:Glider_ID_005_HolidaySweater", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_006_WinterCamo": { + "templateId": "AthenaGlider:Glider_ID_006_WinterCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_007_TurtleShell": { + "templateId": "AthenaGlider:Glider_ID_007_TurtleShell", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_008_Graffiti": { + "templateId": "AthenaGlider:Glider_ID_008_Graffiti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_009_CandyCoat": { + "templateId": "AthenaGlider:Glider_ID_009_CandyCoat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_010_Storm": { + "templateId": "AthenaGlider:Glider_ID_010_Storm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_011_JollyRoger": { + "templateId": "AthenaGlider:Glider_ID_011_JollyRoger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_012_TeddyBear": { + "templateId": "AthenaGlider:Glider_ID_012_TeddyBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_013_PSBlue": { + "templateId": "AthenaGlider:Glider_ID_013_PSBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_014_Dragon": { + "templateId": "AthenaGlider:Glider_ID_014_Dragon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_015_Brite": { + "templateId": "AthenaGlider:Glider_ID_015_Brite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_016_Tactical": { + "templateId": "AthenaGlider:Glider_ID_016_Tactical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_017_Assassin": { + "templateId": "AthenaGlider:Glider_ID_017_Assassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_018_Twitch": { + "templateId": "AthenaGlider:Glider_ID_018_Twitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_019_Taxi": { + "templateId": "AthenaGlider:Glider_ID_019_Taxi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_020_Fighter": { + "templateId": "AthenaGlider:Glider_ID_020_Fighter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_021_Scavenger": { + "templateId": "AthenaGlider:Glider_ID_021_Scavenger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_022_RockerPunk": { + "templateId": "AthenaGlider:Glider_ID_022_RockerPunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_023_CuChulainn": { + "templateId": "AthenaGlider:Glider_ID_023_CuChulainn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_024_Reaper": { + "templateId": "AthenaGlider:Glider_ID_024_Reaper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_025_ShuttleA": { + "templateId": "AthenaGlider:Glider_ID_025_ShuttleA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_026_ShuttleB": { + "templateId": "AthenaGlider:Glider_ID_026_ShuttleB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_027_Satelite": { + "templateId": "AthenaGlider:Glider_ID_027_Satelite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_028_Googly": { + "templateId": "AthenaGlider:Glider_ID_028_Googly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_029_PajamaParty": { + "templateId": "AthenaGlider:Glider_ID_029_PajamaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_030_CircuitBreaker": { + "templateId": "AthenaGlider:Glider_ID_030_CircuitBreaker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_031_Metal": { + "templateId": "AthenaGlider:Glider_ID_031_Metal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_032_TacticalWoodland": { + "templateId": "AthenaGlider:Glider_ID_032_TacticalWoodland", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_033_Valor": { + "templateId": "AthenaGlider:Glider_ID_033_Valor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_034_CarbideBlue": { + "templateId": "AthenaGlider:Glider_ID_034_CarbideBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_035_Candy": { + "templateId": "AthenaGlider:Glider_ID_035_Candy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_036_AuroraGlow": { + "templateId": "AthenaGlider:Glider_ID_036_AuroraGlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_037_Hazmat": { + "templateId": "AthenaGlider:Glider_ID_037_Hazmat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_038_Deco": { + "templateId": "AthenaGlider:Glider_ID_038_Deco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_039_Venus": { + "templateId": "AthenaGlider:Glider_ID_039_Venus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_040_Jailbird": { + "templateId": "AthenaGlider:Glider_ID_040_Jailbird", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_041_Basketball": { + "templateId": "AthenaGlider:Glider_ID_041_Basketball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_042_Soccer": { + "templateId": "AthenaGlider:Glider_ID_042_Soccer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_043_DarkNinja": { + "templateId": "AthenaGlider:Glider_ID_043_DarkNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_044_Pterodactyl": { + "templateId": "AthenaGlider:Glider_ID_044_Pterodactyl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_045_CarbideBlack": { + "templateId": "AthenaGlider:Glider_ID_045_CarbideBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_046_Gumshoe": { + "templateId": "AthenaGlider:Glider_ID_046_Gumshoe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_047_SpeedyRed": { + "templateId": "AthenaGlider:Glider_ID_047_SpeedyRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_048_Viking": { + "templateId": "AthenaGlider:Glider_ID_048_Viking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_049_Lifeguard": { + "templateId": "AthenaGlider:Glider_ID_049_Lifeguard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_050_StreetRacerCobra": { + "templateId": "AthenaGlider:Glider_ID_050_StreetRacerCobra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_051_Luchador": { + "templateId": "AthenaGlider:Glider_ID_051_Luchador", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_052_Bedazzled": { + "templateId": "AthenaGlider:Glider_ID_052_Bedazzled", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_053_Huya": { + "templateId": "AthenaGlider:Glider_ID_053_Huya", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_054_Douyu": { + "templateId": "AthenaGlider:Glider_ID_054_Douyu", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_055_StreetRacerBlack": { + "templateId": "AthenaGlider:Glider_ID_055_StreetRacerBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_056_CarbideWhite": { + "templateId": "AthenaGlider:Glider_ID_056_CarbideWhite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_057_ModernMilitary": { + "templateId": "AthenaGlider:Glider_ID_057_ModernMilitary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_058_Shark": { + "templateId": "AthenaGlider:Glider_ID_058_Shark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_059_DurrburgerHero": { + "templateId": "AthenaGlider:Glider_ID_059_DurrburgerHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_060_Exercise": { + "templateId": "AthenaGlider:Glider_ID_060_Exercise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_061_StreetRacerBiker": { + "templateId": "AthenaGlider:Glider_ID_061_StreetRacerBiker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_062_StreetRacerWhite": { + "templateId": "AthenaGlider:Glider_ID_062_StreetRacerWhite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_063_SushiChef": { + "templateId": "AthenaGlider:Glider_ID_063_SushiChef", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_064_Biker": { + "templateId": "AthenaGlider:Glider_ID_064_Biker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_065_Hippie": { + "templateId": "AthenaGlider:Glider_ID_065_Hippie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_066_SamuraiBlue": { + "templateId": "AthenaGlider:Glider_ID_066_SamuraiBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_067_PSBurnout": { + "templateId": "AthenaGlider:Glider_ID_067_PSBurnout", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_068_GarageBand": { + "templateId": "AthenaGlider:Glider_ID_068_GarageBand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_069_Hacivat": { + "templateId": "AthenaGlider:Glider_ID_069_Hacivat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_070_DarkViking": { + "templateId": "AthenaGlider:Glider_ID_070_DarkViking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_071_Football": { + "templateId": "AthenaGlider:Glider_ID_071_Football", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_072_Bling": { + "templateId": "AthenaGlider:Glider_ID_072_Bling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_073_Medic": { + "templateId": "AthenaGlider:Glider_ID_073_Medic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_074_RaptorArcticCamo": { + "templateId": "AthenaGlider:Glider_ID_074_RaptorArcticCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_075_ModernMilitaryRed": { + "templateId": "AthenaGlider:Glider_ID_075_ModernMilitaryRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_076_DieselPunk": { + "templateId": "AthenaGlider:Glider_ID_076_DieselPunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_077_Octoberfest": { + "templateId": "AthenaGlider:Glider_ID_077_Octoberfest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_078_Vampire": { + "templateId": "AthenaGlider:Glider_ID_078_Vampire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_079_RedRiding": { + "templateId": "AthenaGlider:Glider_ID_079_RedRiding", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_080_PrairiePusher": { + "templateId": "AthenaGlider:Glider_ID_080_PrairiePusher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_081_CowboyGunslinger": { + "templateId": "AthenaGlider:Glider_ID_081_CowboyGunslinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_082_Scarecrow": { + "templateId": "AthenaGlider:Glider_ID_082_Scarecrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_083_DarkBomber": { + "templateId": "AthenaGlider:Glider_ID_083_DarkBomber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_084_Plague": { + "templateId": "AthenaGlider:Glider_ID_084_Plague", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_085_SkullTrooper": { + "templateId": "AthenaGlider:Glider_ID_085_SkullTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_086_BlackWidow": { + "templateId": "AthenaGlider:Glider_ID_086_BlackWidow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_087_GuanYu": { + "templateId": "AthenaGlider:Glider_ID_087_GuanYu", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_088_EvilCowboy": { + "templateId": "AthenaGlider:Glider_ID_088_EvilCowboy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_089_Muertos": { + "templateId": "AthenaGlider:Glider_ID_089_Muertos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_090_Celestial": { + "templateId": "AthenaGlider:Glider_ID_090_Celestial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_091_MadCommander": { + "templateId": "AthenaGlider:Glider_ID_091_MadCommander", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_092_StreetOps": { + "templateId": "AthenaGlider:Glider_ID_092_StreetOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_093_AnimalJackets": { + "templateId": "AthenaGlider:Glider_ID_093_AnimalJackets", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_094_SamuraiUltra": { + "templateId": "AthenaGlider:Glider_ID_094_SamuraiUltra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_095_Witch": { + "templateId": "AthenaGlider:Glider_ID_095_Witch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_096_HornedMask": { + "templateId": "AthenaGlider:Glider_ID_096_HornedMask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_097_Feathers": { + "templateId": "AthenaGlider:Glider_ID_097_Feathers", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_098_Sup": { + "templateId": "AthenaGlider:Glider_ID_098_Sup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_099_Moth": { + "templateId": "AthenaGlider:Glider_ID_099_Moth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_100_Yeti": { + "templateId": "AthenaGlider:Glider_ID_100_Yeti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_101_TacticalSanta": { + "templateId": "AthenaGlider:Glider_ID_101_TacticalSanta", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_102_Rhino": { + "templateId": "AthenaGlider:Glider_ID_102_Rhino", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_103_Nautilus": { + "templateId": "AthenaGlider:Glider_ID_103_Nautilus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_104_Durrburger": { + "templateId": "AthenaGlider:Glider_ID_104_Durrburger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_104_FuzzyBear": { + "templateId": "AthenaGlider:Glider_ID_104_FuzzyBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_104_Math": { + "templateId": "AthenaGlider:Glider_ID_104_Math", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_105_Gingerbread": { + "templateId": "AthenaGlider:Glider_ID_105_Gingerbread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_105_SnowBoard": { + "templateId": "AthenaGlider:Glider_ID_105_SnowBoard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_106_FortniteDJ": { + "templateId": "AthenaGlider:Glider_ID_106_FortniteDJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_107_IceMaiden": { + "templateId": "AthenaGlider:Glider_ID_107_IceMaiden", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_108_Krampus": { + "templateId": "AthenaGlider:Glider_ID_108_Krampus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_109_StreetGoth": { + "templateId": "AthenaGlider:Glider_ID_109_StreetGoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_110_TeriyakiFish": { + "templateId": "AthenaGlider:Glider_ID_110_TeriyakiFish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_111_MilitaryFashion": { + "templateId": "AthenaGlider:Glider_ID_111_MilitaryFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_112_TechOps": { + "templateId": "AthenaGlider:Glider_ID_112_TechOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_113_Barbarian": { + "templateId": "AthenaGlider:Glider_ID_113_Barbarian", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_114_IceQueen": { + "templateId": "AthenaGlider:Glider_ID_114_IceQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_115_SnowNinja": { + "templateId": "AthenaGlider:Glider_ID_115_SnowNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_116_PizzaPit": { + "templateId": "AthenaGlider:Glider_ID_116_PizzaPit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_117_Warpaint": { + "templateId": "AthenaGlider:Glider_ID_117_Warpaint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_118_Squishy": { + "templateId": "AthenaGlider:Glider_ID_118_Squishy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_119_ReaperFrozen": { + "templateId": "AthenaGlider:Glider_ID_119_ReaperFrozen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_120_IceCream": { + "templateId": "AthenaGlider:Glider_ID_120_IceCream", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_121_BriteBomberDeluxe": { + "templateId": "AthenaGlider:Glider_ID_121_BriteBomberDeluxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_122_Valentines": { + "templateId": "AthenaGlider:Glider_ID_122_Valentines", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_123_MasterKey": { + "templateId": "AthenaGlider:Glider_ID_123_MasterKey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_124_Medusa": { + "templateId": "AthenaGlider:Glider_ID_124_Medusa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_125_Bandolier": { + "templateId": "AthenaGlider:Glider_ID_125_Bandolier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_126_Farmer": { + "templateId": "AthenaGlider:Glider_ID_126_Farmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_127_Aztec": { + "templateId": "AthenaGlider:Glider_ID_127_Aztec", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_128_BootyBuoy": { + "templateId": "AthenaGlider:Glider_ID_128_BootyBuoy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_129_FireElf": { + "templateId": "AthenaGlider:Glider_ID_129_FireElf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_130_SciOps": { + "templateId": "AthenaGlider:Glider_ID_130_SciOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_131_SpeedyMidnight": { + "templateId": "AthenaGlider:Glider_ID_131_SpeedyMidnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_132_Pirate01Octopus": { + "templateId": "AthenaGlider:Glider_ID_132_Pirate01Octopus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_133_BandageNinja": { + "templateId": "AthenaGlider:Glider_ID_133_BandageNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_134_DarkVikingFire": { + "templateId": "AthenaGlider:Glider_ID_134_DarkVikingFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_135_Baseball": { + "templateId": "AthenaGlider:Glider_ID_135_Baseball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_136_Bullseye": { + "templateId": "AthenaGlider:Glider_ID_136_Bullseye", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_137_StreetOpsStealth": { + "templateId": "AthenaGlider:Glider_ID_137_StreetOpsStealth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_138_BomberPlane": { + "templateId": "AthenaGlider:Glider_ID_138_BomberPlane", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_139_EarthDay": { + "templateId": "AthenaGlider:Glider_ID_139_EarthDay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_140_ShatterFly": { + "templateId": "AthenaGlider:Glider_ID_140_ShatterFly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_141_AshtonBoardwalk": { + "templateId": "AthenaGlider:Glider_ID_141_AshtonBoardwalk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_142_AshtonSaltLake": { + "templateId": "AthenaGlider:Glider_ID_142_AshtonSaltLake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_143_BattleSuit": { + "templateId": "AthenaGlider:Glider_ID_143_BattleSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_144_StrawberryPilot": { + "templateId": "AthenaGlider:Glider_ID_144_StrawberryPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_145_StormTracker": { + "templateId": "AthenaGlider:Glider_ID_145_StormTracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_146_Masako": { + "templateId": "AthenaGlider:Glider_ID_146_Masako", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_147_Raptor": { + "templateId": "AthenaGlider:Glider_ID_147_Raptor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_148_CyberScavenger": { + "templateId": "AthenaGlider:Glider_ID_148_CyberScavenger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_149_Geisha": { + "templateId": "AthenaGlider:Glider_ID_149_Geisha", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_150_TechOpsBlue": { + "templateId": "AthenaGlider:Glider_ID_150_TechOpsBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_151_StormSoldier": { + "templateId": "AthenaGlider:Glider_ID_151_StormSoldier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_152_DemonHunter": { + "templateId": "AthenaGlider:Glider_ID_152_DemonHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_153_Banner": { + "templateId": "AthenaGlider:Glider_ID_153_Banner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_154_GlowBroBat": { + "templateId": "AthenaGlider:Glider_ID_154_GlowBroBat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_155_Jellyfish": { + "templateId": "AthenaGlider:Glider_ID_155_Jellyfish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_156_SummerBomber": { + "templateId": "AthenaGlider:Glider_ID_156_SummerBomber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_157_Drift": { + "templateId": "AthenaGlider:Glider_ID_157_Drift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_158_Hairy": { + "templateId": "AthenaGlider:Glider_ID_158_Hairy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_159_TechMage": { + "templateId": "AthenaGlider:Glider_ID_159_TechMage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_160_Anarchy": { + "templateId": "AthenaGlider:Glider_ID_160_Anarchy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_161_RoseLeader": { + "templateId": "AthenaGlider:Glider_ID_161_RoseLeader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_162_BoneWasp": { + "templateId": "AthenaGlider:Glider_ID_162_BoneWasp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_163_DJRemix": { + "templateId": "AthenaGlider:Glider_ID_163_DJRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_164_GraffitiRemix": { + "templateId": "AthenaGlider:Glider_ID_164_GraffitiRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_165_KnightRemix": { + "templateId": "AthenaGlider:Glider_ID_165_KnightRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_166_RustLordRemix": { + "templateId": "AthenaGlider:Glider_ID_166_RustLordRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_167_SparkleRemix": { + "templateId": "AthenaGlider:Glider_ID_167_SparkleRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_168_StreetRacerDriftRemix": { + "templateId": "AthenaGlider:Glider_ID_168_StreetRacerDriftRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_169_VoyagerRemix": { + "templateId": "AthenaGlider:Glider_ID_169_VoyagerRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_171_DevilRock": { + "templateId": "AthenaGlider:Glider_ID_171_DevilRock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_172_RaptorBlackOps": { + "templateId": "AthenaGlider:Glider_ID_172_RaptorBlackOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_173_TacticalBiker": { + "templateId": "AthenaGlider:Glider_ID_173_TacticalBiker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_174_SleepyTime": { + "templateId": "AthenaGlider:Glider_ID_174_SleepyTime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_175_StreetFashionRed": { + "templateId": "AthenaGlider:Glider_ID_175_StreetFashionRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_176_BlackMondayCape_4P79K": { + "templateId": "AthenaGlider:Glider_ID_176_BlackMondayCape_4P79K", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_176_BlackMondayCape_GrapplerAsset": { + "templateId": "AthenaGlider:Glider_ID_176_BlackMondayCape_GrapplerAsset", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_177_BlackMondayFemale_HO3A9": { + "templateId": "AthenaGlider:Glider_ID_177_BlackMondayFemale_HO3A9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_178_BlackMondayMale_03M3E": { + "templateId": "AthenaGlider:Glider_ID_178_BlackMondayMale_03M3E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_179_CrazyEight": { + "templateId": "AthenaGlider:Glider_ID_179_CrazyEight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_180_NeonGraffiti": { + "templateId": "AthenaGlider:Glider_ID_180_NeonGraffiti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_181_RockClimber": { + "templateId": "AthenaGlider:Glider_ID_181_RockClimber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_182_Sheath": { + "templateId": "AthenaGlider:Glider_ID_182_Sheath", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_183_TacticalFisherman": { + "templateId": "AthenaGlider:Glider_ID_183_TacticalFisherman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_184_Viper": { + "templateId": "AthenaGlider:Glider_ID_184_Viper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_185_Nosh": { + "templateId": "AthenaGlider:Glider_ID_185_Nosh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_186_GalileoFerry_48L4V": { + "templateId": "AthenaGlider:Glider_ID_186_GalileoFerry_48L4V", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_187_GalileoKayak_Q8THV": { + "templateId": "AthenaGlider:Glider_ID_187_GalileoKayak_Q8THV", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_188_GalileoRocket_G7OKI": { + "templateId": "AthenaGlider:Glider_ID_188_GalileoRocket_G7OKI", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_189_GalileoZeppelinFemale_353IC": { + "templateId": "AthenaGlider:Glider_ID_189_GalileoZeppelinFemale_353IC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_190_NewYears": { + "templateId": "AthenaGlider:Glider_ID_190_NewYears", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_191_PineTree": { + "templateId": "AthenaGlider:Glider_ID_191_PineTree", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_192_Present": { + "templateId": "AthenaGlider:Glider_ID_192_Present", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_193_TheGoldenSkeleton": { + "templateId": "AthenaGlider:Glider_ID_193_TheGoldenSkeleton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_194_Agent": { + "templateId": "AthenaGlider:Glider_ID_194_Agent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + }, + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_195_BuffCatMale": { + "templateId": "AthenaGlider:Glider_ID_195_BuffCatMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_196_CycloneMale": { + "templateId": "AthenaGlider:Glider_ID_196_CycloneMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_197_HenchmanMale": { + "templateId": "AthenaGlider:Glider_ID_197_HenchmanMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_198_Kaboom": { + "templateId": "AthenaGlider:Glider_ID_198_Kaboom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_199_LlamaHero": { + "templateId": "AthenaGlider:Glider_ID_199_LlamaHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_200_PhotographerFemale": { + "templateId": "AthenaGlider:Glider_ID_200_PhotographerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_201_TNTinaFemale": { + "templateId": "AthenaGlider:Glider_ID_201_TNTinaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_202_BananaAgent": { + "templateId": "AthenaGlider:Glider_ID_202_BananaAgent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_203_TwinDarkFemale": { + "templateId": "AthenaGlider:Glider_ID_203_TwinDarkFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_204_CardboardCrew": { + "templateId": "AthenaGlider:Glider_ID_204_CardboardCrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_205_DesertOpsCamo": { + "templateId": "AthenaGlider:Glider_ID_205_DesertOpsCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_206_Donut": { + "templateId": "AthenaGlider:Glider_ID_206_Donut", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_207_InformerMale": { + "templateId": "AthenaGlider:Glider_ID_207_InformerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_208_BadEggMale": { + "templateId": "AthenaGlider:Glider_ID_208_BadEggMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_209_DonutPlate": { + "templateId": "AthenaGlider:Glider_ID_209_DonutPlate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_210_GraffitiAssassinFemale": { + "templateId": "AthenaGlider:Glider_ID_210_GraffitiAssassinFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_211_WildCatBlue": { + "templateId": "AthenaGlider:Glider_ID_211_WildCatBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_212_AquaJacketMale": { + "templateId": "AthenaGlider:Glider_ID_212_AquaJacketMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_213_BlackKnightFemale": { + "templateId": "AthenaGlider:Glider_ID_213_BlackKnightFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_214_GarbageIsland": { + "templateId": "AthenaGlider:Glider_ID_214_GarbageIsland", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_216_HardcoreSportz": { + "templateId": "AthenaGlider:Glider_ID_216_HardcoreSportz", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_217_LongshortsMale": { + "templateId": "AthenaGlider:Glider_ID_217_LongshortsMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_218_MechanicalEngineerFemale": { + "templateId": "AthenaGlider:Glider_ID_218_MechanicalEngineerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_219_OceanRiderFemale": { + "templateId": "AthenaGlider:Glider_ID_219_OceanRiderFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_220_ProfessorPup": { + "templateId": "AthenaGlider:Glider_ID_220_ProfessorPup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_221_PythonFemale": { + "templateId": "AthenaGlider:Glider_ID_221_PythonFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_222_RacerZeroMale": { + "templateId": "AthenaGlider:Glider_ID_222_RacerZeroMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_223_SpaceSuit": { + "templateId": "AthenaGlider:Glider_ID_223_SpaceSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_224_SpaceWandererFemale": { + "templateId": "AthenaGlider:Glider_ID_224_SpaceWandererFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_225_TacticalScubaMale": { + "templateId": "AthenaGlider:Glider_ID_225_TacticalScubaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_226_GreenJacketFemale": { + "templateId": "AthenaGlider:Glider_ID_226_GreenJacketFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_227_SharkSuit": { + "templateId": "AthenaGlider:Glider_ID_227_SharkSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_228_CelestialFemale": { + "templateId": "AthenaGlider:Glider_ID_228_CelestialFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_229_Angler": { + "templateId": "AthenaGlider:Glider_ID_229_Angler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_230_NeonGreen": { + "templateId": "AthenaGlider:Glider_ID_230_NeonGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_231_SpaceWandererMale": { + "templateId": "AthenaGlider:Glider_ID_231_SpaceWandererMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_232_HightowerDate": { + "templateId": "AthenaGlider:Glider_ID_232_HightowerDate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_233_HightowerDefault": { + "templateId": "AthenaGlider:Glider_ID_233_HightowerDefault", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7", + "Mat8", + "Mat9" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_234_HightowerGrape": { + "templateId": "AthenaGlider:Glider_ID_234_HightowerGrape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_235_HightowerSquashFemale": { + "templateId": "AthenaGlider:Glider_ID_235_HightowerSquashFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_236_HightowerTapasMale": { + "templateId": "AthenaGlider:Glider_ID_236_HightowerTapasMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_237_HightowerTomato": { + "templateId": "AthenaGlider:Glider_ID_237_HightowerTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_238_Soy_RWO5D": { + "templateId": "AthenaGlider:Glider_ID_238_Soy_RWO5D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_240_Maverick": { + "templateId": "AthenaGlider:Glider_ID_240_Maverick", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_241_BackspinMale_97LM4": { + "templateId": "AthenaGlider:Glider_ID_241_BackspinMale_97LM4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_242_KevinCouture": { + "templateId": "AthenaGlider:Glider_ID_242_KevinCouture", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_243_Myth": { + "templateId": "AthenaGlider:Glider_ID_243_Myth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_244_ChOneGlider": { + "templateId": "AthenaGlider:Glider_ID_244_ChOneGlider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_245_DeliSandwich": { + "templateId": "AthenaGlider:Glider_ID_245_DeliSandwich", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_246_BabaYaga": { + "templateId": "AthenaGlider:Glider_ID_246_BabaYaga", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_247_Skull": { + "templateId": "AthenaGlider:Glider_ID_247_Skull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_248_York": { + "templateId": "AthenaGlider:Glider_ID_248_York", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_249_NexusWar": { + "templateId": "AthenaGlider:Glider_ID_249_NexusWar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_250_EmbersMale": { + "templateId": "AthenaGlider:Glider_ID_250_EmbersMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_251_TapDanceFemale": { + "templateId": "AthenaGlider:Glider_ID_251_TapDanceFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_252_PieManMale": { + "templateId": "AthenaGlider:Glider_ID_252_PieManMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_253_ArcticCamoWoodsFemale": { + "templateId": "AthenaGlider:Glider_ID_253_ArcticCamoWoodsFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_254_CosmosMale": { + "templateId": "AthenaGlider:Glider_ID_254_CosmosMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_255_FlapjackWranglerMale": { + "templateId": "AthenaGlider:Glider_ID_255_FlapjackWranglerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_256_FutureSamuraiMale": { + "templateId": "AthenaGlider:Glider_ID_256_FutureSamuraiMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_257_Historian_VS0BJ": { + "templateId": "AthenaGlider:Glider_ID_257_Historian_VS0BJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_258_JupiterMale_LB0TE": { + "templateId": "AthenaGlider:Glider_ID_258_JupiterMale_LB0TE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_259_LexaFemale": { + "templateId": "AthenaGlider:Glider_ID_259_LexaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_260_ShapeshifterFemale": { + "templateId": "AthenaGlider:Glider_ID_260_ShapeshifterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_261_SpaceFighterFemale": { + "templateId": "AthenaGlider:Glider_ID_261_SpaceFighterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_262_Cherry_Y3GIU": { + "templateId": "AthenaGlider:Glider_ID_262_Cherry_Y3GIU", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_263_FancyCandyMale": { + "templateId": "AthenaGlider:Glider_ID_263_FancyCandyMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_264_FestiveGold": { + "templateId": "AthenaGlider:Glider_ID_264_FestiveGold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_265_HolidayLights": { + "templateId": "AthenaGlider:Glider_ID_265_HolidayLights", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_266_Neon": { + "templateId": "AthenaGlider:Glider_ID_266_Neon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_267_PlumRetro_R2CYE": { + "templateId": "AthenaGlider:Glider_ID_267_PlumRetro_R2CYE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_268_SnowGlobeMint": { + "templateId": "AthenaGlider:Glider_ID_268_SnowGlobeMint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_269_Stars": { + "templateId": "AthenaGlider:Glider_ID_269_Stars", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_271_CombatDoll": { + "templateId": "AthenaGlider:Glider_ID_271_CombatDoll", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_272_StreetFashionEclipseFemale": { + "templateId": "AthenaGlider:Glider_ID_272_StreetFashionEclipseFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_273_MainframeMale_P06W7": { + "templateId": "AthenaGlider:Glider_ID_273_MainframeMale_P06W7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_274_DragonRacerBlue": { + "templateId": "AthenaGlider:Glider_ID_274_DragonRacerBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_275_AncientGladiatorMale": { + "templateId": "AthenaGlider:Glider_ID_275_AncientGladiatorMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_276_Kepler_BEUUP": { + "templateId": "AthenaGlider:Glider_ID_276_Kepler_BEUUP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_277_Skirmish_9KK2W": { + "templateId": "AthenaGlider:Glider_ID_277_Skirmish_9KK2W", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_278_SpaceWarriorMale": { + "templateId": "AthenaGlider:Glider_ID_278_SpaceWarriorMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_279_ChickenWarriorMale": { + "templateId": "AthenaGlider:Glider_ID_279_ChickenWarriorMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_280_CubeNinjaMale": { + "templateId": "AthenaGlider:Glider_ID_280_CubeNinjaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_281_DarkMinionMale": { + "templateId": "AthenaGlider:Glider_ID_281_DarkMinionMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_282_DinoHunterFemale": { + "templateId": "AthenaGlider:Glider_ID_282_DinoHunterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_283_ObsidianFemale": { + "templateId": "AthenaGlider:Glider_ID_283_ObsidianFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_284_TempleFemale": { + "templateId": "AthenaGlider:Glider_ID_284_TempleFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_285_TowerSentinelFemale": { + "templateId": "AthenaGlider:Glider_ID_285_TowerSentinelFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_286_AccumulateMale": { + "templateId": "AthenaGlider:Glider_ID_286_AccumulateMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_287_Alchemy_W87KL": { + "templateId": "AthenaGlider:Glider_ID_287_Alchemy_W87KL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_288_BicycleMale": { + "templateId": "AthenaGlider:Glider_ID_288_BicycleMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_289_CavernMale_5I9RD": { + "templateId": "AthenaGlider:Glider_ID_289_CavernMale_5I9RD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_291_TaxiUpgradedMulticolorFemale": { + "templateId": "AthenaGlider:Glider_ID_291_TaxiUpgradedMulticolorFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_292_GrimMale": { + "templateId": "AthenaGlider:Glider_ID_292_GrimMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_293_AntiqueMale": { + "templateId": "AthenaGlider:Glider_ID_293_AntiqueMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_294_BelieverFemale": { + "templateId": "AthenaGlider:Glider_ID_294_BelieverFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_295_EmperorMale": { + "templateId": "AthenaGlider:Glider_ID_295_EmperorMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_296_InnovatorFemale": { + "templateId": "AthenaGlider:Glider_ID_296_InnovatorFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_297_InvaderMale": { + "templateId": "AthenaGlider:Glider_ID_297_InvaderMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_298_RuckusMale": { + "templateId": "AthenaGlider:Glider_ID_298_RuckusMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_299_CavernArmoredMale": { + "templateId": "AthenaGlider:Glider_ID_299_CavernArmoredMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_300_FirecrackerMale": { + "templateId": "AthenaGlider:Glider_ID_300_FirecrackerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_301_LinguiniMale_IP674": { + "templateId": "AthenaGlider:Glider_ID_301_LinguiniMale_IP674", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_302_MajestyMale_T1ICF": { + "templateId": "AthenaGlider:Glider_ID_302_MajestyMale_T1ICF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_303_SurfingSummerFemale": { + "templateId": "AthenaGlider:Glider_ID_303_SurfingSummerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_304_BuffetFemale_AOF61": { + "templateId": "AthenaGlider:Glider_ID_304_BuffetFemale_AOF61", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_305_QuarrelMale_ZTHTQ": { + "templateId": "AthenaGlider:Glider_ID_305_QuarrelMale_ZTHTQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_306_StereoFemale_0ZZCF": { + "templateId": "AthenaGlider:Glider_ID_306_StereoFemale_0ZZCF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_307_MonarchFemale": { + "templateId": "AthenaGlider:Glider_ID_307_MonarchFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_308_VividMale_H8JAS": { + "templateId": "AthenaGlider:Glider_ID_308_VividMale_H8JAS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_309_TacticalWoodlandBlue": { + "templateId": "AthenaGlider:Glider_ID_309_TacticalWoodlandBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_310_BuffLlamaMale": { + "templateId": "AthenaGlider:Glider_ID_310_BuffLlamaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_311_CerealBoxMale": { + "templateId": "AthenaGlider:Glider_ID_311_CerealBoxMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_312_ClashMale": { + "templateId": "AthenaGlider:Glider_ID_312_ClashMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_313_DivisionFemale": { + "templateId": "AthenaGlider:Glider_ID_313_DivisionFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_314_SpaceChimpMale": { + "templateId": "AthenaGlider:Glider_ID_314_SpaceChimpMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_315_TeriyakiFishToon": { + "templateId": "AthenaGlider:Glider_ID_315_TeriyakiFishToon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_316_TextileMale_3S90R": { + "templateId": "AthenaGlider:Glider_ID_316_TextileMale_3S90R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_317_VertigoMale_E3F81": { + "templateId": "AthenaGlider:Glider_ID_317_VertigoMale_E3F81", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_318_Wombat_1MQMN": { + "templateId": "AthenaGlider:Glider_ID_318_Wombat_1MQMN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_319_BistroAstronautFemale_A4839": { + "templateId": "AthenaGlider:Glider_ID_319_BistroAstronautFemale_A4839", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_320_CritterRavenMale": { + "templateId": "AthenaGlider:Glider_ID_320_CritterRavenMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_321_CubeQueenFemale": { + "templateId": "AthenaGlider:Glider_ID_321_CubeQueenFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_322_DriftHorrorMale": { + "templateId": "AthenaGlider:Glider_ID_322_DriftHorrorMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_323_GiggleMale_XADT7": { + "templateId": "AthenaGlider:Glider_ID_323_GiggleMale_XADT7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_324_SunriseCastleMale_2R4Q3": { + "templateId": "AthenaGlider:Glider_ID_324_SunriseCastleMale_2R4Q3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_325_GrandeurMale_ES8I4": { + "templateId": "AthenaGlider:Glider_ID_325_GrandeurMale_ES8I4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_326_HeadbandMale": { + "templateId": "AthenaGlider:Glider_ID_326_HeadbandMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_327_NucleusMale_55HFK": { + "templateId": "AthenaGlider:Glider_ID_327_NucleusMale_55HFK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_328_ExoSuitFemale": { + "templateId": "AthenaGlider:Glider_ID_328_ExoSuitFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_329_GumballMale": { + "templateId": "AthenaGlider:Glider_ID_329_GumballMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_330_LoneWolfMale": { + "templateId": "AthenaGlider:Glider_ID_330_LoneWolfMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_331_MotorcyclistFemale": { + "templateId": "AthenaGlider:Glider_ID_331_MotorcyclistFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_332_ParallelComicMale": { + "templateId": "AthenaGlider:Glider_ID_332_ParallelComicMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_333_RustyBolt_13IXR": { + "templateId": "AthenaGlider:Glider_ID_333_RustyBolt_13IXR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_334_DarkIceMale": { + "templateId": "AthenaGlider:Glider_ID_334_DarkIceMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_335_Logarithm_40QGL": { + "templateId": "AthenaGlider:Glider_ID_335_Logarithm_40QGL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_336_OrbitTealMale_VCPM0": { + "templateId": "AthenaGlider:Glider_ID_336_OrbitTealMale_VCPM0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_337_PeppermintMale": { + "templateId": "AthenaGlider:Glider_ID_337_PeppermintMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_338_SnowboardMale": { + "templateId": "AthenaGlider:Glider_ID_338_SnowboardMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_339_SnowboardGoldMale": { + "templateId": "AthenaGlider:Glider_ID_339_SnowboardGoldMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_340_TwentyTwoMale": { + "templateId": "AthenaGlider:Glider_ID_340_TwentyTwoMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_341_FoeMale_P8JE8": { + "templateId": "AthenaGlider:Glider_ID_341_FoeMale_P8JE8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_343_KeenMale_97P8M": { + "templateId": "AthenaGlider:Glider_ID_343_KeenMale_97P8M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_344_PrimalFalconFemale_BQKQ3": { + "templateId": "AthenaGlider:Glider_ID_344_PrimalFalconFemale_BQKQ3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_345_TurtleneckMale": { + "templateId": "AthenaGlider:Glider_ID_345_TurtleneckMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_346_GalacticFemale_LXRL3": { + "templateId": "AthenaGlider:Glider_ID_346_GalacticFemale_LXRL3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_347_PeachMale": { + "templateId": "AthenaGlider:Glider_ID_347_PeachMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_348_GimmickFemale_D76Z0": { + "templateId": "AthenaGlider:Glider_ID_348_GimmickFemale_D76Z0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_349_GimmickMale_MC92O": { + "templateId": "AthenaGlider:Glider_ID_349_GimmickMale_MC92O", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_350_RoverMale_41XKF": { + "templateId": "AthenaGlider:Glider_ID_350_RoverMale_41XKF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_351_ToonPlaneMale": { + "templateId": "AthenaGlider:Glider_ID_351_ToonPlaneMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_352_ThriveFemale": { + "templateId": "AthenaGlider:Glider_ID_352_ThriveFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_353_ThriveSpiritFemale": { + "templateId": "AthenaGlider:Glider_ID_353_ThriveSpiritFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_355_CadetFemale": { + "templateId": "AthenaGlider:Glider_ID_355_CadetFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_356_CyberArmorFemale": { + "templateId": "AthenaGlider:Glider_ID_356_CyberArmorFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_357_JourneyFemale": { + "templateId": "AthenaGlider:Glider_ID_357_JourneyFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_358_KnightCatFemale": { + "templateId": "AthenaGlider:Glider_ID_358_KnightCatFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_359_MilitaryFashionCamo": { + "templateId": "AthenaGlider:Glider_ID_359_MilitaryFashionCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_360_MysticMale": { + "templateId": "AthenaGlider:Glider_ID_360_MysticMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_361_OrderGuardMale": { + "templateId": "AthenaGlider:Glider_ID_361_OrderGuardMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle4", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_362_SiennaMale": { + "templateId": "AthenaGlider:Glider_ID_362_SiennaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_363_SnowfallFemale": { + "templateId": "AthenaGlider:Glider_ID_363_SnowfallFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_364_LyricalFemale": { + "templateId": "AthenaGlider:Glider_ID_364_LyricalFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_365_RumbleFemale": { + "templateId": "AthenaGlider:Glider_ID_365_RumbleFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_366_MultibotPinkMale": { + "templateId": "AthenaGlider:Glider_ID_366_MultibotPinkMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_367_AlfredoMale": { + "templateId": "AthenaGlider:Glider_ID_367_AlfredoMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_368_NobleMale": { + "templateId": "AthenaGlider:Glider_ID_368_NobleMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_369_CollectableMale": { + "templateId": "AthenaGlider:Glider_ID_369_CollectableMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_369_RebirthSoldierFreshMale": { + "templateId": "AthenaGlider:Glider_ID_369_RebirthSoldierFreshMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_370_FuchsiaFemale": { + "templateId": "AthenaGlider:Glider_ID_370_FuchsiaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_371_LancelotMale": { + "templateId": "AthenaGlider:Glider_ID_371_LancelotMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_373_PinkWidowFemale": { + "templateId": "AthenaGlider:Glider_ID_373_PinkWidowFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_374_RealmMale": { + "templateId": "AthenaGlider:Glider_ID_374_RealmMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_375_DarkStormYellow": { + "templateId": "AthenaGlider:Glider_ID_375_DarkStormYellow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_376_ChiselMale": { + "templateId": "AthenaGlider:Glider_ID_376_ChiselMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_377_EnsembleMaroonMale": { + "templateId": "AthenaGlider:Glider_ID_377_EnsembleMaroonMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_378_EnsembleSnakeMale": { + "templateId": "AthenaGlider:Glider_ID_378_EnsembleSnakeMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_379_GloomFemale": { + "templateId": "AthenaGlider:Glider_ID_379_GloomFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_380_BariumFemale": { + "templateId": "AthenaGlider:Glider_ID_380_BariumFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_381_CanaryMale": { + "templateId": "AthenaGlider:Glider_ID_381_CanaryMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_382_ParfaitFemale": { + "templateId": "AthenaGlider:Glider_ID_382_ParfaitFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_383_TrifleMale": { + "templateId": "AthenaGlider:Glider_ID_383_TrifleMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_384_MarkIICompete": { + "templateId": "AthenaGlider:Glider_ID_384_MarkIICompete", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_385_StaminaMale": { + "templateId": "AthenaGlider:Glider_ID_385_StaminaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_386_StaminaMaleStandalone": { + "templateId": "AthenaGlider:Glider_ID_386_StaminaMaleStandalone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_387_StaminaVigorMale": { + "templateId": "AthenaGlider:Glider_ID_387_StaminaVigorMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_388_Wayfare": { + "templateId": "AthenaGlider:Glider_ID_388_Wayfare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ID_389_BlizzardBomberFemale": { + "templateId": "AthenaGlider:Glider_ID_389_BlizzardBomberFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_IndieBucket": { + "templateId": "AthenaGlider:Glider_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Inferno": { + "templateId": "AthenaGlider:Glider_Inferno", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_InstantGravel": { + "templateId": "AthenaGlider:Glider_InstantGravel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_IronBlaze": { + "templateId": "AthenaGlider:Glider_IronBlaze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_JollyTroll": { + "templateId": "AthenaGlider:Glider_JollyTroll", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_LastVoiceDive": { + "templateId": "AthenaGlider:Glider_LastVoiceDive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_LazarusLens": { + "templateId": "AthenaGlider:Glider_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Lazuli": { + "templateId": "AthenaGlider:Glider_Lazuli", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Lettuce": { + "templateId": "AthenaGlider:Glider_Lettuce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_LilSplit": { + "templateId": "AthenaGlider:Glider_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_LocalZilla": { + "templateId": "AthenaGlider:Glider_LocalZilla", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_LocalZillaNight": { + "templateId": "AthenaGlider:Glider_LocalZillaNight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_MagicMeadow": { + "templateId": "AthenaGlider:Glider_MagicMeadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Meteorwomen_Alt": { + "templateId": "AthenaGlider:Glider_Meteorwomen_Alt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_MiG": { + "templateId": "AthenaGlider:Glider_MiG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Military": { + "templateId": "AthenaGlider:Glider_Military", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ModernMilitary_Crisp": { + "templateId": "AthenaGlider:Glider_ModernMilitary_Crisp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_MusketSlinger": { + "templateId": "AthenaGlider:Glider_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Nebula": { + "templateId": "AthenaGlider:Glider_Nebula", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_NightHawk": { + "templateId": "AthenaGlider:Glider_NightHawk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_NitroFlow": { + "templateId": "AthenaGlider:Glider_NitroFlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_PinkSpike": { + "templateId": "AthenaGlider:Glider_PinkSpike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_PizzaParty": { + "templateId": "AthenaGlider:Glider_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_PlotTwist": { + "templateId": "AthenaGlider:Glider_PlotTwist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_PowerFarmer": { + "templateId": "AthenaGlider:Glider_PowerFarmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Prismatic": { + "templateId": "AthenaGlider:Glider_Prismatic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_PrivateJet": { + "templateId": "AthenaGlider:Glider_PrivateJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ProxyTest": { + "templateId": "AthenaGlider:Glider_ProxyTest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Quartz": { + "templateId": "AthenaGlider:Glider_Quartz", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_RankedRemixAsparagus": { + "templateId": "AthenaGlider:Glider_RankedRemixAsparagus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_RebelClaw": { + "templateId": "AthenaGlider:Glider_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_RedPepper": { + "templateId": "AthenaGlider:Glider_RedPepper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_RippedHarvester": { + "templateId": "AthenaGlider:Glider_RippedHarvester", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_RoadTrip": { + "templateId": "AthenaGlider:Glider_RoadTrip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_RoseDust": { + "templateId": "AthenaGlider:Glider_RoseDust", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_RustyRaider_Spark": { + "templateId": "AthenaGlider:Glider_RustyRaider_Spark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_SafecrackerSleek": { + "templateId": "AthenaGlider:Glider_SafecrackerSleek", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ScorpionZero": { + "templateId": "AthenaGlider:Glider_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Scribble": { + "templateId": "AthenaGlider:Glider_Scribble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Shark_FNCS": { + "templateId": "AthenaGlider:Glider_Shark_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_SilentTempo": { + "templateId": "AthenaGlider:Glider_SilentTempo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_SkullBrite_Cotton": { + "templateId": "AthenaGlider:Glider_SkullBrite_Cotton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_SnowSoldierFashion": { + "templateId": "AthenaGlider:Glider_SnowSoldierFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_SolarTheory": { + "templateId": "AthenaGlider:Glider_SolarTheory", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Spring": { + "templateId": "AthenaGlider:Glider_Spring", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_StallionSmoke": { + "templateId": "AthenaGlider:Glider_StallionSmoke", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Stealth": { + "templateId": "AthenaGlider:Glider_Stealth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_SteamPower": { + "templateId": "AthenaGlider:Glider_SteamPower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Sunlit": { + "templateId": "AthenaGlider:Glider_Sunlit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_TestStaticParts": { + "templateId": "AthenaGlider:Glider_TestStaticParts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_TiltedParrot": { + "templateId": "AthenaGlider:Glider_TiltedParrot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Venice": { + "templateId": "AthenaGlider:Glider_Venice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Venom": { + "templateId": "AthenaGlider:Glider_Venom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_VitalPsych": { + "templateId": "AthenaGlider:Glider_VitalPsych", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_VoidRedemption": { + "templateId": "AthenaGlider:Glider_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Voyager": { + "templateId": "AthenaGlider:Glider_Voyager", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_Warthog": { + "templateId": "AthenaGlider:Glider_Warthog", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_WingedMedieval": { + "templateId": "AthenaGlider:Glider_WingedMedieval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ZebraScramble_Bacon": { + "templateId": "AthenaGlider:Glider_ZebraScramble_Bacon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Glider_ZirconSweep": { + "templateId": "AthenaGlider:Glider_ZirconSweep", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:HalloweenScythe": { + "templateId": "AthenaPickaxe:HalloweenScythe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:HappyPickaxe": { + "templateId": "AthenaPickaxe:HappyPickaxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_14DaysOfSummer": { + "templateId": "AthenaLoadingScreen:LoadingScreen_14DaysOfSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_28KeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_28KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_8UP": { + "templateId": "AthenaLoadingScreen:LoadingScreen_8UP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_AgentSherbert": { + "templateId": "AthenaLoadingScreen:LoadingScreen_AgentSherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_AgentSherbert2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_AgentSherbert2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Apprentice_Blue": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Apprentice_Blue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Apprentice_Forcefield": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Apprentice_Forcefield", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_ArcticIce": { + "templateId": "AthenaLoadingScreen:LoadingScreen_ArcticIce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_AugCrew": { + "templateId": "AthenaLoadingScreen:LoadingScreen_AugCrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_BadBear": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BadBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_BangalBasher_Phone": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BangalBasher_Phone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_BangalBasher_Train": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BangalBasher_Train", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Bites": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Bites", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_BlazerVeil": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_BlazerVeil2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BlazerVeil2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_BoneMarrow": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BoneMarrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_BrawnyBass": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_BrawnyBass2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BrawnyBass2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_BuffCatCruise": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BuffCatCruise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_BuffCatCruise2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_BuffCatCruise2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Candor": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Candor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_CeremonialGuard_Orchard": { + "templateId": "AthenaLoadingScreen:LoadingScreen_CeremonialGuard_Orchard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_CeremonialGuard_Prisoner": { + "templateId": "AthenaLoadingScreen:LoadingScreen_CeremonialGuard_Prisoner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Chainmail": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Chainmail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Chainmail_Bat": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Chainmail_Bat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Character_LineUp": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Character_LineUp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_ChillCat": { + "templateId": "AthenaLoadingScreen:LoadingScreen_ChillCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_CinderMax": { + "templateId": "AthenaLoadingScreen:LoadingScreen_CinderMax", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_CinderMax_Playing": { + "templateId": "AthenaLoadingScreen:LoadingScreen_CinderMax_Playing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Citadel": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Citadel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Citadel_SwordRaise": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Citadel_SwordRaise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_ClearRadius": { + "templateId": "AthenaLoadingScreen:LoadingScreen_ClearRadius", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_ClearRadius_Teaser": { + "templateId": "AthenaLoadingScreen:LoadingScreen_ClearRadius_Teaser", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_ConceptRoyale_2022": { + "templateId": "AthenaLoadingScreen:LoadingScreen_ConceptRoyale_2022", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Crew_EmberRae": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Crew_EmberRae", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Crisprover_Bike": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Crisprover_Bike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Crisprover_Red": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Crisprover_Red", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_DazzleChilling": { + "templateId": "AthenaLoadingScreen:LoadingScreen_DazzleChilling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_DazzleCity": { + "templateId": "AthenaLoadingScreen:LoadingScreen_DazzleCity", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Despair": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Despair", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_DiamondHeart_Car": { + "templateId": "AthenaLoadingScreen:LoadingScreen_DiamondHeart_Car", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_DiamondHeart_SeeingEye": { + "templateId": "AthenaLoadingScreen:LoadingScreen_DiamondHeart_SeeingEye", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_DowntimeMicrosite_Reward": { + "templateId": "AthenaLoadingScreen:LoadingScreen_DowntimeMicrosite_Reward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_DurianKeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_DurianKeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Ebony2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Ebony2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_EbonyCity": { + "templateId": "AthenaLoadingScreen:LoadingScreen_EbonyCity", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Elevate": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Elevate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_ES_Quest": { + "templateId": "AthenaLoadingScreen:LoadingScreen_ES_Quest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_EvergreenArcher": { + "templateId": "AthenaLoadingScreen:LoadingScreen_EvergreenArcher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_EvergreenBattleBus": { + "templateId": "AthenaLoadingScreen:LoadingScreen_EvergreenBattleBus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_EvergreenCompetitive": { + "templateId": "AthenaLoadingScreen:LoadingScreen_EvergreenCompetitive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_EvergreenHand": { + "templateId": "AthenaLoadingScreen:LoadingScreen_EvergreenHand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_EvergreenMap": { + "templateId": "AthenaLoadingScreen:LoadingScreen_EvergreenMap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Evergreen_BigChuggus": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Evergreen_BigChuggus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_FearlessFlight": { + "templateId": "AthenaLoadingScreen:LoadingScreen_FearlessFlight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_FNCSDrops26": { + "templateId": "AthenaLoadingScreen:LoadingScreen_FNCSDrops26", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Fortnitemares_2022": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Fortnitemares_2022", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Fortnitemares_Boss": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Fortnitemares_Boss", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_FortniteStories": { + "templateId": "AthenaLoadingScreen:LoadingScreen_FortniteStories", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Genius": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Genius", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_HeadHunter": { + "templateId": "AthenaLoadingScreen:LoadingScreen_HeadHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_HeadHunterStar_Remake": { + "templateId": "AthenaLoadingScreen:LoadingScreen_HeadHunterStar_Remake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Headset": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Headset", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_HornedJudgment": { + "templateId": "AthenaLoadingScreen:LoadingScreen_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_HornedJudgment2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_HornedJudgment2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_IndieBucket": { + "templateId": "AthenaLoadingScreen:LoadingScreen_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_IndieBucket2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_IndieBucket2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Inferno1": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Inferno1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Inferno2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Inferno2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Invitational": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Invitational", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_IslandChrome": { + "templateId": "AthenaLoadingScreen:LoadingScreen_IslandChrome", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Koi": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Koi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_LastVoice": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LastVoice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_LazarusLens": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_LazarusLens2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LazarusLens2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Lettuce_Tournament": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Lettuce_Tournament", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Lilac": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Lilac", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_LilSplit": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_LilSplit2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LilSplit2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Lobby_S23": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Lobby_S23", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_LocalZilla_Food": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LocalZilla_Food", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_LocalZilla_Motorcycle": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LocalZilla_Motorcycle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_LocalZilla_Quest": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LocalZilla_Quest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_LoudPhoenix": { + "templateId": "AthenaLoadingScreen:LoadingScreen_LoudPhoenix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_MadameMoth_FireStorm": { + "templateId": "AthenaLoadingScreen:LoadingScreen_MadameMoth_FireStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_MadameMoth_Searching": { + "templateId": "AthenaLoadingScreen:LoadingScreen_MadameMoth_Searching", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_MagicMeadow": { + "templateId": "AthenaLoadingScreen:LoadingScreen_MagicMeadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_MercurialStorm": { + "templateId": "AthenaLoadingScreen:LoadingScreen_MercurialStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_MeteorWomen": { + "templateId": "AthenaLoadingScreen:LoadingScreen_MeteorWomen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Mirage": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Mirage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Mochi": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Mochi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_MostWanted": { + "templateId": "AthenaLoadingScreen:LoadingScreen_MostWanted", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_MostWanted_KeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_MostWanted_KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Mouse": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Mouse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_MusketSlinger": { + "templateId": "AthenaLoadingScreen:LoadingScreen_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_MusketSlinger2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_MusketSlinger2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_NarrativeTimeMachine": { + "templateId": "AthenaLoadingScreen:LoadingScreen_NarrativeTimeMachine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Nebula_Standing": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Nebula_Standing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Nebula_Underwater": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Nebula_Underwater", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_NightHawk": { + "templateId": "AthenaLoadingScreen:LoadingScreen_NightHawk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_NitroFlow2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_NitroFlow2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_NitroFlowEbony": { + "templateId": "AthenaLoadingScreen:LoadingScreen_NitroFlowEbony", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_NitroFlow_FaceOff": { + "templateId": "AthenaLoadingScreen:LoadingScreen_NitroFlow_FaceOff", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Nocturnal": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Nocturnal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_NocturnalKeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_NocturnalKeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_OctCrew": { + "templateId": "AthenaLoadingScreen:LoadingScreen_OctCrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_OpenEnded": { + "templateId": "AthenaLoadingScreen:LoadingScreen_OpenEnded", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_PeelyAttack": { + "templateId": "AthenaLoadingScreen:LoadingScreen_PeelyAttack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_PencilSet": { + "templateId": "AthenaLoadingScreen:LoadingScreen_PencilSet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_PinkSpike": { + "templateId": "AthenaLoadingScreen:LoadingScreen_PinkSpike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_PizzaParty": { + "templateId": "AthenaLoadingScreen:LoadingScreen_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_PizzaParty2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_PizzaParty2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Possession": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Possession", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_PumpkinPunch_Glitch": { + "templateId": "AthenaLoadingScreen:LoadingScreen_PumpkinPunch_Glitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Questline": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Questline", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_QuestReward": { + "templateId": "AthenaLoadingScreen:LoadingScreen_QuestReward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_QuotientKeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_QuotientKeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Radish_ConceptArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Radish_ConceptArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Radish_KeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Radish_KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Ranked_CRZ": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Ranked_CRZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_RebelClaw": { + "templateId": "AthenaLoadingScreen:LoadingScreen_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_RebelClaw2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_RebelClaw2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_RedPepper": { + "templateId": "AthenaLoadingScreen:LoadingScreen_RedPepper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_RippedHarvester": { + "templateId": "AthenaLoadingScreen:LoadingScreen_RippedHarvester", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_RippedHarvester_Sword": { + "templateId": "AthenaLoadingScreen:LoadingScreen_RippedHarvester_Sword", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_RoseDust": { + "templateId": "AthenaLoadingScreen:LoadingScreen_RoseDust", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_RoseDust_Alt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_RoseDust_Alt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Rufus_KeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Rufus_KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S23BP_Lineup": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S23BP_Lineup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S23KeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S23KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S23_FNCS_Drops": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S23_FNCS_Drops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S24_FNCSDrops": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S24_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S24_KeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S24_KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S25KeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S25KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S25_FNCSDrops": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S25_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S26_CharacterLineUp": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S26_CharacterLineUp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S26_KeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S26_KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S28_CharacterLineUp": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S28_CharacterLineUp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_S4CH3KeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_S4CH3KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Sahara": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Sahara", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_ScorpionZero": { + "templateId": "AthenaLoadingScreen:LoadingScreen_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_ScorpionZero2": { + "templateId": "AthenaLoadingScreen:LoadingScreen_ScorpionZero2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SCRN_Fortnitemares_2022": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SCRN_Fortnitemares_2022", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SCRN_Silencer": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SCRN_Silencer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SCRN_Veiled": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SCRN_Veiled", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SeptCrew": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SeptCrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SharpFang": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SharpFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SharpFang_Extra": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SharpFang_Extra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SharpFang_Slash": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SharpFang_Slash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Silencer": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Silencer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SilentTempo": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SilentTempo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SilentTempo_Spell": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SilentTempo_Spell", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SilentTempo_Sword": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SilentTempo_Sword", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SmartHyena": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SnowKnight_Helm": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SnowKnight_Helm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SparksKeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SparksKeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Sparks_SpeedDial": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Sparks_SpeedDial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Sparrow": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Sparrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Spectacle": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Spectacle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Stallion": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Stallion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Sunburst_KeyArt": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Sunburst_KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_SunBurst_Mural": { + "templateId": "AthenaLoadingScreen:LoadingScreen_SunBurst_Mural", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Sunlit": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Sunlit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_TheHerald": { + "templateId": "AthenaLoadingScreen:LoadingScreen_TheHerald", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_TigerRoot": { + "templateId": "AthenaLoadingScreen:LoadingScreen_TigerRoot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_TimeMachine": { + "templateId": "AthenaLoadingScreen:LoadingScreen_TimeMachine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Troops": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Troops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_UndergroundRebel_Estate": { + "templateId": "AthenaLoadingScreen:LoadingScreen_UndergroundRebel_Estate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_UndergroundRebel_HQ": { + "templateId": "AthenaLoadingScreen:LoadingScreen_UndergroundRebel_HQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Veiled": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Veiled", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Venice": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Venice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_Venice_Skateboard": { + "templateId": "AthenaLoadingScreen:LoadingScreen_Venice_Skateboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_VitalPsych": { + "templateId": "AthenaLoadingScreen:LoadingScreen_VitalPsych", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_VitalPsych_Battle": { + "templateId": "AthenaLoadingScreen:LoadingScreen_VitalPsych_Battle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_VoidRedemption_Mural": { + "templateId": "AthenaLoadingScreen:LoadingScreen_VoidRedemption_Mural", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_VoidRedemption_Rooftop": { + "templateId": "AthenaLoadingScreen:LoadingScreen_VoidRedemption_Rooftop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_ZirconSweep": { + "templateId": "AthenaLoadingScreen:LoadingScreen_ZirconSweep", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_ZirconSweep_Swamp": { + "templateId": "AthenaLoadingScreen:LoadingScreen_ZirconSweep_Swamp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LoadingScreen_ZuriEvergreen": { + "templateId": "AthenaLoadingScreen:LoadingScreen_ZuriEvergreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_001_Brite": { + "templateId": "AthenaLoadingScreen:LSID_001_Brite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_002_Raptor": { + "templateId": "AthenaLoadingScreen:LSID_002_Raptor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_003_Pickaxes": { + "templateId": "AthenaLoadingScreen:LSID_003_Pickaxes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_004_TacticalShotgun": { + "templateId": "AthenaLoadingScreen:LSID_004_TacticalShotgun", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_005_SuppressedPistol": { + "templateId": "AthenaLoadingScreen:LSID_005_SuppressedPistol", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_006_Minigun": { + "templateId": "AthenaLoadingScreen:LSID_006_Minigun", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_007_TacticalCommando": { + "templateId": "AthenaLoadingScreen:LSID_007_TacticalCommando", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_008_KeyArt": { + "templateId": "AthenaLoadingScreen:LSID_008_KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_009_S4Cumulative1": { + "templateId": "AthenaLoadingScreen:LSID_009_S4Cumulative1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_010_S4Cumulative2": { + "templateId": "AthenaLoadingScreen:LSID_010_S4Cumulative2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_011_S4Cumulative3": { + "templateId": "AthenaLoadingScreen:LSID_011_S4Cumulative3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_012_S4Cumulative4": { + "templateId": "AthenaLoadingScreen:LSID_012_S4Cumulative4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_013_S4Cumulative5": { + "templateId": "AthenaLoadingScreen:LSID_013_S4Cumulative5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_014_S4Cumulative6": { + "templateId": "AthenaLoadingScreen:LSID_014_S4Cumulative6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_015_S4Cumulative7": { + "templateId": "AthenaLoadingScreen:LSID_015_S4Cumulative7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_016_LlamaSniper": { + "templateId": "AthenaLoadingScreen:LSID_016_LlamaSniper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_017_Carbide": { + "templateId": "AthenaLoadingScreen:LSID_017_Carbide", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_018_Rex": { + "templateId": "AthenaLoadingScreen:LSID_018_Rex", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_019_TacticalJungle": { + "templateId": "AthenaLoadingScreen:LSID_019_TacticalJungle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_020_SupplyDrop": { + "templateId": "AthenaLoadingScreen:LSID_020_SupplyDrop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_021_Leviathan": { + "templateId": "AthenaLoadingScreen:LSID_021_Leviathan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_022_BriteGunner": { + "templateId": "AthenaLoadingScreen:LSID_022_BriteGunner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_023_Candy": { + "templateId": "AthenaLoadingScreen:LSID_023_Candy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_024_Graffiti": { + "templateId": "AthenaLoadingScreen:LSID_024_Graffiti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_025_Raven": { + "templateId": "AthenaLoadingScreen:LSID_025_Raven", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_026_S4Cumulative8": { + "templateId": "AthenaLoadingScreen:LSID_026_S4Cumulative8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_027_S5Cumulative1": { + "templateId": "AthenaLoadingScreen:LSID_027_S5Cumulative1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_028_S5Cumulative2": { + "templateId": "AthenaLoadingScreen:LSID_028_S5Cumulative2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_029_S5Cumulative3": { + "templateId": "AthenaLoadingScreen:LSID_029_S5Cumulative3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_030_S5Cumulative4": { + "templateId": "AthenaLoadingScreen:LSID_030_S5Cumulative4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_031_S5Cumulative5": { + "templateId": "AthenaLoadingScreen:LSID_031_S5Cumulative5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_032_S5Cumulative6": { + "templateId": "AthenaLoadingScreen:LSID_032_S5Cumulative6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_033_S5Cumulative7": { + "templateId": "AthenaLoadingScreen:LSID_033_S5Cumulative7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_034_Abstrakt": { + "templateId": "AthenaLoadingScreen:LSID_034_Abstrakt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_035_Bandolier": { + "templateId": "AthenaLoadingScreen:LSID_035_Bandolier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_036_Drift": { + "templateId": "AthenaLoadingScreen:LSID_036_Drift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_037_Tomatohead": { + "templateId": "AthenaLoadingScreen:LSID_037_Tomatohead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_038_HighExplosives": { + "templateId": "AthenaLoadingScreen:LSID_038_HighExplosives", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_039_Jailbirds": { + "templateId": "AthenaLoadingScreen:LSID_039_Jailbirds", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_040_Lifeguard": { + "templateId": "AthenaLoadingScreen:LSID_040_Lifeguard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_041_SupplyLlama": { + "templateId": "AthenaLoadingScreen:LSID_041_SupplyLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_042_Omen": { + "templateId": "AthenaLoadingScreen:LSID_042_Omen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_043_RedKnight": { + "templateId": "AthenaLoadingScreen:LSID_043_RedKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_044_FlyTrap": { + "templateId": "AthenaLoadingScreen:LSID_044_FlyTrap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_045_VikingFemale": { + "templateId": "AthenaLoadingScreen:LSID_045_VikingFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_046_VikingPattern": { + "templateId": "AthenaLoadingScreen:LSID_046_VikingPattern", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_047_S5Cumulative8": { + "templateId": "AthenaLoadingScreen:LSID_047_S5Cumulative8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_048_S5Cumulative9": { + "templateId": "AthenaLoadingScreen:LSID_048_S5Cumulative9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_049_S5Cumulative10": { + "templateId": "AthenaLoadingScreen:LSID_049_S5Cumulative10", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_050_TomatoTemple": { + "templateId": "AthenaLoadingScreen:LSID_050_TomatoTemple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_051_Ravage": { + "templateId": "AthenaLoadingScreen:LSID_051_Ravage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_052_EmoticonCollage": { + "templateId": "AthenaLoadingScreen:LSID_052_EmoticonCollage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_053_SupplyLlama": { + "templateId": "AthenaLoadingScreen:LSID_053_SupplyLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_054_Scuba": { + "templateId": "AthenaLoadingScreen:LSID_054_Scuba", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_055_Valkyrie": { + "templateId": "AthenaLoadingScreen:LSID_055_Valkyrie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_056_Fate": { + "templateId": "AthenaLoadingScreen:LSID_056_Fate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_057_Bunnies": { + "templateId": "AthenaLoadingScreen:LSID_057_Bunnies", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_058_DJConcept": { + "templateId": "AthenaLoadingScreen:LSID_058_DJConcept", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_059_Vampire": { + "templateId": "AthenaLoadingScreen:LSID_059_Vampire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_060_Cowgirl": { + "templateId": "AthenaLoadingScreen:LSID_060_Cowgirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_061_Werewolf": { + "templateId": "AthenaLoadingScreen:LSID_061_Werewolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_062_S6Cumulative01": { + "templateId": "AthenaLoadingScreen:LSID_062_S6Cumulative01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_063_S6Cumulative02": { + "templateId": "AthenaLoadingScreen:LSID_063_S6Cumulative02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_064_S6Cumulative03": { + "templateId": "AthenaLoadingScreen:LSID_064_S6Cumulative03", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_065_S6Cumulative04": { + "templateId": "AthenaLoadingScreen:LSID_065_S6Cumulative04", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_066_S6Cumulative05": { + "templateId": "AthenaLoadingScreen:LSID_066_S6Cumulative05", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_067_S6Cumulative06": { + "templateId": "AthenaLoadingScreen:LSID_067_S6Cumulative06", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_068_S6Cumulative07": { + "templateId": "AthenaLoadingScreen:LSID_068_S6Cumulative07", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_069_S6Cumulative08": { + "templateId": "AthenaLoadingScreen:LSID_069_S6Cumulative08", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_070_S6Cumulative09": { + "templateId": "AthenaLoadingScreen:LSID_070_S6Cumulative09", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_071_S6Cumulative10": { + "templateId": "AthenaLoadingScreen:LSID_071_S6Cumulative10", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_072_WinterLauncher": { + "templateId": "AthenaLoadingScreen:LSID_072_WinterLauncher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_073_DustyDepot": { + "templateId": "AthenaLoadingScreen:LSID_073_DustyDepot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_074_DarkBomber": { + "templateId": "AthenaLoadingScreen:LSID_074_DarkBomber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_075_TacticalSanta": { + "templateId": "AthenaLoadingScreen:LSID_075_TacticalSanta", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_076_Medics": { + "templateId": "AthenaLoadingScreen:LSID_076_Medics", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_078_SkullTrooper": { + "templateId": "AthenaLoadingScreen:LSID_078_SkullTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_079_Plane": { + "templateId": "AthenaLoadingScreen:LSID_079_Plane", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_080_Gingerbread": { + "templateId": "AthenaLoadingScreen:LSID_080_Gingerbread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_081_TenderDefender": { + "templateId": "AthenaLoadingScreen:LSID_081_TenderDefender", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_082_NeonCat": { + "templateId": "AthenaLoadingScreen:LSID_082_NeonCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_083_Crackshot": { + "templateId": "AthenaLoadingScreen:LSID_083_Crackshot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_084_S7Cumulative01": { + "templateId": "AthenaLoadingScreen:LSID_084_S7Cumulative01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_085_S7Cumulative02": { + "templateId": "AthenaLoadingScreen:LSID_085_S7Cumulative02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_086_S7Cumulative03": { + "templateId": "AthenaLoadingScreen:LSID_086_S7Cumulative03", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_087_S7Cumulative04": { + "templateId": "AthenaLoadingScreen:LSID_087_S7Cumulative04", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_088_S7Cumulative05": { + "templateId": "AthenaLoadingScreen:LSID_088_S7Cumulative05", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_089_S7Cumulative06": { + "templateId": "AthenaLoadingScreen:LSID_089_S7Cumulative06", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_090_S7Cumulative07": { + "templateId": "AthenaLoadingScreen:LSID_090_S7Cumulative07", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_091_S7Cumulative08": { + "templateId": "AthenaLoadingScreen:LSID_091_S7Cumulative08", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_092_S7Cumulative09": { + "templateId": "AthenaLoadingScreen:LSID_092_S7Cumulative09", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_093_S7Cumulative10": { + "templateId": "AthenaLoadingScreen:LSID_093_S7Cumulative10", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_094_HolidaySpecial": { + "templateId": "AthenaLoadingScreen:LSID_094_HolidaySpecial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_095_Prisoner": { + "templateId": "AthenaLoadingScreen:LSID_095_Prisoner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_096_PlaneKey": { + "templateId": "AthenaLoadingScreen:LSID_096_PlaneKey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_097_PowerChord": { + "templateId": "AthenaLoadingScreen:LSID_097_PowerChord", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_098_DragonNinja": { + "templateId": "AthenaLoadingScreen:LSID_098_DragonNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_099_PirateTheme": { + "templateId": "AthenaLoadingScreen:LSID_099_PirateTheme", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_100_StPattyDay": { + "templateId": "AthenaLoadingScreen:LSID_100_StPattyDay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_101_IceQueen": { + "templateId": "AthenaLoadingScreen:LSID_101_IceQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_102_TriceraOps": { + "templateId": "AthenaLoadingScreen:LSID_102_TriceraOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_103_SprayCollage": { + "templateId": "AthenaLoadingScreen:LSID_103_SprayCollage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_104_MasterKey": { + "templateId": "AthenaLoadingScreen:LSID_104_MasterKey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_105_BlackWidow": { + "templateId": "AthenaLoadingScreen:LSID_105_BlackWidow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_106_TreasureMap": { + "templateId": "AthenaLoadingScreen:LSID_106_TreasureMap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_107_S8Cumulative01": { + "templateId": "AthenaLoadingScreen:LSID_107_S8Cumulative01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_108_S8Cumulative02": { + "templateId": "AthenaLoadingScreen:LSID_108_S8Cumulative02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_109_S8Cumulative03": { + "templateId": "AthenaLoadingScreen:LSID_109_S8Cumulative03", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_110_S8Cumulative04": { + "templateId": "AthenaLoadingScreen:LSID_110_S8Cumulative04", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_111_S8Cumulative05": { + "templateId": "AthenaLoadingScreen:LSID_111_S8Cumulative05", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_112_S8Cumulative06": { + "templateId": "AthenaLoadingScreen:LSID_112_S8Cumulative06", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_113_S8Cumulative07": { + "templateId": "AthenaLoadingScreen:LSID_113_S8Cumulative07", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_114_S8Cumulative08": { + "templateId": "AthenaLoadingScreen:LSID_114_S8Cumulative08", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_115_S8Cumulative09": { + "templateId": "AthenaLoadingScreen:LSID_115_S8Cumulative09", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_116_S8Cumulative10": { + "templateId": "AthenaLoadingScreen:LSID_116_S8Cumulative10", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_117_Squishy": { + "templateId": "AthenaLoadingScreen:LSID_117_Squishy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_118_Heist": { + "templateId": "AthenaLoadingScreen:LSID_118_Heist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_119_VolcanoKey": { + "templateId": "AthenaLoadingScreen:LSID_119_VolcanoKey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_120_Ashton": { + "templateId": "AthenaLoadingScreen:LSID_120_Ashton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_121_Vikings": { + "templateId": "AthenaLoadingScreen:LSID_121_Vikings", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_122_Aztec": { + "templateId": "AthenaLoadingScreen:LSID_122_Aztec", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_123_Inferno": { + "templateId": "AthenaLoadingScreen:LSID_123_Inferno", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_124_AirRoyale": { + "templateId": "AthenaLoadingScreen:LSID_124_AirRoyale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_125_LavaLegends": { + "templateId": "AthenaLoadingScreen:LSID_125_LavaLegends", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_126_FloorIsLava": { + "templateId": "AthenaLoadingScreen:LSID_126_FloorIsLava", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_127_UnicornPickaxe": { + "templateId": "AthenaLoadingScreen:LSID_127_UnicornPickaxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_128_AuroraGlow": { + "templateId": "AthenaLoadingScreen:LSID_128_AuroraGlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_129_Stormtracker": { + "templateId": "AthenaLoadingScreen:LSID_129_Stormtracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_130_StrawberryPilot": { + "templateId": "AthenaLoadingScreen:LSID_130_StrawberryPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_131_S9Cumulative01": { + "templateId": "AthenaLoadingScreen:LSID_131_S9Cumulative01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_132_S9Cumulative02": { + "templateId": "AthenaLoadingScreen:LSID_132_S9Cumulative02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_133_S9Cumulative03": { + "templateId": "AthenaLoadingScreen:LSID_133_S9Cumulative03", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_134_S9Cumulative04": { + "templateId": "AthenaLoadingScreen:LSID_134_S9Cumulative04", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_135_S9Cumulative05": { + "templateId": "AthenaLoadingScreen:LSID_135_S9Cumulative05", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_136_S9Cumulative06": { + "templateId": "AthenaLoadingScreen:LSID_136_S9Cumulative06", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_137_S9Cumulative07": { + "templateId": "AthenaLoadingScreen:LSID_137_S9Cumulative07", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_138_S9Cumulative08": { + "templateId": "AthenaLoadingScreen:LSID_138_S9Cumulative08", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_139_S9Cumulative09": { + "templateId": "AthenaLoadingScreen:LSID_139_S9Cumulative09", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_140_S9Cumulative10": { + "templateId": "AthenaLoadingScreen:LSID_140_S9Cumulative10", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_141_PS06": { + "templateId": "AthenaLoadingScreen:LSID_141_PS06", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_142_MashLTM": { + "templateId": "AthenaLoadingScreen:LSID_142_MashLTM", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_143_SummerDays": { + "templateId": "AthenaLoadingScreen:LSID_143_SummerDays", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_144_WaterBalloonLTM": { + "templateId": "AthenaLoadingScreen:LSID_144_WaterBalloonLTM", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_145_Doggus": { + "templateId": "AthenaLoadingScreen:LSID_145_Doggus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_146_WorldCup2019": { + "templateId": "AthenaLoadingScreen:LSID_146_WorldCup2019", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_147_UtopiaKey": { + "templateId": "AthenaLoadingScreen:LSID_147_UtopiaKey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_148_FortbyteReveal": { + "templateId": "AthenaLoadingScreen:LSID_148_FortbyteReveal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_151_JMSparkle": { + "templateId": "AthenaLoadingScreen:LSID_151_JMSparkle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_152_JMLuxe": { + "templateId": "AthenaLoadingScreen:LSID_152_JMLuxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_153_IJDriftboard": { + "templateId": "AthenaLoadingScreen:LSID_153_IJDriftboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_154_IJCuddle": { + "templateId": "AthenaLoadingScreen:LSID_154_IJCuddle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_155_AKDrift": { + "templateId": "AthenaLoadingScreen:LSID_155_AKDrift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_156_AKBrite": { + "templateId": "AthenaLoadingScreen:LSID_156_AKBrite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_157_NTBattleBus": { + "templateId": "AthenaLoadingScreen:LSID_157_NTBattleBus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_158_NTDurrr": { + "templateId": "AthenaLoadingScreen:LSID_158_NTDurrr", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_159_KTFirewalker": { + "templateId": "AthenaLoadingScreen:LSID_159_KTFirewalker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_160_KTVendetta": { + "templateId": "AthenaLoadingScreen:LSID_160_KTVendetta", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_161_H7OutfitsA": { + "templateId": "AthenaLoadingScreen:LSID_161_H7OutfitsA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_162_H7OutfitsB": { + "templateId": "AthenaLoadingScreen:LSID_162_H7OutfitsB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_163_SMRocketRide": { + "templateId": "AthenaLoadingScreen:LSID_163_SMRocketRide", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_164_SMCrackshot": { + "templateId": "AthenaLoadingScreen:LSID_164_SMCrackshot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_165_S10Cumulative01": { + "templateId": "AthenaLoadingScreen:LSID_165_S10Cumulative01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_166_S10Cumulative02": { + "templateId": "AthenaLoadingScreen:LSID_166_S10Cumulative02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_167_S10Cumulative03": { + "templateId": "AthenaLoadingScreen:LSID_167_S10Cumulative03", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_168_S10Cumulative04": { + "templateId": "AthenaLoadingScreen:LSID_168_S10Cumulative04", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_169_S10Cumulative05": { + "templateId": "AthenaLoadingScreen:LSID_169_S10Cumulative05", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_170_S10Cumulative06": { + "templateId": "AthenaLoadingScreen:LSID_170_S10Cumulative06", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_171_S10Cumulative07": { + "templateId": "AthenaLoadingScreen:LSID_171_S10Cumulative07", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_172_S10Cumulative08_E9M2F": { + "templateId": "AthenaLoadingScreen:LSID_172_S10Cumulative08_E9M2F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_173_S10Cumulative09": { + "templateId": "AthenaLoadingScreen:LSID_173_S10Cumulative09", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_174_S10Cumulative10": { + "templateId": "AthenaLoadingScreen:LSID_174_S10Cumulative10", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_175_JMTomato": { + "templateId": "AthenaLoadingScreen:LSID_175_JMTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_176_SMVolcano": { + "templateId": "AthenaLoadingScreen:LSID_176_SMVolcano", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_177_IJLlama": { + "templateId": "AthenaLoadingScreen:LSID_177_IJLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_178_BlackMonday_S815X": { + "templateId": "AthenaLoadingScreen:LSID_178_BlackMonday_S815X", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_179_SXKey": { + "templateId": "AthenaLoadingScreen:LSID_179_SXKey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_180_S11Cumulative01": { + "templateId": "AthenaLoadingScreen:LSID_180_S11Cumulative01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_181_S11Cumulative02": { + "templateId": "AthenaLoadingScreen:LSID_181_S11Cumulative02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_182_S11Cumulative03": { + "templateId": "AthenaLoadingScreen:LSID_182_S11Cumulative03", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_183_S11Cumulative04": { + "templateId": "AthenaLoadingScreen:LSID_183_S11Cumulative04", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_184_S11Cumulative05": { + "templateId": "AthenaLoadingScreen:LSID_184_S11Cumulative05", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_185_S11Cumulative06": { + "templateId": "AthenaLoadingScreen:LSID_185_S11Cumulative06", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_186_S11Cumulative07": { + "templateId": "AthenaLoadingScreen:LSID_186_S11Cumulative07", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_187_S11Cumulative08": { + "templateId": "AthenaLoadingScreen:LSID_187_S11Cumulative08", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_188_S11Cumulative09": { + "templateId": "AthenaLoadingScreen:LSID_188_S11Cumulative09", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_190_ICMechaTeam": { + "templateId": "AthenaLoadingScreen:LSID_190_ICMechaTeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_191_TZNutcracker": { + "templateId": "AthenaLoadingScreen:LSID_191_TZNutcracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_192_JUWiggle": { + "templateId": "AthenaLoadingScreen:LSID_192_JUWiggle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_193_JMHollowhead": { + "templateId": "AthenaLoadingScreen:LSID_193_JMHollowhead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_194_KTDeadfire": { + "templateId": "AthenaLoadingScreen:LSID_194_KTDeadfire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_195_H7Skull": { + "templateId": "AthenaLoadingScreen:LSID_195_H7Skull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_196_AMRockstar": { + "templateId": "AthenaLoadingScreen:LSID_196_AMRockstar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_197_SMRobot": { + "templateId": "AthenaLoadingScreen:LSID_197_SMRobot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_198_JYSeasonX": { + "templateId": "AthenaLoadingScreen:LSID_198_JYSeasonX", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_199_SMTomato": { + "templateId": "AthenaLoadingScreen:LSID_199_SMTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_200_JUDrift": { + "templateId": "AthenaLoadingScreen:LSID_200_JUDrift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_201_JMInferno": { + "templateId": "AthenaLoadingScreen:LSID_201_JMInferno", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_202_TZDemi": { + "templateId": "AthenaLoadingScreen:LSID_202_TZDemi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_204_NTBear": { + "templateId": "AthenaLoadingScreen:LSID_204_NTBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_205_AMEternal": { + "templateId": "AthenaLoadingScreen:LSID_205_AMEternal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_206_GRLlama": { + "templateId": "AthenaLoadingScreen:LSID_206_GRLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_207_Fortnitemares": { + "templateId": "AthenaLoadingScreen:LSID_207_Fortnitemares", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_208_SMPattern": { + "templateId": "AthenaLoadingScreen:LSID_208_SMPattern", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_209_AKCrackshot": { + "templateId": "AthenaLoadingScreen:LSID_209_AKCrackshot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_210_NDoggo": { + "templateId": "AthenaLoadingScreen:LSID_210_NDoggo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_213_SkullDude": { + "templateId": "AthenaLoadingScreen:LSID_213_SkullDude", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_214_CycloneA": { + "templateId": "AthenaLoadingScreen:LSID_214_CycloneA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_215_CycloneB": { + "templateId": "AthenaLoadingScreen:LSID_215_CycloneB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_216_TNTina": { + "templateId": "AthenaLoadingScreen:LSID_216_TNTina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_217_Meowscles": { + "templateId": "AthenaLoadingScreen:LSID_217_Meowscles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_218_TeamUp": { + "templateId": "AthenaLoadingScreen:LSID_218_TeamUp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_219_AlterEgo": { + "templateId": "AthenaLoadingScreen:LSID_219_AlterEgo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_220_AdventureGirl": { + "templateId": "AthenaLoadingScreen:LSID_220_AdventureGirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_221_Midas": { + "templateId": "AthenaLoadingScreen:LSID_221_Midas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_222_FrenzyFarms": { + "templateId": "AthenaLoadingScreen:LSID_222_FrenzyFarms", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_223_SharkIsland": { + "templateId": "AthenaLoadingScreen:LSID_223_SharkIsland", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_224_LoveAndWar_Love": { + "templateId": "AthenaLoadingScreen:LSID_224_LoveAndWar_Love", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_225_LoveAndWar_War": { + "templateId": "AthenaLoadingScreen:LSID_225_LoveAndWar_War", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_226_ThreeMeowscles": { + "templateId": "AthenaLoadingScreen:LSID_226_ThreeMeowscles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_227_LlamaStormCenter": { + "templateId": "AthenaLoadingScreen:LSID_227_LlamaStormCenter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_228_BananaAgent": { + "templateId": "AthenaLoadingScreen:LSID_228_BananaAgent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_229_MountainBase": { + "templateId": "AthenaLoadingScreen:LSID_229_MountainBase", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_230_Donut": { + "templateId": "AthenaLoadingScreen:LSID_230_Donut", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_231_CycloneBraid": { + "templateId": "AthenaLoadingScreen:LSID_231_CycloneBraid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_232_S12Key": { + "templateId": "AthenaLoadingScreen:LSID_232_S12Key", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_233_StormTheAgency": { + "templateId": "AthenaLoadingScreen:LSID_233_StormTheAgency", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_234_BlackKnight": { + "templateId": "AthenaLoadingScreen:LSID_234_BlackKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_235_MechanicalEngineer": { + "templateId": "AthenaLoadingScreen:LSID_235_MechanicalEngineer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_236_OceanRider": { + "templateId": "AthenaLoadingScreen:LSID_236_OceanRider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_237_ProfessorPup": { + "templateId": "AthenaLoadingScreen:LSID_237_ProfessorPup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_238_RacerZero": { + "templateId": "AthenaLoadingScreen:LSID_238_RacerZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_239_Sandcastle": { + "templateId": "AthenaLoadingScreen:LSID_239_Sandcastle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_240_SpaceWanderer": { + "templateId": "AthenaLoadingScreen:LSID_240_SpaceWanderer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_241_TacticalScuba": { + "templateId": "AthenaLoadingScreen:LSID_241_TacticalScuba", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_242_Valet": { + "templateId": "AthenaLoadingScreen:LSID_242_Valet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_243_Floatilla": { + "templateId": "AthenaLoadingScreen:LSID_243_Floatilla", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_244_RollerDerby": { + "templateId": "AthenaLoadingScreen:LSID_244_RollerDerby", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_246_HighTowerDate": { + "templateId": "AthenaLoadingScreen:LSID_246_HighTowerDate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_247_HighTowerGrape": { + "templateId": "AthenaLoadingScreen:LSID_247_HighTowerGrape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_248_HighTowerHoneyDew": { + "templateId": "AthenaLoadingScreen:LSID_248_HighTowerHoneyDew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_249_HighTowerMango": { + "templateId": "AthenaLoadingScreen:LSID_249_HighTowerMango", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_250_HighTowerSquash": { + "templateId": "AthenaLoadingScreen:LSID_250_HighTowerSquash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_251_HighTowerTapas": { + "templateId": "AthenaLoadingScreen:LSID_251_HighTowerTapas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_252_HighTowerTomato": { + "templateId": "AthenaLoadingScreen:LSID_252_HighTowerTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_253_HighTowerWasabi": { + "templateId": "AthenaLoadingScreen:LSID_253_HighTowerWasabi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_254_S14SeasonalA": { + "templateId": "AthenaLoadingScreen:LSID_254_S14SeasonalA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_256_Corrupted": { + "templateId": "AthenaLoadingScreen:LSID_256_Corrupted", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_257_FNCS_CuddleTeam": { + "templateId": "AthenaLoadingScreen:LSID_257_FNCS_CuddleTeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_258_Backspin": { + "templateId": "AthenaLoadingScreen:LSID_258_Backspin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_259_MidasRevenge": { + "templateId": "AthenaLoadingScreen:LSID_259_MidasRevenge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_260_AncientGladiator": { + "templateId": "AthenaLoadingScreen:LSID_260_AncientGladiator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_261_Shapeshifter": { + "templateId": "AthenaLoadingScreen:LSID_261_Shapeshifter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_262_Lexa": { + "templateId": "AthenaLoadingScreen:LSID_262_Lexa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_263_FutureSamurai": { + "templateId": "AthenaLoadingScreen:LSID_263_FutureSamurai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_264_Flapjack": { + "templateId": "AthenaLoadingScreen:LSID_264_Flapjack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_265_SpaceFighter": { + "templateId": "AthenaLoadingScreen:LSID_265_SpaceFighter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_266_Cosmos": { + "templateId": "AthenaLoadingScreen:LSID_266_Cosmos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_267_S15SeasonalA": { + "templateId": "AthenaLoadingScreen:LSID_267_S15SeasonalA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_268_Holiday1": { + "templateId": "AthenaLoadingScreen:LSID_268_Holiday1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_269_Holiday2": { + "templateId": "AthenaLoadingScreen:LSID_269_Holiday2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_270_Nightmare_IZN91": { + "templateId": "AthenaLoadingScreen:LSID_270_Nightmare_IZN91", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_271_FNCS_S15_ChampAxe": { + "templateId": "AthenaLoadingScreen:LSID_271_FNCS_S15_ChampAxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_272_FoxWarrior_6DFA1": { + "templateId": "AthenaLoadingScreen:LSID_272_FoxWarrior_6DFA1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_273_Tar_ITJ9S": { + "templateId": "AthenaLoadingScreen:LSID_273_Tar_ITJ9S", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_274_Skirmish_PJ9TZ": { + "templateId": "AthenaLoadingScreen:LSID_274_Skirmish_PJ9TZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_275_FoxWarrior2": { + "templateId": "AthenaLoadingScreen:LSID_275_FoxWarrior2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_276_Kepler": { + "templateId": "AthenaLoadingScreen:LSID_276_Kepler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_277_RustLordDoggoLavaRain": { + "templateId": "AthenaLoadingScreen:LSID_277_RustLordDoggoLavaRain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_278_GoldenTouch": { + "templateId": "AthenaLoadingScreen:LSID_278_GoldenTouch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_279_Obsidian": { + "templateId": "AthenaLoadingScreen:LSID_279_Obsidian", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_280_Sentinel": { + "templateId": "AthenaLoadingScreen:LSID_280_Sentinel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_281_CubeNinja": { + "templateId": "AthenaLoadingScreen:LSID_281_CubeNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_282_DinoHunter": { + "templateId": "AthenaLoadingScreen:LSID_282_DinoHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_283_AgentJonesy": { + "templateId": "AthenaLoadingScreen:LSID_283_AgentJonesy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_284_ChickenWarrior": { + "templateId": "AthenaLoadingScreen:LSID_284_ChickenWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_286_LlamaRama2_8ASUQ": { + "templateId": "AthenaLoadingScreen:LSID_286_LlamaRama2_8ASUQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_287_BuffCatComic_JBE9O": { + "templateId": "AthenaLoadingScreen:LSID_287_BuffCatComic_JBE9O", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_288_Bicycle": { + "templateId": "AthenaLoadingScreen:LSID_288_Bicycle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_289_YogurtJonesy": { + "templateId": "AthenaLoadingScreen:LSID_289_YogurtJonesy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_290_AprilSubs": { + "templateId": "AthenaLoadingScreen:LSID_290_AprilSubs", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_291_S16_FNCS": { + "templateId": "AthenaLoadingScreen:LSID_291_S16_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_293_Cranium": { + "templateId": "AthenaLoadingScreen:LSID_293_Cranium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_294_Alchemy_09U3R": { + "templateId": "AthenaLoadingScreen:LSID_294_Alchemy_09U3R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_295_Headcase": { + "templateId": "AthenaLoadingScreen:LSID_295_Headcase", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_296_Cavern_60EXF": { + "templateId": "AthenaLoadingScreen:LSID_296_Cavern_60EXF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_297_FoodKnights": { + "templateId": "AthenaLoadingScreen:LSID_297_FoodKnights", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_298_SpaceCuddles": { + "templateId": "AthenaLoadingScreen:LSID_298_SpaceCuddles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_299_SpaceCuddles2": { + "templateId": "AthenaLoadingScreen:LSID_299_SpaceCuddles2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_300_SpaceCuddles3": { + "templateId": "AthenaLoadingScreen:LSID_300_SpaceCuddles3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_301_Broccoli_U6K04": { + "templateId": "AthenaLoadingScreen:LSID_301_Broccoli_U6K04", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_302_Daybreak": { + "templateId": "AthenaLoadingScreen:LSID_302_Daybreak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_303_WastelandWarrior": { + "templateId": "AthenaLoadingScreen:LSID_303_WastelandWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_304_SkeletonQueen": { + "templateId": "AthenaLoadingScreen:LSID_304_SkeletonQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_305_Downpour_CHB8O": { + "templateId": "AthenaLoadingScreen:LSID_305_Downpour_CHB8O", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_306_SpaceCuddles4": { + "templateId": "AthenaLoadingScreen:LSID_306_SpaceCuddles4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_307_Emperor": { + "templateId": "AthenaLoadingScreen:LSID_307_Emperor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_308_AlienTrooper": { + "templateId": "AthenaLoadingScreen:LSID_308_AlienTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_309_Believer": { + "templateId": "AthenaLoadingScreen:LSID_309_Believer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_310_Faux": { + "templateId": "AthenaLoadingScreen:LSID_310_Faux", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_311_Ruckus": { + "templateId": "AthenaLoadingScreen:LSID_311_Ruckus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_312_Innovator": { + "templateId": "AthenaLoadingScreen:LSID_312_Innovator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_313_Invader": { + "templateId": "AthenaLoadingScreen:LSID_313_Invader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_314_Antique": { + "templateId": "AthenaLoadingScreen:LSID_314_Antique", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_315_Key": { + "templateId": "AthenaLoadingScreen:LSID_315_Key", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_316_Explosion": { + "templateId": "AthenaLoadingScreen:LSID_316_Explosion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_317_Cow": { + "templateId": "AthenaLoadingScreen:LSID_317_Cow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_318_Firecracker": { + "templateId": "AthenaLoadingScreen:LSID_318_Firecracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_319_Summer": { + "templateId": "AthenaLoadingScreen:LSID_319_Summer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_320_Linguini_8O4H0": { + "templateId": "AthenaLoadingScreen:LSID_320_Linguini_8O4H0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_321_DaysStore": { + "templateId": "AthenaLoadingScreen:LSID_321_DaysStore", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_322_CosmicSummerWave": { + "templateId": "AthenaLoadingScreen:LSID_322_CosmicSummerWave", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_323_Majesty_0P2RG": { + "templateId": "AthenaLoadingScreen:LSID_323_Majesty_0P2RG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_324_BuffCatFan_99Q4A": { + "templateId": "AthenaLoadingScreen:LSID_324_BuffCatFan_99Q4A", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_325_RiftTourMKTG1_18M49": { + "templateId": "AthenaLoadingScreen:LSID_325_RiftTourMKTG1_18M49", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_326_RiftTourMKTG2": { + "templateId": "AthenaLoadingScreen:LSID_326_RiftTourMKTG2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_328_Quarrel_K4C12": { + "templateId": "AthenaLoadingScreen:LSID_328_Quarrel_K4C12", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_329_Rift": { + "templateId": "AthenaLoadingScreen:LSID_329_Rift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_330_RiftStack_WHFK1": { + "templateId": "AthenaLoadingScreen:LSID_330_RiftStack_WHFK1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_331_FNCS": { + "templateId": "AthenaLoadingScreen:LSID_331_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_332_Monarch": { + "templateId": "AthenaLoadingScreen:LSID_332_Monarch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_333_Monarch2": { + "templateId": "AthenaLoadingScreen:LSID_333_Monarch2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_334_Suspenders": { + "templateId": "AthenaLoadingScreen:LSID_334_Suspenders", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_335_WastelandWarrior": { + "templateId": "AthenaLoadingScreen:LSID_335_WastelandWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_336_PunkKoi": { + "templateId": "AthenaLoadingScreen:LSID_336_PunkKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_337_CerealBox": { + "templateId": "AthenaLoadingScreen:LSID_337_CerealBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_338_Division": { + "templateId": "AthenaLoadingScreen:LSID_338_Division", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_339_GhostHunter": { + "templateId": "AthenaLoadingScreen:LSID_339_GhostHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_340_SpaceChimp": { + "templateId": "AthenaLoadingScreen:LSID_340_SpaceChimp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_342_Clash": { + "templateId": "AthenaLoadingScreen:LSID_342_Clash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_343_GhostHunterSideWas": { + "templateId": "AthenaLoadingScreen:LSID_343_GhostHunterSideWas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_344_SpaceChimp2": { + "templateId": "AthenaLoadingScreen:LSID_344_SpaceChimp2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_345_S18KeyArt": { + "templateId": "AthenaLoadingScreen:LSID_345_S18KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_347_Corrupt": { + "templateId": "AthenaLoadingScreen:LSID_347_Corrupt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_348_DarkTrioIntro": { + "templateId": "AthenaLoadingScreen:LSID_348_DarkTrioIntro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_349_DarkTrio2": { + "templateId": "AthenaLoadingScreen:LSID_349_DarkTrio2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_350_CerealBoxParade": { + "templateId": "AthenaLoadingScreen:LSID_350_CerealBoxParade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_351_DarkTrio3": { + "templateId": "AthenaLoadingScreen:LSID_351_DarkTrio3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_352_Wrath": { + "templateId": "AthenaLoadingScreen:LSID_352_Wrath", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_353_ReferaFriendTaxi": { + "templateId": "AthenaLoadingScreen:LSID_353_ReferaFriendTaxi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_354_FNCS18": { + "templateId": "AthenaLoadingScreen:LSID_354_FNCS18", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_355_VampireHunter": { + "templateId": "AthenaLoadingScreen:LSID_355_VampireHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_356_CubeQueen": { + "templateId": "AthenaLoadingScreen:LSID_356_CubeQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_357_Apparitions": { + "templateId": "AthenaLoadingScreen:LSID_357_Apparitions", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_358_Sunrise_1Q2KG": { + "templateId": "AthenaLoadingScreen:LSID_358_Sunrise_1Q2KG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_359_Giggle_6OHH8": { + "templateId": "AthenaLoadingScreen:LSID_359_Giggle_6OHH8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_360_Relish_FRX3N": { + "templateId": "AthenaLoadingScreen:LSID_360_Relish_FRX3N", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_361_DarkTrioBonus": { + "templateId": "AthenaLoadingScreen:LSID_361_DarkTrioBonus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_362_Jinx_F9OY4": { + "templateId": "AthenaLoadingScreen:LSID_362_Jinx_F9OY4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_363_DarkTrioNov_4B2M5": { + "templateId": "AthenaLoadingScreen:LSID_363_DarkTrioNov_4B2M5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_364_Ashes_0XBPK": { + "templateId": "AthenaLoadingScreen:LSID_364_Ashes_0XBPK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_365_ZombieElastic": { + "templateId": "AthenaLoadingScreen:LSID_365_ZombieElastic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_366_Uproar_8MFSF": { + "templateId": "AthenaLoadingScreen:LSID_366_Uproar_8MFSF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_367_Paperbag_3WGO8": { + "templateId": "AthenaLoadingScreen:LSID_367_Paperbag_3WGO8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_368_CubeQueen2": { + "templateId": "AthenaLoadingScreen:LSID_368_CubeQueen2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_369_Headband": { + "templateId": "AthenaLoadingScreen:LSID_369_Headband", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_370_HeadbandPizza": { + "templateId": "AthenaLoadingScreen:LSID_370_HeadbandPizza", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_371_Headband_BB": { + "templateId": "AthenaLoadingScreen:LSID_371_Headband_BB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_372_Grandeur_UOK4E": { + "templateId": "AthenaLoadingScreen:LSID_372_Grandeur_UOK4E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_373_Nucleus_TZ5C1": { + "templateId": "AthenaLoadingScreen:LSID_373_Nucleus_TZ5C1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_374_GuavaKey_IY0H9": { + "templateId": "AthenaLoadingScreen:LSID_374_GuavaKey_IY0H9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_375_GuavaEvent_9GXE3": { + "templateId": "AthenaLoadingScreen:LSID_375_GuavaEvent_9GXE3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_378_S19_KeyArt": { + "templateId": "AthenaLoadingScreen:LSID_378_S19_KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_379_Turtleneck": { + "templateId": "AthenaLoadingScreen:LSID_379_Turtleneck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_381_BuffLlama": { + "templateId": "AthenaLoadingScreen:LSID_381_BuffLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_382_Gumball": { + "templateId": "AthenaLoadingScreen:LSID_382_Gumball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_383_IslandNomad": { + "templateId": "AthenaLoadingScreen:LSID_383_IslandNomad", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_384_LoneWolf": { + "templateId": "AthenaLoadingScreen:LSID_384_LoneWolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_385_Motorcyclist": { + "templateId": "AthenaLoadingScreen:LSID_385_Motorcyclist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_386_Parallel": { + "templateId": "AthenaLoadingScreen:LSID_386_Parallel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_387_Island": { + "templateId": "AthenaLoadingScreen:LSID_387_Island", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_389_Collage": { + "templateId": "AthenaLoadingScreen:LSID_389_Collage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_390_KittyWarrior": { + "templateId": "AthenaLoadingScreen:LSID_390_KittyWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_391_TurtleneckAlt": { + "templateId": "AthenaLoadingScreen:LSID_391_TurtleneckAlt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_392_IceLegends": { + "templateId": "AthenaLoadingScreen:LSID_392_IceLegends", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_393_WinterFest2021": { + "templateId": "AthenaLoadingScreen:LSID_393_WinterFest2021", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_394_GumballStomp": { + "templateId": "AthenaLoadingScreen:LSID_394_GumballStomp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_395_ExoSuitAlt": { + "templateId": "AthenaLoadingScreen:LSID_395_ExoSuitAlt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_396_FNCS_GrandRoyale": { + "templateId": "AthenaLoadingScreen:LSID_396_FNCS_GrandRoyale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_397_ButterCake": { + "templateId": "AthenaLoadingScreen:LSID_397_ButterCake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_398_UproarVI_5KIXU": { + "templateId": "AthenaLoadingScreen:LSID_398_UproarVI_5KIXU", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_399_Foe_AN5QC": { + "templateId": "AthenaLoadingScreen:LSID_399_Foe_AN5QC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_400_Keen_T56WF": { + "templateId": "AthenaLoadingScreen:LSID_400_Keen_T56WF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_401_FNCS_Drops": { + "templateId": "AthenaLoadingScreen:LSID_401_FNCS_Drops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_402_IslandNomadMask": { + "templateId": "AthenaLoadingScreen:LSID_402_IslandNomadMask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_403_RainbowHat": { + "templateId": "AthenaLoadingScreen:LSID_403_RainbowHat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_404_Gimmick_GXP4P": { + "templateId": "AthenaLoadingScreen:LSID_404_Gimmick_GXP4P", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_405_FNCS_Iris": { + "templateId": "AthenaLoadingScreen:LSID_405_FNCS_Iris", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_406_SCRN_WomensDay2022": { + "templateId": "AthenaLoadingScreen:LSID_406_SCRN_WomensDay2022", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_408_SCRN_S2RebelsKeyArt": { + "templateId": "AthenaLoadingScreen:LSID_408_SCRN_S2RebelsKeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_409_InnovatorKey": { + "templateId": "AthenaLoadingScreen:LSID_409_InnovatorKey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_410_Cadet": { + "templateId": "AthenaLoadingScreen:LSID_410_Cadet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_411_CubeKing": { + "templateId": "AthenaLoadingScreen:LSID_411_CubeKing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_412_CyberArmor": { + "templateId": "AthenaLoadingScreen:LSID_412_CyberArmor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_413_KnightCat": { + "templateId": "AthenaLoadingScreen:LSID_413_KnightCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_414_OrderGuard": { + "templateId": "AthenaLoadingScreen:LSID_414_OrderGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_415_Sienna": { + "templateId": "AthenaLoadingScreen:LSID_415_Sienna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_416_Mystic": { + "templateId": "AthenaLoadingScreen:LSID_416_Mystic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_417_S20_BattleBus": { + "templateId": "AthenaLoadingScreen:LSID_417_S20_BattleBus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_418_S20_Drill": { + "templateId": "AthenaLoadingScreen:LSID_418_S20_Drill", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_419_S20_AllOutWar": { + "templateId": "AthenaLoadingScreen:LSID_419_S20_AllOutWar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_420_SCRN_Snowfall": { + "templateId": "AthenaLoadingScreen:LSID_420_SCRN_Snowfall", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_421_SCRN_JourneyMentor": { + "templateId": "AthenaLoadingScreen:LSID_421_SCRN_JourneyMentor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_422_TacticalBR_Reward1": { + "templateId": "AthenaLoadingScreen:LSID_422_TacticalBR_Reward1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_423_Binary": { + "templateId": "AthenaLoadingScreen:LSID_423_Binary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_424_NoPermit": { + "templateId": "AthenaLoadingScreen:LSID_424_NoPermit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_425_POIBattle": { + "templateId": "AthenaLoadingScreen:LSID_425_POIBattle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_426_BusJump": { + "templateId": "AthenaLoadingScreen:LSID_426_BusJump", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_427_FNCSDrops": { + "templateId": "AthenaLoadingScreen:LSID_427_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_428_Lyrical": { + "templateId": "AthenaLoadingScreen:LSID_428_Lyrical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_429_Rumble": { + "templateId": "AthenaLoadingScreen:LSID_429_Rumble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_430_ForsakeBeginning": { + "templateId": "AthenaLoadingScreen:LSID_430_ForsakeBeginning", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_431_Cactus": { + "templateId": "AthenaLoadingScreen:LSID_431_Cactus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_432_SCRN_Ultralight": { + "templateId": "AthenaLoadingScreen:LSID_432_SCRN_Ultralight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_433_Raspberry": { + "templateId": "AthenaLoadingScreen:LSID_433_Raspberry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_435_BinaryTwin": { + "templateId": "AthenaLoadingScreen:LSID_435_BinaryTwin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_436_ForsakeTransition": { + "templateId": "AthenaLoadingScreen:LSID_436_ForsakeTransition", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_437_BusLlama": { + "templateId": "AthenaLoadingScreen:LSID_437_BusLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_438_Armadillo": { + "templateId": "AthenaLoadingScreen:LSID_438_Armadillo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_439_Forsake": { + "templateId": "AthenaLoadingScreen:LSID_439_Forsake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_440_Noble": { + "templateId": "AthenaLoadingScreen:LSID_440_Noble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_441_CharacterCloud": { + "templateId": "AthenaLoadingScreen:LSID_441_CharacterCloud", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_442_Armadillo_Heartache": { + "templateId": "AthenaLoadingScreen:LSID_442_Armadillo_Heartache", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_443_C3S3_KeyArt": { + "templateId": "AthenaLoadingScreen:LSID_443_C3S3_KeyArt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_444_BlueJay": { + "templateId": "AthenaLoadingScreen:LSID_444_BlueJay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_445_Collectable": { + "templateId": "AthenaLoadingScreen:LSID_445_Collectable", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_446_Fuchsia": { + "templateId": "AthenaLoadingScreen:LSID_446_Fuchsia", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_447_Lancelot": { + "templateId": "AthenaLoadingScreen:LSID_447_Lancelot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_449_PinkWidow": { + "templateId": "AthenaLoadingScreen:LSID_449_PinkWidow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_450_Realm": { + "templateId": "AthenaLoadingScreen:LSID_450_Realm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_451_Canary": { + "templateId": "AthenaLoadingScreen:LSID_451_Canary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_452_RealityTree": { + "templateId": "AthenaLoadingScreen:LSID_452_RealityTree", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_455_Lofi": { + "templateId": "AthenaLoadingScreen:LSID_455_Lofi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_456_Ensemble_BusGroup": { + "templateId": "AthenaLoadingScreen:LSID_456_Ensemble_BusGroup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_457_Ensemble_Characters": { + "templateId": "AthenaLoadingScreen:LSID_457_Ensemble_Characters", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_458_Gloom": { + "templateId": "AthenaLoadingScreen:LSID_458_Gloom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_459_S21_FNCS": { + "templateId": "AthenaLoadingScreen:LSID_459_S21_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_460_Trifle_Parfait": { + "templateId": "AthenaLoadingScreen:LSID_460_Trifle_Parfait", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_461_Pennant": { + "templateId": "AthenaLoadingScreen:LSID_461_Pennant", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_462_DesertShadow": { + "templateId": "AthenaLoadingScreen:LSID_462_DesertShadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_463_SoundwaveSeriesAN": { + "templateId": "AthenaLoadingScreen:LSID_463_SoundwaveSeriesAN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_464_FruityDreams": { + "templateId": "AthenaLoadingScreen:LSID_464_FruityDreams", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_465_MaskedDancer": { + "templateId": "AthenaLoadingScreen:LSID_465_MaskedDancer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_466_NoSweat": { + "templateId": "AthenaLoadingScreen:LSID_466_NoSweat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_467_CuddleCollage": { + "templateId": "AthenaLoadingScreen:LSID_467_CuddleCollage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_468_BurgerCollage": { + "templateId": "AthenaLoadingScreen:LSID_468_BurgerCollage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_469_BratCollage": { + "templateId": "AthenaLoadingScreen:LSID_469_BratCollage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_470_MeowsclesCollage": { + "templateId": "AthenaLoadingScreen:LSID_470_MeowsclesCollage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_471_PeelyBoardCollage": { + "templateId": "AthenaLoadingScreen:LSID_471_PeelyBoardCollage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_472_TacoTimeCollage": { + "templateId": "AthenaLoadingScreen:LSID_472_TacoTimeCollage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_473_Barium": { + "templateId": "AthenaLoadingScreen:LSID_473_Barium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_474_SCRN_Barium": { + "templateId": "AthenaLoadingScreen:LSID_474_SCRN_Barium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_475_SCRN_Stamina": { + "templateId": "AthenaLoadingScreen:LSID_475_SCRN_Stamina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_476_Chaos": { + "templateId": "AthenaLoadingScreen:LSID_476_Chaos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_477_RainbowRoyale": { + "templateId": "AthenaLoadingScreen:LSID_477_RainbowRoyale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_478_RainbowRoyale_Art": { + "templateId": "AthenaLoadingScreen:LSID_478_RainbowRoyale_Art", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_479_Astral": { + "templateId": "AthenaLoadingScreen:LSID_479_Astral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_DefaultBG": { + "templateId": "AthenaLoadingScreen:LSID_DefaultBG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_STW001_HitTheRoad": { + "templateId": "AthenaLoadingScreen:LSID_STW001_HitTheRoad", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_STW001_Holdfast": { + "templateId": "AthenaLoadingScreen:LSID_STW001_Holdfast", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_STW002_Starlight1": { + "templateId": "AthenaLoadingScreen:LSID_STW002_Starlight1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_STW002_StormKing": { + "templateId": "AthenaLoadingScreen:LSID_STW002_StormKing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaLoadingScreen:LSID_STW003_HitTheRoad_MTL": { + "templateId": "AthenaLoadingScreen:LSID_STW003_HitTheRoad_MTL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_000_Default": { + "templateId": "AthenaMusicPack:MusicPack_000_Default", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_000_STW_Default": { + "templateId": "AthenaMusicPack:MusicPack_000_STW_Default", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_001_Floss": { + "templateId": "AthenaMusicPack:MusicPack_001_Floss", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_002_Spooky": { + "templateId": "AthenaMusicPack:MusicPack_002_Spooky", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_003_OGRemix": { + "templateId": "AthenaMusicPack:MusicPack_003_OGRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_004_Holiday": { + "templateId": "AthenaMusicPack:MusicPack_004_Holiday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_005_Disco": { + "templateId": "AthenaMusicPack:MusicPack_005_Disco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_006_Twist": { + "templateId": "AthenaMusicPack:MusicPack_006_Twist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_007_Pirate": { + "templateId": "AthenaMusicPack:MusicPack_007_Pirate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_008_Coral": { + "templateId": "AthenaMusicPack:MusicPack_008_Coral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_009_StarPower": { + "templateId": "AthenaMusicPack:MusicPack_009_StarPower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_010_RunningMan": { + "templateId": "AthenaMusicPack:MusicPack_010_RunningMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_011_GetFunky": { + "templateId": "AthenaMusicPack:MusicPack_011_GetFunky", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_012_ElectroSwing": { + "templateId": "AthenaMusicPack:MusicPack_012_ElectroSwing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_013_RoboTrack": { + "templateId": "AthenaMusicPack:MusicPack_013_RoboTrack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_013_RoboTrackRaisin": { + "templateId": "AthenaMusicPack:MusicPack_013_RoboTrackRaisin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_014_S9Cine": { + "templateId": "AthenaMusicPack:MusicPack_014_S9Cine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_015_GoodVibes": { + "templateId": "AthenaMusicPack:MusicPack_015_GoodVibes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_016_WorldCup": { + "templateId": "AthenaMusicPack:MusicPack_016_WorldCup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_017_PhoneItIn": { + "templateId": "AthenaMusicPack:MusicPack_017_PhoneItIn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_018_Glitter": { + "templateId": "AthenaMusicPack:MusicPack_018_Glitter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_019_Birthday2019": { + "templateId": "AthenaMusicPack:MusicPack_019_Birthday2019", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_020_BunkerJam": { + "templateId": "AthenaMusicPack:MusicPack_020_BunkerJam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_022_DayDream": { + "templateId": "AthenaMusicPack:MusicPack_022_DayDream", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_023_OG": { + "templateId": "AthenaMusicPack:MusicPack_023_OG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_024_Showdown": { + "templateId": "AthenaMusicPack:MusicPack_024_Showdown", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_025_MakeItRain": { + "templateId": "AthenaMusicPack:MusicPack_025_MakeItRain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_026_LasagnaChill": { + "templateId": "AthenaMusicPack:MusicPack_026_LasagnaChill", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_027_LasagnaDope": { + "templateId": "AthenaMusicPack:MusicPack_027_LasagnaDope", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_028_LlamaBell": { + "templateId": "AthenaMusicPack:MusicPack_028_LlamaBell", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_029_Wiggle": { + "templateId": "AthenaMusicPack:MusicPack_029_Wiggle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_030_BlackMonday_X91ZH": { + "templateId": "AthenaMusicPack:MusicPack_030_BlackMonday_X91ZH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_031_ChipTune": { + "templateId": "AthenaMusicPack:MusicPack_031_ChipTune", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_032_GrooveJam": { + "templateId": "AthenaMusicPack:MusicPack_032_GrooveJam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_033_RockOut": { + "templateId": "AthenaMusicPack:MusicPack_033_RockOut", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_034_SXRocketEvent": { + "templateId": "AthenaMusicPack:MusicPack_034_SXRocketEvent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_034_SXRocketEventRaisin": { + "templateId": "AthenaMusicPack:MusicPack_034_SXRocketEventRaisin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_035_BattleBreakers": { + "templateId": "AthenaMusicPack:MusicPack_035_BattleBreakers", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_036_Storm": { + "templateId": "AthenaMusicPack:MusicPack_036_Storm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_037_Extraterrestrial": { + "templateId": "AthenaMusicPack:MusicPack_037_Extraterrestrial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_038_Crackdown": { + "templateId": "AthenaMusicPack:MusicPack_038_Crackdown", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_039_Envy": { + "templateId": "AthenaMusicPack:MusicPack_039_Envy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_040_XmasChipTunes": { + "templateId": "AthenaMusicPack:MusicPack_040_XmasChipTunes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_041_Slick": { + "templateId": "AthenaMusicPack:MusicPack_041_Slick", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_042_BunnyHop": { + "templateId": "AthenaMusicPack:MusicPack_042_BunnyHop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_043_Overdrive": { + "templateId": "AthenaMusicPack:MusicPack_043_Overdrive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_044_S12Cine": { + "templateId": "AthenaMusicPack:MusicPack_044_S12Cine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_045_Carnaval": { + "templateId": "AthenaMusicPack:MusicPack_045_Carnaval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_046_Paws": { + "templateId": "AthenaMusicPack:MusicPack_046_Paws", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_047_FreestylinClubRemix": { + "templateId": "AthenaMusicPack:MusicPack_047_FreestylinClubRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_048_SpyRemix": { + "templateId": "AthenaMusicPack:MusicPack_048_SpyRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_049_BalletSpinRemix": { + "templateId": "AthenaMusicPack:MusicPack_049_BalletSpinRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_050_BillyBounce": { + "templateId": "AthenaMusicPack:MusicPack_050_BillyBounce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_051_Headbanger": { + "templateId": "AthenaMusicPack:MusicPack_051_Headbanger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_052_S13Cine": { + "templateId": "AthenaMusicPack:MusicPack_052_S13Cine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_053_FortniteTrapRemix": { + "templateId": "AthenaMusicPack:MusicPack_053_FortniteTrapRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_054_Fritter": { + "templateId": "AthenaMusicPack:MusicPack_054_Fritter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_055_Switchstep": { + "templateId": "AthenaMusicPack:MusicPack_055_Switchstep", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_056_S14_Cine": { + "templateId": "AthenaMusicPack:MusicPack_056_S14_Cine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_057_S14_Hero": { + "templateId": "AthenaMusicPack:MusicPack_057_S14_Hero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_058_S14_Villain": { + "templateId": "AthenaMusicPack:MusicPack_058_S14_Villain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_060_TakeTheW": { + "templateId": "AthenaMusicPack:MusicPack_060_TakeTheW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_061_RLxFN": { + "templateId": "AthenaMusicPack:MusicPack_061_RLxFN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_063_KeydUp": { + "templateId": "AthenaMusicPack:MusicPack_063_KeydUp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_064_FortniteFright": { + "templateId": "AthenaMusicPack:MusicPack_064_FortniteFright", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_065_FortlishRap": { + "templateId": "AthenaMusicPack:MusicPack_065_FortlishRap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_066_ComicBookTrack": { + "templateId": "AthenaMusicPack:MusicPack_066_ComicBookTrack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_067_Bollywood": { + "templateId": "AthenaMusicPack:MusicPack_067_Bollywood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_068_S14EndEvent": { + "templateId": "AthenaMusicPack:MusicPack_068_S14EndEvent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_069_OldSchool": { + "templateId": "AthenaMusicPack:MusicPack_069_OldSchool", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_070_StarPowerRemix": { + "templateId": "AthenaMusicPack:MusicPack_070_StarPowerRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_071_FortniteCarollingRemix": { + "templateId": "AthenaMusicPack:MusicPack_071_FortniteCarollingRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_072_HolidayEuroDiscoRemix": { + "templateId": "AthenaMusicPack:MusicPack_072_HolidayEuroDiscoRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_073_RL2PromoTrack": { + "templateId": "AthenaMusicPack:MusicPack_073_RL2PromoTrack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_074_PlanetaryVibe": { + "templateId": "AthenaMusicPack:MusicPack_074_PlanetaryVibe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_075_FishstickQuest": { + "templateId": "AthenaMusicPack:MusicPack_075_FishstickQuest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_076_IO_Guard": { + "templateId": "AthenaMusicPack:MusicPack_076_IO_Guard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_077_ButterBarn": { + "templateId": "AthenaMusicPack:MusicPack_077_ButterBarn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_078_RaiseTheRoof": { + "templateId": "AthenaMusicPack:MusicPack_078_RaiseTheRoof", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_079_S16_Cine": { + "templateId": "AthenaMusicPack:MusicPack_079_S16_Cine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_080_S15_EndEvent": { + "templateId": "AthenaMusicPack:MusicPack_080_S15_EndEvent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_081_RL_LlamaRama_9LRCK": { + "templateId": "AthenaMusicPack:MusicPack_081_RL_LlamaRama_9LRCK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_082_LivingLarge": { + "templateId": "AthenaMusicPack:MusicPack_082_LivingLarge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_083_TowerGuards": { + "templateId": "AthenaMusicPack:MusicPack_083_TowerGuards", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_084_BuffCatComic_5JC9Y": { + "templateId": "AthenaMusicPack:MusicPack_084_BuffCatComic_5JC9Y", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_085_Phonograph": { + "templateId": "AthenaMusicPack:MusicPack_085_Phonograph", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_086_Hype": { + "templateId": "AthenaMusicPack:MusicPack_086_Hype", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_087_Antique": { + "templateId": "AthenaMusicPack:MusicPack_087_Antique", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_088_Believer": { + "templateId": "AthenaMusicPack:MusicPack_088_Believer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_089_Innovator": { + "templateId": "AthenaMusicPack:MusicPack_089_Innovator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_090_EasyLife": { + "templateId": "AthenaMusicPack:MusicPack_090_EasyLife", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_091_Summer": { + "templateId": "AthenaMusicPack:MusicPack_091_Summer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_092_Cine": { + "templateId": "AthenaMusicPack:MusicPack_092_Cine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_093_SpaceCuddles": { + "templateId": "AthenaMusicPack:MusicPack_093_SpaceCuddles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_094_SpaceCuddlesInstrumental": { + "templateId": "AthenaMusicPack:MusicPack_094_SpaceCuddlesInstrumental", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_095_SummerNight": { + "templateId": "AthenaMusicPack:MusicPack_095_SummerNight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_096_CineAlienRemix": { + "templateId": "AthenaMusicPack:MusicPack_096_CineAlienRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_098_PopLock": { + "templateId": "AthenaMusicPack:MusicPack_098_PopLock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_099_FNCS": { + "templateId": "AthenaMusicPack:MusicPack_099_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_100_CerealBox": { + "templateId": "AthenaMusicPack:MusicPack_100_CerealBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_101_CerealBox_Instrumental": { + "templateId": "AthenaMusicPack:MusicPack_101_CerealBox_Instrumental", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_102_SpaceChimp": { + "templateId": "AthenaMusicPack:MusicPack_102_SpaceChimp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_103_SpaceChimpInstrumental": { + "templateId": "AthenaMusicPack:MusicPack_103_SpaceChimpInstrumental", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_104_Kiwi": { + "templateId": "AthenaMusicPack:MusicPack_104_Kiwi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_105_S18Cine": { + "templateId": "AthenaMusicPack:MusicPack_105_S18Cine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_106_Bistro_DQZH0": { + "templateId": "AthenaMusicPack:MusicPack_106_Bistro_DQZH0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_108_Paperbag_R2R4P": { + "templateId": "AthenaMusicPack:MusicPack_108_Paperbag_R2R4P", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_109_CubeQueen": { + "templateId": "AthenaMusicPack:MusicPack_109_CubeQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_112_Uproar_59WME": { + "templateId": "AthenaMusicPack:MusicPack_112_Uproar_59WME", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_113_S18_FNCS": { + "templateId": "AthenaMusicPack:MusicPack_113_S18_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_114_IslandNomad": { + "templateId": "AthenaMusicPack:MusicPack_114_IslandNomad", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_115_Motorcyclist": { + "templateId": "AthenaMusicPack:MusicPack_115_Motorcyclist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_116_Gumball": { + "templateId": "AthenaMusicPack:MusicPack_116_Gumball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_117_WinterFest2021": { + "templateId": "AthenaMusicPack:MusicPack_117_WinterFest2021", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_118_TheMarch": { + "templateId": "AthenaMusicPack:MusicPack_118_TheMarch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_119_CH1_DefaultMusic": { + "templateId": "AthenaMusicPack:MusicPack_119_CH1_DefaultMusic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_120_MonkeySS": { + "templateId": "AthenaMusicPack:MusicPack_120_MonkeySS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_121_CH3_DefaultMusic": { + "templateId": "AthenaMusicPack:MusicPack_121_CH3_DefaultMusic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_122_Sleek_3ST6M": { + "templateId": "AthenaMusicPack:MusicPack_122_Sleek_3ST6M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_123_BestMates": { + "templateId": "AthenaMusicPack:MusicPack_123_BestMates", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_124_Zest": { + "templateId": "AthenaMusicPack:MusicPack_124_Zest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_125_S19_FNCS": { + "templateId": "AthenaMusicPack:MusicPack_125_S19_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_126_Woman": { + "templateId": "AthenaMusicPack:MusicPack_126_Woman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_127_Cadet": { + "templateId": "AthenaMusicPack:MusicPack_127_Cadet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_128_CubeKing": { + "templateId": "AthenaMusicPack:MusicPack_128_CubeKing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_129_OrderGuard": { + "templateId": "AthenaMusicPack:MusicPack_129_OrderGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_131_MC": { + "templateId": "AthenaMusicPack:MusicPack_131_MC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_132_MayCrew": { + "templateId": "AthenaMusicPack:MusicPack_132_MayCrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_133_Armadillo": { + "templateId": "AthenaMusicPack:MusicPack_133_Armadillo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_134_FNCS20": { + "templateId": "AthenaMusicPack:MusicPack_134_FNCS20", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_135_MayCrew_Instrumental": { + "templateId": "AthenaMusicPack:MusicPack_135_MayCrew_Instrumental", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_136_BlueJay": { + "templateId": "AthenaMusicPack:MusicPack_136_BlueJay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_137_NightNight": { + "templateId": "AthenaMusicPack:MusicPack_137_NightNight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_138_Collectable": { + "templateId": "AthenaMusicPack:MusicPack_138_Collectable", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_139_BG": { + "templateId": "AthenaMusicPack:MusicPack_139_BG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_140_DaysOfSummer": { + "templateId": "AthenaMusicPack:MusicPack_140_DaysOfSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_141_LilWhip": { + "templateId": "AthenaMusicPack:MusicPack_141_LilWhip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_142_Barium": { + "templateId": "AthenaMusicPack:MusicPack_142_Barium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_143_S21_FNCS": { + "templateId": "AthenaMusicPack:MusicPack_143_S21_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_144_SeptemberCrew": { + "templateId": "AthenaMusicPack:MusicPack_144_SeptemberCrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_145_RainbowRoyale": { + "templateId": "AthenaMusicPack:MusicPack_145_RainbowRoyale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_146_BadBear": { + "templateId": "AthenaMusicPack:MusicPack_146_BadBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_147_TheHerald": { + "templateId": "AthenaMusicPack:MusicPack_147_TheHerald", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_148_ChillCat": { + "templateId": "AthenaMusicPack:MusicPack_148_ChillCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_150_CrewLobby": { + "templateId": "AthenaMusicPack:MusicPack_150_CrewLobby", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_151_CrewLobby_Instrumental": { + "templateId": "AthenaMusicPack:MusicPack_151_CrewLobby_Instrumental", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_153_Fortnitemares_FreakyBoss": { + "templateId": "AthenaMusicPack:MusicPack_153_Fortnitemares_FreakyBoss", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_154_Invitational_Album": { + "templateId": "AthenaMusicPack:MusicPack_154_Invitational_Album", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_156_Radish_Event": { + "templateId": "AthenaMusicPack:MusicPack_156_Radish_Event", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_157_Radish_NightNight": { + "templateId": "AthenaMusicPack:MusicPack_157_Radish_NightNight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_158_VampireHunters": { + "templateId": "AthenaMusicPack:MusicPack_158_VampireHunters", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_159_Chainmail": { + "templateId": "AthenaMusicPack:MusicPack_159_Chainmail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_160_Venice": { + "templateId": "AthenaMusicPack:MusicPack_160_Venice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_161_Citadel": { + "templateId": "AthenaMusicPack:MusicPack_161_Citadel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_162_S23Default": { + "templateId": "AthenaMusicPack:MusicPack_162_S23Default", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_163_Winterfest_2022": { + "templateId": "AthenaMusicPack:MusicPack_163_Winterfest_2022", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_164_RedPepper_Winterfest": { + "templateId": "AthenaMusicPack:MusicPack_164_RedPepper_Winterfest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_165_SunBurst1": { + "templateId": "AthenaMusicPack:MusicPack_165_SunBurst1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_166_SunBurst2": { + "templateId": "AthenaMusicPack:MusicPack_166_SunBurst2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_167_SunBurst3": { + "templateId": "AthenaMusicPack:MusicPack_167_SunBurst3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_169_FNCS23": { + "templateId": "AthenaMusicPack:MusicPack_169_FNCS23", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_170_MagicMeadow": { + "templateId": "AthenaMusicPack:MusicPack_170_MagicMeadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_171_FlailingFins": { + "templateId": "AthenaMusicPack:MusicPack_171_FlailingFins", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_172_MetalScout": { + "templateId": "AthenaMusicPack:MusicPack_172_MetalScout", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_173_VitalPsych": { + "templateId": "AthenaMusicPack:MusicPack_173_VitalPsych", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_174_LocalZilla": { + "templateId": "AthenaMusicPack:MusicPack_174_LocalZilla", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_175_Dazzle": { + "templateId": "AthenaMusicPack:MusicPack_175_Dazzle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_176_MirageHiker": { + "templateId": "AthenaMusicPack:MusicPack_176_MirageHiker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_177_TigerRootQuest": { + "templateId": "AthenaMusicPack:MusicPack_177_TigerRootQuest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_178_S24FNCSDrops": { + "templateId": "AthenaMusicPack:MusicPack_178_S24FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_179_FearlessFlight": { + "templateId": "AthenaMusicPack:MusicPack_179_FearlessFlight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_180_CrispRover": { + "templateId": "AthenaMusicPack:MusicPack_180_CrispRover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_181_SilentTempo": { + "templateId": "AthenaMusicPack:MusicPack_181_SilentTempo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_182_BuffCatCruise": { + "templateId": "AthenaMusicPack:MusicPack_182_BuffCatCruise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_183_LopexSnow": { + "templateId": "AthenaMusicPack:MusicPack_183_LopexSnow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_184_FNCSDrops": { + "templateId": "AthenaMusicPack:MusicPack_184_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_185_BlazerVeil": { + "templateId": "AthenaMusicPack:MusicPack_185_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_186_IndieBucket": { + "templateId": "AthenaMusicPack:MusicPack_186_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_187_PizzaParty": { + "templateId": "AthenaMusicPack:MusicPack_187_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_188_SuperNovaTaro": { + "templateId": "AthenaMusicPack:MusicPack_188_SuperNovaTaro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_189_FNCSGlobal": { + "templateId": "AthenaMusicPack:MusicPack_189_FNCSGlobal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_190_Vampire": { + "templateId": "AthenaMusicPack:MusicPack_190_Vampire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_191_LilSplit": { + "templateId": "AthenaMusicPack:MusicPack_191_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_192_Rufus": { + "templateId": "AthenaMusicPack:MusicPack_192_Rufus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_193_VoidRedemption": { + "templateId": "AthenaMusicPack:MusicPack_193_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_194_BangalBasher": { + "templateId": "AthenaMusicPack:MusicPack_194_BangalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_195_MadameMoth": { + "templateId": "AthenaMusicPack:MusicPack_195_MadameMoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_196_S28DefaultTrack": { + "templateId": "AthenaMusicPack:MusicPack_196_S28DefaultTrack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_197_Winterfest2023": { + "templateId": "AthenaMusicPack:MusicPack_197_Winterfest2023", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_198_JunoDefault": { + "templateId": "AthenaMusicPack:MusicPack_198_JunoDefault", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_199_DelMarDefault": { + "templateId": "AthenaMusicPack:MusicPack_199_DelMarDefault", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_STW001_CannyValley": { + "templateId": "AthenaMusicPack:MusicPack_STW001_CannyValley", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_STW001_Holdfast": { + "templateId": "AthenaMusicPack:MusicPack_STW001_Holdfast", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaMusicPack:MusicPack_STW001_Starlight": { + "templateId": "AthenaMusicPack:MusicPack_STW001_Starlight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_001_Dog": { + "templateId": "AthenaBackpack:PetCarrier_001_Dog", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_002_Chameleon": { + "templateId": "AthenaBackpack:PetCarrier_002_Chameleon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_003_Dragon": { + "templateId": "AthenaBackpack:PetCarrier_003_Dragon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_004_Hamster": { + "templateId": "AthenaBackpack:PetCarrier_004_Hamster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_005_Wolf": { + "templateId": "AthenaBackpack:PetCarrier_005_Wolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_006_Gingerbread": { + "templateId": "AthenaBackpack:PetCarrier_006_Gingerbread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_007_Woodsy": { + "templateId": "AthenaBackpack:PetCarrier_007_Woodsy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_008_Fox": { + "templateId": "AthenaBackpack:PetCarrier_008_Fox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_009_Cat": { + "templateId": "AthenaBackpack:PetCarrier_009_Cat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_010_RoboKitty": { + "templateId": "AthenaBackpack:PetCarrier_010_RoboKitty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_011_Dog_Raptor": { + "templateId": "AthenaBackpack:PetCarrier_011_Dog_Raptor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_012_Drift_Fox": { + "templateId": "AthenaBackpack:PetCarrier_012_Drift_Fox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_013_BbqLarry": { + "templateId": "AthenaBackpack:PetCarrier_013_BbqLarry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_014_HightowerRadish": { + "templateId": "AthenaBackpack:PetCarrier_014_HightowerRadish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_015_Cosmos": { + "templateId": "AthenaBackpack:PetCarrier_015_Cosmos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_016_Invader": { + "templateId": "AthenaBackpack:PetCarrier_016_Invader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaBackpack:PetCarrier_TBD_DarkWolf": { + "templateId": "AthenaBackpack:PetCarrier_TBD_DarkWolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_001_Dog": { + "templateId": "AthenaPet:PetID_001_Dog", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_002_Chameleon": { + "templateId": "AthenaPet:PetID_002_Chameleon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_003_Dragon": { + "templateId": "AthenaPet:PetID_003_Dragon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_004_Hamster": { + "templateId": "AthenaPet:PetID_004_Hamster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_005_Wolf": { + "templateId": "AthenaPet:PetID_005_Wolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_006_Gingerbread": { + "templateId": "AthenaPet:PetID_006_Gingerbread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_007_Woodsy": { + "templateId": "AthenaPet:PetID_007_Woodsy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_008_Fox": { + "templateId": "AthenaPet:PetID_008_Fox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_009_Cat": { + "templateId": "AthenaPet:PetID_009_Cat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_010_RoboKitty": { + "templateId": "AthenaPet:PetID_010_RoboKitty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_011_Dog_Raptor": { + "templateId": "AthenaPet:PetID_011_Dog_Raptor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_012_Drift_Fox": { + "templateId": "AthenaPet:PetID_012_Drift_Fox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_013_BBQ_Larry": { + "templateId": "AthenaPet:PetID_013_BBQ_Larry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_016_Invader": { + "templateId": "AthenaPet:PetID_016_Invader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_TBD_Cosmos": { + "templateId": "AthenaPet:PetID_TBD_Cosmos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPet:PetID_TBD_HightowerRadish": { + "templateId": "AthenaPet:PetID_TBD_HightowerRadish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_AccumulateRetro": { + "templateId": "AthenaPickaxe:Pickaxe_AccumulateRetro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_AgentSherbert": { + "templateId": "AthenaPickaxe:Pickaxe_AgentSherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_AgentXKoi": { + "templateId": "AthenaPickaxe:Pickaxe_AgentXKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_AllKnowing": { + "templateId": "AthenaPickaxe:Pickaxe_AllKnowing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Amour": { + "templateId": "AthenaPickaxe:Pickaxe_Amour", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Apprentice": { + "templateId": "AthenaPickaxe:Pickaxe_Apprentice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ArcticIceBlue": { + "templateId": "AthenaPickaxe:Pickaxe_ArcticIceBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ArcticIceTalus": { + "templateId": "AthenaPickaxe:Pickaxe_ArcticIceTalus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BadBear": { + "templateId": "AthenaPickaxe:Pickaxe_BadBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Ballerina": { + "templateId": "AthenaPickaxe:Pickaxe_Ballerina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BananaAdventure": { + "templateId": "AthenaPickaxe:Pickaxe_BananaAdventure", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BariumDemon": { + "templateId": "AthenaPickaxe:Pickaxe_BariumDemon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Basil": { + "templateId": "AthenaPickaxe:Pickaxe_Basil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BengalBasher": { + "templateId": "AthenaPickaxe:Pickaxe_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BirdNest": { + "templateId": "AthenaPickaxe:Pickaxe_BirdNest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BiruFang": { + "templateId": "AthenaPickaxe:Pickaxe_BiruFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Bites": { + "templateId": "AthenaPickaxe:Pickaxe_Bites", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6", + "Stage7", + "Stage8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BlazerVeil": { + "templateId": "AthenaPickaxe:Pickaxe_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BlueGlaze": { + "templateId": "AthenaPickaxe:Pickaxe_BlueGlaze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BlueJet": { + "templateId": "AthenaPickaxe:Pickaxe_BlueJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BoneMarrow": { + "templateId": "AthenaPickaxe:Pickaxe_BoneMarrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BoneWand": { + "templateId": "AthenaPickaxe:Pickaxe_BoneWand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Boredom": { + "templateId": "AthenaPickaxe:Pickaxe_Boredom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BrainMatter": { + "templateId": "AthenaPickaxe:Pickaxe_BrainMatter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BraveBuild": { + "templateId": "AthenaPickaxe:Pickaxe_BraveBuild", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BrawnyBass": { + "templateId": "AthenaPickaxe:Pickaxe_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_BuffCatCruise": { + "templateId": "AthenaPickaxe:Pickaxe_BuffCatCruise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Calavera": { + "templateId": "AthenaPickaxe:Pickaxe_Calavera", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CameraShake": { + "templateId": "AthenaPickaxe:Pickaxe_CameraShake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Candor": { + "templateId": "AthenaPickaxe:Pickaxe_Candor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Cavalry_Alt": { + "templateId": "AthenaPickaxe:Pickaxe_Cavalry_Alt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CeremonialGuard": { + "templateId": "AthenaPickaxe:Pickaxe_CeremonialGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Chainmail": { + "templateId": "AthenaPickaxe:Pickaxe_Chainmail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ChaosDarkIce": { + "templateId": "AthenaPickaxe:Pickaxe_ChaosDarkIce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ChicleVeil": { + "templateId": "AthenaPickaxe:Pickaxe_ChicleVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ChillCat": { + "templateId": "AthenaPickaxe:Pickaxe_ChillCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CinderMax": { + "templateId": "AthenaPickaxe:Pickaxe_CinderMax", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CirrusVine": { + "templateId": "AthenaPickaxe:Pickaxe_CirrusVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Citadel": { + "templateId": "AthenaPickaxe:Pickaxe_Citadel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ClearRadius": { + "templateId": "AthenaPickaxe:Pickaxe_ClearRadius", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CleverEdge": { + "templateId": "AthenaPickaxe:Pickaxe_CleverEdge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ConfectionPop": { + "templateId": "AthenaPickaxe:Pickaxe_ConfectionPop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Conscience": { + "templateId": "AthenaPickaxe:Pickaxe_Conscience", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CoyoTear": { + "templateId": "AthenaPickaxe:Pickaxe_CoyoTear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CoyoteTrail": { + "templateId": "AthenaPickaxe:Pickaxe_CoyoteTrail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CoyoteTrailDark": { + "templateId": "AthenaPickaxe:Pickaxe_CoyoteTrailDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CrimsonPeak": { + "templateId": "AthenaPickaxe:Pickaxe_CrimsonPeak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CrispRover": { + "templateId": "AthenaPickaxe:Pickaxe_CrispRover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CrowbarSleek": { + "templateId": "AthenaPickaxe:Pickaxe_CrowbarSleek", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CubeCoast": { + "templateId": "AthenaPickaxe:Pickaxe_CubeCoast", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_CupidEvil": { + "templateId": "AthenaPickaxe:Pickaxe_CupidEvil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DapperPunch": { + "templateId": "AthenaPickaxe:Pickaxe_DapperPunch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DarkAzalea": { + "templateId": "AthenaPickaxe:Pickaxe_DarkAzalea", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Dazzle": { + "templateId": "AthenaPickaxe:Pickaxe_Dazzle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Deathvalley": { + "templateId": "AthenaPickaxe:Pickaxe_Deathvalley", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Defect": { + "templateId": "AthenaPickaxe:Pickaxe_Defect", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "RichColor2", + "active": "000", + "owned": [ + "000", + "001", + "002", + "003" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Despair": { + "templateId": "AthenaPickaxe:Pickaxe_Despair", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DiamondHeart": { + "templateId": "AthenaPickaxe:Pickaxe_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DistantEchoCastle": { + "templateId": "AthenaPickaxe:Pickaxe_DistantEchoCastle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DistantEchoPilot": { + "templateId": "AthenaPickaxe:Pickaxe_DistantEchoPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DistantEchoPro": { + "templateId": "AthenaPickaxe:Pickaxe_DistantEchoPro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DracoDueler": { + "templateId": "AthenaPickaxe:Pickaxe_DracoDueler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DriftAvatar": { + "templateId": "AthenaPickaxe:Pickaxe_DriftAvatar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DriftSwat": { + "templateId": "AthenaPickaxe:Pickaxe_DriftSwat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DriftTrooper": { + "templateId": "AthenaPickaxe:Pickaxe_DriftTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DualParadox": { + "templateId": "AthenaPickaxe:Pickaxe_DualParadox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DualParadoxGold": { + "templateId": "AthenaPickaxe:Pickaxe_DualParadoxGold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_DyedDuelist": { + "templateId": "AthenaPickaxe:Pickaxe_DyedDuelist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Ebony": { + "templateId": "AthenaPickaxe:Pickaxe_Ebony", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_EctoCat": { + "templateId": "AthenaPickaxe:Pickaxe_EctoCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Elevate": { + "templateId": "AthenaPickaxe:Pickaxe_Elevate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_EmberRae": { + "templateId": "AthenaPickaxe:Pickaxe_EmberRae", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_EmeraldGlassGreen": { + "templateId": "AthenaPickaxe:Pickaxe_EmeraldGlassGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_EmeraldGlassPink": { + "templateId": "AthenaPickaxe:Pickaxe_EmeraldGlassPink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_EmeraldGlassRebel": { + "templateId": "AthenaPickaxe:Pickaxe_EmeraldGlassRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_EmeraldGlassTransform": { + "templateId": "AthenaPickaxe:Pickaxe_EmeraldGlassTransform", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Ephemeral": { + "templateId": "AthenaPickaxe:Pickaxe_Ephemeral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FallValleyBlink": { + "templateId": "AthenaPickaxe:Pickaxe_FallValleyBlink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FallValleyCharge": { + "templateId": "AthenaPickaxe:Pickaxe_FallValleyCharge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FauxVenom": { + "templateId": "AthenaPickaxe:Pickaxe_FauxVenom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FearlessFlightHero": { + "templateId": "AthenaPickaxe:Pickaxe_FearlessFlightHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FearlessFlightMenaceUniversal": { + "templateId": "AthenaPickaxe:Pickaxe_FearlessFlightMenaceUniversal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FireworkFemale1h": { + "templateId": "AthenaPickaxe:Pickaxe_FireworkFemale1h", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FishBowl": { + "templateId": "AthenaPickaxe:Pickaxe_FishBowl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Flamingo": { + "templateId": "AthenaPickaxe:Pickaxe_Flamingo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FNBirthday5": { + "templateId": "AthenaPickaxe:Pickaxe_FNBirthday5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FNBirthday6": { + "templateId": "AthenaPickaxe:Pickaxe_FNBirthday6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FolkEvening": { + "templateId": "AthenaPickaxe:Pickaxe_FolkEvening", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Forsake_FNCS": { + "templateId": "AthenaPickaxe:Pickaxe_Forsake_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FossilMech": { + "templateId": "AthenaPickaxe:Pickaxe_FossilMech", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_FrozenReality": { + "templateId": "AthenaPickaxe:Pickaxe_FrozenReality", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_GalaxyKnight": { + "templateId": "AthenaPickaxe:Pickaxe_GalaxyKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_GalaxyLevel": { + "templateId": "AthenaPickaxe:Pickaxe_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_GelatinGummi": { + "templateId": "AthenaPickaxe:Pickaxe_GelatinGummi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Genius": { + "templateId": "AthenaPickaxe:Pickaxe_Genius", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Genius_Blob": { + "templateId": "AthenaPickaxe:Pickaxe_Genius_Blob", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_GoldenGuard": { + "templateId": "AthenaPickaxe:Pickaxe_GoldenGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_GoldenPleats": { + "templateId": "AthenaPickaxe:Pickaxe_GoldenPleats", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_GoodMood": { + "templateId": "AthenaPickaxe:Pickaxe_GoodMood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_GroovyReaderPierce": { + "templateId": "AthenaPickaxe:Pickaxe_GroovyReaderPierce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_GroovyReaderPoke": { + "templateId": "AthenaPickaxe:Pickaxe_GroovyReaderPoke", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_HauntKoi": { + "templateId": "AthenaPickaxe:Pickaxe_HauntKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_HeadhunterStar": { + "templateId": "AthenaPickaxe:Pickaxe_HeadhunterStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_HeadhunterStarFNCS": { + "templateId": "AthenaPickaxe:Pickaxe_HeadhunterStarFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Headset": { + "templateId": "AthenaPickaxe:Pickaxe_Headset", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_HeavyRoar": { + "templateId": "AthenaPickaxe:Pickaxe_HeavyRoar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_HighBeam": { + "templateId": "AthenaPickaxe:Pickaxe_HighBeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_HighMotion": { + "templateId": "AthenaPickaxe:Pickaxe_HighMotion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Hitman": { + "templateId": "AthenaPickaxe:Pickaxe_Hitman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_HornedJudgment": { + "templateId": "AthenaPickaxe:Pickaxe_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_HornettaVine": { + "templateId": "AthenaPickaxe:Pickaxe_HornettaVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_HumanBeing": { + "templateId": "AthenaPickaxe:Pickaxe_HumanBeing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_HydroIgnite": { + "templateId": "AthenaPickaxe:Pickaxe_HydroIgnite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_IceRetreat": { + "templateId": "AthenaPickaxe:Pickaxe_IceRetreat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_IchorIncisor": { + "templateId": "AthenaPickaxe:Pickaxe_IchorIncisor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_011_Medieval": { + "templateId": "AthenaPickaxe:Pickaxe_ID_011_Medieval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_012_District": { + "templateId": "AthenaPickaxe:Pickaxe_ID_012_District", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_013_Teslacoil": { + "templateId": "AthenaPickaxe:Pickaxe_ID_013_Teslacoil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_014_WinterCamo": { + "templateId": "AthenaPickaxe:Pickaxe_ID_014_WinterCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_015_HolidayCandyCane": { + "templateId": "AthenaPickaxe:Pickaxe_ID_015_HolidayCandyCane", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_016_Disco": { + "templateId": "AthenaPickaxe:Pickaxe_ID_016_Disco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_017_Shark": { + "templateId": "AthenaPickaxe:Pickaxe_ID_017_Shark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_018_Anchor": { + "templateId": "AthenaPickaxe:Pickaxe_ID_018_Anchor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_019_Heart": { + "templateId": "AthenaPickaxe:Pickaxe_ID_019_Heart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_020_Keg": { + "templateId": "AthenaPickaxe:Pickaxe_ID_020_Keg", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_021_Megalodon": { + "templateId": "AthenaPickaxe:Pickaxe_ID_021_Megalodon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_022_HolidayGiftWrap": { + "templateId": "AthenaPickaxe:Pickaxe_ID_022_HolidayGiftWrap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_023_SkiBoot": { + "templateId": "AthenaPickaxe:Pickaxe_ID_023_SkiBoot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_024_Plunger": { + "templateId": "AthenaPickaxe:Pickaxe_ID_024_Plunger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_025_Dragon": { + "templateId": "AthenaPickaxe:Pickaxe_ID_025_Dragon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_026_Brite": { + "templateId": "AthenaPickaxe:Pickaxe_ID_026_Brite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_027_Scavenger": { + "templateId": "AthenaPickaxe:Pickaxe_ID_027_Scavenger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_028_Space": { + "templateId": "AthenaPickaxe:Pickaxe_ID_028_Space", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_029_Assassin": { + "templateId": "AthenaPickaxe:Pickaxe_ID_029_Assassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_030_ArtDeco": { + "templateId": "AthenaPickaxe:Pickaxe_ID_030_ArtDeco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_031_Squeak": { + "templateId": "AthenaPickaxe:Pickaxe_ID_031_Squeak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_032_Tactical": { + "templateId": "AthenaPickaxe:Pickaxe_ID_032_Tactical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_033_PotOfGold": { + "templateId": "AthenaPickaxe:Pickaxe_ID_033_PotOfGold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_034_RockerPunk": { + "templateId": "AthenaPickaxe:Pickaxe_ID_034_RockerPunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_035_Prismatic": { + "templateId": "AthenaPickaxe:Pickaxe_ID_035_Prismatic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_036_CuChulainn": { + "templateId": "AthenaPickaxe:Pickaxe_ID_036_CuChulainn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_037_Stealth": { + "templateId": "AthenaPickaxe:Pickaxe_ID_037_Stealth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_038_Carrot": { + "templateId": "AthenaPickaxe:Pickaxe_ID_038_Carrot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_039_TacticalBlack": { + "templateId": "AthenaPickaxe:Pickaxe_ID_039_TacticalBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_040_Pizza": { + "templateId": "AthenaPickaxe:Pickaxe_ID_040_Pizza", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_041_PajamaParty": { + "templateId": "AthenaPickaxe:Pickaxe_ID_041_PajamaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_042_CircuitBreaker": { + "templateId": "AthenaPickaxe:Pickaxe_ID_042_CircuitBreaker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_043_OrbitingPlanets": { + "templateId": "AthenaPickaxe:Pickaxe_ID_043_OrbitingPlanets", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_044_TacticalUrbanHammer": { + "templateId": "AthenaPickaxe:Pickaxe_ID_044_TacticalUrbanHammer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_045_Valor": { + "templateId": "AthenaPickaxe:Pickaxe_ID_045_Valor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_046_Candy": { + "templateId": "AthenaPickaxe:Pickaxe_ID_046_Candy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_047_CarbideBlue": { + "templateId": "AthenaPickaxe:Pickaxe_ID_047_CarbideBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_048_CarbideBlack": { + "templateId": "AthenaPickaxe:Pickaxe_ID_048_CarbideBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_049_Metal": { + "templateId": "AthenaPickaxe:Pickaxe_ID_049_Metal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_050_Graffiti": { + "templateId": "AthenaPickaxe:Pickaxe_ID_050_Graffiti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_051_NeonGlow": { + "templateId": "AthenaPickaxe:Pickaxe_ID_051_NeonGlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_052_Hazmat": { + "templateId": "AthenaPickaxe:Pickaxe_ID_052_Hazmat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_053_Deco": { + "templateId": "AthenaPickaxe:Pickaxe_ID_053_Deco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_054_FilmCamera": { + "templateId": "AthenaPickaxe:Pickaxe_ID_054_FilmCamera", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_055_Stop": { + "templateId": "AthenaPickaxe:Pickaxe_ID_055_Stop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_056_Venus": { + "templateId": "AthenaPickaxe:Pickaxe_ID_056_Venus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_057_Jailbird": { + "templateId": "AthenaPickaxe:Pickaxe_ID_057_Jailbird", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_058_Basketball": { + "templateId": "AthenaPickaxe:Pickaxe_ID_058_Basketball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_059_DarkEagle": { + "templateId": "AthenaPickaxe:Pickaxe_ID_059_DarkEagle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_060_DarkNinja": { + "templateId": "AthenaPickaxe:Pickaxe_ID_060_DarkNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_061_WWIIPilot": { + "templateId": "AthenaPickaxe:Pickaxe_ID_061_WWIIPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_062_Soccer": { + "templateId": "AthenaPickaxe:Pickaxe_ID_062_Soccer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_063_Vuvuzela": { + "templateId": "AthenaPickaxe:Pickaxe_ID_063_Vuvuzela", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_064_Gumshoe": { + "templateId": "AthenaPickaxe:Pickaxe_ID_064_Gumshoe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_065_SpeedyRed": { + "templateId": "AthenaPickaxe:Pickaxe_ID_065_SpeedyRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_066_FlintlockRed": { + "templateId": "AthenaPickaxe:Pickaxe_ID_066_FlintlockRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_067_Taxi": { + "templateId": "AthenaPickaxe:Pickaxe_ID_067_Taxi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_068_Drift": { + "templateId": "AthenaPickaxe:Pickaxe_ID_068_Drift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_069_DarkViking": { + "templateId": "AthenaPickaxe:Pickaxe_ID_069_DarkViking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_070_Viking": { + "templateId": "AthenaPickaxe:Pickaxe_ID_070_Viking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_071_StreetRacer": { + "templateId": "AthenaPickaxe:Pickaxe_ID_071_StreetRacer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_072_Luchador": { + "templateId": "AthenaPickaxe:Pickaxe_ID_072_Luchador", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_073_Balloon": { + "templateId": "AthenaPickaxe:Pickaxe_ID_073_Balloon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_074_SharpDresser": { + "templateId": "AthenaPickaxe:Pickaxe_ID_074_SharpDresser", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_075_Huya": { + "templateId": "AthenaPickaxe:Pickaxe_ID_075_Huya", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_076_Douyu": { + "templateId": "AthenaPickaxe:Pickaxe_ID_076_Douyu", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_077_CarbideWhite": { + "templateId": "AthenaPickaxe:Pickaxe_ID_077_CarbideWhite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_078_Lifeguard": { + "templateId": "AthenaPickaxe:Pickaxe_ID_078_Lifeguard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_079_ModernMilitary": { + "templateId": "AthenaPickaxe:Pickaxe_ID_079_ModernMilitary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_080_Scuba": { + "templateId": "AthenaPickaxe:Pickaxe_ID_080_Scuba", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_081_StreetRacerCobra": { + "templateId": "AthenaPickaxe:Pickaxe_ID_081_StreetRacerCobra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_082_SushiChef": { + "templateId": "AthenaPickaxe:Pickaxe_ID_082_SushiChef", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_083_Exercise": { + "templateId": "AthenaPickaxe:Pickaxe_ID_083_Exercise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_084_DurrburgerHero": { + "templateId": "AthenaPickaxe:Pickaxe_ID_084_DurrburgerHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_085_Wukong": { + "templateId": "AthenaPickaxe:Pickaxe_ID_085_Wukong", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_086_Biker": { + "templateId": "AthenaPickaxe:Pickaxe_ID_086_Biker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_087_Hippie": { + "templateId": "AthenaPickaxe:Pickaxe_ID_087_Hippie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_088_PSBurnout": { + "templateId": "AthenaPickaxe:Pickaxe_ID_088_PSBurnout", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_089_RavenQuill": { + "templateId": "AthenaPickaxe:Pickaxe_ID_089_RavenQuill", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_090_SamuraiBlue": { + "templateId": "AthenaPickaxe:Pickaxe_ID_090_SamuraiBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_091_Hacivat": { + "templateId": "AthenaPickaxe:Pickaxe_ID_091_Hacivat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_092_Bling": { + "templateId": "AthenaPickaxe:Pickaxe_ID_092_Bling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_093_Medic": { + "templateId": "AthenaPickaxe:Pickaxe_ID_093_Medic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_094_Football": { + "templateId": "AthenaPickaxe:Pickaxe_ID_094_Football", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_095_FootballTrophy": { + "templateId": "AthenaPickaxe:Pickaxe_ID_095_FootballTrophy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_096_FootballReferee": { + "templateId": "AthenaPickaxe:Pickaxe_ID_096_FootballReferee", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_097_RaptorArcticCamo": { + "templateId": "AthenaPickaxe:Pickaxe_ID_097_RaptorArcticCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_098_GarageBand": { + "templateId": "AthenaPickaxe:Pickaxe_ID_098_GarageBand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_099_ModernMilitaryRed": { + "templateId": "AthenaPickaxe:Pickaxe_ID_099_ModernMilitaryRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_100_DieselPunk": { + "templateId": "AthenaPickaxe:Pickaxe_ID_100_DieselPunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_101_Octoberfest": { + "templateId": "AthenaPickaxe:Pickaxe_ID_101_Octoberfest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_102_RedRiding": { + "templateId": "AthenaPickaxe:Pickaxe_ID_102_RedRiding", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_103_FortniteDJ": { + "templateId": "AthenaPickaxe:Pickaxe_ID_103_FortniteDJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_104_Cowgirl": { + "templateId": "AthenaPickaxe:Pickaxe_ID_104_Cowgirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_105_Scarecrow": { + "templateId": "AthenaPickaxe:Pickaxe_ID_105_Scarecrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_106_DarkBomber": { + "templateId": "AthenaPickaxe:Pickaxe_ID_106_DarkBomber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_107_HalloweenTomato": { + "templateId": "AthenaPickaxe:Pickaxe_ID_107_HalloweenTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_107_Plague": { + "templateId": "AthenaPickaxe:Pickaxe_ID_107_Plague", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_108_PumpkinSlice": { + "templateId": "AthenaPickaxe:Pickaxe_ID_108_PumpkinSlice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_109_SkullTrooper": { + "templateId": "AthenaPickaxe:Pickaxe_ID_109_SkullTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_110_Vampire": { + "templateId": "AthenaPickaxe:Pickaxe_ID_110_Vampire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_111_BlackWidow": { + "templateId": "AthenaPickaxe:Pickaxe_ID_111_BlackWidow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_112_GuanYu": { + "templateId": "AthenaPickaxe:Pickaxe_ID_112_GuanYu", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_113_Muertos": { + "templateId": "AthenaPickaxe:Pickaxe_ID_113_Muertos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_114_BadassCowboyCowSkull": { + "templateId": "AthenaPickaxe:Pickaxe_ID_114_BadassCowboyCowSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_115_EvilCowboy": { + "templateId": "AthenaPickaxe:Pickaxe_ID_115_EvilCowboy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_116_Celestial": { + "templateId": "AthenaPickaxe:Pickaxe_ID_116_Celestial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_117_MadCommander": { + "templateId": "AthenaPickaxe:Pickaxe_ID_117_MadCommander", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_118_StreetOps": { + "templateId": "AthenaPickaxe:Pickaxe_ID_118_StreetOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_119_AnimalJackets": { + "templateId": "AthenaPickaxe:Pickaxe_ID_119_AnimalJackets", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_120_SamuraiUltraArmor": { + "templateId": "AthenaPickaxe:Pickaxe_ID_120_SamuraiUltraArmor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_121_RobotRed": { + "templateId": "AthenaPickaxe:Pickaxe_ID_121_RobotRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_122_Witch": { + "templateId": "AthenaPickaxe:Pickaxe_ID_122_Witch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_123_HornedMask": { + "templateId": "AthenaPickaxe:Pickaxe_ID_123_HornedMask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_124_Feathers": { + "templateId": "AthenaPickaxe:Pickaxe_ID_124_Feathers", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_125_Moth": { + "templateId": "AthenaPickaxe:Pickaxe_ID_125_Moth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_126_Yeti": { + "templateId": "AthenaPickaxe:Pickaxe_ID_126_Yeti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_127_Rhino": { + "templateId": "AthenaPickaxe:Pickaxe_ID_127_Rhino", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_131_Nautilus": { + "templateId": "AthenaPickaxe:Pickaxe_ID_131_Nautilus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_131_NeonCat": { + "templateId": "AthenaPickaxe:Pickaxe_ID_131_NeonCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1", + "Emissive2", + "Emissive3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_132_ArcticSniper": { + "templateId": "AthenaPickaxe:Pickaxe_ID_132_ArcticSniper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_133_Demon": { + "templateId": "AthenaPickaxe:Pickaxe_ID_133_Demon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_133_IceKing": { + "templateId": "AthenaPickaxe:Pickaxe_ID_133_IceKing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1", + "Emissive2", + "Emissive3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_134_Snowman": { + "templateId": "AthenaPickaxe:Pickaxe_ID_134_Snowman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_135_SnowNinja": { + "templateId": "AthenaPickaxe:Pickaxe_ID_135_SnowNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_136_Math": { + "templateId": "AthenaPickaxe:Pickaxe_ID_136_Math", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_137_NutCracker": { + "templateId": "AthenaPickaxe:Pickaxe_ID_137_NutCracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_138_Gnome": { + "templateId": "AthenaPickaxe:Pickaxe_ID_138_Gnome", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_139_Gingerbread": { + "templateId": "AthenaPickaxe:Pickaxe_ID_139_Gingerbread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_140_StreetGoth": { + "templateId": "AthenaPickaxe:Pickaxe_ID_140_StreetGoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_141_Krampus": { + "templateId": "AthenaPickaxe:Pickaxe_ID_141_Krampus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_142_TeriyakiFish": { + "templateId": "AthenaPickaxe:Pickaxe_ID_142_TeriyakiFish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_143_FlintlockWinter": { + "templateId": "AthenaPickaxe:Pickaxe_ID_143_FlintlockWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_144_Angel": { + "templateId": "AthenaPickaxe:Pickaxe_ID_144_Angel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_145_IceMaiden": { + "templateId": "AthenaPickaxe:Pickaxe_ID_145_IceMaiden", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_146_MilitaryFashion": { + "templateId": "AthenaPickaxe:Pickaxe_ID_146_MilitaryFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_147_TechOps": { + "templateId": "AthenaPickaxe:Pickaxe_ID_147_TechOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_148_Barbarian": { + "templateId": "AthenaPickaxe:Pickaxe_ID_148_Barbarian", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_149_WavyMan": { + "templateId": "AthenaPickaxe:Pickaxe_ID_149_WavyMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_150_IceQueen": { + "templateId": "AthenaPickaxe:Pickaxe_ID_150_IceQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1", + "Emissive2", + "Emissive3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_151_AlienFishhead": { + "templateId": "AthenaPickaxe:Pickaxe_ID_151_AlienFishhead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_152_DragonMask": { + "templateId": "AthenaPickaxe:Pickaxe_ID_152_DragonMask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_153_RoseLeader": { + "templateId": "AthenaPickaxe:Pickaxe_ID_153_RoseLeader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_154_Squishy": { + "templateId": "AthenaPickaxe:Pickaxe_ID_154_Squishy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_155_ValentinesFrozen": { + "templateId": "AthenaPickaxe:Pickaxe_ID_155_ValentinesFrozen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_156_RavenQuillFrozen": { + "templateId": "AthenaPickaxe:Pickaxe_ID_156_RavenQuillFrozen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_157_Dumpling": { + "templateId": "AthenaPickaxe:Pickaxe_ID_157_Dumpling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_158_FuzzyBear": { + "templateId": "AthenaPickaxe:Pickaxe_ID_158_FuzzyBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_159_RobotTrouble": { + "templateId": "AthenaPickaxe:Pickaxe_ID_159_RobotTrouble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_160_IceCream": { + "templateId": "AthenaPickaxe:Pickaxe_ID_160_IceCream", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_161_LoveLlama": { + "templateId": "AthenaPickaxe:Pickaxe_ID_161_LoveLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_162_SkullBrite": { + "templateId": "AthenaPickaxe:Pickaxe_ID_162_SkullBrite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_163_PirateOctopus": { + "templateId": "AthenaPickaxe:Pickaxe_ID_163_PirateOctopus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_164_DragonNinja": { + "templateId": "AthenaPickaxe:Pickaxe_ID_164_DragonNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Emissive", + "active": "Emissive1", + "owned": [ + "Emissive1", + "Emissive2", + "Emissive3", + "Emissive4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_165_MasterKey": { + "templateId": "AthenaPickaxe:Pickaxe_ID_165_MasterKey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_166_Shiny": { + "templateId": "AthenaPickaxe:Pickaxe_ID_166_Shiny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_167_Medusa": { + "templateId": "AthenaPickaxe:Pickaxe_ID_167_Medusa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_168_Bandolier": { + "templateId": "AthenaPickaxe:Pickaxe_ID_168_Bandolier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_169_Farmer": { + "templateId": "AthenaPickaxe:Pickaxe_ID_169_Farmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_170_Aztec": { + "templateId": "AthenaPickaxe:Pickaxe_ID_170_Aztec", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_171_OrangeCamo": { + "templateId": "AthenaPickaxe:Pickaxe_ID_171_OrangeCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_172_BandageNinja": { + "templateId": "AthenaPickaxe:Pickaxe_ID_172_BandageNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_173_SciOps": { + "templateId": "AthenaPickaxe:Pickaxe_ID_173_SciOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_174_LuckyRider": { + "templateId": "AthenaPickaxe:Pickaxe_ID_174_LuckyRider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_175_Tropical": { + "templateId": "AthenaPickaxe:Pickaxe_ID_175_Tropical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_176_DevilRock": { + "templateId": "AthenaPickaxe:Pickaxe_ID_176_DevilRock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_177_EvilSuit": { + "templateId": "AthenaPickaxe:Pickaxe_ID_177_EvilSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_178_SpeedyMidnight": { + "templateId": "AthenaPickaxe:Pickaxe_ID_178_SpeedyMidnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_179_StarWand": { + "templateId": "AthenaPickaxe:Pickaxe_ID_179_StarWand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_180_TriStar": { + "templateId": "AthenaPickaxe:Pickaxe_ID_180_TriStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_181_Log": { + "templateId": "AthenaPickaxe:Pickaxe_ID_181_Log", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_182_PirateWheel": { + "templateId": "AthenaPickaxe:Pickaxe_ID_182_PirateWheel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_183_BaseballBat2018": { + "templateId": "AthenaPickaxe:Pickaxe_ID_183_BaseballBat2018", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_184_DarkShaman": { + "templateId": "AthenaPickaxe:Pickaxe_ID_184_DarkShaman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_185_BadassCowboyCactus": { + "templateId": "AthenaPickaxe:Pickaxe_ID_185_BadassCowboyCactus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_186_DemonStone": { + "templateId": "AthenaPickaxe:Pickaxe_ID_186_DemonStone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_187_FurnaceFace": { + "templateId": "AthenaPickaxe:Pickaxe_ID_187_FurnaceFace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_188_StreetAssassin": { + "templateId": "AthenaPickaxe:Pickaxe_ID_188_StreetAssassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_189_StreetOpsStealth": { + "templateId": "AthenaPickaxe:Pickaxe_ID_189_StreetOpsStealth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_190_GolfClub": { + "templateId": "AthenaPickaxe:Pickaxe_ID_190_GolfClub", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_191_Banana": { + "templateId": "AthenaPickaxe:Pickaxe_ID_191_Banana", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_192_PalmTree": { + "templateId": "AthenaPickaxe:Pickaxe_ID_192_PalmTree", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_193_HotDog": { + "templateId": "AthenaPickaxe:Pickaxe_ID_193_HotDog", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_194_TheBomb": { + "templateId": "AthenaPickaxe:Pickaxe_ID_194_TheBomb", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_195_SpaceBunny": { + "templateId": "AthenaPickaxe:Pickaxe_ID_195_SpaceBunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_196_EvilBunny": { + "templateId": "AthenaPickaxe:Pickaxe_ID_196_EvilBunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_197_HoppityHeist": { + "templateId": "AthenaPickaxe:Pickaxe_ID_197_HoppityHeist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_198_BountyBunny": { + "templateId": "AthenaPickaxe:Pickaxe_ID_198_BountyBunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_199_ShinyHammer": { + "templateId": "AthenaPickaxe:Pickaxe_ID_199_ShinyHammer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_200_MoonlightAssassin": { + "templateId": "AthenaPickaxe:Pickaxe_ID_200_MoonlightAssassin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_201_Swashbuckler": { + "templateId": "AthenaPickaxe:Pickaxe_ID_201_Swashbuckler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_202_AshtonBoardwalk": { + "templateId": "AthenaPickaxe:Pickaxe_ID_202_AshtonBoardwalk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_203_AshtonSaltLake": { + "templateId": "AthenaPickaxe:Pickaxe_ID_203_AshtonSaltLake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_204_Miner": { + "templateId": "AthenaPickaxe:Pickaxe_ID_204_Miner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_205_StrawberryPilot": { + "templateId": "AthenaPickaxe:Pickaxe_ID_205_StrawberryPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_206_StrawberryPilot_1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_206_StrawberryPilot_1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_207_BountyHunter": { + "templateId": "AthenaPickaxe:Pickaxe_ID_207_BountyHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_208_Masako": { + "templateId": "AthenaPickaxe:Pickaxe_ID_208_Masako", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_209_BattleSuit": { + "templateId": "AthenaPickaxe:Pickaxe_ID_209_BattleSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_210_BunkerMan": { + "templateId": "AthenaPickaxe:Pickaxe_ID_210_BunkerMan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_211_BunkerMan_1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_211_BunkerMan_1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_212_CyberScavenger": { + "templateId": "AthenaPickaxe:Pickaxe_ID_212_CyberScavenger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_213_AssassinSuitSledgehammer": { + "templateId": "AthenaPickaxe:Pickaxe_ID_213_AssassinSuitSledgehammer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_214_Geisha": { + "templateId": "AthenaPickaxe:Pickaxe_ID_214_Geisha", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_215_Pug": { + "templateId": "AthenaPickaxe:Pickaxe_ID_215_Pug", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_216_DemonHunter1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_216_DemonHunter1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_217_UrbanScavenger1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_217_UrbanScavenger1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_218_StormSoldier": { + "templateId": "AthenaPickaxe:Pickaxe_ID_218_StormSoldier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_219_BandageNinja1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_219_BandageNinja1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_220_ForkKnife1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_220_ForkKnife1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_221_SkullBriteEclipse": { + "templateId": "AthenaPickaxe:Pickaxe_ID_221_SkullBriteEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_222_Banner": { + "templateId": "AthenaPickaxe:Pickaxe_ID_222_Banner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_223_Jellyfish": { + "templateId": "AthenaPickaxe:Pickaxe_ID_223_Jellyfish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_224_Butterfly": { + "templateId": "AthenaPickaxe:Pickaxe_ID_224_Butterfly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_225_Caterpillar": { + "templateId": "AthenaPickaxe:Pickaxe_ID_225_Caterpillar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_226_CyberFuBlade": { + "templateId": "AthenaPickaxe:Pickaxe_ID_226_CyberFuBlade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_227_FemaleGlowBro": { + "templateId": "AthenaPickaxe:Pickaxe_ID_227_FemaleGlowBro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_228_MaleGlowBro": { + "templateId": "AthenaPickaxe:Pickaxe_ID_228_MaleGlowBro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_229_TechMage": { + "templateId": "AthenaPickaxe:Pickaxe_ID_229_TechMage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_230_Drift1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_230_Drift1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_231_Flamingo2": { + "templateId": "AthenaPickaxe:Pickaxe_ID_231_Flamingo2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_232_Grillin1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_232_Grillin1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_233_Birthday2019": { + "templateId": "AthenaPickaxe:Pickaxe_ID_233_Birthday2019", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_234_CyberKarate": { + "templateId": "AthenaPickaxe:Pickaxe_ID_234_CyberKarate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_235_Lasagna": { + "templateId": "AthenaPickaxe:Pickaxe_ID_235_Lasagna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_236_Multibot1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_236_Multibot1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_237_Warpaint": { + "templateId": "AthenaPickaxe:Pickaxe_ID_237_Warpaint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_238_Bubblegum": { + "templateId": "AthenaPickaxe:Pickaxe_ID_238_Bubblegum", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_239_PizzaPitPJ1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_239_PizzaPitPJ1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_240_GraffitiRemix1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_240_GraffitiRemix1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_241_KnightRemix": { + "templateId": "AthenaPickaxe:Pickaxe_ID_241_KnightRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_242_SparkleRemix": { + "templateId": "AthenaPickaxe:Pickaxe_ID_242_SparkleRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_243_DJRemix": { + "templateId": "AthenaPickaxe:Pickaxe_ID_243_DJRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_244_RustRemix1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_244_RustRemix1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_245_VoyagerRemix1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_245_VoyagerRemix1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_246_BlueBadass1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_246_BlueBadass1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_247_BoneWasp": { + "templateId": "AthenaPickaxe:Pickaxe_ID_247_BoneWasp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_248_MechPilot": { + "templateId": "AthenaPickaxe:Pickaxe_ID_248_MechPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_249_Squishy1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_249_Squishy1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_250_Lopex": { + "templateId": "AthenaPickaxe:Pickaxe_ID_250_Lopex", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_251_MascotMilitiaBurger": { + "templateId": "AthenaPickaxe:Pickaxe_ID_251_MascotMilitiaBurger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_252_MascotMilitiaTomato": { + "templateId": "AthenaPickaxe:Pickaxe_ID_252_MascotMilitiaTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_253_StarWalker": { + "templateId": "AthenaPickaxe:Pickaxe_ID_253_StarWalker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_254_Syko": { + "templateId": "AthenaPickaxe:Pickaxe_ID_254_Syko", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_255_WiseMaster": { + "templateId": "AthenaPickaxe:Pickaxe_ID_255_WiseMaster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_256_TechOpsBlue": { + "templateId": "AthenaPickaxe:Pickaxe_ID_256_TechOpsBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_257_FrostMystery1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_257_FrostMystery1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_258_RockerPunkCube1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_258_RockerPunkCube1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_259_CupidFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_259_CupidFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_260_AngelEclipse1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_260_AngelEclipse1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_261_DarkEagleFire1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_261_DarkEagleFire1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_262_FutureBikerWhite": { + "templateId": "AthenaPickaxe:Pickaxe_ID_262_FutureBikerWhite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_263_JonesyCube": { + "templateId": "AthenaPickaxe:Pickaxe_ID_263_JonesyCube", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_264_LemonLime1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_264_LemonLime1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_265_BarbequeLarry1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_265_BarbequeLarry1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_266_PaddedArmor": { + "templateId": "AthenaPickaxe:Pickaxe_ID_266_PaddedArmor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_267_RaptorBlackOps": { + "templateId": "AthenaPickaxe:Pickaxe_ID_267_RaptorBlackOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_268_ToxicKitty1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_268_ToxicKitty1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_269_WWIIPilotSciFi": { + "templateId": "AthenaPickaxe:Pickaxe_ID_269_WWIIPilotSciFi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_270_Jumpstart": { + "templateId": "AthenaPickaxe:Pickaxe_ID_270_Jumpstart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_271_Punchy": { + "templateId": "AthenaPickaxe:Pickaxe_ID_271_Punchy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_272_SleepyTime": { + "templateId": "AthenaPickaxe:Pickaxe_ID_272_SleepyTime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_273_StreetFashionRed": { + "templateId": "AthenaPickaxe:Pickaxe_ID_273_StreetFashionRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_274_StreetUrchin": { + "templateId": "AthenaPickaxe:Pickaxe_ID_274_StreetUrchin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_275_Traveler": { + "templateId": "AthenaPickaxe:Pickaxe_ID_275_Traveler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_276_BlackMondayFemale1H_1V4HE": { + "templateId": "AthenaPickaxe:Pickaxe_ID_276_BlackMondayFemale1H_1V4HE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_277_BlackMondayMale_5TLSD": { + "templateId": "AthenaPickaxe:Pickaxe_ID_277_BlackMondayMale_5TLSD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_278_BrightGunnerRemix1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_278_BrightGunnerRemix1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_279_MaleLlamaHeroMilitia": { + "templateId": "AthenaPickaxe:Pickaxe_ID_279_MaleLlamaHeroMilitia", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_280_MascotMilitiaCuddle1h": { + "templateId": "AthenaPickaxe:Pickaxe_ID_280_MascotMilitiaCuddle1h", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_281_BulletBlueFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_281_BulletBlueFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_282_CODSquadPlaidFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_282_CODSquadPlaidFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_283_CODSquadPlaidMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_283_CODSquadPlaidMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_284_CrazyEight1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_284_CrazyEight1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_285_CuddleTeamDark": { + "templateId": "AthenaPickaxe:Pickaxe_ID_285_CuddleTeamDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_286_FishermanFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_286_FishermanFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_287_RockClimber1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_287_RockClimber1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_288_RebirthMedicFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_288_RebirthMedicFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage0", + "owned": [ + "Stage0", + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_289_RedRidingRemixFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_289_RedRidingRemixFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_290_Sheath1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_290_Sheath1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_291_SlurpMonster": { + "templateId": "AthenaPickaxe:Pickaxe_ID_291_SlurpMonster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_292_TacticalFisherman1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_292_TacticalFisherman1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_293_Viper": { + "templateId": "AthenaPickaxe:Pickaxe_ID_293_Viper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_294_CandyCane": { + "templateId": "AthenaPickaxe:Pickaxe_ID_294_CandyCane", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_295_DarkDino1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_295_DarkDino1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_296_DevilRockMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_296_DevilRockMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_297_FlowerSkeletonFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_297_FlowerSkeletonFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_298_Freak1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_298_Freak1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_299_GoatRobe": { + "templateId": "AthenaPickaxe:Pickaxe_ID_299_GoatRobe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_300_Mastermind": { + "templateId": "AthenaPickaxe:Pickaxe_ID_300_Mastermind", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_301_ModernWitch": { + "templateId": "AthenaPickaxe:Pickaxe_ID_301_ModernWitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_302_TourBus1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_302_TourBus1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_303_Nosh": { + "templateId": "AthenaPickaxe:Pickaxe_ID_303_Nosh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_304_NoshHunter1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_304_NoshHunter1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_305_Phantom1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_305_Phantom1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_306_PunkDevil": { + "templateId": "AthenaPickaxe:Pickaxe_ID_306_PunkDevil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_307_SkeletonHunter": { + "templateId": "AthenaPickaxe:Pickaxe_ID_307_SkeletonHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_308_SpookyNeonMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_308_SpookyNeonMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_309_Storm": { + "templateId": "AthenaPickaxe:Pickaxe_ID_309_Storm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_310_SubmarinerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_310_SubmarinerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_311_JetSkiFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_311_JetSkiFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_312_JetSkiMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_312_JetSkiMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_313_ShiitakeShaolinMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_313_ShiitakeShaolinMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_314_WeepingWoodsMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_314_WeepingWoodsMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_315_BaneFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_315_BaneFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_316_BigChuggus": { + "templateId": "AthenaPickaxe:Pickaxe_ID_316_BigChuggus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_317_BoneSnake1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_317_BoneSnake1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_318_BulletBlueMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_318_BulletBlueMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_319_CavalryBanditFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_319_CavalryBanditFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_320_ForestDwellerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_320_ForestDwellerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_321_ForestQueenFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_321_ForestQueenFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_322_FrogmanMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_322_FrogmanMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_323_PinkTrooperMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_323_PinkTrooperMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_324_NorthPole": { + "templateId": "AthenaPickaxe:Pickaxe_ID_324_NorthPole", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_325_FestivePugMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_325_FestivePugMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_326_GalileoFerry1H_F5IUA": { + "templateId": "AthenaPickaxe:Pickaxe_ID_326_GalileoFerry1H_F5IUA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_327_GalileoKayak_50NFG": { + "templateId": "AthenaPickaxe:Pickaxe_ID_327_GalileoKayak_50NFG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_328_GalileoRocket_SNC0L": { + "templateId": "AthenaPickaxe:Pickaxe_ID_328_GalileoRocket_SNC0L", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_329_GingerbreadCookie1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_329_GingerbreadCookie1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_330_HolidayTimeMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_330_HolidayTimeMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_331_KaneMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_331_KaneMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_332_MintMiner": { + "templateId": "AthenaPickaxe:Pickaxe_ID_332_MintMiner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_333_MsAlpineFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_333_MsAlpineFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_334_SweaterWeatherMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_334_SweaterWeatherMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_335_TacticalBearMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_335_TacticalBearMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_336_TNTinaFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_336_TNTinaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_337_WingedFuryFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_337_WingedFuryFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_338_BandageNinjaBlue1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_338_BandageNinjaBlue1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_339_CODSquadHoodie": { + "templateId": "AthenaPickaxe:Pickaxe_ID_339_CODSquadHoodie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_340_DragonRacerFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_340_DragonRacerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_341_FrogmanFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_341_FrogmanFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_342_GummiMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_342_GummiMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_343_HoodieBanditFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_343_HoodieBanditFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_344_MartialArtistMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_344_MartialArtistMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_345_ModernMilitaryEclipse": { + "templateId": "AthenaPickaxe:Pickaxe_ID_345_ModernMilitaryEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_346_NeonGraffiti": { + "templateId": "AthenaPickaxe:Pickaxe_ID_346_NeonGraffiti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_348_SharkAttackMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_348_SharkAttackMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_349_StreetRatMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_349_StreetRatMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_350_TheGoldenSkeleton": { + "templateId": "AthenaPickaxe:Pickaxe_ID_350_TheGoldenSkeleton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_351_TigerFashionFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_351_TigerFashionFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_352_VirtualShadowMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_352_VirtualShadowMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_353_AgentAce1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_353_AgentAce1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_354_AgentRogue1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_354_AgentRogue1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_355_BuffCatMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_355_BuffCatMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_356_CandyMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_356_CandyMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_357_CatBurglarMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_357_CatBurglarMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_358_CuteDuoMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_358_CuteDuoMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_359_CycloneMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_359_CycloneMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_360_DesertOpsCamoFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_360_DesertOpsCamoFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_361_HenchmanMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_361_HenchmanMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_362_LollipopFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_362_LollipopFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_363_LollipopTricksterFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_363_LollipopTricksterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_364_PhotographerFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_364_PhotographerFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_365_SpyTechHackerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_365_SpyTechHackerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_366_SpyMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_366_SpyMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_367_WinterHunter": { + "templateId": "AthenaPickaxe:Pickaxe_ID_367_WinterHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_368_BananaAgent": { + "templateId": "AthenaPickaxe:Pickaxe_ID_368_BananaAgent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_369_AnarchyAcresFarmer": { + "templateId": "AthenaPickaxe:Pickaxe_ID_369_AnarchyAcresFarmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_370_BlueFlames": { + "templateId": "AthenaPickaxe:Pickaxe_ID_370_BlueFlames", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_371_PineappleBandit1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_371_PineappleBandit1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_372_StreetFashionEmeraldFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_372_StreetFashionEmeraldFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_373_TeriyakiFishAssassin1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_373_TeriyakiFishAssassin1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_374_TwinDarkFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_374_TwinDarkFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_375_AgentXFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_375_AgentXFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_376_FNCS": { + "templateId": "AthenaPickaxe:Pickaxe_ID_376_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_377_SpyTechFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_377_SpyTechFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_378_SpyTechMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_378_SpyTechMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_379_TailorMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_379_TailorMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_380_TargetPracticeMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_380_TargetPracticeMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_381_CardboardCrew": { + "templateId": "AthenaPickaxe:Pickaxe_ID_381_CardboardCrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_382_Donut1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_382_Donut1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_383_HandymanMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_383_HandymanMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_384_InformerMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_384_InformerMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_385_BadEggMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_385_BadEggMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_386_CometMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_386_CometMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_387_DonutCup": { + "templateId": "AthenaPickaxe:Pickaxe_ID_387_DonutCup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_388_DonutDish1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_388_DonutDish1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_389_DonutPlate1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_389_DonutPlate1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_390_FemaleHitman1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_390_FemaleHitman1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_391_GraffitiAssassinFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_391_GraffitiAssassinFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_392_Hostile": { + "templateId": "AthenaPickaxe:Pickaxe_ID_392_Hostile", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_393_NeonCatSpyFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_393_NeonCatSpyFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_394_RaveNinjaFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_394_RaveNinjaFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_395_SplinterMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_395_SplinterMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_396_RapVillainessFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_396_RapVillainessFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_397_TechExplorerMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_397_TechExplorerMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_398_WildCatFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_398_WildCatFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_399_LoofahFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_399_LoofahFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_400_AquaJacketMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_400_AquaJacketMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_401_BeaconMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_401_BeaconMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_402_BlackKnightFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_402_BlackKnightFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_403_CavalryBanditShadow1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_403_CavalryBanditShadow1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_404_GatorMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_404_GatorMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_406_HardcoreSportzFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_406_HardcoreSportzFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_407_HeistShadow": { + "templateId": "AthenaPickaxe:Pickaxe_ID_407_HeistShadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_408_MastermindShadow": { + "templateId": "AthenaPickaxe:Pickaxe_ID_408_MastermindShadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_409_MechanicalEngineer1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_409_MechanicalEngineer1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_410_OceanRiderFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_410_OceanRiderFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_411_PartyGoldMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_411_PartyGoldMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_412_ProfessorPupMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_412_ProfessorPupMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_413_PythonFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_413_PythonFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_414_RacerZero": { + "templateId": "AthenaPickaxe:Pickaxe_ID_414_RacerZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_415_SandcastleMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_415_SandcastleMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_416_SpaceWandererFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_416_SpaceWandererFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_417_TacticalScubaMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_417_TacticalScubaMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_418_CupidDarkFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_418_CupidDarkFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_419_JonesyVagabondMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_419_JonesyVagabondMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_420_CandyAppleSour_JXBZA": { + "templateId": "AthenaPickaxe:Pickaxe_ID_420_CandyAppleSour_JXBZA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_421_CandySummerFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_421_CandySummerFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_422_GolfSummerFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_422_GolfSummerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_423_GreenJacketFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_423_GreenJacketFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_424_HeartBreakerFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_424_HeartBreakerFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_425_MsWhipFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_425_MsWhipFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_426_PunkDevilSummerFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_426_PunkDevilSummerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_427_Seaweed1H_CZ9HA": { + "templateId": "AthenaPickaxe:Pickaxe_ID_427_Seaweed1H_CZ9HA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_428_SharkSuitMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_428_SharkSuitMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_429_CelestialFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_429_CelestialFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_430_DirtyDocksFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_430_DirtyDocksFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_431_DirtyDocksMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_431_DirtyDocksMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_432_Dummeez": { + "templateId": "AthenaPickaxe:Pickaxe_ID_432_Dummeez", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_433_LawnGnome": { + "templateId": "AthenaPickaxe:Pickaxe_ID_433_LawnGnome", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_434_MilitaryFashionSummerMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_434_MilitaryFashionSummerMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_435_TeriyakiAtlantisMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_435_TeriyakiAtlantisMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_436_AnglerFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_436_AnglerFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_438_AntiLlamaFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_438_AntiLlamaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_439_AxlMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_439_AxlMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_440_FloatillaCaptainMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_440_FloatillaCaptainMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_441_IslanderFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_441_IslanderFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_442_LadyAtlantisFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_442_LadyAtlantisFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_443_MaskedDancerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_443_MaskedDancerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_444_MultibotStealth1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_444_MultibotStealth1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_445_RaiderPinkFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_445_RaiderPinkFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_446_SeaSalt": { + "templateId": "AthenaPickaxe:Pickaxe_ID_446_SeaSalt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_447_SpaceWandererMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_447_SpaceWandererMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_448_SportsFashionFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_448_SportsFashionFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_449_TripleScoopFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_449_TripleScoopFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_450_Valet": { + "templateId": "AthenaPickaxe:Pickaxe_ID_450_Valet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_451_DarkEaglePurple": { + "templateId": "AthenaPickaxe:Pickaxe_ID_451_DarkEaglePurple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_452_DarkNinjaPurple1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_452_DarkNinjaPurple1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_453_HightowerDate": { + "templateId": "AthenaPickaxe:Pickaxe_ID_453_HightowerDate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_454_HightowerGrapeMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_454_HightowerGrapeMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_455_HightowerHoneydew1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_455_HightowerHoneydew1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_456_HightowerMango1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_456_HightowerMango1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_457_HightowerSquash1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_457_HightowerSquash1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_458_HightowerTapas1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_458_HightowerTapas1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_459_HightowerTomato1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_459_HightowerTomato1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_460_HightowerWasabi1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_460_HightowerWasabi1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_461_SkullBriteCube": { + "templateId": "AthenaPickaxe:Pickaxe_ID_461_SkullBriteCube", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_462_Soy_4CW52": { + "templateId": "AthenaPickaxe:Pickaxe_ID_462_Soy_4CW52", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_463_Elastic1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_463_Elastic1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_464_LongShortsMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_464_LongShortsMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_465_BackspinMale1H_R40E7": { + "templateId": "AthenaPickaxe:Pickaxe_ID_465_BackspinMale1H_R40E7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_466_CavalryFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_466_CavalryFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_467_CloakedAssassinFemale1H_XGC2B": { + "templateId": "AthenaPickaxe:Pickaxe_ID_467_CloakedAssassinFemale1H_XGC2B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_468_KevinCoutureMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_468_KevinCoutureMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_469_MythFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_469_MythFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_470_MythMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_470_MythMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_471_StreetFashionGarnetFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_471_StreetFashionGarnetFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_472_TeriyakiFishPrincessFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_472_TeriyakiFishPrincessFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_473_VampireCasualFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_473_VampireCasualFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_474_BlackWidowJacketFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_474_BlackWidowJacketFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_475_ChOnePickaxe": { + "templateId": "AthenaPickaxe:Pickaxe_ID_475_ChOnePickaxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_476_DarkBomberSummerFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_476_DarkBomberSummerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_477_DeliSandwichMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_477_DeliSandwichMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_478_FlowerSkeletonMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_478_FlowerSkeletonMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_479_LunchBox1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_479_LunchBox1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_480_PoisonFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_480_PoisonFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_481_SpookyNeonFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_481_SpookyNeonFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_482_BabaYagaFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_482_BabaYagaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_483_DurrburgerSkull1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_483_DurrburgerSkull1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_484_FamineMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_484_FamineMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_485_FrankieFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_485_FrankieFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_486_JekyllMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_486_JekyllMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_487_PumpkinPunk": { + "templateId": "AthenaPickaxe:Pickaxe_ID_487_PumpkinPunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_488_PumpkinSpice1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_488_PumpkinSpice1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_489_PumpkinSpiceHammer": { + "templateId": "AthenaPickaxe:Pickaxe_ID_489_PumpkinSpiceHammer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_490_TeriyakiFishSkull1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_490_TeriyakiFishSkull1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_491_YorkMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_491_YorkMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_492_EmbersMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_492_EmbersMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_493_NauticalPajamasMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_493_NauticalPajamasMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_494_NauticalPajamasNightMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_494_NauticalPajamasNightMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_495_NauticalPajamasUnderwaterMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_495_NauticalPajamasUnderwaterMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_496_ParcelGoldMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_496_ParcelGoldMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_497_ParcelPetalFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_497_ParcelPetalFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_498_ParcelPrankHammerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_498_ParcelPrankHammerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_499_ParcelPrankMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_499_ParcelPrankMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_500_TapDanceFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_500_TapDanceFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_501_EternityFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_501_EternityFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_502_PiemanMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_502_PiemanMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_503_RaiderSilverFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_503_RaiderSilverFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_504_VertigoMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_504_VertigoMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_505_AncientGladiatorMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_505_AncientGladiatorMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_506_FlapjackWranglerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_506_FlapjackWranglerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_507_FutureSamuraiMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_507_FutureSamuraiMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_508_HistorianMale_6BQSW": { + "templateId": "AthenaPickaxe:Pickaxe_ID_508_HistorianMale_6BQSW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_509_IceClaw1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_509_IceClaw1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_510_JupiterMale_G035V": { + "templateId": "AthenaPickaxe:Pickaxe_ID_510_JupiterMale_G035V", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_511_LexaFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_511_LexaFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_512_RenegadeRaiderHolidayFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_512_RenegadeRaiderHolidayFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_513_ShapeshifterFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_513_ShapeshifterFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_514_SnowmanFashion": { + "templateId": "AthenaPickaxe:Pickaxe_ID_514_SnowmanFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_515_SpaceFighterFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_515_SpaceFighterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle0", + "owned": [ + "Particle0", + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_516_TeriyakiFishElf1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_516_TeriyakiFishElf1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_517_CherryFemale_Z0S97": { + "templateId": "AthenaPickaxe:Pickaxe_ID_517_CherryFemale_Z0S97", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_518_CupidWinterFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_518_CupidWinterFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_519_DriftWinterMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_519_DriftWinterMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_520_FancyCandyMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_520_FancyCandyMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_521_FestiveMoose": { + "templateId": "AthenaPickaxe:Pickaxe_ID_521_FestiveMoose", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_522_FrostbyteMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_522_FrostbyteMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_523_HolidayLightsMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_523_HolidayLightsMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_524_Neon": { + "templateId": "AthenaPickaxe:Pickaxe_ID_524_Neon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_525_PlumRetro1H_3FBV3": { + "templateId": "AthenaPickaxe:Pickaxe_ID_525_PlumRetro1H_3FBV3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_526_SnowboarderMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_526_SnowboarderMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_527_Stars": { + "templateId": "AthenaPickaxe:Pickaxe_ID_527_Stars", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_528_StreetFashionHolidayFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_528_StreetFashionHolidayFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_529_TiptoeMale_MQ5UM": { + "templateId": "AthenaPickaxe:Pickaxe_ID_529_TiptoeMale_MQ5UM", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_530_TiramisuMale1H_R94F2": { + "templateId": "AthenaPickaxe:Pickaxe_ID_530_TiramisuMale1H_R94F2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_531_Turkey1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_531_Turkey1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_532_WombatFemale_CWE2D": { + "templateId": "AthenaPickaxe:Pickaxe_ID_532_WombatFemale_CWE2D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_533_WombatMale_L7QPQ": { + "templateId": "AthenaPickaxe:Pickaxe_ID_533_WombatMale_L7QPQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_534_CombatDollFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_534_CombatDollFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_535_ConvoyTarantulaMale_GQ82N": { + "templateId": "AthenaPickaxe:Pickaxe_ID_535_ConvoyTarantulaMale_GQ82N", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_538_GrilledCheeseMale_Z7YMW": { + "templateId": "AthenaPickaxe:Pickaxe_ID_538_GrilledCheeseMale_Z7YMW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_539_LexaMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_539_LexaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_540_NightmareMale_7OSOH": { + "templateId": "AthenaPickaxe:Pickaxe_ID_540_NightmareMale_7OSOH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_541_StreetFashionEclipseFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_541_StreetFashionEclipseFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_542_TyphoonFemale1H_CTEVQ": { + "templateId": "AthenaPickaxe:Pickaxe_ID_542_TyphoonFemale1H_CTEVQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_543_TyphoonRobotMale_S4B4M": { + "templateId": "AthenaPickaxe:Pickaxe_ID_543_TyphoonRobotMale_S4B4M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_544_FoxWarriorFemale_BYVM8": { + "templateId": "AthenaPickaxe:Pickaxe_ID_544_FoxWarriorFemale_BYVM8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_545_CrushFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_545_CrushFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_546_MainframeMale_XW9S6": { + "templateId": "AthenaPickaxe:Pickaxe_ID_546_MainframeMale_XW9S6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_547_StreetCuddlesMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_547_StreetCuddlesMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_548_TarMale_8X3BY": { + "templateId": "AthenaPickaxe:Pickaxe_ID_548_TarMale_8X3BY", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_549_AncientGladiatorFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_549_AncientGladiatorFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_550_CasualBomberLightFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_550_CasualBomberLightFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_551_KeplerFemale_AOYI5": { + "templateId": "AthenaPickaxe:Pickaxe_ID_551_KeplerFemale_AOYI5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_552_LlamaHeroWinterMale_S9MDN": { + "templateId": "AthenaPickaxe:Pickaxe_ID_552_LlamaHeroWinterMale_S9MDN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_553_SkirmishFemale_J2JXX": { + "templateId": "AthenaPickaxe:Pickaxe_ID_553_SkirmishFemale_J2JXX", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_554_SkirmishMale_ML78Q": { + "templateId": "AthenaPickaxe:Pickaxe_ID_554_SkirmishMale_ML78Q", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_555_BuilderMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_555_BuilderMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_556_CatBurglarFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_556_CatBurglarFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_557_LionSoldierMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_557_LionSoldierMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_558_SmallFryMale_YBD34": { + "templateId": "AthenaPickaxe:Pickaxe_ID_558_SmallFryMale_YBD34", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_559_SpaceWarriorMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_559_SpaceWarriorMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_560_TacticalWoodlandBlueMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_560_TacticalWoodlandBlueMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_561_AssembleR": { + "templateId": "AthenaPickaxe:Pickaxe_ID_561_AssembleR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_562_BananaLeader": { + "templateId": "AthenaPickaxe:Pickaxe_ID_562_BananaLeader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_563_ChickenWarriorMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_563_ChickenWarriorMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_564_CubeNinjaMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_564_CubeNinjaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_565_DarkMinionMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_565_DarkMinionMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_566_DinoHunterFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_566_DinoHunterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_567_NeonCatFashionFemale_FX9S5": { + "templateId": "AthenaPickaxe:Pickaxe_ID_567_NeonCatFashionFemale_FX9S5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_568_ObsidianFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_568_ObsidianFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_569_ScholarFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_569_ScholarFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_570_Temple": { + "templateId": "AthenaPickaxe:Pickaxe_ID_570_Temple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_571_TowerSentinelFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_571_TowerSentinelFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_572_BunnyFashionFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_572_BunnyFashionFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_573_HipHareMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_573_HipHareMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_574_SailorSquadLeaderFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_574_SailorSquadLeaderFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_575_SailorSquadRebelFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_575_SailorSquadRebelFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_576_SailorSquadRoseFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_576_SailorSquadRoseFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_577_TheGoldenSkeletonFemale1H_Y6VJG": { + "templateId": "AthenaPickaxe:Pickaxe_ID_577_TheGoldenSkeletonFemale1H_Y6VJG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_578_WickedDuckFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_578_WickedDuckFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_579_WickedDuckMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_579_WickedDuckMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_580_AccumulateMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_580_AccumulateMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_581_Alchemy_HKAS0": { + "templateId": "AthenaPickaxe:Pickaxe_ID_581_Alchemy_HKAS0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_585_TerrainManMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_585_TerrainManMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_586_ArmoredEngineerFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_586_ArmoredEngineerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_587_BicycleMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_587_BicycleMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_588_BuffCatComicMale_12ZAD": { + "templateId": "AthenaPickaxe:Pickaxe_ID_588_BuffCatComicMale_12ZAD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_589_CavernMale_9U0A8": { + "templateId": "AthenaPickaxe:Pickaxe_ID_589_CavernMale_9U0A8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_590_CraniumMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_590_CraniumMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_591_DinoCollectorFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_591_DinoCollectorFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_592_DurrburgerKnightMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_592_DurrburgerKnightMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_593_RaptorKnightMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_593_RaptorKnightMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_594_TacoKnightFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_594_TacoKnightFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_595_TacticalRedPunkFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_595_TacticalRedPunkFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_596_TomatoKnightMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_596_TomatoKnightMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_597_BroccoliMale_GMZ6W": { + "templateId": "AthenaPickaxe:Pickaxe_ID_597_BroccoliMale_GMZ6W", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_598_CavemanMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_598_CavemanMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_599_CavernFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_599_CavernFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_600_DarkElfFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_600_DarkElfFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_601_StoneViperFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_601_StoneViperFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_602_TaxiUpgradedMulticolorFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_602_TaxiUpgradedMulticolorFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_603_AssembleL": { + "templateId": "AthenaPickaxe:Pickaxe_ID_603_AssembleL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_604_DownpourMale_Z48CM": { + "templateId": "AthenaPickaxe:Pickaxe_ID_604_DownpourMale_Z48CM", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_605_GrimMale_8GT61": { + "templateId": "AthenaPickaxe:Pickaxe_ID_605_GrimMale_8GT61", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_606_ShrapnelFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_606_ShrapnelFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_607_SpaceCuddlesFemale_0ECBA": { + "templateId": "AthenaPickaxe:Pickaxe_ID_607_SpaceCuddlesFemale_0ECBA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle3", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_608_SpartanFutureFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_608_SpartanFutureFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_610_TowerSentinelMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_610_TowerSentinelMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_611_WastelandWarriorFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_611_WastelandWarriorFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_612_AntiqueMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_612_AntiqueMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_613_BelieverFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_613_BelieverFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_614_EmperorMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_614_EmperorMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_615_FauxMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_615_FauxMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_616_InnovatorFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_616_InnovatorFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_617_InvaderMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_617_InvaderMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_618_JonesyCattleMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_618_JonesyCattleMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_619_Rockstar_Female": { + "templateId": "AthenaPickaxe:Pickaxe_ID_619_Rockstar_Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_620_Ruckus": { + "templateId": "AthenaPickaxe:Pickaxe_ID_620_Ruckus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_621_CarabusMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_621_CarabusMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_622_CatBurglarSummerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_622_CatBurglarSummerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_623_CavernArmoredMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_623_CavernArmoredMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_624_FirecrackerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_624_FirecrackerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_625_HenchmanSummerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_625_HenchmanSummerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_626_JurassicArchaeologySummerFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_626_JurassicArchaeologySummerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_627_LinguiniMale_2ZOX0": { + "templateId": "AthenaPickaxe:Pickaxe_ID_627_LinguiniMale_2ZOX0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_628_MajestyMale_514VT": { + "templateId": "AthenaPickaxe:Pickaxe_ID_628_MajestyMale_514VT", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_629_MechanicalEngineerSummerFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_629_MechanicalEngineerSummerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_630_SlurpMonsterSummerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_630_SlurpMonsterSummerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_631_StreetFashionSummerFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_631_StreetFashionSummerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_632_SummerMarshmallowFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_632_SummerMarshmallowFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_633_BlueCheeseMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_633_BlueCheeseMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_634_BrightBomberMintFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_634_BrightBomberMintFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_635_BuffCatFanFemale_J642P": { + "templateId": "AthenaPickaxe:Pickaxe_ID_635_BuffCatFanFemale_J642P", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_636_DojoMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_636_DojoMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_637_Golf_Male": { + "templateId": "AthenaPickaxe:Pickaxe_ID_637_Golf_Male", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_638_MusicianFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_638_MusicianFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_639_PliantFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_639_PliantFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_640_PliantMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_640_PliantMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_641_TheGoldenSkeletonMintMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_641_TheGoldenSkeletonMintMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_642_TreasureHunterFashionMintFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_642_TreasureHunterFashionMintFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_643_AlienSummerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_643_AlienSummerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_644_BuffetFemale_TOH8A": { + "templateId": "AthenaPickaxe:Pickaxe_ID_644_BuffetFemale_TOH8A", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_645_QuarrelFemale_W3B7A": { + "templateId": "AthenaPickaxe:Pickaxe_ID_645_QuarrelFemale_W3B7A", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_646_QuarrelMale_PTOBI": { + "templateId": "AthenaPickaxe:Pickaxe_ID_646_QuarrelMale_PTOBI", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_647_SeesawSlipperMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_647_SeesawSlipperMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_648_StereoFemale_0DTZ9": { + "templateId": "AthenaPickaxe:Pickaxe_ID_648_StereoFemale_0DTZ9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_649_AntiquePalMale1H_GBT24": { + "templateId": "AthenaPickaxe:Pickaxe_ID_649_AntiquePalMale1H_GBT24", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_650_CelestialGlowFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_650_CelestialGlowFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_651_KeyboardMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_651_KeyboardMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_652_LarsMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_652_LarsMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_653_LavishMale1H_SWKJB": { + "templateId": "AthenaPickaxe:Pickaxe_ID_653_LavishMale1H_SWKJB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_654_MaskedWarriorSpringMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_654_MaskedWarriorSpringMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_655_MonarchFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_655_MonarchFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_656_NinjaWolfMale_7PTDP": { + "templateId": "AthenaPickaxe:Pickaxe_ID_656_NinjaWolfMale_7PTDP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_657_PolygonMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_657_PolygonMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_658_PolygonMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_658_PolygonMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_659_RuckusMini_O051M": { + "templateId": "AthenaPickaxe:Pickaxe_ID_659_RuckusMini_O051M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_660_TieDyeFashionFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_660_TieDyeFashionFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_661_VividMale1H_ZN6Q0": { + "templateId": "AthenaPickaxe:Pickaxe_ID_661_VividMale1H_ZN6Q0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_662_AlienFloraMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_662_AlienFloraMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_663_AngelDarkFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_663_AngelDarkFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_664_DragonfruitMale1H_4BIXL": { + "templateId": "AthenaPickaxe:Pickaxe_ID_664_DragonfruitMale1H_4BIXL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_665_BuffLlamaMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_665_BuffLlamaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle3", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_666_CerealBoxMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_666_CerealBoxMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_667_ClashMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_667_ClashMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_668_ClashVMale1H_5TA18": { + "templateId": "AthenaPickaxe:Pickaxe_ID_668_ClashVMale1H_5TA18", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_669_DivisionFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_669_DivisionFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_670_FNBirthdayMale_FQK1E": { + "templateId": "AthenaPickaxe:Pickaxe_ID_670_FNBirthdayMale_FQK1E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_671_GhostHunterFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_671_GhostHunterFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_672_PunkKoiFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_672_PunkKoiFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_673_SpaceChimpMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_673_SpaceChimpMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_674_TeriyakiFishToonMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_674_TeriyakiFishToonMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "JerseyColor", + "active": "001", + "owned": [ + "001", + "002", + "003", + "004", + "005", + "006", + "007", + "008", + "009", + "010", + "011", + "012", + "013", + "014", + "015", + "016", + "017", + "018", + "019", + "020", + "021", + "022" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_675_TextilePupMale_96JZF": { + "templateId": "AthenaPickaxe:Pickaxe_ID_675_TextilePupMale_96JZF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_676_CritterFrenzyMale_B21OE": { + "templateId": "AthenaPickaxe:Pickaxe_ID_676_CritterFrenzyMale_B21OE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_677_CritterCuddleMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_677_CritterCuddleMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_678_PsycheMale_81RMH": { + "templateId": "AthenaPickaxe:Pickaxe_ID_678_PsycheMale_81RMH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_679_RenegadeSkullFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_679_RenegadeSkullFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_680_TomcatMale_LOSMX": { + "templateId": "AthenaPickaxe:Pickaxe_ID_680_TomcatMale_LOSMX", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_681_WerewolfFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_681_WerewolfFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_682_BistroAstronautFemale_A3MD2": { + "templateId": "AthenaPickaxe:Pickaxe_ID_682_BistroAstronautFemale_A3MD2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_683_CritterManiacMale_S4I63": { + "templateId": "AthenaPickaxe:Pickaxe_ID_683_CritterManiacMale_S4I63", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_684_CubeQueenFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_684_CubeQueenFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_685_DisguiseBlackFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_685_DisguiseBlackFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat2", + "owned": [ + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_686_DriftHorrorMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_686_DriftHorrorMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_687_GiggleMale_YCQ4S": { + "templateId": "AthenaPickaxe:Pickaxe_ID_687_GiggleMale_YCQ4S", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_688_PinkEmoFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_688_PinkEmoFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_689_RavenQuillDesertMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_689_RavenQuillDesertMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_690_RelishFemale_DC74M": { + "templateId": "AthenaPickaxe:Pickaxe_ID_690_RelishFemale_DC74M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_691_RelishMale_FVCA7": { + "templateId": "AthenaPickaxe:Pickaxe_ID_691_RelishMale_FVCA7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_692_SnowJacketFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_692_SnowJacketFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_693_SunriseCastle1H_5XE1U": { + "templateId": "AthenaPickaxe:Pickaxe_ID_693_SunriseCastle1H_5XE1U", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_694_SunrisePalace1H_SDI6M": { + "templateId": "AthenaPickaxe:Pickaxe_ID_694_SunrisePalace1H_SDI6M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_695_SweetTeriyakiMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_695_SweetTeriyakiMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_696_Grasshopper_Male_24OGH": { + "templateId": "AthenaPickaxe:Pickaxe_ID_696_Grasshopper_Male_24OGH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_697_SAMFemale1H_RV6AN": { + "templateId": "AthenaPickaxe:Pickaxe_ID_697_SAMFemale1H_RV6AN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_698_SupersonicPink_8VM90": { + "templateId": "AthenaPickaxe:Pickaxe_ID_698_SupersonicPink_8VM90", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_699_UproarBraidsFemale_LY5GM": { + "templateId": "AthenaPickaxe:Pickaxe_ID_699_UproarBraidsFemale_LY5GM", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_700_ZombieElasticFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_700_ZombieElasticFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_701_CrazyEightTechMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_701_CrazyEightTechMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_702_GrandeurMale_6UV6L": { + "templateId": "AthenaPickaxe:Pickaxe_ID_702_GrandeurMale_6UV6L", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_703_HeadbandMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_703_HeadbandMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_704_HeadbandKMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_704_HeadbandKMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_705_HeadbandSMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_705_HeadbandSMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_706_HeadbandStandAloneMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_706_HeadbandStandAloneMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_707_NeonCatTechFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_707_NeonCatTechFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_708_NucleusMale_72W2J": { + "templateId": "AthenaPickaxe:Pickaxe_ID_708_NucleusMale_72W2J", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_709_PeelyTechMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_709_PeelyTechMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_710_AssembleKMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_710_AssembleKMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_711_DarkPitMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_711_DarkPitMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_712_ExoSuitFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_712_ExoSuitFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_713_GumballMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_713_GumballMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_714_IslandNomadFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_714_IslandNomadFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_715_LoneWolfMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_715_LoneWolfMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_716_MotorcyclistFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_716_MotorcyclistFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_717_NetworkFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_717_NetworkFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_718_ParallelComicMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_718_ParallelComicMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_719_RustyBoltFemale_0VJ7J": { + "templateId": "AthenaPickaxe:Pickaxe_ID_719_RustyBoltFemale_0VJ7J", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_720_RustyBoltMale_UZ5E5": { + "templateId": "AthenaPickaxe:Pickaxe_ID_720_RustyBoltMale_UZ5E5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_721_RustyBoltSliceMale_V3A4N": { + "templateId": "AthenaPickaxe:Pickaxe_ID_721_RustyBoltSliceMale_V3A4N", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_722_TurtleneckMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_722_TurtleneckMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_723_CatBurglarWinterMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_723_CatBurglarWinterMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_724_InnovatorFestiveFemale_EX2RM": { + "templateId": "AthenaPickaxe:Pickaxe_ID_724_InnovatorFestiveFemale_EX2RM", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_725_JurassicArchaeologyWinterFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_725_JurassicArchaeologyWinterFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_726_KittyWarriorMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_726_KittyWarriorMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_727_LateralFemale_D9XJG": { + "templateId": "AthenaPickaxe:Pickaxe_ID_727_LateralFemale_D9XJG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_728_OrbitTealMale_3NIST": { + "templateId": "AthenaPickaxe:Pickaxe_ID_728_OrbitTealMale_3NIST", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_729_PeppermintFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_729_PeppermintFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_730_RenegadeRaiderIceFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_730_RenegadeRaiderIceFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_731_ScholarFestiveFemale1h": { + "templateId": "AthenaPickaxe:Pickaxe_ID_731_ScholarFestiveFemale1h", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_732_ShovelMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_732_ShovelMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_733_SlitherFemale_M1YCL": { + "templateId": "AthenaPickaxe:Pickaxe_ID_733_SlitherFemale_M1YCL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_734_SlitherMale_762K0": { + "templateId": "AthenaPickaxe:Pickaxe_ID_734_SlitherMale_762K0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_735_FoeMale_2T3KB": { + "templateId": "AthenaPickaxe:Pickaxe_ID_735_FoeMale_2T3KB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_736_KeenFemale_3LR4C": { + "templateId": "AthenaPickaxe:Pickaxe_ID_736_KeenFemale_3LR4C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_737_KeenMale_07J9U": { + "templateId": "AthenaPickaxe:Pickaxe_ID_737_KeenMale_07J9U", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_738_PrimalFalconFemale_S72BI": { + "templateId": "AthenaPickaxe:Pickaxe_ID_738_PrimalFalconFemale_S72BI", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_739_SharpDresserDarkMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_739_SharpDresserDarkMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_740_SkullPunk_7K48Y": { + "templateId": "AthenaPickaxe:Pickaxe_ID_740_SkullPunk_7K48Y", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_741_UproarFemale_NDHS3": { + "templateId": "AthenaPickaxe:Pickaxe_ID_741_UproarFemale_NDHS3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_742_FlowerSkeletonLoveMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_742_FlowerSkeletonLoveMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_743_LoveQueenFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_743_LoveQueenFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_744_SleekGlassesMale_ID69U": { + "templateId": "AthenaPickaxe:Pickaxe_ID_744_SleekGlassesMale_ID69U", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_745_SleekMale_ECRL0": { + "templateId": "AthenaPickaxe:Pickaxe_ID_745_SleekMale_ECRL0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_746_ZestFemale_4Y9TG": { + "templateId": "AthenaPickaxe:Pickaxe_ID_746_ZestFemale_4Y9TG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_747_ZestMale_3KAEG": { + "templateId": "AthenaPickaxe:Pickaxe_ID_747_ZestMale_3KAEG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_748_GimmickFemale_2W2M2": { + "templateId": "AthenaPickaxe:Pickaxe_ID_748_GimmickFemale_2W2M2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_749_GimmickMale_5C033": { + "templateId": "AthenaPickaxe:Pickaxe_ID_749_GimmickMale_5C033", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_750_PeelyToonMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_750_PeelyToonMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_751_RoverFemale_44TG1": { + "templateId": "AthenaPickaxe:Pickaxe_ID_751_RoverFemale_44TG1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_752_RoverMale_I98VZ": { + "templateId": "AthenaPickaxe:Pickaxe_ID_752_RoverMale_I98VZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_753_ValentinesFashionFemale_CPGK7": { + "templateId": "AthenaPickaxe:Pickaxe_ID_753_ValentinesFashionFemale_CPGK7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_754_WeepingWoodsToonMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_754_WeepingWoodsToonMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_755_AssemblePMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_755_AssemblePMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_756_Bizarre": { + "templateId": "AthenaPickaxe:Pickaxe_ID_756_Bizarre", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_757_BlizzardBomberFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_757_BlizzardBomberFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_758_JadeFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_758_JadeFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_759_JetSkiCrystalFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_759_JetSkiCrystalFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_760_JourneyMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_760_JourneyMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_761_LeatherJacketPurpleFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_761_LeatherJacketPurpleFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_762_LurkFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_762_LurkFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_763_ThriveFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_763_ThriveFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_764_ThriveSpiritFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_764_ThriveSpiritFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_765_BacteriaFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_765_BacteriaFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_766_BinaryFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_766_BinaryFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_767_CadetFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_767_CadetFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_768_CyberArmorFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_768_CyberArmorFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "Pattern", + "active": "Mat8", + "owned": [ + "Mat8", + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "Parts", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Numeric", + "active": "Stage10", + "owned": [ + "Stage10", + "Stage11", + "Stage2", + "Stage3", + "Stage4", + "Stage12", + "Stage13", + "Stage5", + "Stage8", + "Stage6", + "Stage15", + "Stage7", + "Stage14", + "Stage16", + "Stage9", + "Stage1" + ] + }, + { + "channel": "Mesh", + "active": "Stage2", + "owned": [ + "Stage2", + "Stage3", + "Stage10", + "Stage11", + "Stage12", + "Stage4", + "Stage5", + "Stage13", + "Stage16", + "Stage14", + "Stage7", + "Stage15", + "Stage6", + "Stage8", + "Stage1", + "Stage9" + ] + }, + { + "channel": "JerseyColor", + "active": "Stage3", + "owned": [ + "Stage3", + "Stage4", + "Stage5", + "Stage6", + "Stage7", + "Stage15", + "Stage14", + "Stage8", + "Stage9", + "Stage11", + "Stage10", + "Stage2", + "Stage13", + "Stage12", + "Stage1" + ] + }, + { + "channel": "Particle", + "active": "Stage2", + "owned": [ + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage7", + "Stage8", + "Stage6", + "Stage1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_769_JourneyMentorFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_769_JourneyMentorFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_770_KnightCatFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_770_KnightCatFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_771_LittleEggFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_771_LittleEggFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_772_MysticMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_772_MysticMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_773_OrderGuardMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_773_OrderGuardMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle4", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_774_SiennaMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_774_SiennaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_775_SnowfallFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_775_SnowfallFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_776_TheOriginMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_776_TheOriginMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_777_CactusRockerFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_777_CactusRockerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_778_CactusRockerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_778_CactusRockerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_779_VampireHunterFemale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_779_VampireHunterFemale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_780_AssassinSledgehammerCamo": { + "templateId": "AthenaPickaxe:Pickaxe_ID_780_AssassinSledgehammerCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_781_BlackbirdMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_781_BlackbirdMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_782_CactusDancerFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_782_CactusDancerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_783_CactusDancerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_783_CactusDancerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_784_CroissantMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_784_CroissantMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_785_ForsakeFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_785_ForsakeFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_787_LyricalFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_787_LyricalFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_788_LyricalMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_788_LyricalMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_789_MockingbirdFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_789_MockingbirdFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_790_NightingaleFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_790_NightingaleFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_791_RumbleFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_791_RumbleFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_792_RumbleMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_792_RumbleMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_793_BinaryTwinFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_793_BinaryTwinFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_794_CarbideKnightMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_794_CarbideKnightMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_795_DarkStormMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_795_DarkStormMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_796_IndigoMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_796_IndigoMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_797_NeonCatSpeedFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_797_NeonCatSpeedFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_798_RaspberryFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_798_RaspberryFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_799_ShinyCreatureFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_799_ShinyCreatureFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_800_UltralightFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_800_UltralightFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_801_AlfredoMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_801_AlfredoMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_802_EternalVanguardFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_802_EternalVanguardFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_803_FlappyGreenMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_803_FlappyGreenMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_804_FNCSS20Male": { + "templateId": "AthenaPickaxe:Pickaxe_ID_804_FNCSS20Male", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_805_GlareMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_805_GlareMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_806_ModNinjaMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_806_ModNinjaMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_807_NeonGraffitiLavaFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_807_NeonGraffitiLavaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_808_NobleMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_808_NobleMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_809_RavenQuillParrotFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_809_RavenQuillParrotFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_810_RebirthSoldierFreshMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_810_RebirthSoldierFreshMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_811_ArmadilloMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_811_ArmadilloMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_812_BlueJayFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_812_BlueJayFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_813_CanaryMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_813_CanaryMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_814_CollectableMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_814_CollectableMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_815_FuchsiaFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_815_FuchsiaFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_816_LancelotMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_816_LancelotMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_818_PinkWidowFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_818_PinkWidowFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_819_RealmMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_819_RealmMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_820_SpectacleWebMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_820_SpectacleWebMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_821_EnsembleFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_821_EnsembleFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_822_EnsembleSnakeMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_822_EnsembleSnakeMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_823_GloomFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_823_GloomFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_824_RedSleevesMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_824_RedSleevesMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_825_BariumFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_825_BariumFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_826_ParfaitFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_826_ParfaitFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_827_RaysFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_827_RaysFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_828_TrifleMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_828_TrifleMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_829_DesertShadowBladeMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_829_DesertShadowBladeMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_830_FruitcakeFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_830_FruitcakeFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_831_FuzzyBearSummerFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_831_FuzzyBearSummerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_832_OhanaMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_832_OhanaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_833_PunkKoiSummerFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_833_PunkKoiSummerFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_834_PunkKoiSummerSaiFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_834_PunkKoiSummerSaiFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_835_SpyMaleFNCS1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_835_SpyMaleFNCS1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_836_SummerStrideFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_836_SummerStrideFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_837_SummerVividDollFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_837_SummerVividDollFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_838_SunBeamFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_838_SunBeamFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_839_SunStarMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_839_SunStarMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_840_SunTideMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_840_SunTideMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_841_ApexWildMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_841_ApexWildMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_842_ChaosFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_842_ChaosFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_843_DesertShadowMale1H": { + "templateId": "AthenaPickaxe:Pickaxe_ID_843_DesertShadowMale1H", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_844_FogFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_844_FogFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_845_FutureSamuraiSummerMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_845_FutureSamuraiSummerMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_846_StaminaMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_846_StaminaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_847_StaminaMaleStandalone": { + "templateId": "AthenaPickaxe:Pickaxe_ID_847_StaminaMaleStandalone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_848_WayfareFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_848_WayfareFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_849_WayfareMale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_849_WayfareMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_850_WayfareMaskFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_850_WayfareMaskFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_851_AstralFemale": { + "templateId": "AthenaPickaxe:Pickaxe_ID_851_AstralFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_852_Handlebar_Female": { + "templateId": "AthenaPickaxe:Pickaxe_ID_852_Handlebar_Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_853_NeonJam": { + "templateId": "AthenaPickaxe:Pickaxe_ID_853_NeonJam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_854_WildCard": { + "templateId": "AthenaPickaxe:Pickaxe_ID_854_WildCard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_STW001_Tier_1": { + "templateId": "AthenaPickaxe:Pickaxe_ID_STW001_Tier_1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_STW002_Tier_3": { + "templateId": "AthenaPickaxe:Pickaxe_ID_STW002_Tier_3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_STW003_Tier_4": { + "templateId": "AthenaPickaxe:Pickaxe_ID_STW003_Tier_4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_STW004_Tier_5": { + "templateId": "AthenaPickaxe:Pickaxe_ID_STW004_Tier_5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_STW005_Tier_6": { + "templateId": "AthenaPickaxe:Pickaxe_ID_STW005_Tier_6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_STW006_Tier_7": { + "templateId": "AthenaPickaxe:Pickaxe_ID_STW006_Tier_7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_STW007_Basic": { + "templateId": "AthenaPickaxe:Pickaxe_ID_STW007_Basic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_TBD_CosmosWeapon": { + "templateId": "AthenaPickaxe:Pickaxe_ID_TBD_CosmosWeapon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ID_TBD_CrystalShard": { + "templateId": "AthenaPickaxe:Pickaxe_ID_TBD_CrystalShard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Imitator": { + "templateId": "AthenaPickaxe:Pickaxe_Imitator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Impulse": { + "templateId": "AthenaPickaxe:Pickaxe_Impulse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_IndieBucket": { + "templateId": "AthenaPickaxe:Pickaxe_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Material", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Inferno": { + "templateId": "AthenaPickaxe:Pickaxe_Inferno", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_InnovatorSand": { + "templateId": "AthenaPickaxe:Pickaxe_InnovatorSand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_InspireSpell": { + "templateId": "AthenaPickaxe:Pickaxe_InspireSpell", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_InstantGravelNoble": { + "templateId": "AthenaPickaxe:Pickaxe_InstantGravelNoble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_IonVial": { + "templateId": "AthenaPickaxe:Pickaxe_IonVial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_IronBlaze": { + "templateId": "AthenaPickaxe:Pickaxe_IronBlaze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_IvyCross": { + "templateId": "AthenaPickaxe:Pickaxe_IvyCross", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_JollyTroll": { + "templateId": "AthenaPickaxe:Pickaxe_JollyTroll", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_JoyfulGrin": { + "templateId": "AthenaPickaxe:Pickaxe_JoyfulGrin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_KeyTracker": { + "templateId": "AthenaPickaxe:Pickaxe_KeyTracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_KnightCatRacket": { + "templateId": "AthenaPickaxe:Pickaxe_KnightCatRacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LastVoiceDive": { + "templateId": "AthenaPickaxe:Pickaxe_LastVoiceDive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LastVoiceSteel": { + "templateId": "AthenaPickaxe:Pickaxe_LastVoiceSteel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LazarusLens": { + "templateId": "AthenaPickaxe:Pickaxe_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Lazuli": { + "templateId": "AthenaPickaxe:Pickaxe_Lazuli", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LethalVae": { + "templateId": "AthenaPickaxe:Pickaxe_LethalVae", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Lettuce": { + "templateId": "AthenaPickaxe:Pickaxe_Lettuce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LettuceCat": { + "templateId": "AthenaPickaxe:Pickaxe_LettuceCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LexaEarlGrey": { + "templateId": "AthenaPickaxe:Pickaxe_LexaEarlGrey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LightningDragon": { + "templateId": "AthenaPickaxe:Pickaxe_LightningDragon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Lilac": { + "templateId": "AthenaPickaxe:Pickaxe_Lilac", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LilSplit": { + "templateId": "AthenaPickaxe:Pickaxe_LilSplit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LocalZilla": { + "templateId": "AthenaPickaxe:Pickaxe_LocalZilla", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Lockjaw": { + "templateId": "AthenaPickaxe:Pickaxe_Lockjaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Looper": { + "templateId": "AthenaPickaxe:Pickaxe_Looper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LopexSnow": { + "templateId": "AthenaPickaxe:Pickaxe_LopexSnow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LoudPhoenix": { + "templateId": "AthenaPickaxe:Pickaxe_LoudPhoenix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_LucidAzalea": { + "templateId": "AthenaPickaxe:Pickaxe_LucidAzalea", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MadameMoth": { + "templateId": "AthenaPickaxe:Pickaxe_MadameMoth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MagicMeadow": { + "templateId": "AthenaPickaxe:Pickaxe_MagicMeadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MagicMeadow_Reward": { + "templateId": "AthenaPickaxe:Pickaxe_MagicMeadow_Reward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MasterKeyOrderMale": { + "templateId": "AthenaPickaxe:Pickaxe_MasterKeyOrderMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MechanicalEngineerRev": { + "templateId": "AthenaPickaxe:Pickaxe_MechanicalEngineerRev", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MechPilotSharkSpeed": { + "templateId": "AthenaPickaxe:Pickaxe_MechPilotSharkSpeed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MelodyUrchin": { + "templateId": "AthenaPickaxe:Pickaxe_MelodyUrchin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MercurialStorm": { + "templateId": "AthenaPickaxe:Pickaxe_MercurialStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MetalScout": { + "templateId": "AthenaPickaxe:Pickaxe_MetalScout", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MetalScoutGlare": { + "templateId": "AthenaPickaxe:Pickaxe_MetalScoutGlare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Meteorwomen_Alt": { + "templateId": "AthenaPickaxe:Pickaxe_Meteorwomen_Alt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MillionaireCowgirl": { + "templateId": "AthenaPickaxe:Pickaxe_MillionaireCowgirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MillionaireGem": { + "templateId": "AthenaPickaxe:Pickaxe_MillionaireGem", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MillionaireTuna": { + "templateId": "AthenaPickaxe:Pickaxe_MillionaireTuna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MindPinch": { + "templateId": "AthenaPickaxe:Pickaxe_MindPinch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MirageHike": { + "templateId": "AthenaPickaxe:Pickaxe_MirageHike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Mochi": { + "templateId": "AthenaPickaxe:Pickaxe_Mochi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MoonShock": { + "templateId": "AthenaPickaxe:Pickaxe_MoonShock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Mouse": { + "templateId": "AthenaPickaxe:Pickaxe_Mouse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Mummy": { + "templateId": "AthenaPickaxe:Pickaxe_Mummy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MusketSlinger": { + "templateId": "AthenaPickaxe:Pickaxe_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_MuteRibbon": { + "templateId": "AthenaPickaxe:Pickaxe_MuteRibbon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Nebula": { + "templateId": "AthenaPickaxe:Pickaxe_Nebula", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_NightHawk": { + "templateId": "AthenaPickaxe:Pickaxe_NightHawk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_NitroFlow": { + "templateId": "AthenaPickaxe:Pickaxe_NitroFlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Nox": { + "templateId": "AthenaPickaxe:Pickaxe_Nox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_OceanBreeze": { + "templateId": "AthenaPickaxe:Pickaxe_OceanBreeze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_OpenEnded": { + "templateId": "AthenaPickaxe:Pickaxe_OpenEnded", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_OrinChai": { + "templateId": "AthenaPickaxe:Pickaxe_OrinChai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_OuterGarment": { + "templateId": "AthenaPickaxe:Pickaxe_OuterGarment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PalmTree": { + "templateId": "AthenaPickaxe:Pickaxe_PalmTree", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ParrotPen": { + "templateId": "AthenaPickaxe:Pickaxe_ParrotPen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Patches": { + "templateId": "AthenaPickaxe:Pickaxe_Patches", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PeelyToonSpring": { + "templateId": "AthenaPickaxe:Pickaxe_PeelyToonSpring", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PencilCherry": { + "templateId": "AthenaPickaxe:Pickaxe_PencilCherry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Progressive", + "active": "Particle18", + "owned": [ + "Particle18", + "Particle19", + "Particle20" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Photographer_Holiday_Female": { + "templateId": "AthenaPickaxe:Pickaxe_Photographer_Holiday_Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PinkJet": { + "templateId": "AthenaPickaxe:Pickaxe_PinkJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PinkSpike": { + "templateId": "AthenaPickaxe:Pickaxe_PinkSpike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PinkTrooper": { + "templateId": "AthenaPickaxe:Pickaxe_PinkTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PinkTrooper_Clobber": { + "templateId": "AthenaPickaxe:Pickaxe_PinkTrooper_Clobber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PirouetteWeld": { + "templateId": "AthenaPickaxe:Pickaxe_PirouetteWeld", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PitGlass": { + "templateId": "AthenaPickaxe:Pickaxe_PitGlass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PizzaParty": { + "templateId": "AthenaPickaxe:Pickaxe_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PlotTwist": { + "templateId": "AthenaPickaxe:Pickaxe_PlotTwist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Possession": { + "templateId": "AthenaPickaxe:Pickaxe_Possession", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PowerFarmer": { + "templateId": "AthenaPickaxe:Pickaxe_PowerFarmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PowerfulDozen": { + "templateId": "AthenaPickaxe:Pickaxe_PowerfulDozen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PrivateJet": { + "templateId": "AthenaPickaxe:Pickaxe_PrivateJet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ProdigyFire": { + "templateId": "AthenaPickaxe:Pickaxe_ProdigyFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ProdigyHaughty": { + "templateId": "AthenaPickaxe:Pickaxe_ProdigyHaughty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ProdigySage": { + "templateId": "AthenaPickaxe:Pickaxe_ProdigySage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_PunkDevilVibe": { + "templateId": "AthenaPickaxe:Pickaxe_PunkDevilVibe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_QualityCreek": { + "templateId": "AthenaPickaxe:Pickaxe_QualityCreek", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Quartz": { + "templateId": "AthenaPickaxe:Pickaxe_Quartz", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_QuietPeanuts": { + "templateId": "AthenaPickaxe:Pickaxe_QuietPeanuts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RaiderPinkSherbert": { + "templateId": "AthenaPickaxe:Pickaxe_RaiderPinkSherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RankedFaction": { + "templateId": "AthenaPickaxe:Pickaxe_RankedFaction", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RebelClaw": { + "templateId": "AthenaPickaxe:Pickaxe_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RecordScratch": { + "templateId": "AthenaPickaxe:Pickaxe_RecordScratch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RedPepper": { + "templateId": "AthenaPickaxe:Pickaxe_RedPepper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RenegadeRaider_Spark": { + "templateId": "AthenaPickaxe:Pickaxe_RenegadeRaider_Spark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RhombCamo": { + "templateId": "AthenaPickaxe:Pickaxe_RhombCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RippedHarvester": { + "templateId": "AthenaPickaxe:Pickaxe_RippedHarvester", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RollerBlade": { + "templateId": "AthenaPickaxe:Pickaxe_RollerBlade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RoosterMeltMouse": { + "templateId": "AthenaPickaxe:Pickaxe_RoosterMeltMouse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RoseDust": { + "templateId": "AthenaPickaxe:Pickaxe_RoseDust", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RoseForm": { + "templateId": "AthenaPickaxe:Pickaxe_RoseForm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_RoyalDusk": { + "templateId": "AthenaPickaxe:Pickaxe_RoyalDusk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Ruins": { + "templateId": "AthenaPickaxe:Pickaxe_Ruins", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SaharaMale": { + "templateId": "AthenaPickaxe:Pickaxe_SaharaMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SailorSquadLeaderKoi1h": { + "templateId": "AthenaPickaxe:Pickaxe_SailorSquadLeaderKoi1h", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SamuraiBlueLight": { + "templateId": "AthenaPickaxe:Pickaxe_SamuraiBlueLight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ScareyBeary": { + "templateId": "AthenaPickaxe:Pickaxe_ScareyBeary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ScarletBionic": { + "templateId": "AthenaPickaxe:Pickaxe_ScarletBionic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ScorpionZero": { + "templateId": "AthenaPickaxe:Pickaxe_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SerpentCoil": { + "templateId": "AthenaPickaxe:Pickaxe_SerpentCoil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SharpFang": { + "templateId": "AthenaPickaxe:Pickaxe_SharpFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SharpMagnet": { + "templateId": "AthenaPickaxe:Pickaxe_SharpMagnet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SharpSilver": { + "templateId": "AthenaPickaxe:Pickaxe_SharpSilver", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ShiitakeShaolin_Rouge": { + "templateId": "AthenaPickaxe:Pickaxe_ShiitakeShaolin_Rouge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ShinyStar": { + "templateId": "AthenaPickaxe:Pickaxe_ShinyStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Emissive", + "active": "Emissive0", + "owned": [ + "Emissive0", + "Emissive1" + ] + }, + { + "channel": "Material", + "active": "Mat0", + "owned": [ + "Mat0", + "Mat1" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Silencer": { + "templateId": "AthenaPickaxe:Pickaxe_Silencer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SilentTempo": { + "templateId": "AthenaPickaxe:Pickaxe_SilentTempo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SirWolf": { + "templateId": "AthenaPickaxe:Pickaxe_SirWolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SkeleProbe": { + "templateId": "AthenaPickaxe:Pickaxe_SkeleProbe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SkeletonHunterFNCS": { + "templateId": "AthenaPickaxe:Pickaxe_SkeletonHunterFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SkippingClouds": { + "templateId": "AthenaPickaxe:Pickaxe_SkippingClouds", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SkullPunkBlade": { + "templateId": "AthenaPickaxe:Pickaxe_SkullPunkBlade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SlicedBread": { + "templateId": "AthenaPickaxe:Pickaxe_SlicedBread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SmartHyena": { + "templateId": "AthenaPickaxe:Pickaxe_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SnakeCrest": { + "templateId": "AthenaPickaxe:Pickaxe_SnakeCrest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SnowKnight": { + "templateId": "AthenaPickaxe:Pickaxe_SnowKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SnowSoldierFashion": { + "templateId": "AthenaPickaxe:Pickaxe_SnowSoldierFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SolarTheory": { + "templateId": "AthenaPickaxe:Pickaxe_SolarTheory", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SparkArcher": { + "templateId": "AthenaPickaxe:Pickaxe_SparkArcher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Sparrow": { + "templateId": "AthenaPickaxe:Pickaxe_Sparrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SpeedDial": { + "templateId": "AthenaPickaxe:Pickaxe_SpeedDial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SpookyNeonBlue": { + "templateId": "AthenaPickaxe:Pickaxe_SpookyNeonBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SpookyNeonOrange": { + "templateId": "AthenaPickaxe:Pickaxe_SpookyNeonOrange", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SpookyNeonRed": { + "templateId": "AthenaPickaxe:Pickaxe_SpookyNeonRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SpyMale_FNCS_22": { + "templateId": "AthenaPickaxe:Pickaxe_SpyMale_FNCS_22", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_StallionAviator": { + "templateId": "AthenaPickaxe:Pickaxe_StallionAviator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_StallionSmoke": { + "templateId": "AthenaPickaxe:Pickaxe_StallionSmoke", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_StarStray": { + "templateId": "AthenaPickaxe:Pickaxe_StarStray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_StaticShades": { + "templateId": "AthenaPickaxe:Pickaxe_StaticShades", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SteamPower": { + "templateId": "AthenaPickaxe:Pickaxe_SteamPower", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_StrontiumSpark": { + "templateId": "AthenaPickaxe:Pickaxe_StrontiumSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SunbeamQuest": { + "templateId": "AthenaPickaxe:Pickaxe_SunbeamQuest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SunBurstAlt": { + "templateId": "AthenaPickaxe:Pickaxe_SunBurstAlt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Sunlit": { + "templateId": "AthenaPickaxe:Pickaxe_Sunlit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SunShine": { + "templateId": "AthenaPickaxe:Pickaxe_SunShine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_SuperNovaTaro": { + "templateId": "AthenaPickaxe:Pickaxe_SuperNovaTaro", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_TalonHime": { + "templateId": "AthenaPickaxe:Pickaxe_TalonHime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_TaxiUpgraded_Vista": { + "templateId": "AthenaPickaxe:Pickaxe_TaxiUpgraded_Vista", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_TheHerald": { + "templateId": "AthenaPickaxe:Pickaxe_TheHerald", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_TigerRootFame": { + "templateId": "AthenaPickaxe:Pickaxe_TigerRootFame", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_TigerRootHype": { + "templateId": "AthenaPickaxe:Pickaxe_TigerRootHype", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_TiltedParrot": { + "templateId": "AthenaPickaxe:Pickaxe_TiltedParrot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_TimeInterval": { + "templateId": "AthenaPickaxe:Pickaxe_TimeInterval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Titanium": { + "templateId": "AthenaPickaxe:Pickaxe_Titanium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_TracePaper": { + "templateId": "AthenaPickaxe:Pickaxe_TracePaper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Troops": { + "templateId": "AthenaPickaxe:Pickaxe_Troops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_TroubleMaker": { + "templateId": "AthenaPickaxe:Pickaxe_TroubleMaker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_TungStan": { + "templateId": "AthenaPickaxe:Pickaxe_TungStan", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_UndergroundRebel": { + "templateId": "AthenaPickaxe:Pickaxe_UndergroundRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_VectorSpark": { + "templateId": "AthenaPickaxe:Pickaxe_VectorSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Veiled": { + "templateId": "AthenaPickaxe:Pickaxe_Veiled", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Venice": { + "templateId": "AthenaPickaxe:Pickaxe_Venice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_VillainessVault": { + "templateId": "AthenaPickaxe:Pickaxe_VillainessVault", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:PIckaxe_Virtuous": { + "templateId": "AthenaPickaxe:PIckaxe_Virtuous", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_VitalInventor": { + "templateId": "AthenaPickaxe:Pickaxe_VitalInventor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_VitalInventorBlock": { + "templateId": "AthenaPickaxe:Pickaxe_VitalInventorBlock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_VitalPsych": { + "templateId": "AthenaPickaxe:Pickaxe_VitalPsych", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_VoidRedemption": { + "templateId": "AthenaPickaxe:Pickaxe_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_WaterMolecules": { + "templateId": "AthenaPickaxe:Pickaxe_WaterMolecules", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_WingedMedieval": { + "templateId": "AthenaPickaxe:Pickaxe_WingedMedieval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_Winterfest1": { + "templateId": "AthenaPickaxe:Pickaxe_Winterfest1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_WinterHunterFNCS": { + "templateId": "AthenaPickaxe:Pickaxe_WinterHunterFNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ZebraScramble_Bacon": { + "templateId": "AthenaPickaxe:Pickaxe_ZebraScramble_Bacon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:Pickaxe_ZirconSweep": { + "templateId": "AthenaPickaxe:Pickaxe_ZirconSweep", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Mesh", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:PreSeasonGlider": { + "templateId": "AthenaGlider:PreSeasonGlider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:PreSeasonGlider_Elite": { + "templateId": "AthenaGlider:PreSeasonGlider_Elite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:SickleBatPickaxe": { + "templateId": "AthenaPickaxe:SickleBatPickaxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:SkiIcePickaxe": { + "templateId": "AthenaPickaxe:SkiIcePickaxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Solo_Umbrella": { + "templateId": "AthenaGlider:Solo_Umbrella", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_000_TestSpray": { + "templateId": "AthenaDance:SPID_000_TestSpray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_001_BasicBanner": { + "templateId": "AthenaDance:SPID_001_BasicBanner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_002_XMark": { + "templateId": "AthenaDance:SPID_002_XMark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_003_Arrow": { + "templateId": "AthenaDance:SPID_003_Arrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_004_ChalkOutline": { + "templateId": "AthenaDance:SPID_004_ChalkOutline", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_005_Abstract": { + "templateId": "AthenaDance:SPID_005_Abstract", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_006_Rainbow": { + "templateId": "AthenaDance:SPID_006_Rainbow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_007_SmileGG": { + "templateId": "AthenaDance:SPID_007_SmileGG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_008_Hearts": { + "templateId": "AthenaDance:SPID_008_Hearts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_009_Window": { + "templateId": "AthenaDance:SPID_009_Window", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_010_Tunnel": { + "templateId": "AthenaDance:SPID_010_Tunnel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_011_Looted": { + "templateId": "AthenaDance:SPID_011_Looted", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_012_RoyalStroll": { + "templateId": "AthenaDance:SPID_012_RoyalStroll", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_013_TrapWarning": { + "templateId": "AthenaDance:SPID_013_TrapWarning", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_014_Raven": { + "templateId": "AthenaDance:SPID_014_Raven", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_015_Lips": { + "templateId": "AthenaDance:SPID_015_Lips", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_016_Ponytail": { + "templateId": "AthenaDance:SPID_016_Ponytail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_017_Splattershot": { + "templateId": "AthenaDance:SPID_017_Splattershot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_018_ShadowOps": { + "templateId": "AthenaDance:SPID_018_ShadowOps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_019_Circle": { + "templateId": "AthenaDance:SPID_019_Circle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_020_ThreeLlamas": { + "templateId": "AthenaDance:SPID_020_ThreeLlamas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_021_DoIt": { + "templateId": "AthenaDance:SPID_021_DoIt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_022_SoloShowdown": { + "templateId": "AthenaDance:SPID_022_SoloShowdown", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_023_E3": { + "templateId": "AthenaDance:SPID_023_E3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_024_Boogie": { + "templateId": "AthenaDance:SPID_024_Boogie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_025_CrazyCastle": { + "templateId": "AthenaDance:SPID_025_CrazyCastle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_026_DarkViking": { + "templateId": "AthenaDance:SPID_026_DarkViking", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_028_Durrr": { + "templateId": "AthenaDance:SPID_028_Durrr", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_029_LaserShark": { + "templateId": "AthenaDance:SPID_029_LaserShark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_030_Luchador": { + "templateId": "AthenaDance:SPID_030_Luchador", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_031_Pixels": { + "templateId": "AthenaDance:SPID_031_Pixels", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_032_PotatoAim": { + "templateId": "AthenaDance:SPID_032_PotatoAim", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_033_FakeDoor": { + "templateId": "AthenaDance:SPID_033_FakeDoor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_034_GoodVibes": { + "templateId": "AthenaDance:SPID_034_GoodVibes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_035_NordicLlama": { + "templateId": "AthenaDance:SPID_035_NordicLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_036_StrawberryPaws": { + "templateId": "AthenaDance:SPID_036_StrawberryPaws", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_037_Drift": { + "templateId": "AthenaDance:SPID_037_Drift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_038_Sushi": { + "templateId": "AthenaDance:SPID_038_Sushi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_039_Yummy": { + "templateId": "AthenaDance:SPID_039_Yummy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_040_Birthday2018": { + "templateId": "AthenaDance:SPID_040_Birthday2018", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_041_GC2018": { + "templateId": "AthenaDance:SPID_041_GC2018", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_042_LlamaControllers": { + "templateId": "AthenaDance:SPID_042_LlamaControllers", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_043_Flairspray": { + "templateId": "AthenaDance:SPID_043_Flairspray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_044_Bling": { + "templateId": "AthenaDance:SPID_044_Bling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_045_Oni": { + "templateId": "AthenaDance:SPID_045_Oni", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_046_PixelRaven": { + "templateId": "AthenaDance:SPID_046_PixelRaven", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_047_Gremlins": { + "templateId": "AthenaDance:SPID_047_Gremlins", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_049_CactusMaze": { + "templateId": "AthenaDance:SPID_049_CactusMaze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_050_FullMoon": { + "templateId": "AthenaDance:SPID_050_FullMoon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_051_GameOver": { + "templateId": "AthenaDance:SPID_051_GameOver", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_053_GGPotion": { + "templateId": "AthenaDance:SPID_053_GGPotion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_055_WallCrawler": { + "templateId": "AthenaDance:SPID_055_WallCrawler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_056_ManholeCover": { + "templateId": "AthenaDance:SPID_056_ManholeCover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_057_CreepyBunny": { + "templateId": "AthenaDance:SPID_057_CreepyBunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_058_Cowgirl": { + "templateId": "AthenaDance:SPID_058_Cowgirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_059_DJ": { + "templateId": "AthenaDance:SPID_059_DJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_060_DayOfDead": { + "templateId": "AthenaDance:SPID_060_DayOfDead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_061_Spiderweb": { + "templateId": "AthenaDance:SPID_061_Spiderweb", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_062_Werewolf": { + "templateId": "AthenaDance:SPID_062_Werewolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_063_Cowboy": { + "templateId": "AthenaDance:SPID_063_Cowboy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_064_S6Lvl100": { + "templateId": "AthenaDance:SPID_064_S6Lvl100", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_065_DiscoBaller": { + "templateId": "AthenaDance:SPID_065_DiscoBaller", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_066_Llamalaxy": { + "templateId": "AthenaDance:SPID_066_Llamalaxy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_067_GGSnowman": { + "templateId": "AthenaDance:SPID_067_GGSnowman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_068_EvilTree": { + "templateId": "AthenaDance:SPID_068_EvilTree", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_069_BagOfCoal": { + "templateId": "AthenaDance:SPID_069_BagOfCoal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_070_Hohoho": { + "templateId": "AthenaDance:SPID_070_Hohoho", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_071_NeonCat": { + "templateId": "AthenaDance:SPID_071_NeonCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_072_Mothhead": { + "templateId": "AthenaDance:SPID_072_Mothhead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_073_Porthole": { + "templateId": "AthenaDance:SPID_073_Porthole", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_074_CuddleHula": { + "templateId": "AthenaDance:SPID_074_CuddleHula", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_075_MeltingSnowman": { + "templateId": "AthenaDance:SPID_075_MeltingSnowman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_076_Yeti": { + "templateId": "AthenaDance:SPID_076_Yeti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_077_Baited": { + "templateId": "AthenaDance:SPID_077_Baited", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_078_PixelRamirez": { + "templateId": "AthenaDance:SPID_078_PixelRamirez", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_079_CatGirl": { + "templateId": "AthenaDance:SPID_079_CatGirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_080_S7Lvl100": { + "templateId": "AthenaDance:SPID_080_S7Lvl100", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_081_Bananas": { + "templateId": "AthenaDance:SPID_081_Bananas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_082_Ornament": { + "templateId": "AthenaDance:SPID_082_Ornament", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_083_Winter": { + "templateId": "AthenaDance:SPID_083_Winter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_084_Festivus": { + "templateId": "AthenaDance:SPID_084_Festivus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_085_ShareTheLove_A": { + "templateId": "AthenaDance:SPID_085_ShareTheLove_A", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_086_ShareTheLove_B": { + "templateId": "AthenaDance:SPID_086_ShareTheLove_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_087_ShareTheLove_C": { + "templateId": "AthenaDance:SPID_087_ShareTheLove_C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_088_ShareTheLove_D": { + "templateId": "AthenaDance:SPID_088_ShareTheLove_D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_089_ShareTheLove_E": { + "templateId": "AthenaDance:SPID_089_ShareTheLove_E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_090_DanceFloorBox": { + "templateId": "AthenaDance:SPID_090_DanceFloorBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_091_DragonNinja": { + "templateId": "AthenaDance:SPID_091_DragonNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_092_BananaPeel": { + "templateId": "AthenaDance:SPID_092_BananaPeel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_093_TheEnd": { + "templateId": "AthenaDance:SPID_093_TheEnd", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_094_WootDog": { + "templateId": "AthenaDance:SPID_094_WootDog", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_095_LoveRanger": { + "templateId": "AthenaDance:SPID_095_LoveRanger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_096_FallenLoveRanger": { + "templateId": "AthenaDance:SPID_096_FallenLoveRanger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_097_FireElf": { + "templateId": "AthenaDance:SPID_097_FireElf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_098_Shiny": { + "templateId": "AthenaDance:SPID_098_Shiny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_099_Key": { + "templateId": "AthenaDance:SPID_099_Key", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_100_Salty": { + "templateId": "AthenaDance:SPID_100_Salty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_101_BriteBomber": { + "templateId": "AthenaDance:SPID_101_BriteBomber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_102_GGAztec": { + "templateId": "AthenaDance:SPID_102_GGAztec", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_103_Mermaid": { + "templateId": "AthenaDance:SPID_103_Mermaid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_104_S8Lvl100": { + "templateId": "AthenaDance:SPID_104_S8Lvl100", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_105_Parrot": { + "templateId": "AthenaDance:SPID_105_Parrot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_106_Ashton_Boardwalk": { + "templateId": "AthenaDance:SPID_106_Ashton_Boardwalk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_107_Ashton_Jim": { + "templateId": "AthenaDance:SPID_107_Ashton_Jim", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_108_Fate": { + "templateId": "AthenaDance:SPID_108_Fate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_109_StrawberryPilot": { + "templateId": "AthenaDance:SPID_109_StrawberryPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_110_Rooster": { + "templateId": "AthenaDance:SPID_110_Rooster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_111_Ark": { + "templateId": "AthenaDance:SPID_111_Ark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_112_RockPeople": { + "templateId": "AthenaDance:SPID_112_RockPeople", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_113_NanaNana": { + "templateId": "AthenaDance:SPID_113_NanaNana", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_114_Bush": { + "templateId": "AthenaDance:SPID_114_Bush", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_115_PixelJonesy": { + "templateId": "AthenaDance:SPID_115_PixelJonesy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_116_Robot": { + "templateId": "AthenaDance:SPID_116_Robot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_117_NoSymbol": { + "templateId": "AthenaDance:SPID_117_NoSymbol", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_118_ChevronLeft": { + "templateId": "AthenaDance:SPID_118_ChevronLeft", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_119_ChevronRight": { + "templateId": "AthenaDance:SPID_119_ChevronRight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_120_S9Lvl100": { + "templateId": "AthenaDance:SPID_120_S9Lvl100", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_121_Sunbird": { + "templateId": "AthenaDance:SPID_121_Sunbird", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_122_VigilanteBall": { + "templateId": "AthenaDance:SPID_122_VigilanteBall", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_123_PeelyArms": { + "templateId": "AthenaDance:SPID_123_PeelyArms", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_124_Goat": { + "templateId": "AthenaDance:SPID_124_Goat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_125_VigilanteFace": { + "templateId": "AthenaDance:SPID_125_VigilanteFace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_126_WorldCup": { + "templateId": "AthenaDance:SPID_126_WorldCup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_127_SummerDays01": { + "templateId": "AthenaDance:SPID_127_SummerDays01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_128_SummerDays02": { + "templateId": "AthenaDance:SPID_128_SummerDays02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_129_Birthday2019": { + "templateId": "AthenaDance:SPID_129_Birthday2019", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_130_GameJam2019": { + "templateId": "AthenaDance:SPID_130_GameJam2019", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_131_Teknique": { + "templateId": "AthenaDance:SPID_131_Teknique", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_132_BlackKnight": { + "templateId": "AthenaDance:SPID_132_BlackKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_133_Butterfly": { + "templateId": "AthenaDance:SPID_133_Butterfly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_134_DustyDepot": { + "templateId": "AthenaDance:SPID_134_DustyDepot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_135_RiskyReels": { + "templateId": "AthenaDance:SPID_135_RiskyReels", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_136_RocketLaunch": { + "templateId": "AthenaDance:SPID_136_RocketLaunch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_137_RustLord": { + "templateId": "AthenaDance:SPID_137_RustLord", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_138_SparkleSpecialist": { + "templateId": "AthenaDance:SPID_138_SparkleSpecialist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_139_TiltedMap": { + "templateId": "AthenaDance:SPID_139_TiltedMap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_140_MoistyMire": { + "templateId": "AthenaDance:SPID_140_MoistyMire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_141_S10Level100": { + "templateId": "AthenaDance:SPID_141_S10Level100", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_142_CubeRune": { + "templateId": "AthenaDance:SPID_142_CubeRune", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_143_Drift": { + "templateId": "AthenaDance:SPID_143_Drift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_144_VisitorGG": { + "templateId": "AthenaDance:SPID_144_VisitorGG", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_145_Comet": { + "templateId": "AthenaDance:SPID_145_Comet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_146_Rocket": { + "templateId": "AthenaDance:SPID_146_Rocket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_147_Smoothie": { + "templateId": "AthenaDance:SPID_147_Smoothie", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_148_Umbrella": { + "templateId": "AthenaDance:SPID_148_Umbrella", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_149_FireIce": { + "templateId": "AthenaDance:SPID_149_FireIce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_150_IceDragon": { + "templateId": "AthenaDance:SPID_150_IceDragon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_151_DarkVoyager": { + "templateId": "AthenaDance:SPID_151_DarkVoyager", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_152_DriftRemix": { + "templateId": "AthenaDance:SPID_152_DriftRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_153_KnightRemix": { + "templateId": "AthenaDance:SPID_153_KnightRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_155_BarbequeLarryBunnyHead": { + "templateId": "AthenaDance:SPID_155_BarbequeLarryBunnyHead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_157_BarbequeLarryMask": { + "templateId": "AthenaDance:SPID_157_BarbequeLarryMask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_158_ZoneWars": { + "templateId": "AthenaDance:SPID_158_ZoneWars", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_159_BlackMonday01_TY6N5": { + "templateId": "AthenaDance:SPID_159_BlackMonday01_TY6N5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_160_BlackMonday02_PM0U6": { + "templateId": "AthenaDance:SPID_160_BlackMonday02_PM0U6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_161_S11_StandardLogo": { + "templateId": "AthenaDance:SPID_161_S11_StandardLogo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_162_S11_RockClimber": { + "templateId": "AthenaDance:SPID_162_S11_RockClimber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_163_S11_Bees": { + "templateId": "AthenaDance:SPID_163_S11_Bees", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_164_S11_PinkTeeth": { + "templateId": "AthenaDance:SPID_164_S11_PinkTeeth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_165_S11_AlterEgoLogo": { + "templateId": "AthenaDance:SPID_165_S11_AlterEgoLogo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_166_S11_CrazyEight": { + "templateId": "AthenaDance:SPID_166_S11_CrazyEight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_167_S11_Pug": { + "templateId": "AthenaDance:SPID_167_S11_Pug", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_169_Eucalyptus": { + "templateId": "AthenaDance:SPID_169_Eucalyptus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_170_Quokka": { + "templateId": "AthenaDance:SPID_170_Quokka", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_171_Rose": { + "templateId": "AthenaDance:SPID_171_Rose", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_172_Shaka": { + "templateId": "AthenaDance:SPID_172_Shaka", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_173_ThumbsUp": { + "templateId": "AthenaDance:SPID_173_ThumbsUp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_174_Tiger": { + "templateId": "AthenaDance:SPID_174_Tiger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_175_S11_Squid": { + "templateId": "AthenaDance:SPID_175_S11_Squid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_176_Storm": { + "templateId": "AthenaDance:SPID_176_Storm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_177_Mastermind": { + "templateId": "AthenaDance:SPID_177_Mastermind", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_178_SearchAndDestroy": { + "templateId": "AthenaDance:SPID_178_SearchAndDestroy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_179_S11_FNCS": { + "templateId": "AthenaDance:SPID_179_S11_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_180_BlueCrackshot": { + "templateId": "AthenaDance:SPID_180_BlueCrackshot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_185_PolarBear": { + "templateId": "AthenaDance:SPID_185_PolarBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_189_SkullDude": { + "templateId": "AthenaDance:SPID_189_SkullDude", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_190_TNTina": { + "templateId": "AthenaDance:SPID_190_TNTina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_191_Meowscles": { + "templateId": "AthenaDance:SPID_191_Meowscles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_192_AdventureGirl": { + "templateId": "AthenaDance:SPID_192_AdventureGirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_193_Midas": { + "templateId": "AthenaDance:SPID_193_Midas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_194_DumpsterFire": { + "templateId": "AthenaDance:SPID_194_DumpsterFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_195_Cyclone": { + "templateId": "AthenaDance:SPID_195_Cyclone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_196_CarnavalA": { + "templateId": "AthenaDance:SPID_196_CarnavalA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_197_CarnavalB": { + "templateId": "AthenaDance:SPID_197_CarnavalB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_198_DarkHeart": { + "templateId": "AthenaDance:SPID_198_DarkHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_199_BananaAgent": { + "templateId": "AthenaDance:SPID_199_BananaAgent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_200_GoldMeowscles": { + "templateId": "AthenaDance:SPID_200_GoldMeowscles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_201_DonutA": { + "templateId": "AthenaDance:SPID_201_DonutA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_202_DonutB": { + "templateId": "AthenaDance:SPID_202_DonutB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_203_UnicornRain": { + "templateId": "AthenaDance:SPID_203_UnicornRain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_204_S12_FNCS": { + "templateId": "AthenaDance:SPID_204_S12_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_205_ArLamp": { + "templateId": "AthenaDance:SPID_205_ArLamp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_206_EyeballOctopus": { + "templateId": "AthenaDance:SPID_206_EyeballOctopus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_207_BlackKnight": { + "templateId": "AthenaDance:SPID_207_BlackKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_208_MechanicalEngineer": { + "templateId": "AthenaDance:SPID_208_MechanicalEngineer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_209_OceanRider": { + "templateId": "AthenaDance:SPID_209_OceanRider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_210_ProfessorPup": { + "templateId": "AthenaDance:SPID_210_ProfessorPup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_211_RacerZero": { + "templateId": "AthenaDance:SPID_211_RacerZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_212_SandCastle": { + "templateId": "AthenaDance:SPID_212_SandCastle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_213_SeasonSpray1": { + "templateId": "AthenaDance:SPID_213_SeasonSpray1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_214_SeasonSpray2": { + "templateId": "AthenaDance:SPID_214_SeasonSpray2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_215_MeowsclesBox": { + "templateId": "AthenaDance:SPID_215_MeowsclesBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_216_S13_FNCS": { + "templateId": "AthenaDance:SPID_216_S13_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_217_TheBratHotdog": { + "templateId": "AthenaDance:SPID_217_TheBratHotdog", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_218_S14_HighTowerDate": { + "templateId": "AthenaDance:SPID_218_S14_HighTowerDate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_219_S14_HighTowerGrape": { + "templateId": "AthenaDance:SPID_219_S14_HighTowerGrape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_220_S14_HighTowerHoneyDew": { + "templateId": "AthenaDance:SPID_220_S14_HighTowerHoneyDew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_221_S14_HighTowerMango": { + "templateId": "AthenaDance:SPID_221_S14_HighTowerMango", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_222_S14_HighTowerRadish": { + "templateId": "AthenaDance:SPID_222_S14_HighTowerRadish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_223_S14_HighTowerSquash": { + "templateId": "AthenaDance:SPID_223_S14_HighTowerSquash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_224_S14_HighTowerTapas": { + "templateId": "AthenaDance:SPID_224_S14_HighTowerTapas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_225_S14_HighTowerTomato": { + "templateId": "AthenaDance:SPID_225_S14_HighTowerTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_226_S14_HighTowerWasabi": { + "templateId": "AthenaDance:SPID_226_S14_HighTowerWasabi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_227_3rdBirthday": { + "templateId": "AthenaDance:SPID_227_3rdBirthday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_228_RLxFN": { + "templateId": "AthenaDance:SPID_228_RLxFN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_229_S14_FNCS": { + "templateId": "AthenaDance:SPID_229_S14_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_230_Fortnitemares": { + "templateId": "AthenaDance:SPID_230_Fortnitemares", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_231_Embers": { + "templateId": "AthenaDance:SPID_231_Embers", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_231_S15_AncientGladiator": { + "templateId": "AthenaDance:SPID_231_S15_AncientGladiator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_232_PeelyBhangra": { + "templateId": "AthenaDance:SPID_232_PeelyBhangra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_232_S15_Shapeshifter": { + "templateId": "AthenaDance:SPID_232_S15_Shapeshifter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_233_S15_Lexa": { + "templateId": "AthenaDance:SPID_233_S15_Lexa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_234_S15_FutureSamurai": { + "templateId": "AthenaDance:SPID_234_S15_FutureSamurai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_235_S15_Flapjack": { + "templateId": "AthenaDance:SPID_235_S15_Flapjack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_236_S15_SpaceFighter": { + "templateId": "AthenaDance:SPID_236_S15_SpaceFighter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_237_S15_Cosmos": { + "templateId": "AthenaDance:SPID_237_S15_Cosmos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_238_S15_SkullSanta": { + "templateId": "AthenaDance:SPID_238_S15_SkullSanta", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_239_S15_Holiday2020_Snowmando": { + "templateId": "AthenaDance:SPID_239_S15_Holiday2020_Snowmando", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_240_S15_Holiday2": { + "templateId": "AthenaDance:SPID_240_S15_Holiday2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_241_Nightmare": { + "templateId": "AthenaDance:SPID_241_Nightmare", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_242_S15_FNCS": { + "templateId": "AthenaDance:SPID_242_S15_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_243_AFL_Winter": { + "templateId": "AthenaDance:SPID_243_AFL_Winter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_244_Valentines2021": { + "templateId": "AthenaDance:SPID_244_Valentines2021", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_245_Valentines2021_2": { + "templateId": "AthenaDance:SPID_245_Valentines2021_2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_246_Obsidian": { + "templateId": "AthenaDance:SPID_246_Obsidian", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_247_Sentinel": { + "templateId": "AthenaDance:SPID_247_Sentinel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_248_CubeNinja": { + "templateId": "AthenaDance:SPID_248_CubeNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_249_DinoHunter": { + "templateId": "AthenaDance:SPID_249_DinoHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_250_AgentJonesy": { + "templateId": "AthenaDance:SPID_250_AgentJonesy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_251_ChickenWarrior": { + "templateId": "AthenaDance:SPID_251_ChickenWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_252_Temple": { + "templateId": "AthenaDance:SPID_252_Temple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_253_Alt_1": { + "templateId": "AthenaDance:SPID_253_Alt_1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_254_Alt_2": { + "templateId": "AthenaDance:SPID_254_Alt_2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_255_Alt_3": { + "templateId": "AthenaDance:SPID_255_Alt_3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_256_Bicycle": { + "templateId": "AthenaDance:SPID_256_Bicycle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_257_TempleCreative": { + "templateId": "AthenaDance:SPID_257_TempleCreative", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_258_Llamarama2_EZIRR": { + "templateId": "AthenaDance:SPID_258_Llamarama2_EZIRR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_259_RebootAFriend": { + "templateId": "AthenaDance:SPID_259_RebootAFriend", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_260_CreativeWorldTour": { + "templateId": "AthenaDance:SPID_260_CreativeWorldTour", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_260_S16_FNCS": { + "templateId": "AthenaDance:SPID_260_S16_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_261_Basketball_2021_MIAO3": { + "templateId": "AthenaDance:SPID_261_Basketball_2021_MIAO3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_262_Broccoli_920HJ": { + "templateId": "AthenaDance:SPID_262_Broccoli_920HJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_263_Grim_5A9JD": { + "templateId": "AthenaDance:SPID_263_Grim_5A9JD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_264_Emperor": { + "templateId": "AthenaDance:SPID_264_Emperor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_265_AlienTrooper": { + "templateId": "AthenaDance:SPID_265_AlienTrooper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_266_Faux": { + "templateId": "AthenaDance:SPID_266_Faux", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_267_Ruckus": { + "templateId": "AthenaDance:SPID_267_Ruckus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_268_Innovator": { + "templateId": "AthenaDance:SPID_268_Innovator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_269_Invader": { + "templateId": "AthenaDance:SPID_269_Invader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_270_Antique": { + "templateId": "AthenaDance:SPID_270_Antique", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_271_Believer": { + "templateId": "AthenaDance:SPID_271_Believer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_272_Supporter": { + "templateId": "AthenaDance:SPID_272_Supporter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_273_Faux2": { + "templateId": "AthenaDance:SPID_273_Faux2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_274_Alt_3": { + "templateId": "AthenaDance:SPID_274_Alt_3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_275_Soccer": { + "templateId": "AthenaDance:SPID_275_Soccer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_276_Hot": { + "templateId": "AthenaDance:SPID_276_Hot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_277_Mascot": { + "templateId": "AthenaDance:SPID_277_Mascot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_278_BelieverSkull": { + "templateId": "AthenaDance:SPID_278_BelieverSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_279_EasyLife": { + "templateId": "AthenaDance:SPID_279_EasyLife", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_280_Fest": { + "templateId": "AthenaDance:SPID_280_Fest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_281_FNCS_AllStars": { + "templateId": "AthenaDance:SPID_281_FNCS_AllStars", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_282_FNCS_AllStarsAlt2": { + "templateId": "AthenaDance:SPID_282_FNCS_AllStarsAlt2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_283_Menace": { + "templateId": "AthenaDance:SPID_283_Menace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_284_RiftTour2021": { + "templateId": "AthenaDance:SPID_284_RiftTour2021", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_285_RainbowRoyaleHeart": { + "templateId": "AthenaDance:SPID_285_RainbowRoyaleHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_286_RainbowRoyaleLlama": { + "templateId": "AthenaDance:SPID_286_RainbowRoyaleLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_287_RainbowRoyaleBoogieBomb": { + "templateId": "AthenaDance:SPID_287_RainbowRoyaleBoogieBomb", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_288_RainbowRoyaleStar": { + "templateId": "AthenaDance:SPID_288_RainbowRoyaleStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_289_RiftTourAccLink_X1FV9": { + "templateId": "AthenaDance:SPID_289_RiftTourAccLink_X1FV9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_290_RiftTour2021Extra": { + "templateId": "AthenaDance:SPID_290_RiftTour2021Extra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_291_SeesawCottonCandy": { + "templateId": "AthenaDance:SPID_291_SeesawCottonCandy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_292_SeesawDots": { + "templateId": "AthenaDance:SPID_292_SeesawDots", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_293_SeesawWings": { + "templateId": "AthenaDance:SPID_293_SeesawWings", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_294_SeesawTeeth": { + "templateId": "AthenaDance:SPID_294_SeesawTeeth", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_295_Stereo_AEZ4I": { + "templateId": "AthenaDance:SPID_295_Stereo_AEZ4I", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_296_FNCS": { + "templateId": "AthenaDance:SPID_296_FNCS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_297_ReferAFriendTaxi": { + "templateId": "AthenaDance:SPID_297_ReferAFriendTaxi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_298_Console": { + "templateId": "AthenaDance:SPID_298_Console", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_299_TheMarch": { + "templateId": "AthenaDance:SPID_299_TheMarch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_300_PunkKoi": { + "templateId": "AthenaDance:SPID_300_PunkKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_301_CerealBox": { + "templateId": "AthenaDance:SPID_301_CerealBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_302_Division": { + "templateId": "AthenaDance:SPID_302_Division", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_303_GhostHunter": { + "templateId": "AthenaDance:SPID_303_GhostHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_304_SpaceChimp": { + "templateId": "AthenaDance:SPID_304_SpaceChimp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_305_TeriyakiFishToon": { + "templateId": "AthenaDance:SPID_305_TeriyakiFishToon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_306_Clash": { + "templateId": "AthenaDance:SPID_306_Clash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_308_CritterCuddleLlama": { + "templateId": "AthenaDance:SPID_308_CritterCuddleLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_309_CritterCuddle": { + "templateId": "AthenaDance:SPID_309_CritterCuddle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_310_CritterFrenzyJar": { + "templateId": "AthenaDance:SPID_310_CritterFrenzyJar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_311_CritterRaven": { + "templateId": "AthenaDance:SPID_311_CritterRaven", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_315_4thBirthday": { + "templateId": "AthenaDance:SPID_315_4thBirthday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_316_Textile2_O0CJQ": { + "templateId": "AthenaDance:SPID_316_Textile2_O0CJQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_318_Textile1_5WJ1Q": { + "templateId": "AthenaDance:SPID_318_Textile1_5WJ1Q", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_319_FNCS18": { + "templateId": "AthenaDance:SPID_319_FNCS18", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_320_SoundWave": { + "templateId": "AthenaDance:SPID_320_SoundWave", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_321_FortnitemaresCup2021": { + "templateId": "AthenaDance:SPID_321_FortnitemaresCup2021", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_322_Grasshopper_83HQ3": { + "templateId": "AthenaDance:SPID_322_Grasshopper_83HQ3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_323_ScienceDungeonSTW": { + "templateId": "AthenaDance:SPID_323_ScienceDungeonSTW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_324_CubeQueen": { + "templateId": "AthenaDance:SPID_324_CubeQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_325_UproarGraffiti_QFE4O": { + "templateId": "AthenaDance:SPID_325_UproarGraffiti_QFE4O", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_326_SoundwaveSeries": { + "templateId": "AthenaDance:SPID_326_SoundwaveSeries", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_327_GrasshopperHeart_CP6MR": { + "templateId": "AthenaDance:SPID_327_GrasshopperHeart_CP6MR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_328_GrasshopperHammer_5D0FN": { + "templateId": "AthenaDance:SPID_328_GrasshopperHammer_5D0FN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_329_ItalianDA": { + "templateId": "AthenaDance:SPID_329_ItalianDA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_330_Haste_52NCD": { + "templateId": "AthenaDance:SPID_330_Haste_52NCD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_331_RL_GG_K34SP": { + "templateId": "AthenaDance:SPID_331_RL_GG_K34SP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_332_RustyBoltLogo_ZB1B0": { + "templateId": "AthenaDance:SPID_332_RustyBoltLogo_ZB1B0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_333_RustyBoltCreature_ZGF9S": { + "templateId": "AthenaDance:SPID_333_RustyBoltCreature_ZGF9S", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_334_Turtleneck": { + "templateId": "AthenaDance:SPID_334_Turtleneck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_335_BuffLlama": { + "templateId": "AthenaDance:SPID_335_BuffLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_336_ExoSuit": { + "templateId": "AthenaDance:SPID_336_ExoSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_337_Gumball": { + "templateId": "AthenaDance:SPID_337_Gumball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_338_IslandNomad": { + "templateId": "AthenaDance:SPID_338_IslandNomad", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_339_LoneWolf": { + "templateId": "AthenaDance:SPID_339_LoneWolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_340_Motorcyclist": { + "templateId": "AthenaDance:SPID_340_Motorcyclist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_341_Parallel": { + "templateId": "AthenaDance:SPID_341_Parallel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_342_LoneWolfHero": { + "templateId": "AthenaDance:SPID_342_LoneWolfHero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_343_Slither1_4EHZI": { + "templateId": "AthenaDance:SPID_343_Slither1_4EHZI", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_344_Slither2_58PVJ": { + "templateId": "AthenaDance:SPID_344_Slither2_58PVJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_345_Slither3_T063W": { + "templateId": "AthenaDance:SPID_345_Slither3_T063W", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_346_Winterfest_2021": { + "templateId": "AthenaDance:SPID_346_Winterfest_2021", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_347_ShowdownTomato": { + "templateId": "AthenaDance:SPID_347_ShowdownTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_348_ShowdownReaper": { + "templateId": "AthenaDance:SPID_348_ShowdownReaper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_349_ShowdownPanda": { + "templateId": "AthenaDance:SPID_349_ShowdownPanda", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_350_WinterfestCreative": { + "templateId": "AthenaDance:SPID_350_WinterfestCreative", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_351_AO_SummerSmash": { + "templateId": "AthenaDance:SPID_351_AO_SummerSmash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_352_Sleek_8M482": { + "templateId": "AthenaDance:SPID_352_Sleek_8M482", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_353_FNCS_Drops": { + "templateId": "AthenaDance:SPID_353_FNCS_Drops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_354_HelmetDrops": { + "templateId": "AthenaDance:SPID_354_HelmetDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_355_FlowerSkeleton": { + "templateId": "AthenaDance:SPID_355_FlowerSkeleton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_356_BlueStriker": { + "templateId": "AthenaDance:SPID_356_BlueStriker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_357_SoundwaveSeriesMC": { + "templateId": "AthenaDance:SPID_357_SoundwaveSeriesMC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_358_Trey_13D84": { + "templateId": "AthenaDance:SPID_358_Trey_13D84", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_359_Dr_U39EK": { + "templateId": "AthenaDance:SPID_359_Dr_U39EK", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_360_IWD2021": { + "templateId": "AthenaDance:SPID_360_IWD2021", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_361_ThriveTourneyReward": { + "templateId": "AthenaDance:SPID_361_ThriveTourneyReward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_362_Binary": { + "templateId": "AthenaDance:SPID_362_Binary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_363_Cadet": { + "templateId": "AthenaDance:SPID_363_Cadet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_364_CubeKing": { + "templateId": "AthenaDance:SPID_364_CubeKing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_365_CyberArmor": { + "templateId": "AthenaDance:SPID_365_CyberArmor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_366_JourneyMentor": { + "templateId": "AthenaDance:SPID_366_JourneyMentor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_367_KnightCat": { + "templateId": "AthenaDance:SPID_367_KnightCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_368_LittleEggChick": { + "templateId": "AthenaDance:SPID_368_LittleEggChick", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_369_LittleEggDrops": { + "templateId": "AthenaDance:SPID_369_LittleEggDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_370_MysticAmulet": { + "templateId": "AthenaDance:SPID_370_MysticAmulet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_371_MysticRunes": { + "templateId": "AthenaDance:SPID_371_MysticRunes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_372_OrderGuard": { + "templateId": "AthenaDance:SPID_372_OrderGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_373_Sienna": { + "templateId": "AthenaDance:SPID_373_Sienna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_374_TacticalBR_Reward1": { + "templateId": "AthenaDance:SPID_374_TacticalBR_Reward1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_375_TacticalBR_Reward2": { + "templateId": "AthenaDance:SPID_375_TacticalBR_Reward2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_376_TacticalBR_Reward3": { + "templateId": "AthenaDance:SPID_376_TacticalBR_Reward3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_377_TacticalBR_Reward4": { + "templateId": "AthenaDance:SPID_377_TacticalBR_Reward4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_378_TacticalBR_Reward5": { + "templateId": "AthenaDance:SPID_378_TacticalBR_Reward5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_379_PostpartyReward": { + "templateId": "AthenaDance:SPID_379_PostpartyReward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_380_CollegeCup": { + "templateId": "AthenaDance:SPID_380_CollegeCup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_381_Windwalker": { + "templateId": "AthenaDance:SPID_381_Windwalker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_382_UERaider": { + "templateId": "AthenaDance:SPID_382_UERaider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_383_FNCSDrops": { + "templateId": "AthenaDance:SPID_383_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_384_CuddleKing_Competitive": { + "templateId": "AthenaDance:SPID_384_CuddleKing_Competitive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_386_Waterskiing_Competitive": { + "templateId": "AthenaDance:SPID_386_Waterskiing_Competitive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_387_Jonesy_Competitive": { + "templateId": "AthenaDance:SPID_387_Jonesy_Competitive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_390_SlurpMonster_Competitive": { + "templateId": "AthenaDance:SPID_390_SlurpMonster_Competitive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_391_Drift_Competitive": { + "templateId": "AthenaDance:SPID_391_Drift_Competitive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_392_GhoulPopsicles_Competitive": { + "templateId": "AthenaDance:SPID_392_GhoulPopsicles_Competitive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_393_Madcubes_CuddleTeam": { + "templateId": "AthenaDance:SPID_393_Madcubes_CuddleTeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_394_Madcubes_SpookyTeam": { + "templateId": "AthenaDance:SPID_394_Madcubes_SpookyTeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_395_Madcubes_Doggo": { + "templateId": "AthenaDance:SPID_395_Madcubes_Doggo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_396_Madcubes_ShadowMeowscles": { + "templateId": "AthenaDance:SPID_396_Madcubes_ShadowMeowscles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_397_Madcubes_Meowscles": { + "templateId": "AthenaDance:SPID_397_Madcubes_Meowscles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_398_Madcubes_Guff": { + "templateId": "AthenaDance:SPID_398_Madcubes_Guff", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_399_Vehicle_Raptor": { + "templateId": "AthenaDance:SPID_399_Vehicle_Raptor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_400_Vehicle_Jade": { + "templateId": "AthenaDance:SPID_400_Vehicle_Jade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_401_Vehicle_Rainbow": { + "templateId": "AthenaDance:SPID_401_Vehicle_Rainbow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_402_Lyrical_Name": { + "templateId": "AthenaDance:SPID_402_Lyrical_Name", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_403_Lyrical_BoomBox": { + "templateId": "AthenaDance:SPID_403_Lyrical_BoomBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_405_SoundwaveSeriesGH": { + "templateId": "AthenaDance:SPID_405_SoundwaveSeriesGH", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_406_Alfredo_Quest": { + "templateId": "AthenaDance:SPID_406_Alfredo_Quest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_407_BlueJay": { + "templateId": "AthenaDance:SPID_407_BlueJay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_408_Collectable": { + "templateId": "AthenaDance:SPID_408_Collectable", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_409_Fuchsia": { + "templateId": "AthenaDance:SPID_409_Fuchsia", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_410_Lancelot": { + "templateId": "AthenaDance:SPID_410_Lancelot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_411_DarkStorm": { + "templateId": "AthenaDance:SPID_411_DarkStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_412_PinkWidow": { + "templateId": "AthenaDance:SPID_412_PinkWidow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_413_Realm": { + "templateId": "AthenaDance:SPID_413_Realm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_414_Canary": { + "templateId": "AthenaDance:SPID_414_Canary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_415_CollectableSmall": { + "templateId": "AthenaDance:SPID_415_CollectableSmall", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_416_BlueJayX": { + "templateId": "AthenaDance:SPID_416_BlueJayX", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_417_RealmHelmet": { + "templateId": "AthenaDance:SPID_417_RealmHelmet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_419_PeaceSignQuest": { + "templateId": "AthenaDance:SPID_419_PeaceSignQuest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_420_ALT_Chaos": { + "templateId": "AthenaDance:SPID_420_ALT_Chaos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_421_ALT_Barium": { + "templateId": "AthenaDance:SPID_421_ALT_Barium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_423_Lancelot_NeonSword": { + "templateId": "AthenaDance:SPID_423_Lancelot_NeonSword", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_424_Lancelot_Profile": { + "templateId": "AthenaDance:SPID_424_Lancelot_Profile", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_425_Fuchsia_Duotone": { + "templateId": "AthenaDance:SPID_425_Fuchsia_Duotone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_426_Kuno": { + "templateId": "AthenaDance:SPID_426_Kuno", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_427_Sultura": { + "templateId": "AthenaDance:SPID_427_Sultura", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_428_FlappyGreen": { + "templateId": "AthenaDance:SPID_428_FlappyGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_429_Summer_Raven": { + "templateId": "AthenaDance:SPID_429_Summer_Raven", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_430_Summer_Ravage": { + "templateId": "AthenaDance:SPID_430_Summer_Ravage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_431_SoundwaveSeriesAN": { + "templateId": "AthenaDance:SPID_431_SoundwaveSeriesAN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_432_FNCSDrops": { + "templateId": "AthenaDance:SPID_432_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_433_GalaxyCup": { + "templateId": "AthenaDance:SPID_433_GalaxyCup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_434_BlueStriker": { + "templateId": "AthenaDance:SPID_434_BlueStriker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_435_ReferFriend": { + "templateId": "AthenaDance:SPID_435_ReferFriend", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_436_Stamina_Super": { + "templateId": "AthenaDance:SPID_436_Stamina_Super", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_437_Stamina_Meticulous": { + "templateId": "AthenaDance:SPID_437_Stamina_Meticulous", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_438_Stamina_CatNoodle": { + "templateId": "AthenaDance:SPID_438_Stamina_CatNoodle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_439_RL": { + "templateId": "AthenaDance:SPID_439_RL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_440_Spectacle": { + "templateId": "AthenaDance:SPID_440_Spectacle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_445_RainbowRoyale": { + "templateId": "AthenaDance:SPID_445_RainbowRoyale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_446_Scholastic_Meowscles": { + "templateId": "AthenaDance:SPID_446_Scholastic_Meowscles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_447_Scholastic_Doggo": { + "templateId": "AthenaDance:SPID_447_Scholastic_Doggo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_448_Scholastic_BlueLlama": { + "templateId": "AthenaDance:SPID_448_Scholastic_BlueLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_449_Competitive_BurningWolf": { + "templateId": "AthenaDance:SPID_449_Competitive_BurningWolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_450_Competitive_Catalyst": { + "templateId": "AthenaDance:SPID_450_Competitive_Catalyst", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_451_Competitive_Fade": { + "templateId": "AthenaDance:SPID_451_Competitive_Fade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_452_Competitive_MasterKey": { + "templateId": "AthenaDance:SPID_452_Competitive_MasterKey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:SPID_453_Competitive_Shogun": { + "templateId": "AthenaDance:SPID_453_Competitive_Shogun", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaPickaxe:SpikyPickaxe": { + "templateId": "AthenaPickaxe:SpikyPickaxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_14DaysOfSummer": { + "templateId": "AthenaDance:Spray_14DaysOfSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_5thBirthday": { + "templateId": "AthenaDance:Spray_5thBirthday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_6thBirthday": { + "templateId": "AthenaDance:Spray_6thBirthday", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_AgentSherbert_Green": { + "templateId": "AthenaDance:Spray_AgentSherbert_Green", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_AgentSherbert_Purple": { + "templateId": "AthenaDance:Spray_AgentSherbert_Purple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_AloeCrouton": { + "templateId": "AthenaDance:Spray_AloeCrouton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Amour": { + "templateId": "AthenaDance:Spray_Amour", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Apprentice": { + "templateId": "AthenaDance:Spray_Apprentice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_ArcticIce_Blue": { + "templateId": "AthenaDance:Spray_ArcticIce_Blue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_ArcticIce_Talus": { + "templateId": "AthenaDance:Spray_ArcticIce_Talus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BacklogWild": { + "templateId": "AthenaDance:Spray_BacklogWild", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BadBear_Hand": { + "templateId": "AthenaDance:Spray_BadBear_Hand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BadBear_Muscle": { + "templateId": "AthenaDance:Spray_BadBear_Muscle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BangalBasher_Face": { + "templateId": "AthenaDance:Spray_BangalBasher_Face", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BangalBasher_Royale": { + "templateId": "AthenaDance:Spray_BangalBasher_Royale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BasilStrong_Pickaxe": { + "templateId": "AthenaDance:Spray_BasilStrong_Pickaxe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Bites_Blade": { + "templateId": "AthenaDance:Spray_Bites_Blade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Bites_Skull": { + "templateId": "AthenaDance:Spray_Bites_Skull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BlazerVeil": { + "templateId": "AthenaDance:Spray_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BlazerVeil2": { + "templateId": "AthenaDance:Spray_BlazerVeil2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BrawnyBass": { + "templateId": "AthenaDance:Spray_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BrawnyBass2": { + "templateId": "AthenaDance:Spray_BrawnyBass2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_BuffCatCruise": { + "templateId": "AthenaDance:Spray_BuffCatCruise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Candor": { + "templateId": "AthenaDance:Spray_Candor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Candor_Guns": { + "templateId": "AthenaDance:Spray_Candor_Guns", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_CeremonialGuard_Portrait": { + "templateId": "AthenaDance:Spray_CeremonialGuard_Portrait", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Chainmail_Bat": { + "templateId": "AthenaDance:Spray_Chainmail_Bat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Chainmail_Mask": { + "templateId": "AthenaDance:Spray_Chainmail_Mask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_ChaosAgent_General": { + "templateId": "AthenaDance:Spray_ChaosAgent_General", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_ChillCat": { + "templateId": "AthenaDance:Spray_ChillCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_CinderMax_Fireball": { + "templateId": "AthenaDance:Spray_CinderMax_Fireball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_CinderMax_Green": { + "templateId": "AthenaDance:Spray_CinderMax_Green", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Citadel": { + "templateId": "AthenaDance:Spray_Citadel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_ClearRadius": { + "templateId": "AthenaDance:Spray_ClearRadius", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Competitive_Crackshot_Glitch": { + "templateId": "AthenaDance:Spray_Competitive_Crackshot_Glitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Competitive_CTLDrop": { + "templateId": "AthenaDance:Spray_Competitive_CTLDrop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Competitive_CuddleTeam_Glitch": { + "templateId": "AthenaDance:Spray_Competitive_CuddleTeam_Glitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Competitive_GuacoDrop": { + "templateId": "AthenaDance:Spray_Competitive_GuacoDrop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Competitive_GuffDrop": { + "templateId": "AthenaDance:Spray_Competitive_GuffDrop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Competitive_LlamaDrop": { + "templateId": "AthenaDance:Spray_Competitive_LlamaDrop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Competitive_PeelyDrop": { + "templateId": "AthenaDance:Spray_Competitive_PeelyDrop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Competitive_RainbowDash_Glitch": { + "templateId": "AthenaDance:Spray_Competitive_RainbowDash_Glitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Competitve_GGDrip": { + "templateId": "AthenaDance:Spray_Competitve_GGDrip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_CoyoteTrail": { + "templateId": "AthenaDance:Spray_CoyoteTrail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_CreativeQuest": { + "templateId": "AthenaDance:Spray_CreativeQuest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_CreativeQuest_Reward_PeelySlice": { + "templateId": "AthenaDance:Spray_CreativeQuest_Reward_PeelySlice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_CrispRover": { + "templateId": "AthenaDance:Spray_CrispRover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Dazzle_Cat": { + "templateId": "AthenaDance:Spray_Dazzle_Cat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Dazzle_Characters": { + "templateId": "AthenaDance:Spray_Dazzle_Characters", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_DefacedSnowman_Winterfest2022": { + "templateId": "AthenaDance:Spray_DefacedSnowman_Winterfest2022", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Desdemona_General": { + "templateId": "AthenaDance:Spray_Desdemona_General", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_DiamondHeart_Portrait": { + "templateId": "AthenaDance:Spray_DiamondHeart_Portrait", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_DiscordWeekly": { + "templateId": "AthenaDance:Spray_DiscordWeekly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Dizzy_Drip": { + "templateId": "AthenaDance:Spray_Dizzy_Drip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Ebony": { + "templateId": "AthenaDance:Spray_Ebony", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_EmeraldGlass": { + "templateId": "AthenaDance:Spray_EmeraldGlass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_EmeraldGlass_Green": { + "templateId": "AthenaDance:Spray_EmeraldGlass_Green", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Emphasis": { + "templateId": "AthenaDance:Spray_Emphasis", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Event_DD": { + "templateId": "AthenaDance:Spray_Event_DD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Event_Y": { + "templateId": "AthenaDance:Spray_Event_Y", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Evie_CipherReward": { + "templateId": "AthenaDance:Spray_Evie_CipherReward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_FearlessFlight": { + "templateId": "AthenaDance:Spray_FearlessFlight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_FearlessWeb": { + "templateId": "AthenaDance:Spray_FearlessWeb", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_FFC": { + "templateId": "AthenaDance:Spray_FFC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_FindItInFortnite": { + "templateId": "AthenaDance:Spray_FindItInFortnite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Fishsticks_General": { + "templateId": "AthenaDance:Spray_Fishsticks_General", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Fortnitemares2022_Chicken": { + "templateId": "AthenaDance:Spray_Fortnitemares2022_Chicken", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Fortnitemares2022_SquidEye": { + "templateId": "AthenaDance:Spray_Fortnitemares2022_SquidEye", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Fortnitemares_Quest": { + "templateId": "AthenaDance:Spray_Fortnitemares_Quest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_FortniteStories_Triggerfish": { + "templateId": "AthenaDance:Spray_FortniteStories_Triggerfish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_FunBreak": { + "templateId": "AthenaDance:Spray_FunBreak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_GalaxyCupReward": { + "templateId": "AthenaDance:Spray_GalaxyCupReward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_GalaxyLevel": { + "templateId": "AthenaDance:Spray_GalaxyLevel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_GermanCommunityBattle": { + "templateId": "AthenaDance:Spray_GermanCommunityBattle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_GlitchPunk": { + "templateId": "AthenaDance:Spray_GlitchPunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_GuffHolidayTree_Winterfest2022": { + "templateId": "AthenaDance:Spray_GuffHolidayTree_Winterfest2022", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Headset": { + "templateId": "AthenaDance:Spray_Headset", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Honk": { + "templateId": "AthenaDance:Spray_Honk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_HornedJudgement2": { + "templateId": "AthenaDance:Spray_HornedJudgement2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_IndieBucket": { + "templateId": "AthenaDance:Spray_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_IndieBucket2": { + "templateId": "AthenaDance:Spray_IndieBucket2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Inferno": { + "templateId": "AthenaDance:Spray_Inferno", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Inspire_Quest": { + "templateId": "AthenaDance:Spray_Inspire_Quest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Inspire_Tournament": { + "templateId": "AthenaDance:Spray_Inspire_Tournament", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Invitational": { + "templateId": "AthenaDance:Spray_Invitational", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_IWD": { + "templateId": "AthenaDance:Spray_IWD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_JoyfulGrin": { + "templateId": "AthenaDance:Spray_JoyfulGrin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_JoyfulGrin_Initial": { + "templateId": "AthenaDance:Spray_JoyfulGrin_Initial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_JumpsuitMasks_1": { + "templateId": "AthenaDance:Spray_JumpsuitMasks_1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_JumpsuitMasks_2": { + "templateId": "AthenaDance:Spray_JumpsuitMasks_2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_JumpsuitMasks_3": { + "templateId": "AthenaDance:Spray_JumpsuitMasks_3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_JumpsuitMasks_4": { + "templateId": "AthenaDance:Spray_JumpsuitMasks_4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_JumpsuitMasks_5": { + "templateId": "AthenaDance:Spray_JumpsuitMasks_5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_JumpsuitMasks_6": { + "templateId": "AthenaDance:Spray_JumpsuitMasks_6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_JumpsuitMasks_7": { + "templateId": "AthenaDance:Spray_JumpsuitMasks_7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_JumpsuitMasks_8": { + "templateId": "AthenaDance:Spray_JumpsuitMasks_8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_JumpsuitMasks_9": { + "templateId": "AthenaDance:Spray_JumpsuitMasks_9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_1": { + "templateId": "AthenaDance:Spray_Jumpsuit_1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_11": { + "templateId": "AthenaDance:Spray_Jumpsuit_11", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_13": { + "templateId": "AthenaDance:Spray_Jumpsuit_13", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_14": { + "templateId": "AthenaDance:Spray_Jumpsuit_14", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_16": { + "templateId": "AthenaDance:Spray_Jumpsuit_16", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_17": { + "templateId": "AthenaDance:Spray_Jumpsuit_17", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_18": { + "templateId": "AthenaDance:Spray_Jumpsuit_18", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_19": { + "templateId": "AthenaDance:Spray_Jumpsuit_19", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_2": { + "templateId": "AthenaDance:Spray_Jumpsuit_2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_20": { + "templateId": "AthenaDance:Spray_Jumpsuit_20", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_21": { + "templateId": "AthenaDance:Spray_Jumpsuit_21", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_22": { + "templateId": "AthenaDance:Spray_Jumpsuit_22", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_27": { + "templateId": "AthenaDance:Spray_Jumpsuit_27", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_28": { + "templateId": "AthenaDance:Spray_Jumpsuit_28", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_29": { + "templateId": "AthenaDance:Spray_Jumpsuit_29", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_3": { + "templateId": "AthenaDance:Spray_Jumpsuit_3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_31": { + "templateId": "AthenaDance:Spray_Jumpsuit_31", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_32": { + "templateId": "AthenaDance:Spray_Jumpsuit_32", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_34": { + "templateId": "AthenaDance:Spray_Jumpsuit_34", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_38": { + "templateId": "AthenaDance:Spray_Jumpsuit_38", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_39": { + "templateId": "AthenaDance:Spray_Jumpsuit_39", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_4": { + "templateId": "AthenaDance:Spray_Jumpsuit_4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_5": { + "templateId": "AthenaDance:Spray_Jumpsuit_5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_6": { + "templateId": "AthenaDance:Spray_Jumpsuit_6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_7": { + "templateId": "AthenaDance:Spray_Jumpsuit_7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_8": { + "templateId": "AthenaDance:Spray_Jumpsuit_8", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Jumpsuit_9": { + "templateId": "AthenaDance:Spray_Jumpsuit_9", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_LastVoice": { + "templateId": "AthenaDance:Spray_LastVoice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_LazarusLens": { + "templateId": "AthenaDance:Spray_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_LazarusLens2": { + "templateId": "AthenaDance:Spray_LazarusLens2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Leaderboard": { + "templateId": "AthenaDance:Spray_Leaderboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_LettuceGaming": { + "templateId": "AthenaDance:Spray_LettuceGaming", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_LilSplit2": { + "templateId": "AthenaDance:Spray_LilSplit2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_LilSplit_Extra": { + "templateId": "AthenaDance:Spray_LilSplit_Extra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_LocalZilla_Logo": { + "templateId": "AthenaDance:Spray_LocalZilla_Logo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_LocalZilla_Name": { + "templateId": "AthenaDance:Spray_LocalZilla_Name", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Localzilla_Portrait": { + "templateId": "AthenaDance:Spray_Localzilla_Portrait", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_LoudPhoenix": { + "templateId": "AthenaDance:Spray_LoudPhoenix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_LoudPhoenix_PrimeTime": { + "templateId": "AthenaDance:Spray_LoudPhoenix_PrimeTime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_MadameMoth_Portrait": { + "templateId": "AthenaDance:Spray_MadameMoth_Portrait", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_MadameMoth_Symbol": { + "templateId": "AthenaDance:Spray_MadameMoth_Symbol", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_MagicMeadow": { + "templateId": "AthenaDance:Spray_MagicMeadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_MeteorWomen": { + "templateId": "AthenaDance:Spray_MeteorWomen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Midas_Drip": { + "templateId": "AthenaDance:Spray_Midas_Drip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Mouse_RatzAttack": { + "templateId": "AthenaDance:Spray_Mouse_RatzAttack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_MTH_CirrusVine": { + "templateId": "AthenaDance:Spray_MTH_CirrusVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_MTH_Ga": { + "templateId": "AthenaDance:Spray_MTH_Ga", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_MTH_GrandScheme": { + "templateId": "AthenaDance:Spray_MTH_GrandScheme", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_MusketSlinger": { + "templateId": "AthenaDance:Spray_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_MusketSlinger2": { + "templateId": "AthenaDance:Spray_MusketSlinger2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_NarrativeQuest": { + "templateId": "AthenaDance:Spray_NarrativeQuest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Nebula_NarrativeQuestReward": { + "templateId": "AthenaDance:Spray_Nebula_NarrativeQuestReward", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_NitroFlow": { + "templateId": "AthenaDance:Spray_NitroFlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_OceanBreeze": { + "templateId": "AthenaDance:Spray_OceanBreeze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_PartyTrooper_General": { + "templateId": "AthenaDance:Spray_PartyTrooper_General", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_PinkSpike": { + "templateId": "AthenaDance:Spray_PinkSpike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_PizzaParty": { + "templateId": "AthenaDance:Spray_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_PizzaParty2": { + "templateId": "AthenaDance:Spray_PizzaParty2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_PowerfulDozen": { + "templateId": "AthenaDance:Spray_PowerfulDozen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_PowerfulDozen_Initial": { + "templateId": "AthenaDance:Spray_PowerfulDozen_Initial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Project_Maze": { + "templateId": "AthenaDance:Spray_Project_Maze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_PurpleFootballLlama": { + "templateId": "AthenaDance:Spray_PurpleFootballLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_QualityCreek": { + "templateId": "AthenaDance:Spray_QualityCreek", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_QualityCreek_Initial": { + "templateId": "AthenaDance:Spray_QualityCreek_Initial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_QuietPeanuts": { + "templateId": "AthenaDance:Spray_QuietPeanuts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_QuietPeanuts_Initial": { + "templateId": "AthenaDance:Spray_QuietPeanuts_Initial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Ranked": { + "templateId": "AthenaDance:Spray_Ranked", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Ranked2": { + "templateId": "AthenaDance:Spray_Ranked2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Ranked3": { + "templateId": "AthenaDance:Spray_Ranked3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Ranked4": { + "templateId": "AthenaDance:Spray_Ranked4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_RebelClaw": { + "templateId": "AthenaDance:Spray_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_RebelClaw2": { + "templateId": "AthenaDance:Spray_RebelClaw2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_RebootRalley": { + "templateId": "AthenaDance:Spray_RebootRalley", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_RedOasis": { + "templateId": "AthenaDance:Spray_RedOasis", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_RedPepper": { + "templateId": "AthenaDance:Spray_RedPepper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_ReferAFriend": { + "templateId": "AthenaDance:Spray_ReferAFriend", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_ReferFriend": { + "templateId": "AthenaDance:Spray_ReferFriend", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Rejoice": { + "templateId": "AthenaDance:Spray_Rejoice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_RippedHarvester": { + "templateId": "AthenaDance:Spray_RippedHarvester", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_RL_Vista": { + "templateId": "AthenaDance:Spray_RL_Vista", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_RoseDust": { + "templateId": "AthenaDance:Spray_RoseDust", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S23_FNCS_Drops": { + "templateId": "AthenaDance:Spray_S23_FNCS_Drops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S24_FNCSDrops": { + "templateId": "AthenaDance:Spray_S24_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S25_FNCSDrops": { + "templateId": "AthenaDance:Spray_S25_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S26_FNCSDrops": { + "templateId": "AthenaDance:Spray_S26_FNCSDrops", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S26_Ranked": { + "templateId": "AthenaDance:Spray_S26_Ranked", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S26_Ranked2": { + "templateId": "AthenaDance:Spray_S26_Ranked2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S26_Ranked3": { + "templateId": "AthenaDance:Spray_S26_Ranked3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S27_Ranked_HornedJudgment": { + "templateId": "AthenaDance:Spray_S27_Ranked_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S27_Ranked_RebelClaw": { + "templateId": "AthenaDance:Spray_S27_Ranked_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_S27_Ranked_ScaryBeary": { + "templateId": "AthenaDance:Spray_S27_Ranked_ScaryBeary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_ScholasticTournament_Spray1": { + "templateId": "AthenaDance:Spray_ScholasticTournament_Spray1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_ScholasticTournament_Spray2": { + "templateId": "AthenaDance:Spray_ScholasticTournament_Spray2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_ScholasticTournament_Spray3": { + "templateId": "AthenaDance:Spray_ScholasticTournament_Spray3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_ScorpionZero": { + "templateId": "AthenaDance:Spray_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_SharpFang_Sipping": { + "templateId": "AthenaDance:Spray_SharpFang_Sipping", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Showdown_Co": { + "templateId": "AthenaDance:Spray_Showdown_Co", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Showdown_Mae": { + "templateId": "AthenaDance:Spray_Showdown_Mae", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Showdown_Pi": { + "templateId": "AthenaDance:Spray_Showdown_Pi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Showdown_Zet": { + "templateId": "AthenaDance:Spray_Showdown_Zet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_SilentTempo": { + "templateId": "AthenaDance:Spray_SilentTempo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_SilentTempo2": { + "templateId": "AthenaDance:Spray_SilentTempo2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_SmartHyena": { + "templateId": "AthenaDance:Spray_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_SnowKnight_Helm": { + "templateId": "AthenaDance:Spray_SnowKnight_Helm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_SpringFling_2023": { + "templateId": "AthenaDance:Spray_SpringFling_2023", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_StarStrayFN": { + "templateId": "AthenaDance:Spray_StarStrayFN", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_StWHordeModeMVP_Lvl4": { + "templateId": "AthenaDance:Spray_StWHordeModeMVP_Lvl4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_StWHordeModeMVP_Lvl5": { + "templateId": "AthenaDance:Spray_StWHordeModeMVP_Lvl5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_SunBurst_Alt": { + "templateId": "AthenaDance:Spray_SunBurst_Alt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_SunBurst_Face": { + "templateId": "AthenaDance:Spray_SunBurst_Face", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Sunlit": { + "templateId": "AthenaDance:Spray_Sunlit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_TheHerald": { + "templateId": "AthenaDance:Spray_TheHerald", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_TigerRootQuest": { + "templateId": "AthenaDance:Spray_TigerRootQuest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_TigerRootQuest2": { + "templateId": "AthenaDance:Spray_TigerRootQuest2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Tournament_YB": { + "templateId": "AthenaDance:Spray_Tournament_YB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_UndergroundLogo": { + "templateId": "AthenaDance:Spray_UndergroundLogo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_UndergroundRebel_Griffiti": { + "templateId": "AthenaDance:Spray_UndergroundRebel_Griffiti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_UndergroundRebel_Wanted": { + "templateId": "AthenaDance:Spray_UndergroundRebel_Wanted", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_UndergroundRebel_WantedPeely": { + "templateId": "AthenaDance:Spray_UndergroundRebel_WantedPeely", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_VaultBreakers_Leaderboard": { + "templateId": "AthenaDance:Spray_VaultBreakers_Leaderboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_VaultBreakers_Pumpkin": { + "templateId": "AthenaDance:Spray_VaultBreakers_Pumpkin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_VaultBreakers_Snake": { + "templateId": "AthenaDance:Spray_VaultBreakers_Snake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Venice_Bird": { + "templateId": "AthenaDance:Spray_Venice_Bird", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Venice_Skateboard": { + "templateId": "AthenaDance:Spray_Venice_Skateboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_VitalPsych_Hop": { + "templateId": "AthenaDance:Spray_VitalPsych_Hop", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_VitalPsych_Peace": { + "templateId": "AthenaDance:Spray_VitalPsych_Peace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_VoidRedemption_Art": { + "templateId": "AthenaDance:Spray_VoidRedemption_Art", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_VoidRedemption_Portrait": { + "templateId": "AthenaDance:Spray_VoidRedemption_Portrait", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Winter2022_CreativeQuest_2": { + "templateId": "AthenaDance:Spray_Winter2022_CreativeQuest_2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Winter2022_CreativeQuest_HotCocoa": { + "templateId": "AthenaDance:Spray_Winter2022_CreativeQuest_HotCocoa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Winter2022_CreativeQuest_MistleToe": { + "templateId": "AthenaDance:Spray_Winter2022_CreativeQuest_MistleToe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_WinterReindeer_Winterfest2022": { + "templateId": "AthenaDance:Spray_WinterReindeer_Winterfest2022", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_Yonder_Drip": { + "templateId": "AthenaDance:Spray_Yonder_Drip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_ZebraScramble": { + "templateId": "AthenaDance:Spray_ZebraScramble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:Spray_ZirconSweep": { + "templateId": "AthenaDance:Spray_ZirconSweep", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Squad_Umbrella": { + "templateId": "AthenaGlider:Squad_Umbrella", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_001_Basketball": { + "templateId": "AthenaDance:TOY_001_Basketball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_001_Basketball_Creative": { + "templateId": "AthenaDance:TOY_001_Basketball_Creative", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_002_Golfball": { + "templateId": "AthenaDance:TOY_002_Golfball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_002_Golfball_Creative": { + "templateId": "AthenaDance:TOY_002_Golfball_Creative", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_003_BeachBall": { + "templateId": "AthenaDance:TOY_003_BeachBall", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_004_BasketballElite": { + "templateId": "AthenaDance:TOY_004_BasketballElite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_005_GolfballElite": { + "templateId": "AthenaDance:TOY_005_GolfballElite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_006_BeachBallElite": { + "templateId": "AthenaDance:TOY_006_BeachBallElite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_007_Tomato": { + "templateId": "AthenaDance:TOY_007_Tomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_008_TomatoElite": { + "templateId": "AthenaDance:TOY_008_TomatoElite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_009_BurgerElite": { + "templateId": "AthenaDance:TOY_009_BurgerElite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_010_IcePuck": { + "templateId": "AthenaDance:TOY_010_IcePuck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_011_Snowball": { + "templateId": "AthenaDance:TOY_011_Snowball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_012_AmericanFootball": { + "templateId": "AthenaDance:TOY_012_AmericanFootball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_014_BouncyBall": { + "templateId": "AthenaDance:TOY_014_BouncyBall", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_015_Bottle": { + "templateId": "AthenaDance:TOY_015_Bottle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_017_FlyingDisc": { + "templateId": "AthenaDance:TOY_017_FlyingDisc", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_018_FancyFlyingDisc": { + "templateId": "AthenaDance:TOY_018_FancyFlyingDisc", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_019_WaterBalloon": { + "templateId": "AthenaDance:TOY_019_WaterBalloon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_020_Bottle_Fancy": { + "templateId": "AthenaDance:TOY_020_Bottle_Fancy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_021_SoccerBall": { + "templateId": "AthenaDance:TOY_021_SoccerBall", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_021_SoccerBall_Creative": { + "templateId": "AthenaDance:TOY_021_SoccerBall_Creative", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_Basketball_Hookshot_LUWQ6": { + "templateId": "AthenaDance:TOY_Basketball_Hookshot_LUWQ6", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:TOY_PartyRift": { + "templateId": "AthenaDance:TOY_PartyRift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_001_Disco": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_001_Disco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_002_Rainbow": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_002_Rainbow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_003_Fire": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_003_Fire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_004_BlueStreak": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_004_BlueStreak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_005_Bubbles": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_005_Bubbles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_007_TP": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_007_TP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_008_Lightning": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_008_Lightning", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_009_Hearts": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_009_Hearts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_010_RetroScifi": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_010_RetroScifi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_011_Glitch": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_011_Glitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_012_Spraypaint": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_012_Spraypaint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_013_ShootingStar": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_013_ShootingStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_014_Vines": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_014_Vines", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_015_GoldenStarfish": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_015_GoldenStarfish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_016_Ice": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_016_Ice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_017_Lanterns": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_017_Lanterns", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_018_Runes": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_018_Runes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_019_PSBurnout": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_019_PSBurnout", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_020_RavenQuill": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_020_RavenQuill", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_021_Bling": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_021_Bling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_022_GreenSmoke": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_022_GreenSmoke", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_023_Fireflies": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_023_Fireflies", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_024_DieselSmoke": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_024_DieselSmoke", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_025_JackOLantern": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_025_JackOLantern", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_026_Bats": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_026_Bats", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_027_Sands": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_027_Sands", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_032_StringLights": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_032_StringLights", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_033_Snowflakes": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_033_Snowflakes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_034_SwirlySmoke": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_034_SwirlySmoke", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_036_FiberOptics": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_036_FiberOptics", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_037_Glyphs": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_037_Glyphs", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_043_DiscoBalls": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_043_DiscoBalls", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_044_Lava": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_044_Lava", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_045_Undertow": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_045_Undertow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_046_Clover": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_046_Clover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_047_AmmoBelt": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_047_AmmoBelt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_048_Spectral": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_048_Spectral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_051_NeonTubes": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_051_NeonTubes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_054_KpopGlow": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_054_KpopGlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_055_Bananas": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_055_Bananas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_056_StormTracker": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_056_StormTracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_057_BattleSuit": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_057_BattleSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_059_Sony2": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_059_Sony2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_063_BeachBalls": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_063_BeachBalls", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_065_DJRemix": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_065_DJRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_066_TacticalHUD": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_066_TacticalHUD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_068_Popcorn": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_068_Popcorn", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_074_DriftLightning": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_074_DriftLightning", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_075_Celestial": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_075_Celestial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_076_ReactiveLight": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_076_ReactiveLight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_077_Billiards": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_077_Billiards", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_078_SlurpMonster": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_078_SlurpMonster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_079_ZeroPoint": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_079_ZeroPoint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_080_DNAHelix": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_080_DNAHelix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_081_MissingLink": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_081_MissingLink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_082_HolidayGarland": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_082_HolidayGarland", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_083_AlphabetSoup": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_083_AlphabetSoup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_084_Briefcase": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_084_Briefcase", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_085_Candy": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_085_Candy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_086_SnowStorm": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_086_SnowStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_087_TNTina": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_087_TNTina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_088_Informer": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_088_Informer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_089_BlackKnight": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_089_BlackKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_090_Constellation": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_090_Constellation", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_091_Longshorts": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_091_Longshorts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_092_SchoolOfFish": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_092_SchoolOfFish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_093_SpaceWanderer": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_093_SpaceWanderer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_094_WaterSpray": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_094_WaterSpray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_095_HightowerDate": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_095_HightowerDate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_096_HightowerGrape": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_096_HightowerGrape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_097_HightowerSpeedlines": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_097_HightowerSpeedlines", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_098_HightowerSquash": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_098_HightowerSquash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_099_HightowerTapas": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_099_HightowerTapas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_100_Turbo": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_100_Turbo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_101_ParcelPrank": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_101_ParcelPrank", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_102_HightowerVertigo_G63FW": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_102_HightowerVertigo_G63FW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_104_FlapjackWrangler": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_104_FlapjackWrangler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_105_FutureSamurai": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_105_FutureSamurai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_106_GeoStorm": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_106_GeoStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_109_SpaceFighter": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_109_SpaceFighter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_110_Lexa": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_110_Lexa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_111_HolidayCookies": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_111_HolidayCookies", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_112_CubeNinja": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_112_CubeNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_113_DinoHunter": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_113_DinoHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_114_Temple": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_114_Temple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_115_Tube": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_115_Tube", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_116_WavesOfLight": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_116_WavesOfLight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_117_Abduction": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_117_Abduction", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_118_BoostWings": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_118_BoostWings", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_119_ColorTrip": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_119_ColorTrip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_120_EnergyNet": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_120_EnergyNet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_120_EnergyNet_Proto": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_120_EnergyNet_Proto", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_121_DarkAndLight": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_121_DarkAndLight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_122_FireworkStrands": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_122_FireworkStrands", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_123_TacticalWoodlandBlue": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_123_TacticalWoodlandBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_124_CerealBox": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_124_CerealBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_125_GhostHunter": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_125_GhostHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_126_Clash": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_126_Clash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_127_TeriyakiToon": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_127_TeriyakiToon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_128_Division": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_128_Division", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_129_GhostChain": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_129_GhostChain", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_130_ExoSuit": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_130_ExoSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_131_Gumball": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_131_Gumball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_133_LoneWolfMale": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_133_LoneWolfMale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_134_MotorcyclistFemale": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_134_MotorcyclistFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_135_ParallelComic": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_135_ParallelComic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_136_RenegadeRaiderFire": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_136_RenegadeRaiderFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_137_TurtleneckCrystal": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_137_TurtleneckCrystal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_138_Cadet": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_138_Cadet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_139_KnightCat": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_139_KnightCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_140_Mystic": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_140_Mystic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_141_TheOrigin": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_141_TheOrigin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_142_OrderGuard": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_142_OrderGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_144_PinkWidow": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_144_PinkWidow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_145_Fuchisa": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_145_Fuchisa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_146_Realm": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_146_Realm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_147_Lancelot": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_147_Lancelot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_148_80sRibbon": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_148_80sRibbon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_149_SeaLife": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_149_SeaLife", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_150_Avalanche": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_150_Avalanche", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaSkyDiveContrail:Trails_ID_31_GreenFlame": { + "templateId": "AthenaSkyDiveContrail:Trails_ID_31_GreenFlame", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_AssassinSuit": { + "templateId": "AthenaGlider:Umbrella_AssassinSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Bronze": { + "templateId": "AthenaGlider:Umbrella_Bronze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Buffet_Rainbow_354HU": { + "templateId": "AthenaGlider:Umbrella_Buffet_Rainbow_354HU", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Buffet_RD4DP": { + "templateId": "AthenaGlider:Umbrella_Buffet_RD4DP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Buffet_Silver_P2HUY": { + "templateId": "AthenaGlider:Umbrella_Buffet_Silver_P2HUY", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_BuildABrella": { + "templateId": "AthenaGlider:Umbrella_BuildABrella", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Daybreak": { + "templateId": "AthenaGlider:Umbrella_Daybreak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Gold": { + "templateId": "AthenaGlider:Umbrella_Gold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Lettuce": { + "templateId": "AthenaGlider:Umbrella_Lettuce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_OGVault": { + "templateId": "AthenaGlider:Umbrella_OGVault", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_PaperParasol": { + "templateId": "AthenaGlider:Umbrella_PaperParasol", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Platinum": { + "templateId": "AthenaGlider:Umbrella_Platinum", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_RankedFaction": { + "templateId": "AthenaGlider:Umbrella_RankedFaction", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [ + { + "channel": "Particle", + "active": "Particle1", + "owned": [ + "Particle1", + "Particle2", + "Particle3", + "Particle4", + "Particle5", + "Particle6", + "Particle7", + "Particle8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_RankedRemixCarrot": { + "templateId": "AthenaGlider:Umbrella_RankedRemixCarrot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_04": { + "templateId": "AthenaGlider:Umbrella_Season_04", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_05": { + "templateId": "AthenaGlider:Umbrella_Season_05", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_06": { + "templateId": "AthenaGlider:Umbrella_Season_06", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_07": { + "templateId": "AthenaGlider:Umbrella_Season_07", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_08": { + "templateId": "AthenaGlider:Umbrella_Season_08", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_09": { + "templateId": "AthenaGlider:Umbrella_Season_09", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_10": { + "templateId": "AthenaGlider:Umbrella_Season_10", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_11": { + "templateId": "AthenaGlider:Umbrella_Season_11", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_12": { + "templateId": "AthenaGlider:Umbrella_Season_12", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_13": { + "templateId": "AthenaGlider:Umbrella_Season_13", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_14": { + "templateId": "AthenaGlider:Umbrella_Season_14", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_15": { + "templateId": "AthenaGlider:Umbrella_Season_15", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_16": { + "templateId": "AthenaGlider:Umbrella_Season_16", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_17": { + "templateId": "AthenaGlider:Umbrella_Season_17", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_18": { + "templateId": "AthenaGlider:Umbrella_Season_18", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_19": { + "templateId": "AthenaGlider:Umbrella_Season_19", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_20": { + "templateId": "AthenaGlider:Umbrella_Season_20", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_21": { + "templateId": "AthenaGlider:Umbrella_Season_21", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_22": { + "templateId": "AthenaGlider:Umbrella_Season_22", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_23": { + "templateId": "AthenaGlider:Umbrella_Season_23", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_24": { + "templateId": "AthenaGlider:Umbrella_Season_24", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_25": { + "templateId": "AthenaGlider:Umbrella_Season_25", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_26": { + "templateId": "AthenaGlider:Umbrella_Season_26", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_27": { + "templateId": "AthenaGlider:Umbrella_Season_27", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Season_28": { + "templateId": "AthenaGlider:Umbrella_Season_28", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Silver": { + "templateId": "AthenaGlider:Umbrella_Silver", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Snowflake": { + "templateId": "AthenaGlider:Umbrella_Snowflake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Storm": { + "templateId": "AthenaGlider:Umbrella_Storm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_SummerVividBrainFemale": { + "templateId": "AthenaGlider:Umbrella_SummerVividBrainFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaGlider:Umbrella_Vendetta": { + "templateId": "AthenaGlider:Umbrella_Vendetta", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_001_ArcticCamo": { + "templateId": "AthenaItemWrap:Wrap_001_ArcticCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_002_HolidayGreen": { + "templateId": "AthenaItemWrap:Wrap_002_HolidayGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_003_AnodizedRed": { + "templateId": "AthenaItemWrap:Wrap_003_AnodizedRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_004_DurrBurgerPJs": { + "templateId": "AthenaItemWrap:Wrap_004_DurrBurgerPJs", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_005_CarbonFiber": { + "templateId": "AthenaItemWrap:Wrap_005_CarbonFiber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_006_Ice": { + "templateId": "AthenaItemWrap:Wrap_006_Ice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_007_CandyCane": { + "templateId": "AthenaItemWrap:Wrap_007_CandyCane", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_009_NewYears": { + "templateId": "AthenaItemWrap:Wrap_009_NewYears", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_010_BlueEmissive": { + "templateId": "AthenaItemWrap:Wrap_010_BlueEmissive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_011_HotCold": { + "templateId": "AthenaItemWrap:Wrap_011_HotCold", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_012_DragonMask": { + "templateId": "AthenaItemWrap:Wrap_012_DragonMask", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_013_Valentines": { + "templateId": "AthenaItemWrap:Wrap_013_Valentines", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_014_IceCream": { + "templateId": "AthenaItemWrap:Wrap_014_IceCream", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_015_Snowboard": { + "templateId": "AthenaItemWrap:Wrap_015_Snowboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_016_CuddleTeam": { + "templateId": "AthenaItemWrap:Wrap_016_CuddleTeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_017_DragonNinja": { + "templateId": "AthenaItemWrap:Wrap_017_DragonNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_018_Magma": { + "templateId": "AthenaItemWrap:Wrap_018_Magma", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_019_Tiger": { + "templateId": "AthenaItemWrap:Wrap_019_Tiger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_020_TropicalCamo": { + "templateId": "AthenaItemWrap:Wrap_020_TropicalCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_021_Pirate": { + "templateId": "AthenaItemWrap:Wrap_021_Pirate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_022_Gemstone": { + "templateId": "AthenaItemWrap:Wrap_022_Gemstone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_023_Aztec": { + "templateId": "AthenaItemWrap:Wrap_023_Aztec", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_024_StealthBlack": { + "templateId": "AthenaItemWrap:Wrap_024_StealthBlack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_027_Lucky": { + "templateId": "AthenaItemWrap:Wrap_027_Lucky", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_028_DevilLace": { + "templateId": "AthenaItemWrap:Wrap_028_DevilLace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_029_HeistClub": { + "templateId": "AthenaItemWrap:Wrap_029_HeistClub", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_030_HeistDiamond": { + "templateId": "AthenaItemWrap:Wrap_030_HeistDiamond", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_031_HeistHeart": { + "templateId": "AthenaItemWrap:Wrap_031_HeistHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_032_HeistSpade": { + "templateId": "AthenaItemWrap:Wrap_032_HeistSpade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_033_TropicalGirl": { + "templateId": "AthenaItemWrap:Wrap_033_TropicalGirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_034_Waypoint": { + "templateId": "AthenaItemWrap:Wrap_034_Waypoint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_035_GoldenSnake": { + "templateId": "AthenaItemWrap:Wrap_035_GoldenSnake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_036_EvilSuit": { + "templateId": "AthenaItemWrap:Wrap_036_EvilSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_037_EvilSuit2": { + "templateId": "AthenaItemWrap:Wrap_037_EvilSuit2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_038_PilotSkull": { + "templateId": "AthenaItemWrap:Wrap_038_PilotSkull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_039_PilotWolf": { + "templateId": "AthenaItemWrap:Wrap_039_PilotWolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_040_PilotFalcon": { + "templateId": "AthenaItemWrap:Wrap_040_PilotFalcon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_041_PilotBee": { + "templateId": "AthenaItemWrap:Wrap_041_PilotBee", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_042_BandageNinja": { + "templateId": "AthenaItemWrap:Wrap_042_BandageNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_043_Bandolette": { + "templateId": "AthenaItemWrap:Wrap_043_Bandolette", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_044_BattlePlane": { + "templateId": "AthenaItemWrap:Wrap_044_BattlePlane", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_045_Angel": { + "templateId": "AthenaItemWrap:Wrap_045_Angel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_046_Demon": { + "templateId": "AthenaItemWrap:Wrap_046_Demon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_047_Bunny": { + "templateId": "AthenaItemWrap:Wrap_047_Bunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_048_Bunny2": { + "templateId": "AthenaItemWrap:Wrap_048_Bunny2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_049_PajamaPartyGreen": { + "templateId": "AthenaItemWrap:Wrap_049_PajamaPartyGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_050_PajamaPartyRed": { + "templateId": "AthenaItemWrap:Wrap_050_PajamaPartyRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_051_ShatterFly": { + "templateId": "AthenaItemWrap:Wrap_051_ShatterFly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_052_Rhino": { + "templateId": "AthenaItemWrap:Wrap_052_Rhino", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_053_Jackel": { + "templateId": "AthenaItemWrap:Wrap_053_Jackel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_054_Jaguar": { + "templateId": "AthenaItemWrap:Wrap_054_Jaguar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_055_Lion": { + "templateId": "AthenaItemWrap:Wrap_055_Lion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_056_BlackWidow": { + "templateId": "AthenaItemWrap:Wrap_056_BlackWidow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_057_Banana": { + "templateId": "AthenaItemWrap:Wrap_057_Banana", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_058_Storm": { + "templateId": "AthenaItemWrap:Wrap_058_Storm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_059_BattleSuit": { + "templateId": "AthenaItemWrap:Wrap_059_BattleSuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_060_Rooster": { + "templateId": "AthenaItemWrap:Wrap_060_Rooster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_061_PurpleSplatter": { + "templateId": "AthenaItemWrap:Wrap_061_PurpleSplatter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_062_NeoTag": { + "templateId": "AthenaItemWrap:Wrap_062_NeoTag", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_063_StrawberryPilot": { + "templateId": "AthenaItemWrap:Wrap_063_StrawberryPilot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_064_Raptor": { + "templateId": "AthenaItemWrap:Wrap_064_Raptor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_065_AssassinSuit01": { + "templateId": "AthenaItemWrap:Wrap_065_AssassinSuit01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_066_AssassinSuit02": { + "templateId": "AthenaItemWrap:Wrap_066_AssassinSuit02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_067_StreetDemon": { + "templateId": "AthenaItemWrap:Wrap_067_StreetDemon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_069_Geisha": { + "templateId": "AthenaItemWrap:Wrap_069_Geisha", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_070_MaskedWarrior": { + "templateId": "AthenaItemWrap:Wrap_070_MaskedWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_071_Pug": { + "templateId": "AthenaItemWrap:Wrap_071_Pug", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_072_TeriyakiFish": { + "templateId": "AthenaItemWrap:Wrap_072_TeriyakiFish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_073_TeriyakiFish2": { + "templateId": "AthenaItemWrap:Wrap_073_TeriyakiFish2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_074_TeriyakiFishVR": { + "templateId": "AthenaItemWrap:Wrap_074_TeriyakiFishVR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_075_LineSwirl": { + "templateId": "AthenaItemWrap:Wrap_075_LineSwirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_076_CyberRunner": { + "templateId": "AthenaItemWrap:Wrap_076_CyberRunner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_077_StormSoldier": { + "templateId": "AthenaItemWrap:Wrap_077_StormSoldier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_078_SlurpJuice": { + "templateId": "AthenaItemWrap:Wrap_078_SlurpJuice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_079_Mash": { + "templateId": "AthenaItemWrap:Wrap_079_Mash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_080_Blackout1": { + "templateId": "AthenaItemWrap:Wrap_080_Blackout1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_081_Blackout2": { + "templateId": "AthenaItemWrap:Wrap_081_Blackout2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_082_PlasticArmyGreen": { + "templateId": "AthenaItemWrap:Wrap_082_PlasticArmyGreen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_083_PlasticArmyGrey": { + "templateId": "AthenaItemWrap:Wrap_083_PlasticArmyGrey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_084_4thofJuly": { + "templateId": "AthenaItemWrap:Wrap_084_4thofJuly", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_085_Beach": { + "templateId": "AthenaItemWrap:Wrap_085_Beach", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_086_StandardBlueCamo": { + "templateId": "AthenaItemWrap:Wrap_086_StandardBlueCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_087_BriteBomberSummer": { + "templateId": "AthenaItemWrap:Wrap_087_BriteBomberSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_088_DriftSummer": { + "templateId": "AthenaItemWrap:Wrap_088_DriftSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_089_GlowBro1": { + "templateId": "AthenaItemWrap:Wrap_089_GlowBro1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_090_GlowBro2": { + "templateId": "AthenaItemWrap:Wrap_090_GlowBro2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_091_HoverSurfboard": { + "templateId": "AthenaItemWrap:Wrap_091_HoverSurfboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_092_Sarong": { + "templateId": "AthenaItemWrap:Wrap_092_Sarong", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_093_TechMage": { + "templateId": "AthenaItemWrap:Wrap_093_TechMage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_094_Watermelon": { + "templateId": "AthenaItemWrap:Wrap_094_Watermelon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_095_WeirdObjects": { + "templateId": "AthenaItemWrap:Wrap_095_WeirdObjects", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_096_Zodiac": { + "templateId": "AthenaItemWrap:Wrap_096_Zodiac", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_097_NeonLines": { + "templateId": "AthenaItemWrap:Wrap_097_NeonLines", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_098_Birthday2019": { + "templateId": "AthenaItemWrap:Wrap_098_Birthday2019", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_099_CyberKarate": { + "templateId": "AthenaItemWrap:Wrap_099_CyberKarate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_100_DigitalShift": { + "templateId": "AthenaItemWrap:Wrap_100_DigitalShift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_101_Multibot": { + "templateId": "AthenaItemWrap:Wrap_101_Multibot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_102_WorldCup2019": { + "templateId": "AthenaItemWrap:Wrap_102_WorldCup2019", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_103_Yatter": { + "templateId": "AthenaItemWrap:Wrap_103_Yatter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_104_Bubblegum": { + "templateId": "AthenaItemWrap:Wrap_104_Bubblegum", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_105_Cube": { + "templateId": "AthenaItemWrap:Wrap_105_Cube", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_106_DJRemix": { + "templateId": "AthenaItemWrap:Wrap_106_DJRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_107_GraffitiRemix": { + "templateId": "AthenaItemWrap:Wrap_107_GraffitiRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_108_KnightRemix": { + "templateId": "AthenaItemWrap:Wrap_108_KnightRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_109_RustRemix": { + "templateId": "AthenaItemWrap:Wrap_109_RustRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_110_StreetRacerDriftRemix": { + "templateId": "AthenaItemWrap:Wrap_110_StreetRacerDriftRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_111_ZeroPointCeiling": { + "templateId": "AthenaItemWrap:Wrap_111_ZeroPointCeiling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_112_ZeroPointEnergy": { + "templateId": "AthenaItemWrap:Wrap_112_ZeroPointEnergy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_113_ZeroPointFloor": { + "templateId": "AthenaItemWrap:Wrap_113_ZeroPointFloor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_115_PlasticArmyRed": { + "templateId": "AthenaItemWrap:Wrap_115_PlasticArmyRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_116_Emotigun": { + "templateId": "AthenaItemWrap:Wrap_116_Emotigun", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_117_Asteroid": { + "templateId": "AthenaItemWrap:Wrap_117_Asteroid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_118_AstronautEvil": { + "templateId": "AthenaItemWrap:Wrap_118_AstronautEvil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_119_DragonTag": { + "templateId": "AthenaItemWrap:Wrap_119_DragonTag", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_121_TechOpsBlue": { + "templateId": "AthenaItemWrap:Wrap_121_TechOpsBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_122_StandardRedCamo": { + "templateId": "AthenaItemWrap:Wrap_122_StandardRedCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_123_StreetPink": { + "templateId": "AthenaItemWrap:Wrap_123_StreetPink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_124_Syko": { + "templateId": "AthenaItemWrap:Wrap_124_Syko", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_125_ClockWork": { + "templateId": "AthenaItemWrap:Wrap_125_ClockWork", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_126_CircleFade": { + "templateId": "AthenaItemWrap:Wrap_126_CircleFade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_127_FragmentedGlow": { + "templateId": "AthenaItemWrap:Wrap_127_FragmentedGlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_128_FragmentedGlowEclipse": { + "templateId": "AthenaItemWrap:Wrap_128_FragmentedGlowEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_129_FragmentedGlowFire": { + "templateId": "AthenaItemWrap:Wrap_129_FragmentedGlowFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_130_LemonLime": { + "templateId": "AthenaItemWrap:Wrap_130_LemonLime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_131_LemonLimeJuice": { + "templateId": "AthenaItemWrap:Wrap_131_LemonLimeJuice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_132_BarbequeLarry": { + "templateId": "AthenaItemWrap:Wrap_132_BarbequeLarry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_133_MetalTri": { + "templateId": "AthenaItemWrap:Wrap_133_MetalTri", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_134_Fingerprint": { + "templateId": "AthenaItemWrap:Wrap_134_Fingerprint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_135_LicoriceSwirl": { + "templateId": "AthenaItemWrap:Wrap_135_LicoriceSwirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_136_Punchy": { + "templateId": "AthenaItemWrap:Wrap_136_Punchy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_137_SleepyTime": { + "templateId": "AthenaItemWrap:Wrap_137_SleepyTime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_138_Taco": { + "templateId": "AthenaItemWrap:Wrap_138_Taco", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_139_Prismatic": { + "templateId": "AthenaItemWrap:Wrap_139_Prismatic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_141_BrightGunnerRemix": { + "templateId": "AthenaItemWrap:Wrap_141_BrightGunnerRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_142_HoneycombGrey": { + "templateId": "AthenaItemWrap:Wrap_142_HoneycombGrey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_143_RainbowStrike": { + "templateId": "AthenaItemWrap:Wrap_143_RainbowStrike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_144_Sakura": { + "templateId": "AthenaItemWrap:Wrap_144_Sakura", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_145_Kurohomura": { + "templateId": "AthenaItemWrap:Wrap_145_Kurohomura", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_146_BulletBlue": { + "templateId": "AthenaItemWrap:Wrap_146_BulletBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_147_CODSquadPlaid": { + "templateId": "AthenaItemWrap:Wrap_147_CODSquadPlaid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_148_CrazyEight": { + "templateId": "AthenaItemWrap:Wrap_148_CrazyEight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_149_FishermanAlterEgo": { + "templateId": "AthenaItemWrap:Wrap_149_FishermanAlterEgo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_150_RedRidingRemix": { + "templateId": "AthenaItemWrap:Wrap_150_RedRidingRemix", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_151_Sheath": { + "templateId": "AthenaItemWrap:Wrap_151_Sheath", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_152_SlurpMonster": { + "templateId": "AthenaItemWrap:Wrap_152_SlurpMonster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_154_Haunt": { + "templateId": "AthenaItemWrap:Wrap_154_Haunt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_155_ViperAlterEgo": { + "templateId": "AthenaItemWrap:Wrap_155_ViperAlterEgo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_156_SheathAlterEgo": { + "templateId": "AthenaItemWrap:Wrap_156_SheathAlterEgo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_157_CuddleTeamDark": { + "templateId": "AthenaItemWrap:Wrap_157_CuddleTeamDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_158_DevilRock": { + "templateId": "AthenaItemWrap:Wrap_158_DevilRock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_159_Freak": { + "templateId": "AthenaItemWrap:Wrap_159_Freak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_160_ModernWitch": { + "templateId": "AthenaItemWrap:Wrap_160_ModernWitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_161_Nosh": { + "templateId": "AthenaItemWrap:Wrap_161_Nosh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_162_PumpkinPattern": { + "templateId": "AthenaItemWrap:Wrap_162_PumpkinPattern", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_163_Scarecrow_Female": { + "templateId": "AthenaItemWrap:Wrap_163_Scarecrow_Female", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_164_Scarecrow_Male": { + "templateId": "AthenaItemWrap:Wrap_164_Scarecrow_Male", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_165_SkeletonHunter": { + "templateId": "AthenaItemWrap:Wrap_165_SkeletonHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_166_SpookyFace": { + "templateId": "AthenaItemWrap:Wrap_166_SpookyFace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_167_Mastermind": { + "templateId": "AthenaItemWrap:Wrap_167_Mastermind", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_168_EyeballOctopus": { + "templateId": "AthenaItemWrap:Wrap_168_EyeballOctopus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_169_JetSki": { + "templateId": "AthenaItemWrap:Wrap_169_JetSki", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_170_StreetOpsPink": { + "templateId": "AthenaItemWrap:Wrap_170_StreetOpsPink", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_171_BoneSnake": { + "templateId": "AthenaItemWrap:Wrap_171_BoneSnake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_173_ForestQueen": { + "templateId": "AthenaItemWrap:Wrap_173_ForestQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_174_Cavalry": { + "templateId": "AthenaItemWrap:Wrap_174_Cavalry", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_175_Slurp": { + "templateId": "AthenaItemWrap:Wrap_175_Slurp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_176_TeriyakiWarrior": { + "templateId": "AthenaItemWrap:Wrap_176_TeriyakiWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_177_Banner": { + "templateId": "AthenaItemWrap:Wrap_177_Banner", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_178_Constellation": { + "templateId": "AthenaItemWrap:Wrap_178_Constellation", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_179_HolidayPJs": { + "templateId": "AthenaItemWrap:Wrap_179_HolidayPJs", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_180_HolidayTime": { + "templateId": "AthenaItemWrap:Wrap_180_HolidayTime", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_182_NeonAnimal": { + "templateId": "AthenaItemWrap:Wrap_182_NeonAnimal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_183_NewYear2020": { + "templateId": "AthenaItemWrap:Wrap_183_NewYear2020", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_184_NewYearStar": { + "templateId": "AthenaItemWrap:Wrap_184_NewYearStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_185_SnowCover": { + "templateId": "AthenaItemWrap:Wrap_185_SnowCover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_186_SnowGlobe": { + "templateId": "AthenaItemWrap:Wrap_186_SnowGlobe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_187_SnowStreak": { + "templateId": "AthenaItemWrap:Wrap_187_SnowStreak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_188_WrappingPaper": { + "templateId": "AthenaItemWrap:Wrap_188_WrappingPaper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_189_HolidayWrapping": { + "templateId": "AthenaItemWrap:Wrap_189_HolidayWrapping", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_190_FrogmanF": { + "templateId": "AthenaItemWrap:Wrap_190_FrogmanF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_191_GoldenSkeleton": { + "templateId": "AthenaItemWrap:Wrap_191_GoldenSkeleton", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_192_MetalLights": { + "templateId": "AthenaItemWrap:Wrap_192_MetalLights", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_193_NeonGraffiti": { + "templateId": "AthenaItemWrap:Wrap_193_NeonGraffiti", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_194_SharkAttack": { + "templateId": "AthenaItemWrap:Wrap_194_SharkAttack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_195_StreetRat": { + "templateId": "AthenaItemWrap:Wrap_195_StreetRat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_196_TigerJaw": { + "templateId": "AthenaItemWrap:Wrap_196_TigerJaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_197_ToxinBubbles": { + "templateId": "AthenaItemWrap:Wrap_197_ToxinBubbles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_198_VirtualShadow": { + "templateId": "AthenaItemWrap:Wrap_198_VirtualShadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_199_AgentAce": { + "templateId": "AthenaItemWrap:Wrap_199_AgentAce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_200_BuffCat": { + "templateId": "AthenaItemWrap:Wrap_200_BuffCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_201_CatBurglar": { + "templateId": "AthenaItemWrap:Wrap_201_CatBurglar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_202_FadingMosaicA": { + "templateId": "AthenaItemWrap:Wrap_202_FadingMosaicA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_203_Henchman": { + "templateId": "AthenaItemWrap:Wrap_203_Henchman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_204_IceBreaker": { + "templateId": "AthenaItemWrap:Wrap_204_IceBreaker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_205_MeteorShowerC": { + "templateId": "AthenaItemWrap:Wrap_205_MeteorShowerC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_206_Photographer": { + "templateId": "AthenaItemWrap:Wrap_206_Photographer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_208_ShootingStar": { + "templateId": "AthenaItemWrap:Wrap_208_ShootingStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_209_SpyTechHacker": { + "templateId": "AthenaItemWrap:Wrap_209_SpyTechHacker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_210_Thermal": { + "templateId": "AthenaItemWrap:Wrap_210_Thermal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_211_TNTina": { + "templateId": "AthenaItemWrap:Wrap_211_TNTina", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_212_RosesAreRed": { + "templateId": "AthenaItemWrap:Wrap_212_RosesAreRed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_213_SkullBrite": { + "templateId": "AthenaItemWrap:Wrap_213_SkullBrite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_214_Carnaval": { + "templateId": "AthenaItemWrap:Wrap_214_Carnaval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_215_CarnavalCycle": { + "templateId": "AthenaItemWrap:Wrap_215_CarnavalCycle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_216_BananaAgent": { + "templateId": "AthenaItemWrap:Wrap_216_BananaAgent", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_217_ActivatedRunes": { + "templateId": "AthenaItemWrap:Wrap_217_ActivatedRunes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_218_Anarchy_Acres_Farmer": { + "templateId": "AthenaItemWrap:Wrap_218_Anarchy_Acres_Farmer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_219_NightSky": { + "templateId": "AthenaItemWrap:Wrap_219_NightSky", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_220_Spectrum": { + "templateId": "AthenaItemWrap:Wrap_220_Spectrum", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_221_TwinDark": { + "templateId": "AthenaItemWrap:Wrap_221_TwinDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_222_ComicWipe": { + "templateId": "AthenaItemWrap:Wrap_222_ComicWipe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_223_Fryangles": { + "templateId": "AthenaItemWrap:Wrap_223_Fryangles", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_224_GarageBand": { + "templateId": "AthenaItemWrap:Wrap_224_GarageBand", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_225_Nebula": { + "templateId": "AthenaItemWrap:Wrap_225_Nebula", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_226_Donut": { + "templateId": "AthenaItemWrap:Wrap_226_Donut", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_227_SignalInterference": { + "templateId": "AthenaItemWrap:Wrap_227_SignalInterference", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_228_CardboardCrew": { + "templateId": "AthenaItemWrap:Wrap_228_CardboardCrew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_229_ChocoBunny": { + "templateId": "AthenaItemWrap:Wrap_229_ChocoBunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_230_Glacier": { + "templateId": "AthenaItemWrap:Wrap_230_Glacier", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_231_TargetPractice": { + "templateId": "AthenaItemWrap:Wrap_231_TargetPractice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_232_BadEgg": { + "templateId": "AthenaItemWrap:Wrap_232_BadEgg", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_233_ElectricBurst": { + "templateId": "AthenaItemWrap:Wrap_233_ElectricBurst", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_234_GlowVortex": { + "templateId": "AthenaItemWrap:Wrap_234_GlowVortex", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_236_Moo": { + "templateId": "AthenaItemWrap:Wrap_236_Moo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_237_NeonPulse": { + "templateId": "AthenaItemWrap:Wrap_237_NeonPulse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_238_RainbowGlitter": { + "templateId": "AthenaItemWrap:Wrap_238_RainbowGlitter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_239_GlowCamo": { + "templateId": "AthenaItemWrap:Wrap_239_GlowCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_240_PlasmaSpectrum": { + "templateId": "AthenaItemWrap:Wrap_240_PlasmaSpectrum", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_241_BlackKnightFemale": { + "templateId": "AthenaItemWrap:Wrap_241_BlackKnightFemale", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_242_Bruce": { + "templateId": "AthenaItemWrap:Wrap_242_Bruce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_243_Gator": { + "templateId": "AthenaItemWrap:Wrap_243_Gator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_244_MechanicalEngineer": { + "templateId": "AthenaItemWrap:Wrap_244_MechanicalEngineer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_245_OceanRider": { + "templateId": "AthenaItemWrap:Wrap_245_OceanRider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_246_ProfessorPup": { + "templateId": "AthenaItemWrap:Wrap_246_ProfessorPup", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_248_SOS": { + "templateId": "AthenaItemWrap:Wrap_248_SOS", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_249_SpaceWanderer": { + "templateId": "AthenaItemWrap:Wrap_249_SpaceWanderer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_250_TacticalScuba": { + "templateId": "AthenaItemWrap:Wrap_250_TacticalScuba", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_251_Ultraviolet": { + "templateId": "AthenaItemWrap:Wrap_251_Ultraviolet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_252_Dazzle": { + "templateId": "AthenaItemWrap:Wrap_252_Dazzle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_253_FishKite": { + "templateId": "AthenaItemWrap:Wrap_253_FishKite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_254_NeonBands": { + "templateId": "AthenaItemWrap:Wrap_254_NeonBands", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_255_ConstellationSun": { + "templateId": "AthenaItemWrap:Wrap_255_ConstellationSun", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_256_HorizontalBands": { + "templateId": "AthenaItemWrap:Wrap_256_HorizontalBands", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_257_WaffleCone": { + "templateId": "AthenaItemWrap:Wrap_257_WaffleCone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_258_Celestial": { + "templateId": "AthenaItemWrap:Wrap_258_Celestial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_259_Dummeez": { + "templateId": "AthenaItemWrap:Wrap_259_Dummeez", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_260_FruitPunch": { + "templateId": "AthenaItemWrap:Wrap_260_FruitPunch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_261_TreeFrog": { + "templateId": "AthenaItemWrap:Wrap_261_TreeFrog", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_262_Angler": { + "templateId": "AthenaItemWrap:Wrap_262_Angler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_263_RainbowLava": { + "templateId": "AthenaItemWrap:Wrap_263_RainbowLava", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_264_SpaceWandererGlider": { + "templateId": "AthenaItemWrap:Wrap_264_SpaceWandererGlider", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_265_SpinningStars": { + "templateId": "AthenaItemWrap:Wrap_265_SpinningStars", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_267_HightowerDate": { + "templateId": "AthenaItemWrap:Wrap_267_HightowerDate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_268_HightowerGrape": { + "templateId": "AthenaItemWrap:Wrap_268_HightowerGrape", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_269_HightowerHoneydew": { + "templateId": "AthenaItemWrap:Wrap_269_HightowerHoneydew", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_270_HightowerMango": { + "templateId": "AthenaItemWrap:Wrap_270_HightowerMango", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_271_HightowerSquash": { + "templateId": "AthenaItemWrap:Wrap_271_HightowerSquash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_272_HightowerTapas": { + "templateId": "AthenaItemWrap:Wrap_272_HightowerTapas", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_273_HightowerTomato": { + "templateId": "AthenaItemWrap:Wrap_273_HightowerTomato", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_274_HightowerWasabi": { + "templateId": "AthenaItemWrap:Wrap_274_HightowerWasabi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_275_Soy_Q9R5Z": { + "templateId": "AthenaItemWrap:Wrap_275_Soy_Q9R5Z", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_276_GoldDrip": { + "templateId": "AthenaItemWrap:Wrap_276_GoldDrip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_277_NeonJellyfish": { + "templateId": "AthenaItemWrap:Wrap_277_NeonJellyfish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_278_TropicalFish": { + "templateId": "AthenaItemWrap:Wrap_278_TropicalFish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_279_FrostedDonut": { + "templateId": "AthenaItemWrap:Wrap_279_FrostedDonut", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_280_Gel": { + "templateId": "AthenaItemWrap:Wrap_280_Gel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_281_LongShorts": { + "templateId": "AthenaItemWrap:Wrap_281_LongShorts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_282_NeonSign": { + "templateId": "AthenaItemWrap:Wrap_282_NeonSign", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_283_Plasticine": { + "templateId": "AthenaItemWrap:Wrap_283_Plasticine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_284_Birthday2020": { + "templateId": "AthenaItemWrap:Wrap_284_Birthday2020", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_285_KevinCouture": { + "templateId": "AthenaItemWrap:Wrap_285_KevinCouture", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_286_Muzak": { + "templateId": "AthenaItemWrap:Wrap_286_Muzak", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_287_MythToon": { + "templateId": "AthenaItemWrap:Wrap_287_MythToon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_288_Amber": { + "templateId": "AthenaItemWrap:Wrap_288_Amber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_289_DragonflyWings": { + "templateId": "AthenaItemWrap:Wrap_289_DragonflyWings", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_290_Newspaper": { + "templateId": "AthenaItemWrap:Wrap_290_Newspaper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_291_StripedGlyph": { + "templateId": "AthenaItemWrap:Wrap_291_StripedGlyph", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_292_Bones": { + "templateId": "AthenaItemWrap:Wrap_292_Bones", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_293_Phantom": { + "templateId": "AthenaItemWrap:Wrap_293_Phantom", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_294_PumpkinPunk": { + "templateId": "AthenaItemWrap:Wrap_294_PumpkinPunk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_295_CatBurglarGhost": { + "templateId": "AthenaItemWrap:Wrap_295_CatBurglarGhost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_296_Beats": { + "templateId": "AthenaItemWrap:Wrap_296_Beats", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_297_Chip": { + "templateId": "AthenaItemWrap:Wrap_297_Chip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_298_Embers": { + "templateId": "AthenaItemWrap:Wrap_298_Embers", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_299_Holo": { + "templateId": "AthenaItemWrap:Wrap_299_Holo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_300_StreetSigns": { + "templateId": "AthenaItemWrap:Wrap_300_StreetSigns", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_301_CosmicPulse": { + "templateId": "AthenaItemWrap:Wrap_301_CosmicPulse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_302_FrozenLake": { + "templateId": "AthenaItemWrap:Wrap_302_FrozenLake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_303_GasCloud": { + "templateId": "AthenaItemWrap:Wrap_303_GasCloud", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_304_ToonStars": { + "templateId": "AthenaItemWrap:Wrap_304_ToonStars", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_305_AncientGladiator": { + "templateId": "AthenaItemWrap:Wrap_305_AncientGladiator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_306_Shapeshifter": { + "templateId": "AthenaItemWrap:Wrap_306_Shapeshifter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_307_Lexa": { + "templateId": "AthenaItemWrap:Wrap_307_Lexa", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_308_FutureSamurai": { + "templateId": "AthenaItemWrap:Wrap_308_FutureSamurai", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_309_FlapjackWrangler": { + "templateId": "AthenaItemWrap:Wrap_309_FlapjackWrangler", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_310_SpaceFighter": { + "templateId": "AthenaItemWrap:Wrap_310_SpaceFighter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_311_VanGogh": { + "templateId": "AthenaItemWrap:Wrap_311_VanGogh", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_312_ConfettiLights": { + "templateId": "AthenaItemWrap:Wrap_312_ConfettiLights", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_313_MetalFlakes": { + "templateId": "AthenaItemWrap:Wrap_313_MetalFlakes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_314_Neon": { + "templateId": "AthenaItemWrap:Wrap_314_Neon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_315_NeonXmasSign": { + "templateId": "AthenaItemWrap:Wrap_315_NeonXmasSign", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_316_CombatDoll": { + "templateId": "AthenaItemWrap:Wrap_316_CombatDoll", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_317_GroovySplash": { + "templateId": "AthenaItemWrap:Wrap_317_GroovySplash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_318_Immiscible": { + "templateId": "AthenaItemWrap:Wrap_318_Immiscible", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_319_Nightmare_31A6D": { + "templateId": "AthenaItemWrap:Wrap_319_Nightmare_31A6D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_320_Stars": { + "templateId": "AthenaItemWrap:Wrap_320_Stars", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_321_FoxWarrior_IH2A5": { + "templateId": "AthenaItemWrap:Wrap_321_FoxWarrior_IH2A5", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_322_BlackHole": { + "templateId": "AthenaItemWrap:Wrap_322_BlackHole", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_323_HalfFull": { + "templateId": "AthenaItemWrap:Wrap_323_HalfFull", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_324_PinkToons": { + "templateId": "AthenaItemWrap:Wrap_324_PinkToons", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_325_Valentine2021": { + "templateId": "AthenaItemWrap:Wrap_325_Valentine2021", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_326_Flatline": { + "templateId": "AthenaItemWrap:Wrap_326_Flatline", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_327_SmashedGlass": { + "templateId": "AthenaItemWrap:Wrap_327_SmashedGlass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_328_StrawberryCream": { + "templateId": "AthenaItemWrap:Wrap_328_StrawberryCream", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_329_LlamaHeroWinter_XZTGC": { + "templateId": "AthenaItemWrap:Wrap_329_LlamaHeroWinter_XZTGC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_330_DoodleBuddies": { + "templateId": "AthenaItemWrap:Wrap_330_DoodleBuddies", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_331_Hazard": { + "templateId": "AthenaItemWrap:Wrap_331_Hazard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_332_StarAces": { + "templateId": "AthenaItemWrap:Wrap_332_StarAces", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_333_StealthWoodland": { + "templateId": "AthenaItemWrap:Wrap_333_StealthWoodland", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_334_ChickenWarrior": { + "templateId": "AthenaItemWrap:Wrap_334_ChickenWarrior", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_335_CubeNinja": { + "templateId": "AthenaItemWrap:Wrap_335_CubeNinja", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_336_DinoHunter": { + "templateId": "AthenaItemWrap:Wrap_336_DinoHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_337_NeonCatFashion_93JRO": { + "templateId": "AthenaItemWrap:Wrap_337_NeonCatFashion_93JRO", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_338_TowerSentinel": { + "templateId": "AthenaItemWrap:Wrap_338_TowerSentinel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_339_TurboCar_T7E0M": { + "templateId": "AthenaItemWrap:Wrap_339_TurboCar_T7E0M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_340_Yogurt": { + "templateId": "AthenaItemWrap:Wrap_340_Yogurt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_341_Koi": { + "templateId": "AthenaItemWrap:Wrap_341_Koi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_342_Mustang": { + "templateId": "AthenaItemWrap:Wrap_342_Mustang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_343_PowerLines": { + "templateId": "AthenaItemWrap:Wrap_343_PowerLines", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_344_WickedDuck": { + "templateId": "AthenaItemWrap:Wrap_344_WickedDuck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_345_Accumulate": { + "templateId": "AthenaItemWrap:Wrap_345_Accumulate", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_346_Flora": { + "templateId": "AthenaItemWrap:Wrap_346_Flora", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_347_TeriyakiFishPrincess": { + "templateId": "AthenaItemWrap:Wrap_347_TeriyakiFishPrincess", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_348_Alchemy_FYA4I": { + "templateId": "AthenaItemWrap:Wrap_348_Alchemy_FYA4I", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_349_Cranium": { + "templateId": "AthenaItemWrap:Wrap_349_Cranium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_350_BeeHive": { + "templateId": "AthenaItemWrap:Wrap_350_BeeHive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_351_DoodleColors": { + "templateId": "AthenaItemWrap:Wrap_351_DoodleColors", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_352_LanternFest": { + "templateId": "AthenaItemWrap:Wrap_352_LanternFest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_353_Nautical": { + "templateId": "AthenaItemWrap:Wrap_353_Nautical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_354_AstroMap": { + "templateId": "AthenaItemWrap:Wrap_354_AstroMap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_355_TaxiUpgradedMulticolor": { + "templateId": "AthenaItemWrap:Wrap_355_TaxiUpgradedMulticolor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_356_GoldenSkeletonF_FT0B3": { + "templateId": "AthenaItemWrap:Wrap_356_GoldenSkeletonF_FT0B3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_357_SpaceCuddles_8GDWQ": { + "templateId": "AthenaItemWrap:Wrap_357_SpaceCuddles_8GDWQ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_358_NeonTiki": { + "templateId": "AthenaItemWrap:Wrap_358_NeonTiki", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_359_StrangeCosmos": { + "templateId": "AthenaItemWrap:Wrap_359_StrangeCosmos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_360_FindersKeepers": { + "templateId": "AthenaItemWrap:Wrap_360_FindersKeepers", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_361_RetroRainbow": { + "templateId": "AthenaItemWrap:Wrap_361_RetroRainbow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_362_Believer": { + "templateId": "AthenaItemWrap:Wrap_362_Believer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_363_Invader": { + "templateId": "AthenaItemWrap:Wrap_363_Invader", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_364_Innovator": { + "templateId": "AthenaItemWrap:Wrap_364_Innovator", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_365_Faux": { + "templateId": "AthenaItemWrap:Wrap_365_Faux", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_366_Ruckus": { + "templateId": "AthenaItemWrap:Wrap_366_Ruckus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_367_LavaLamp": { + "templateId": "AthenaItemWrap:Wrap_367_LavaLamp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_368_UFOBeam": { + "templateId": "AthenaItemWrap:Wrap_368_UFOBeam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_369_AlienZapper": { + "templateId": "AthenaItemWrap:Wrap_369_AlienZapper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_370_DragonMaskV2": { + "templateId": "AthenaItemWrap:Wrap_370_DragonMaskV2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_371_DragonMaskV3": { + "templateId": "AthenaItemWrap:Wrap_371_DragonMaskV3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_372_ButterflyWings": { + "templateId": "AthenaItemWrap:Wrap_372_ButterflyWings", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_373_Firecracker": { + "templateId": "AthenaItemWrap:Wrap_373_Firecracker", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_374_Summer2021": { + "templateId": "AthenaItemWrap:Wrap_374_Summer2021", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_375_AlienPrism": { + "templateId": "AthenaItemWrap:Wrap_375_AlienPrism", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_376_CatBurglarSummer": { + "templateId": "AthenaItemWrap:Wrap_376_CatBurglarSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_378_BuffCatFanB_J74F1": { + "templateId": "AthenaItemWrap:Wrap_378_BuffCatFanB_J74F1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_379_Pliant": { + "templateId": "AthenaItemWrap:Wrap_379_Pliant", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_380_Mint": { + "templateId": "AthenaItemWrap:Wrap_380_Mint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_381_InkBlot": { + "templateId": "AthenaItemWrap:Wrap_381_InkBlot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_382_BuffCatFan_OQ9IZ": { + "templateId": "AthenaItemWrap:Wrap_382_BuffCatFan_OQ9IZ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_383_Buffet_KGN3R": { + "templateId": "AthenaItemWrap:Wrap_383_Buffet_KGN3R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_384_PaperAirplane": { + "templateId": "AthenaItemWrap:Wrap_384_PaperAirplane", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_385_SeesawSlipper": { + "templateId": "AthenaItemWrap:Wrap_385_SeesawSlipper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_386_ToonHearts": { + "templateId": "AthenaItemWrap:Wrap_386_ToonHearts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_387_RuckusMini_6I5DM": { + "templateId": "AthenaItemWrap:Wrap_387_RuckusMini_6I5DM", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_388_Polygon": { + "templateId": "AthenaItemWrap:Wrap_388_Polygon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_389_Footsteps": { + "templateId": "AthenaItemWrap:Wrap_389_Footsteps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_390_CelestialGlow": { + "templateId": "AthenaItemWrap:Wrap_390_CelestialGlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_391_Dragonfruit_YVN1M": { + "templateId": "AthenaItemWrap:Wrap_391_Dragonfruit_YVN1M", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_392_AlienFlora": { + "templateId": "AthenaItemWrap:Wrap_392_AlienFlora", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_393_Suspenders": { + "templateId": "AthenaItemWrap:Wrap_393_Suspenders", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_394_TextileSilver_ZUH63": { + "templateId": "AthenaItemWrap:Wrap_394_TextileSilver_ZUH63", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_395_TextileBlack_DBVU2": { + "templateId": "AthenaItemWrap:Wrap_395_TextileBlack_DBVU2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_396_TextileGold_GC2TL": { + "templateId": "AthenaItemWrap:Wrap_396_TextileGold_GC2TL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_397_PunkKoi": { + "templateId": "AthenaItemWrap:Wrap_397_PunkKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_398_Division": { + "templateId": "AthenaItemWrap:Wrap_398_Division", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_399_CerealBox": { + "templateId": "AthenaItemWrap:Wrap_399_CerealBox", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_400_SpaceChimp": { + "templateId": "AthenaItemWrap:Wrap_400_SpaceChimp", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_401_Cubes": { + "templateId": "AthenaItemWrap:Wrap_401_Cubes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_402_Sideways": { + "templateId": "AthenaItemWrap:Wrap_402_Sideways", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_403_GhostHunter": { + "templateId": "AthenaItemWrap:Wrap_403_GhostHunter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_404_CritterFrenzy_SNXC0": { + "templateId": "AthenaItemWrap:Wrap_404_CritterFrenzy_SNXC0", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_405_GreenGel": { + "templateId": "AthenaItemWrap:Wrap_405_GreenGel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_406_Psyche_YFO29": { + "templateId": "AthenaItemWrap:Wrap_406_Psyche_YFO29", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_407_Peacock": { + "templateId": "AthenaItemWrap:Wrap_407_Peacock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_408_Vampire": { + "templateId": "AthenaItemWrap:Wrap_408_Vampire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_409_CritterManiac_1B4II": { + "templateId": "AthenaItemWrap:Wrap_409_CritterManiac_1B4II", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_410_Collage": { + "templateId": "AthenaItemWrap:Wrap_410_Collage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_411_SweetTeriyaki": { + "templateId": "AthenaItemWrap:Wrap_411_SweetTeriyaki", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_412_AlienDay": { + "templateId": "AthenaItemWrap:Wrap_412_AlienDay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_413_SAM_WK0AX": { + "templateId": "AthenaItemWrap:Wrap_413_SAM_WK0AX", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_414_Splash": { + "templateId": "AthenaItemWrap:Wrap_414_Splash", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_415_FingerprintSwirl": { + "templateId": "AthenaItemWrap:Wrap_415_FingerprintSwirl", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_416_QuantumShot": { + "templateId": "AthenaItemWrap:Wrap_416_QuantumShot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_417_Guava_7J7EW": { + "templateId": "AthenaItemWrap:Wrap_417_Guava_7J7EW", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_418_CloakedAssassin_I43FL": { + "templateId": "AthenaItemWrap:Wrap_418_CloakedAssassin_I43FL", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_419_Turtleneck": { + "templateId": "AthenaItemWrap:Wrap_419_Turtleneck", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_420_LoneWolf": { + "templateId": "AthenaItemWrap:Wrap_420_LoneWolf", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_421_BuffLlama": { + "templateId": "AthenaItemWrap:Wrap_421_BuffLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_422_Gumball": { + "templateId": "AthenaItemWrap:Wrap_422_Gumball", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_423_Motorcyclist": { + "templateId": "AthenaItemWrap:Wrap_423_Motorcyclist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_424_IslandNomad": { + "templateId": "AthenaItemWrap:Wrap_424_IslandNomad", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_425_Exosuit": { + "templateId": "AthenaItemWrap:Wrap_425_Exosuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_426_Parallel": { + "templateId": "AthenaItemWrap:Wrap_426_Parallel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_427_Peppermint": { + "templateId": "AthenaItemWrap:Wrap_427_Peppermint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_428_InnovatorFestive_Y04N1": { + "templateId": "AthenaItemWrap:Wrap_428_InnovatorFestive_Y04N1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_429_HolidaySweater": { + "templateId": "AthenaItemWrap:Wrap_429_HolidaySweater", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_430_WinterLights": { + "templateId": "AthenaItemWrap:Wrap_430_WinterLights", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_431_Logarithm_F8CWD": { + "templateId": "AthenaItemWrap:Wrap_431_Logarithm_F8CWD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_432_SkullPunk_KPBF4": { + "templateId": "AthenaItemWrap:Wrap_432_SkullPunk_KPBF4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_433_LlamaLeague": { + "templateId": "AthenaItemWrap:Wrap_433_LlamaLeague", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_434_8-BitCat": { + "templateId": "AthenaItemWrap:Wrap_434_8-BitCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_435_GreenMarble": { + "templateId": "AthenaItemWrap:Wrap_435_GreenMarble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_436_ValentineHearts": { + "templateId": "AthenaItemWrap:Wrap_436_ValentineHearts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_437_SneakerPrint": { + "templateId": "AthenaItemWrap:Wrap_437_SneakerPrint", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_438_LoveQueen": { + "templateId": "AthenaItemWrap:Wrap_438_LoveQueen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_439_AlienWaves": { + "templateId": "AthenaItemWrap:Wrap_439_AlienWaves", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_440_ShatterflyEclipse": { + "templateId": "AthenaItemWrap:Wrap_440_ShatterflyEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_441_ValentineFashion_H50ID": { + "templateId": "AthenaItemWrap:Wrap_441_ValentineFashion_H50ID", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_442_PuffyJacket": { + "templateId": "AthenaItemWrap:Wrap_442_PuffyJacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_443_SkyDream": { + "templateId": "AthenaItemWrap:Wrap_443_SkyDream", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_444_LeatherJacketPurple": { + "templateId": "AthenaItemWrap:Wrap_444_LeatherJacketPurple", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_445_Jade": { + "templateId": "AthenaItemWrap:Wrap_445_Jade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_446_PancakeDay": { + "templateId": "AthenaItemWrap:Wrap_446_PancakeDay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_447_BlizzardBomber": { + "templateId": "AthenaItemWrap:Wrap_447_BlizzardBomber", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_448_WomensDay1": { + "templateId": "AthenaItemWrap:Wrap_448_WomensDay1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_449_Bacteria": { + "templateId": "AthenaItemWrap:Wrap_449_Bacteria", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_450_Mystic": { + "templateId": "AthenaItemWrap:Wrap_450_Mystic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_451_OrderGuard": { + "templateId": "AthenaItemWrap:Wrap_451_OrderGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_452_Cadet": { + "templateId": "AthenaItemWrap:Wrap_452_Cadet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_453_Sienna": { + "templateId": "AthenaItemWrap:Wrap_453_Sienna", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_454_CyberArmor": { + "templateId": "AthenaItemWrap:Wrap_454_CyberArmor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_455_KnightCat": { + "templateId": "AthenaItemWrap:Wrap_455_KnightCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_456_OriginPrison": { + "templateId": "AthenaItemWrap:Wrap_456_OriginPrison", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_457_Binary": { + "templateId": "AthenaItemWrap:Wrap_457_Binary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_459_MilitaryFashionCamo": { + "templateId": "AthenaItemWrap:Wrap_459_MilitaryFashionCamo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_460_CactusRocker_92JZ7": { + "templateId": "AthenaItemWrap:Wrap_460_CactusRocker_92JZ7", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_461_GnomeCandle": { + "templateId": "AthenaItemWrap:Wrap_461_GnomeCandle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_462_Corkboard": { + "templateId": "AthenaItemWrap:Wrap_462_Corkboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_463_Disarray": { + "templateId": "AthenaItemWrap:Wrap_463_Disarray", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_464_PostParty": { + "templateId": "AthenaItemWrap:Wrap_464_PostParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_465_Lyrical": { + "templateId": "AthenaItemWrap:Wrap_465_Lyrical", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_466_CactusDancer_A": { + "templateId": "AthenaItemWrap:Wrap_466_CactusDancer_A", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_467_BlackBird": { + "templateId": "AthenaItemWrap:Wrap_467_BlackBird", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_468_StainedGlass": { + "templateId": "AthenaItemWrap:Wrap_468_StainedGlass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_469_Trainer": { + "templateId": "AthenaItemWrap:Wrap_469_Trainer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_470_SleepyTimePeely": { + "templateId": "AthenaItemWrap:Wrap_470_SleepyTimePeely", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_471_NeonCatSpeed": { + "templateId": "AthenaItemWrap:Wrap_471_NeonCatSpeed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_472_Barcode": { + "templateId": "AthenaItemWrap:Wrap_472_Barcode", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_473_GameBuddies": { + "templateId": "AthenaItemWrap:Wrap_473_GameBuddies", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_474_MasterKey": { + "templateId": "AthenaItemWrap:Wrap_474_MasterKey", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_475_HeatedMetal": { + "templateId": "AthenaItemWrap:Wrap_475_HeatedMetal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_476_Alfredo": { + "templateId": "AthenaItemWrap:Wrap_476_Alfredo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_477_NeonGraffitiLava": { + "templateId": "AthenaItemWrap:Wrap_477_NeonGraffitiLava", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_478_RavenQuillParrot": { + "templateId": "AthenaItemWrap:Wrap_478_RavenQuillParrot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_479_Armadillo": { + "templateId": "AthenaItemWrap:Wrap_479_Armadillo", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_480_Comp20": { + "templateId": "AthenaItemWrap:Wrap_480_Comp20", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_481_Realm": { + "templateId": "AthenaItemWrap:Wrap_481_Realm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_482_Canary": { + "templateId": "AthenaItemWrap:Wrap_482_Canary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_483_Lancelot": { + "templateId": "AthenaItemWrap:Wrap_483_Lancelot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_484_BlueJay": { + "templateId": "AthenaItemWrap:Wrap_484_BlueJay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_486_Fuchsia": { + "templateId": "AthenaItemWrap:Wrap_486_Fuchsia", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_487_PinkWidow": { + "templateId": "AthenaItemWrap:Wrap_487_PinkWidow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_488_Comp20B": { + "templateId": "AthenaItemWrap:Wrap_488_Comp20B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_489_Comp20C": { + "templateId": "AthenaItemWrap:Wrap_489_Comp20C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_490_Comp20D": { + "templateId": "AthenaItemWrap:Wrap_490_Comp20D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_491_Comp20E": { + "templateId": "AthenaItemWrap:Wrap_491_Comp20E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_492_Comp20F": { + "templateId": "AthenaItemWrap:Wrap_492_Comp20F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_493_PinkDaisies": { + "templateId": "AthenaItemWrap:Wrap_493_PinkDaisies", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_494_RockVein": { + "templateId": "AthenaItemWrap:Wrap_494_RockVein", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_495_Ensemble": { + "templateId": "AthenaItemWrap:Wrap_495_Ensemble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_496_Chisel": { + "templateId": "AthenaItemWrap:Wrap_496_Chisel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_497_MaskedWarriorSpring": { + "templateId": "AthenaItemWrap:Wrap_497_MaskedWarriorSpring", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_498_Waves": { + "templateId": "AthenaItemWrap:Wrap_498_Waves", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_499_MercurialStorm": { + "templateId": "AthenaItemWrap:Wrap_499_MercurialStorm", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_500_Barium": { + "templateId": "AthenaItemWrap:Wrap_500_Barium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_501_GlassSpectrum": { + "templateId": "AthenaItemWrap:Wrap_501_GlassSpectrum", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_502_CuddleHearts": { + "templateId": "AthenaItemWrap:Wrap_502_CuddleHearts", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_503_FuzzyBearSummer": { + "templateId": "AthenaItemWrap:Wrap_503_FuzzyBearSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_504_CharlotteSummer": { + "templateId": "AthenaItemWrap:Wrap_504_CharlotteSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_505_Fruitcake": { + "templateId": "AthenaItemWrap:Wrap_505_Fruitcake", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_506_SummerStride": { + "templateId": "AthenaItemWrap:Wrap_506_SummerStride", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_507_SummerVivid": { + "templateId": "AthenaItemWrap:Wrap_507_SummerVivid", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_508_ApexWild": { + "templateId": "AthenaItemWrap:Wrap_508_ApexWild", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_509_Chaos": { + "templateId": "AthenaItemWrap:Wrap_509_Chaos", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_510_AvantGarde": { + "templateId": "AthenaItemWrap:Wrap_510_AvantGarde", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_511_FutureSamuraiSummer": { + "templateId": "AthenaItemWrap:Wrap_511_FutureSamuraiSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_512_Handlebar": { + "templateId": "AthenaItemWrap:Wrap_512_Handlebar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_513_WildCard": { + "templateId": "AthenaItemWrap:Wrap_513_WildCard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_514_ROYGBIVLlama": { + "templateId": "AthenaItemWrap:Wrap_514_ROYGBIVLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_515_NeonJam": { + "templateId": "AthenaItemWrap:Wrap_515_NeonJam", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_516_Comp21A": { + "templateId": "AthenaItemWrap:Wrap_516_Comp21A", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_517_Comp21B": { + "templateId": "AthenaItemWrap:Wrap_517_Comp21B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_518_Comp21C": { + "templateId": "AthenaItemWrap:Wrap_518_Comp21C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_519_Comp21D": { + "templateId": "AthenaItemWrap:Wrap_519_Comp21D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_520_Comp21E": { + "templateId": "AthenaItemWrap:Wrap_520_Comp21E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_521_Comp21F": { + "templateId": "AthenaItemWrap:Wrap_521_Comp21F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_AgentSherbert": { + "templateId": "AthenaItemWrap:Wrap_AgentSherbert", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_AllKnowing": { + "templateId": "AthenaItemWrap:Wrap_AllKnowing", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Amour": { + "templateId": "AthenaItemWrap:Wrap_Amour", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Apprentice": { + "templateId": "AthenaItemWrap:Wrap_Apprentice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BadBear": { + "templateId": "AthenaItemWrap:Wrap_BadBear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Barium_Demon": { + "templateId": "AthenaItemWrap:Wrap_Barium_Demon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BengalBasher": { + "templateId": "AthenaItemWrap:Wrap_BengalBasher", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BirdNest": { + "templateId": "AthenaItemWrap:Wrap_BirdNest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BiruFang": { + "templateId": "AthenaItemWrap:Wrap_BiruFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Bites": { + "templateId": "AthenaItemWrap:Wrap_Bites", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BlazerVeil": { + "templateId": "AthenaItemWrap:Wrap_BlazerVeil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BlueGlaze": { + "templateId": "AthenaItemWrap:Wrap_BlueGlaze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BoneMarrow": { + "templateId": "AthenaItemWrap:Wrap_BoneMarrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BrawnyBass": { + "templateId": "AthenaItemWrap:Wrap_BrawnyBass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BrightFlames": { + "templateId": "AthenaItemWrap:Wrap_BrightFlames", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BuffCatCruise": { + "templateId": "AthenaItemWrap:Wrap_BuffCatCruise", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BuffCatCruise_B": { + "templateId": "AthenaItemWrap:Wrap_BuffCatCruise_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_BunnyPurple_Festive": { + "templateId": "AthenaItemWrap:Wrap_BunnyPurple_Festive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Calavera": { + "templateId": "AthenaItemWrap:Wrap_Calavera", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Candor": { + "templateId": "AthenaItemWrap:Wrap_Candor", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_CatBurglarGameplay": { + "templateId": "AthenaItemWrap:Wrap_CatBurglarGameplay", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_CeremonialGuard": { + "templateId": "AthenaItemWrap:Wrap_CeremonialGuard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Chainmail": { + "templateId": "AthenaItemWrap:Wrap_Chainmail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ChaosDarkIce": { + "templateId": "AthenaItemWrap:Wrap_ChaosDarkIce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_CheetahBow": { + "templateId": "AthenaItemWrap:Wrap_CheetahBow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ChillCat": { + "templateId": "AthenaItemWrap:Wrap_ChillCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ChromeDJ": { + "templateId": "AthenaItemWrap:Wrap_ChromeDJ", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_CinderMax": { + "templateId": "AthenaItemWrap:Wrap_CinderMax", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Circuit": { + "templateId": "AthenaItemWrap:Wrap_Circuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_CirrusVine": { + "templateId": "AthenaItemWrap:Wrap_CirrusVine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Citadel": { + "templateId": "AthenaItemWrap:Wrap_Citadel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ClearRadius": { + "templateId": "AthenaItemWrap:Wrap_ClearRadius", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_CloudySpace": { + "templateId": "AthenaItemWrap:Wrap_CloudySpace", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ClubSound": { + "templateId": "AthenaItemWrap:Wrap_ClubSound", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_CometWinter": { + "templateId": "AthenaItemWrap:Wrap_CometWinter", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp22A": { + "templateId": "AthenaItemWrap:Wrap_Comp22A", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp22B": { + "templateId": "AthenaItemWrap:Wrap_Comp22B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp22C": { + "templateId": "AthenaItemWrap:Wrap_Comp22C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp22D": { + "templateId": "AthenaItemWrap:Wrap_Comp22D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp22E": { + "templateId": "AthenaItemWrap:Wrap_Comp22E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp22F": { + "templateId": "AthenaItemWrap:Wrap_Comp22F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp23A": { + "templateId": "AthenaItemWrap:Wrap_Comp23A", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp23B": { + "templateId": "AthenaItemWrap:Wrap_Comp23B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp23C": { + "templateId": "AthenaItemWrap:Wrap_Comp23C", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp23D": { + "templateId": "AthenaItemWrap:Wrap_Comp23D", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp23E": { + "templateId": "AthenaItemWrap:Wrap_Comp23E", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp23F": { + "templateId": "AthenaItemWrap:Wrap_Comp23F", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp24": { + "templateId": "AthenaItemWrap:Wrap_Comp24", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp25": { + "templateId": "AthenaItemWrap:Wrap_Comp25", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Comp26": { + "templateId": "AthenaItemWrap:Wrap_Comp26", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Conscience": { + "templateId": "AthenaItemWrap:Wrap_Conscience", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_CoyoTear": { + "templateId": "AthenaItemWrap:Wrap_CoyoTear", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_CoyoteTrail": { + "templateId": "AthenaItemWrap:Wrap_CoyoteTrail", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_CrispRover": { + "templateId": "AthenaItemWrap:Wrap_CrispRover", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Crush": { + "templateId": "AthenaItemWrap:Wrap_Crush", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_CyberFu_Glitch": { + "templateId": "AthenaItemWrap:Wrap_CyberFu_Glitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_DapperPunch": { + "templateId": "AthenaItemWrap:Wrap_DapperPunch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_DarkAzeala": { + "templateId": "AthenaItemWrap:Wrap_DarkAzeala", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_DazzleV2": { + "templateId": "AthenaItemWrap:Wrap_DazzleV2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_DefectBlip": { + "templateId": "AthenaItemWrap:Wrap_DefectBlip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_DefectGlitch": { + "templateId": "AthenaItemWrap:Wrap_DefectGlitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Designer": { + "templateId": "AthenaItemWrap:Wrap_Designer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Despair": { + "templateId": "AthenaItemWrap:Wrap_Despair", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_DiamondHeart": { + "templateId": "AthenaItemWrap:Wrap_DiamondHeart", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_DiscordQuest": { + "templateId": "AthenaItemWrap:Wrap_DiscordQuest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Ebony": { + "templateId": "AthenaItemWrap:Wrap_Ebony", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_EctoCat": { + "templateId": "AthenaItemWrap:Wrap_EctoCat", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_EmberRae": { + "templateId": "AthenaItemWrap:Wrap_EmberRae", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Ephemeral": { + "templateId": "AthenaItemWrap:Wrap_Ephemeral", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_FolkEvening": { + "templateId": "AthenaItemWrap:Wrap_FolkEvening", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_GalaxyKnight": { + "templateId": "AthenaItemWrap:Wrap_GalaxyKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_GoodMood": { + "templateId": "AthenaItemWrap:Wrap_GoodMood", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_GrandSchemeA": { + "templateId": "AthenaItemWrap:Wrap_GrandSchemeA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_GrandSchemeB": { + "templateId": "AthenaItemWrap:Wrap_GrandSchemeB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_GrandSchemeC": { + "templateId": "AthenaItemWrap:Wrap_GrandSchemeC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_GrandSchemeD": { + "templateId": "AthenaItemWrap:Wrap_GrandSchemeD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_GrandSchemeE": { + "templateId": "AthenaItemWrap:Wrap_GrandSchemeE", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_GrandSchemeF": { + "templateId": "AthenaItemWrap:Wrap_GrandSchemeF", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_GreenGlass": { + "templateId": "AthenaItemWrap:Wrap_GreenGlass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_HeadHunterStar": { + "templateId": "AthenaItemWrap:Wrap_HeadHunterStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_HeadSet": { + "templateId": "AthenaItemWrap:Wrap_HeadSet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_HeistSleek": { + "templateId": "AthenaItemWrap:Wrap_HeistSleek", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_HexagonColors": { + "templateId": "AthenaItemWrap:Wrap_HexagonColors", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_HornedJudgment": { + "templateId": "AthenaItemWrap:Wrap_HornedJudgment", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_IndieBucket": { + "templateId": "AthenaItemWrap:Wrap_IndieBucket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Inferno": { + "templateId": "AthenaItemWrap:Wrap_Inferno", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_InstantGravel": { + "templateId": "AthenaItemWrap:Wrap_InstantGravel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Intertwine": { + "templateId": "AthenaItemWrap:Wrap_Intertwine", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_IonVial": { + "templateId": "AthenaItemWrap:Wrap_IonVial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_KnightCatRacket": { + "templateId": "AthenaItemWrap:Wrap_KnightCatRacket", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_LanternGlass": { + "templateId": "AthenaItemWrap:Wrap_LanternGlass", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_LazarusLens": { + "templateId": "AthenaItemWrap:Wrap_LazarusLens", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Lettuce": { + "templateId": "AthenaItemWrap:Wrap_Lettuce", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_LightningDragon": { + "templateId": "AthenaItemWrap:Wrap_LightningDragon", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_LilSplit_SprinklesFudge": { + "templateId": "AthenaItemWrap:Wrap_LilSplit_SprinklesFudge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_LocalZilla_Blue": { + "templateId": "AthenaItemWrap:Wrap_LocalZilla_Blue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_LopexSnow": { + "templateId": "AthenaItemWrap:Wrap_LopexSnow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_LowPolyBeach": { + "templateId": "AthenaItemWrap:Wrap_LowPolyBeach", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_LucidAzalea": { + "templateId": "AthenaItemWrap:Wrap_LucidAzalea", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MadameMothA": { + "templateId": "AthenaItemWrap:Wrap_MadameMothA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MadameMothB": { + "templateId": "AthenaItemWrap:Wrap_MadameMothB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MadameMothC": { + "templateId": "AthenaItemWrap:Wrap_MadameMothC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MadameMothD": { + "templateId": "AthenaItemWrap:Wrap_MadameMothD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MagicMeadow": { + "templateId": "AthenaItemWrap:Wrap_MagicMeadow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MechPilotShark": { + "templateId": "AthenaItemWrap:Wrap_MechPilotShark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MelodyUrchin": { + "templateId": "AthenaItemWrap:Wrap_MelodyUrchin", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MetalScout": { + "templateId": "AthenaItemWrap:Wrap_MetalScout", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MeteorWoman": { + "templateId": "AthenaItemWrap:Wrap_MeteorWoman", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MirageHike": { + "templateId": "AthenaItemWrap:Wrap_MirageHike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Mochi": { + "templateId": "AthenaItemWrap:Wrap_Mochi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Mouse": { + "templateId": "AthenaItemWrap:Wrap_Mouse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Mummy": { + "templateId": "AthenaItemWrap:Wrap_Mummy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_MusketSlinger": { + "templateId": "AthenaItemWrap:Wrap_MusketSlinger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_NebulaV2": { + "templateId": "AthenaItemWrap:Wrap_NebulaV2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_NeonCircuit": { + "templateId": "AthenaItemWrap:Wrap_NeonCircuit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Neon_Blob": { + "templateId": "AthenaItemWrap:Wrap_Neon_Blob", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Neon_Drip": { + "templateId": "AthenaItemWrap:Wrap_Neon_Drip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_NitroFlow": { + "templateId": "AthenaItemWrap:Wrap_NitroFlow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_OpenEnded": { + "templateId": "AthenaItemWrap:Wrap_OpenEnded", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Pencil": { + "templateId": "AthenaItemWrap:Wrap_Pencil", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_PinkSpike": { + "templateId": "AthenaItemWrap:Wrap_PinkSpike", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_PizzaParty": { + "templateId": "AthenaItemWrap:Wrap_PizzaParty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_PlasmaCore": { + "templateId": "AthenaItemWrap:Wrap_PlasmaCore", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_PlotTwist": { + "templateId": "AthenaItemWrap:Wrap_PlotTwist", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Possession": { + "templateId": "AthenaItemWrap:Wrap_Possession", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ProdigyFire": { + "templateId": "AthenaItemWrap:Wrap_ProdigyFire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ProdigyHaughty": { + "templateId": "AthenaItemWrap:Wrap_ProdigyHaughty", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ProdigySage": { + "templateId": "AthenaItemWrap:Wrap_ProdigySage", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_PunkDevilVibe": { + "templateId": "AthenaItemWrap:Wrap_PunkDevilVibe", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RaiderPink_Sherbet": { + "templateId": "AthenaItemWrap:Wrap_RaiderPink_Sherbet", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RainbowClouds": { + "templateId": "AthenaItemWrap:Wrap_RainbowClouds", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RebelClaw": { + "templateId": "AthenaItemWrap:Wrap_RebelClaw", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RedPepper": { + "templateId": "AthenaItemWrap:Wrap_RedPepper", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RenegadeRaiderSpark": { + "templateId": "AthenaItemWrap:Wrap_RenegadeRaiderSpark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RetroSpeed": { + "templateId": "AthenaItemWrap:Wrap_RetroSpeed", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RhombCamoA": { + "templateId": "AthenaItemWrap:Wrap_RhombCamoA", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RhombCamoB": { + "templateId": "AthenaItemWrap:Wrap_RhombCamoB", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RhombCamoC": { + "templateId": "AthenaItemWrap:Wrap_RhombCamoC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RhombCamoD": { + "templateId": "AthenaItemWrap:Wrap_RhombCamoD", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RippedHarvester": { + "templateId": "AthenaItemWrap:Wrap_RippedHarvester", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RoosterMelt": { + "templateId": "AthenaItemWrap:Wrap_RoosterMelt", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_RoyalDusk": { + "templateId": "AthenaItemWrap:Wrap_RoyalDusk", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SailorSquadLeaderKoi": { + "templateId": "AthenaItemWrap:Wrap_SailorSquadLeaderKoi", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ScarletBionic": { + "templateId": "AthenaItemWrap:Wrap_ScarletBionic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ScorpionZero": { + "templateId": "AthenaItemWrap:Wrap_ScorpionZero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SeventiesDen": { + "templateId": "AthenaItemWrap:Wrap_SeventiesDen", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SharpFang": { + "templateId": "AthenaItemWrap:Wrap_SharpFang", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ShiitakeShaolin_Rouge": { + "templateId": "AthenaItemWrap:Wrap_ShiitakeShaolin_Rouge", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ShinyStar": { + "templateId": "AthenaItemWrap:Wrap_ShinyStar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SilentTempoBlue": { + "templateId": "AthenaItemWrap:Wrap_SilentTempoBlue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SilentTempoDark": { + "templateId": "AthenaItemWrap:Wrap_SilentTempoDark", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SilentTempoLight": { + "templateId": "AthenaItemWrap:Wrap_SilentTempoLight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SkullPunkBlade": { + "templateId": "AthenaItemWrap:Wrap_SkullPunkBlade", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SlicedBread": { + "templateId": "AthenaItemWrap:Wrap_SlicedBread", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Slipstream": { + "templateId": "AthenaItemWrap:Wrap_Slipstream", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SmartHyena": { + "templateId": "AthenaItemWrap:Wrap_SmartHyena", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SnowKnight": { + "templateId": "AthenaItemWrap:Wrap_SnowKnight", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SnowSoldierFashion": { + "templateId": "AthenaItemWrap:Wrap_SnowSoldierFashion", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Sparrow": { + "templateId": "AthenaItemWrap:Wrap_Sparrow", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SpeedDial": { + "templateId": "AthenaItemWrap:Wrap_SpeedDial", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SquareCells": { + "templateId": "AthenaItemWrap:Wrap_SquareCells", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_StarStray_Galaxy": { + "templateId": "AthenaItemWrap:Wrap_StarStray_Galaxy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_StreetFashionEclipse": { + "templateId": "AthenaItemWrap:Wrap_StreetFashionEclipse", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_StreetFashion_Casual": { + "templateId": "AthenaItemWrap:Wrap_StreetFashion_Casual", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Summer23_A": { + "templateId": "AthenaItemWrap:Wrap_Summer23_A", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Summer23_B": { + "templateId": "AthenaItemWrap:Wrap_Summer23_B", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SunbeamQuest": { + "templateId": "AthenaItemWrap:Wrap_SunbeamQuest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SunBurst": { + "templateId": "AthenaItemWrap:Wrap_SunBurst", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Sunlit": { + "templateId": "AthenaItemWrap:Wrap_Sunlit", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_SwampFish": { + "templateId": "AthenaItemWrap:Wrap_SwampFish", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_TearScar": { + "templateId": "AthenaItemWrap:Wrap_TearScar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_TheHerald": { + "templateId": "AthenaItemWrap:Wrap_TheHerald", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_TieDyeSummer": { + "templateId": "AthenaItemWrap:Wrap_TieDyeSummer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_TigerRootHue": { + "templateId": "AthenaItemWrap:Wrap_TigerRootHue", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Titanium": { + "templateId": "AthenaItemWrap:Wrap_Titanium", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_UndergroundRebel": { + "templateId": "AthenaItemWrap:Wrap_UndergroundRebel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Veiled_Glitch": { + "templateId": "AthenaItemWrap:Wrap_Veiled_Glitch", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Venice": { + "templateId": "AthenaItemWrap:Wrap_Venice", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Villainess_Vault": { + "templateId": "AthenaItemWrap:Wrap_Villainess_Vault", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Virtuous": { + "templateId": "AthenaItemWrap:Wrap_Virtuous", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_VitalPsych": { + "templateId": "AthenaItemWrap:Wrap_VitalPsych", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_VoidRedemption": { + "templateId": "AthenaItemWrap:Wrap_VoidRedemption", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_WingedMedieval": { + "templateId": "AthenaItemWrap:Wrap_WingedMedieval", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Winterfest23": { + "templateId": "AthenaItemWrap:Wrap_Winterfest23", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Winter_Pal": { + "templateId": "AthenaItemWrap:Wrap_Winter_Pal", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_WomensDay23": { + "templateId": "AthenaItemWrap:Wrap_WomensDay23", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_WoodsFestive": { + "templateId": "AthenaItemWrap:Wrap_WoodsFestive", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_Zebra": { + "templateId": "AthenaItemWrap:Wrap_Zebra", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ZebraScramble": { + "templateId": "AthenaItemWrap:Wrap_ZebraScramble", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaItemWrap:Wrap_ZirconSweep": { + "templateId": "AthenaItemWrap:Wrap_ZirconSweep", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:Dev_TestAsset": { + "templateId": "AthenaCharacter:Dev_TestAsset", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": 1, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaDance:EID_Pinwheel": { + "templateId": "AthenaDance:EID_Pinwheel", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": 1, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "S23_GIFTS": { + "templateId": "AthenaRewardGraph:s23_winterfest", + "attributes": { + "reward_nodes_claimed": [], + "unlock_epoch": "2022-12-12T14:00:00.000Z", + "unlock_keys_used": 0, + "player_random_seed": -2143043306, + "item_seen": false, + "player_state": [], + "reward_graph_purchased_timestamp": 1639693875638, + "reward_graph_purchased": true, + "reward_keys": [ + { + "static_key_template_id": "Token:athena_s23_winterfest_key", + "static_key_max_count": 14, + "static_key_initial_count": 0, + "unlock_keys_used": 0 + } + ] + }, + "quantity": 1 + }, + "S23_GIFT_KEY": { + "templateId": "Token:athena_s23_winterfest_key", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 14 + }, + "S19_GIFTS": { + "templateId": "AthenaRewardGraph:s19_winterfest", + "attributes": { + "reward_nodes_claimed": [], + "unlock_epoch": "2021-12-16T13:52:10.000Z", + "unlock_keys_used": 0, + "player_random_seed": -2143043306, + "item_seen": false, + "player_state": [], + "reward_graph_purchased_timestamp": 1639693875638, + "reward_graph_purchased": true, + "reward_keys": [ + { + "static_key_template_id": "Token:athena_s19_winterfest_key", + "static_key_max_count": 14, + "static_key_initial_count": 1, + "unlock_keys_used": 0 + } + ] + }, + "quantity": 1 + }, + "S19_GIFT_KEY": { + "templateId": "Token:athena_s19_winterfest_key", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 14 + }, + "S11_GIFTS": { + "templateId": "AthenaRewardGraph:winterfest", + "attributes": { + "reward_nodes_claimed": [], + "unlock_epoch": "2021-12-16T13:52:10.000Z", + "unlock_keys_used": 0, + "player_random_seed": -2143043306, + "item_seen": false, + "player_state": [], + "reward_graph_purchased_timestamp": 1639693875638, + "reward_graph_purchased": true, + "reward_keys": [ + { + "static_key_template_id": "Token:athenawinterfest_key", + "static_key_max_count": 14, + "static_key_initial_count": 1, + "unlock_keys_used": 0 + } + ] + }, + "quantity": 1 + }, + "S11_GIFT_KEY": { + "templateId": "Token:athenawinterfest_key", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 14 + }, + "AthenaRewardEventGraphCosmetic:REG_ID_001_Winterfest": { + "templateId": "AthenaRewardEventGraphCosmetic:REG_ID_001_Winterfest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": 1, + "xp": 0, + "variants": [ + { + "channel": "RibbonType", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2" + ] + }, + { + "channel": "RibbonColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6", + "Mat7" + ] + }, + { + "channel": "WrappingColor", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + }, + { + "channel": "NameTag", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3", + "Mat4", + "Mat5", + "Mat6" + ] + }, + { + "channel": "WrappingStyle", + "active": "Mat1", + "owned": [ + "Mat1", + "Mat2", + "Mat3" + ] + }, + { + "channel": "Random", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage5", + "Stage6", + "Stage7" + ] + }, + { + "channel": "Defined", + "active": "Stage1", + "owned": [ + "Stage1", + "Stage2", + "Stage3", + "Stage4", + "Stage8" + ] + } + ], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_389_Athena_Commando_F_SpaceBunny": { + "templateId": "AthenaCharacter:CID_389_Athena_Commando_F_SpaceBunny", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": 1, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_TBD_Athena_Commando_F_ConstructorTest": { + "templateId": "AthenaCharacter:CID_TBD_Athena_Commando_F_ConstructorTest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": 1, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "AthenaCharacter:CID_TBD_Athena_Commando_M_ConstructorTest": { + "templateId": "AthenaCharacter:CID_TBD_Athena_Commando_M_ConstructorTest", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": 1, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }, + "Quest:quest_s11_discover_landmarks": { + "templateId": "Quest:quest_s11_discover_landmarks", + "attributes": { + "creation_time": "2018-04-30T00:00:00.000Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-04-30T00:00:00.000Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_visit_landmark_crashedairplane": 2, + "completion_visit_landmark_angryapples": 1, + "completion_visit_landmark_campcod": 2, + "completion_visit_landmark_coralcove": 2, + "completion_visit_landmark_lighthouse": 2, + "completion_visit_landmark_fortruin": 2, + "completion_visit_landmark_beachsidemansion": 2, + "completion_visit_landmark_digsite": 1, + "completion_visit_landmark_bonfirecampsite": 2, + "completion_visit_landmark_riskyreels": 4, + "completion_visit_landmark_radiostation": 1, + "completion_visit_landmark_scrapyard": 2, + "completion_visit_landmark_powerdam": 2, + "completion_visit_landmark_weatherstation": 1, + "completion_visit_landmark_islandlodge": 1, + "completion_visit_landmark_waterfallgorge": 2, + "completion_visit_landmark_canoerentals": 1, + "completion_visit_landmark_mountainvault": 1, + "completion_visit_landmark_swampville": 2, + "completion_visit_landmark_cliffsideruinedhouses": 1, + "completion_visit_landmark_sawmill": 2, + "completion_visit_landmark_pipeplayground": 2, + "completion_visit_landmark_pipeperson": 1, + "completion_visit_landmark_hayhillbilly": 1, + "completion_visit_landmark_lawnmowerraces": 1, + "completion_visit_landmark_shipwreckcove": 1, + "completion_visit_landmark_tallestmountain": 1, + "completion_visit_landmark_beachbus": 2, + "completion_visit_landmark_bobsbluff": 2, + "completion_visit_landmark_buoyboat": 1, + "completion_visit_landmark_chair": 1, + "completion_visit_landmark_forkknifetruck": 1, + "completion_visit_landmark_durrrburgertruck": 1, + "completion_visit_landmark_snowconetruck": 1, + "completion_visit_landmark_pizzapetetruck": 1, + "completion_visit_landmark_beachrentals": 2, + "completion_visit_landmark_overgrownheads": 2, + "completion_visit_landmark_loverslookout": 1, + "completion_visit_landmark_toiletthrone": 1, + "completion_visit_landmark_hatch_a": 2, + "completion_visit_landmark_hatch_b": 1, + "completion_visit_landmark_hatch_c": 2, + "completion_visit_landmark_bigbridgeblue": 1, + "completion_visit_landmark_bigbridgered": 1, + "completion_visit_landmark_bigbridgeyellow": 1, + "completion_visit_landmark_bigbridgegreen": 1, + "completion_visit_landmark_bigbridgepurple": 2, + "completion_visit_landmark_captaincarpstruck": 1, + "completion_visit_landmark_mountf8": 1, + "completion_visit_landmark_mounth7": 1, + "completion_visit_landmark_basecamphotel": 1, + "completion_visit_landmark_basecampfoxtrot": 1, + "completion_visit_landmark_basecampgolf": 1, + "completion_visit_landmark_lazylakeisland": 2, + "completion_visit_landmark_boatlaunch": 1, + "completion_visit_landmark_crashedcargo": 2, + "completion_visit_landmark_homelyhills": 1, + "completion_visit_landmark_flopperpond": 2, + "completion_visit_landmark_hilltophouse": 1, + "completion_visit_landmark_stackshack": 1, + "completion_visit_landmark_unremarkableshack": 2, + "completion_visit_landmark_rapidsrest": 1, + "completion_visit_landmark_stumpyridge": 1, + "completion_visit_landmark_corruptedisland": 1, + "completion_visit_landmark_bushface": 1, + "completion_visit_landmark_mountaindanceclub": 1, + "completion_visit_landmark_icechair": 1, + "completion_visit_landmark_icehotel": 1, + "completion_visit_landmark_toyfactory": 1, + "completion_visit_landmark_iceblockfactory": 1, + "completion_visit_landmark_crackshotscabin": 1, + "completion_visit_landmark_agencyhq": 1, + "completion_visit_landmark_spybase_undergroundsoccerfield": 1, + "completion_visit_landmark_spybase_undergroundgasstation": 1, + "completion_visit_landmark_suburban_abandonedhouse": 1, + "completion_visit_landmark_remotehouse": 1, + "completion_visit_landmark_fishfarm": 1, + "completion_visit_landmark_sirenisland": 1, + "completion_visit_landmark_boatsales": 1, + "completion_visit_landmark_boatrace": 1, + "completion_visit_landmark_theyacht2": 1, + "completion_visit_landmark_toilettitan": 1, + "completion_visit_landmark_highhoop": 1, + "completion_visit_landmark_pizzapitbarge": 1, + "completion_visit_landmark_trophy": 1, + "completion_visit_namedpoi_spybase_oilrig": 2, + "completion_visit_namedpoi_spybase_yacht": 2, + "completion_visit_namedpoi_spybase_mountainbase": 1, + "completion_visit_namedpoi_spybase_shark": 2, + "completion_visit_landmark_spybase_undergroundradiostation": 1, + "completion_visit_landmark_spybase_boxfactory": 1, + "completion_visit_landmark_spybase_teddybearspies": 1, + "completion_visit_landmark_spybase_recruitmentofficeego": 1, + "completion_visit_landmark_spybase_recruitmentofficealter": 1, + "completion_visit_landmark_spybase_spyobstaclecourse": 1, + "completion_visit_landmark_sharkremains": 1, + "completion_visit_landmark_restaurantgas": 2, + "completion_visit_landmark_carman": 1, + "completion_visit_landmark_spybase_grottoruins": 1, + "completion_visit_landmark_sentinelgraveyard": 1, + "completion_visit_landmark_tantorsphere": 1, + "completion_visit_landmark_bigdoghouse": 1, + "completion_visit_landmark_onyxsphere": 1, + "completion_visit_landmark_dateroom": 1, + "completion_visit_landmark_awakestatue": 1, + "completion_visit_landmark_datehouse": 1, + "completion_visit_landmark_throne": 1, + "completion_visit_landmark_lawoffice": 1, + "completion_visit_landmark_ruin": 1, + "completion_visit_landmark_friendmonument": 1, + "completion_visit_landmark_workshop": 1, + "completion_visit_landmark_heroespark": 1, + "completion_visit_landmark_turbo": 1, + "completion_visit_landmark_jetlanding_01": 1, + "completion_visit_landmark_jetlanding_02": 1, + "completion_visit_landmark_jetlanding_04": 1, + "completion_visit_landmark_jetlanding_05": 1, + "completion_visit_landmark_jetlanding_06": 1, + "completion_visit_landmark_jetlanding_07": 1, + "completion_visit_landmark_jetlanding_08": 1, + "completion_visit_landmark_jetlanding_09": 1, + "completion_visit_landmark_jetlanding_10": 1, + "completion_visit_landmark_jetlanding_11": 1, + "completion_visit_landmark_jetlanding_12": 1, + "completion_visit_landmark_jetlanding_13": 1, + "completion_visit_landmark_jetlanding_14": 1, + "completion_visit_landmark_jetlanding_15": 1, + "completion_visit_landmark_jetlanding_16": 1, + "completion_visit_landmark_jetlanding_17": 1, + "completion_visit_landmark_bstore": 1, + "completion_visit_landmark_cabin": 1, + "completion_visit_landmark_flushfactory": 1, + "completion_visit_landmark_steelfarm": 1, + "completion_visit_landmark_tomatotown": 1, + "completion_visit_landmark_greasygrove": 1, + "completion_visit_landmark_vikingvillage": 1, + "completion_visit_landmark_sheriffoffice": 1, + "completion_visit_landmark_cosmoscrashsite": 1, + "completion_visit_landmark_dustydepot": 1, + "completion_visit_landmark_butterbarn": 1, + "completion_visit_landmark_zpoint": 1, + "completion_visit_landmark_noahhouse": 1, + "completion_visit_landmark_kitskantina": 1, + "completion_visit_landmark_iohub_d1": 1, + "completion_visit_landmark_iohub_e6": 1, + "completion_visit_landmark_iohub_f4": 1, + "completion_visit_landmark_crashedhelicopter": 1, + "completion_visit_landmark_arenafloor4": 1, + "completion_visit_landmark_arenafloor3": 1, + "completion_visit_landmark_arenafloor1": 1, + "completion_visit_landmark_arenafloor5": 1, + "completion_visit_landmark_holidaystore": 1, + "completion_visit_landmark_outpost_alpha": 1, + "completion_visit_landmark_outpost_beta": 1, + "completion_visit_landmark_outpost_charlie": 1, + "completion_visit_landmark_outpost_delta": 1, + "completion_visit_landmark_outpost_echo": 1, + "completion_visit_landmark_outpost_outsidetower1": 1, + "completion_visit_landmark_outpost_outsidetower2": 1, + "completion_visit_landmark_outpost_outsidetower3": 1, + "completion_visit_landmark_outpost_outsidetower4": 1, + "completion_visit_landmark_outpost_outsidetower5": 1, + "completion_visit_landmark_outpost_outsidetower6": 1, + "completion_visit_landmark_outpost_primalpond": 1, + "completion_visit_landmark_outpost_rockface": 1, + "completion_visit_landmark_outpost_cattycornergarage": 1, + "completion_visit_landmark_outpost_goldenisland": 1, + "completion_visit_landmark_radardish_01": 1, + "completion_visit_landmark_radardish_02": 1, + "completion_visit_landmark_radardish_03": 1, + "completion_visit_landmark_radardish_04": 1, + "completion_visit_landmark_radardish_05": 1, + "completion_visit_landmark_radardish_06": 1, + "completion_visit_landmark_radardish_07": 1, + "completion_visit_landmark_towerruins": 2, + "completion_visit_landmark_hiddenufo_01": 1, + "completion_visit_landmark_hiddenufo_02": 1, + "completion_visit_landmark_hiddenufo_03": 1, + "completion_visit_landmark_hiddenufo_04": 1, + "completion_visit_landmark_hiddenufo_05": 1, + "completion_visit_landmark_crashsite_01": 1, + "completion_visit_landmark_crashsite_02": 1, + "completion_visit_landmark_crashsite_03": 1, + "completion_visit_landmark_crashsite_04": 1, + "completion_visit_landmark_crashsite_05": 1, + "completion_visit_landmark_friendlycube": 1, + "completion_visit_landmark_outpost_01": 1, + "completion_visit_landmark_outpost_02": 1, + "completion_visit_landmark_outpost_03": 1, + "completion_visit_landmark_outpost_04": 1, + "completion_visit_landmark_outpost_05": 1, + "completion_visit_landmark_convoy_01": 1, + "completion_visit_landmark_convoy_02": 1, + "completion_visit_landmark_convoy_03": 1, + "completion_visit_landmark_convoy_04": 1, + "completion_visit_landmark_convoy_05": 1, + "completion_visit_landmark_convoy_06": 1, + "completion_visit_landmark_convoy_07": 1, + "completion_visit_landmark_convoy_08": 1, + "completion_visit_landmark_convoy_09": 1, + "completion_visit_landmark_convoy_10": 1, + "completion_visit_namedpoi_glasscases": 1, + "completion_visit_namedpoi_tomatosphere": 1, + "completion_visit_namedpoi_tomatowater": 1, + "completion_visit_namedpoi_tomatohouse": 1, + "completion_visit_namedpoi_riskyreels": 1, + "completion_visit_namedpoi_spybase_oilrig_reset_0": 1, + "completion_visit_landmark_militarycamp_01": 1, + "completion_visit_landmark_militarycamp_02": 1, + "completion_visit_landmark_militarycamp_03": 1, + "completion_visit_landmark_militarycamp_04": 1, + "completion_visit_landmark_militarycamp_05": 1, + "completion_visit_landmark_galileosite1": 1, + "completion_visit_landmark_galileosite2": 1, + "completion_visit_landmark_galileosite3": 1, + "completion_visit_landmark_galileosite4": 1, + "completion_visit_landmark_galileosite5": 1, + "completion_visit_landmark_pirateradioboat": 1, + "completion_visit_landmark_arkbarge": 1, + "completion_visit_landmark_fishrestaurantbarge1": 1, + "completion_visit_landmark_fishrestaurantbarge2": 1, + "completion_visit_landmark_wagontrail": 1, + "completion_visit_landmark_pawnbarge": 1, + "completion_visit_landmark_partybarge": 1, + "completion_visit_landmark_piratebarge": 1, + "completion_visit_landmark_floodedweepingwoods": 1, + "completion_visit_landmark_spybase_floodeddirtydocks": 1, + "completion_visit_landmark_spybase_floodedcraggycliffs": 1, + "completion_visit_landmark_witch1": 1, + "completion_visit_landmark_witch2": 1, + "completion_visit_landmark_witch3": 1, + "completion_visit_landmark_witch4": 1, + "completion_visit_landmark_witch5": 1, + "completion_visit_landmark_witch6": 1, + "completion_visit_landmark_witch7": 1, + "completion_visit_landmark_booshop": 1, + "completion_visit_papaya_theater": 1, + "completion_visit_papaya_thehub": 1, + "completion_visit_papaya_mainstage": 1, + "completion_visit_papaya_soccerfield": 1, + "completion_visit_papaya_fishingpond": 1, + "completion_visit_papaya_secretbeach": 1, + "completion_visit_papaya_giantskeleton": 1, + "completion_visit_papaya_boatramps": 1, + "completion_visit_papaya_piratecove": 1, + "completion_visit_papaya_boatraceeast": 1, + "completion_visit_papaya_boatracesouth": 1, + "completion_visit_papaya_gliderdrop": 1, + "completion_visit_papaya_obstaclecourse": 1, + "completion_visit_papaya_racecenter": 1, + "completion_visit_papaya_mountainpeak": 1, + "completion_visit_boogieboat": 1, + "completion_impossible_landmark_of_permanence": 9001 + }, + "quantity": 1 + }, + "Quest:quest_s11_discover_namedlocations": { + "templateId": "Quest:quest_s11_discover_namedlocations", + "attributes": { + "creation_time": "2018-04-30T00:00:00.000Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-04-30T00:00:00.000Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_visit_location_beachybluffs": 2, + "completion_visit_location_dirtydocks": 2, + "completion_visit_location_frenzyfarm": 2, + "completion_visit_location_hollyhedges": 1, + "completion_visit_location_hollyhedgesupdate": 1, + "completion_visit_location_lazylake": 1, + "completion_visit_location_mountainmeadow": 1, + "completion_visit_location_powerplant": 2, + "completion_visit_location_slurpyswamp": 2, + "completion_visit_location_sunnyshores": 3, + "completion_visit_location_weepingwoods": 3, + "completion_visit_location_retailrow": 1, + "completion_visit_location_saltysprings": 2, + "completion_visit_location_pleasantpark": 3, + "completion_visit_location_fortilla": 1, + "completion_visit_location_oilrigislands": 1, + "completion_visit_location_shadowagency": 2, + "completion_visit_location_cattycorner": 1, + "completion_visit_location_carl": 1, + "completion_visit_location_tomatolab": 1, + "completion_visit_location_nightmarejungle": 1, + "completion_visit_location_thecoliseum": 1, + "completion_visit_location_huntershaven": 1, + "completion_visit_location_saltytowers": 2, + "completion_visit_location_heroesharvest": 1, + "completion_visit_location_maintower": 1, + "completion_visit_location_governmentcomplex": 1, + "completion_impossible_poi_of_permanence": 9001 + }, + "quantity": 1 + }, + "Quest:quest_c3_discover_landmarks": { + "templateId": "Quest:quest_c3_discover_landmarks", + "attributes": { + "creation_time": "2018-04-30T00:00:00.000Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-04-30T00:00:00.000Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_visit_location_ch3_lm_wreckravine": 1, + "completion_visit_location_ch3_lm_windpowerbuilding": 1, + "completion_visit_location_ch3_lm_windmillfarm": 1, + "completion_visit_location_ch3_lm_volcanomonitoringstation": 1, + "completion_visit_location_ch3_lm_villageshack": 1, + "completion_visit_location_ch3_lm_vanlife": 1, + "completion_visit_location_ch3_lm_tinytimbertent": 1, + "completion_visit_location_ch3_lm_templestairs": 1, + "completion_visit_location_ch3_lm_sunnystepruin": 1, + "completion_visit_location_ch3_lm_smalltemple": 1, + "completion_visit_location_ch3_lm_smallmine": 1, + "completion_visit_location_ch3_lm_skypirateship": 1, + "completion_visit_location_ch3_lm_sinkhole": 1, + "completion_visit_location_ch3_lm_shroomstation": 1, + "completion_visit_location_ch3_lm_sevenresearchlab_3": 1, + "completion_visit_location_ch3_lm_sevenresearchlab_2": 1, + "completion_visit_location_ch3_lm_sevenresearchlab_1": 1, + "completion_visit_location_ch3_lm_sevenfb_07": 1, + "completion_visit_location_ch3_lm_sevenfb_06": 1, + "completion_visit_location_ch3_lm_sevenfb_05": 1, + "completion_visit_location_ch3_lm_sevenfb_04": 1, + "completion_visit_location_ch3_lm_sevenfb_03": 1, + "completion_visit_location_ch3_lm_sevenfb_02": 1, + "completion_visit_location_ch3_lm_sevenfb_01": 1, + "completion_visit_location_ch3_lm_seven_rockrock": 3, + "completion_visit_location_ch3_lm_seven_rocketbase": 1, + "completion_visit_location_ch3_lm_rustycarbeach": 1, + "completion_visit_location_ch3_lm_ruralgasstation": 1, + "completion_visit_location_ch3_lm_ruinedtempletropical": 1, + "completion_visit_location_ch3_lm_ruinedtemplejungle": 3, + "completion_visit_location_ch3_lm_rockmounds": 1, + "completion_visit_location_ch3_lm_rentallodge": 2, + "completion_visit_location_ch3_lm_raptorfarmhouse": 1, + "completion_visit_location_ch3_lm_rangertower": 1, + "completion_visit_location_ch3_lm_radiotower": 1, + "completion_visit_location_ch3_lm_puddlepond": 1, + "completion_visit_location_ch3_lm_powertower": 1, + "completion_visit_location_ch3_lm_plantnursery": 2, + "completion_visit_location_ch3_lm_piraterowboat": 1, + "completion_visit_location_ch3_lm_pinnaclepeak": 1, + "completion_visit_location_ch3_lm_pawntoon": 3, + "completion_visit_location_ch3_lm_partyblimp": 1, + "completion_visit_location_ch3_lm_paracon5": 1, + "completion_visit_location_ch3_lm_paracon4": 1, + "completion_visit_location_ch3_lm_paracon3": 1, + "completion_visit_location_ch3_lm_paracon2": 1, + "completion_visit_location_ch3_lm_paracon1": 1, + "completion_visit_location_ch3_lm_nosweathq": 1, + "completion_visit_location_ch3_lm_mushroomvillage": 1, + "completion_visit_location_ch3_lm_mushroomfarm": 1, + "completion_visit_location_ch3_lm_meowsculescabin": 1, + "completion_visit_location_ch3_lm_lootlakeisland": 1, + "completion_visit_location_ch3_lm_lootlakehouse": 1, + "completion_visit_location_ch3_lm_lootlake": 2, + "completion_visit_location_ch3_lm_looperlanding": 1, + "completion_visit_location_ch3_lm_loggingshack": 1, + "completion_visit_location_ch3_lm_loggingdock": 1, + "completion_visit_location_ch3_lm_llamafarm": 1, + "completion_visit_location_ch3_lm_lighthouse": 3, + "completion_visit_location_ch3_lm_kayakcampsite": 1, + "completion_visit_location_ch3_lm_io_outpost05": 1, + "completion_visit_location_ch3_lm_io_outpost04": 1, + "completion_visit_location_ch3_lm_io_outpost03": 1, + "completion_visit_location_ch3_lm_io_outpost02": 1, + "completion_visit_location_ch3_lm_io_outpost01": 1, + "completion_visit_location_ch3_lm_io_ds_05": 1, + "completion_visit_location_ch3_lm_io_ds_04": 1, + "completion_visit_location_ch3_lm_io_ds_03": 1, + "completion_visit_location_ch3_lm_io_ds_02": 1, + "completion_visit_location_ch3_lm_io_ds_01": 1, + "completion_visit_location_ch3_lm_io_dblimp05": 1, + "completion_visit_location_ch3_lm_io_dblimp04": 1, + "completion_visit_location_ch3_lm_io_dblimp03": 1, + "completion_visit_location_ch3_lm_io_dblimp02": 1, + "completion_visit_location_ch3_lm_io_dblimp01": 1, + "completion_visit_location_ch3_lm_io_blimp05": 1, + "completion_visit_location_ch3_lm_io_blimp04": 1, + "completion_visit_location_ch3_lm_io_blimp03": 1, + "completion_visit_location_ch3_lm_io_blimp02": 1, + "completion_visit_location_ch3_lm_io_blimp01": 1, + "completion_visit_location_ch3_lm_impossiblerock": 1, + "completion_visit_location_ch3_lm_horseshoebend": 1, + "completion_visit_location_ch3_lm_hiddenvillage": 1, + "completion_visit_location_ch3_lm_henchhut": 1, + "completion_visit_location_ch3_lm_geysergulch": 1, + "completion_visit_location_ch3_lm_frostyfields": 1, + "completion_visit_location_ch3_lm_floatingvault6": 1, + "completion_visit_location_ch3_lm_floatingvault5": 1, + "completion_visit_location_ch3_lm_floatingvault4": 1, + "completion_visit_location_ch3_lm_floatingvault3": 1, + "completion_visit_location_ch3_lm_floatingvault2": 1, + "completion_visit_location_ch3_lm_floatingvault1": 1, + "completion_visit_location_ch3_lm_floatinghermit": 1, + "completion_visit_location_ch3_lm_fishyisland": 1, + "completion_visit_location_ch3_lm_fishingshacks": 1, + "completion_visit_location_ch3_lm_fishingshack": 1, + "completion_visit_location_ch3_lm_fernisle": 1, + "completion_visit_location_ch3_lm_fancymansion": 2, + "completion_visit_location_ch3_lm_drillhill": 1, + "completion_visit_location_ch3_lm_dockingbay05": 1, + "completion_visit_location_ch3_lm_dockingbay04": 1, + "completion_visit_location_ch3_lm_dockingbay03": 1, + "completion_visit_location_ch3_lm_dockingbay02": 2, + "completion_visit_location_ch3_lm_dockingbay01": 1, + "completion_visit_location_ch3_lm_dirttrack": 1, + "completion_visit_location_ch3_lm_desertoasis": 1, + "completion_visit_location_ch3_lm_desertmansion": 1, + "completion_visit_location_ch3_lm_desertarch": 1, + "completion_visit_location_ch3_lm_densemushroomgrove": 1, + "completion_visit_location_ch3_lm_deadtreepond": 1, + "completion_visit_location_ch3_lm_crazycactus": 1, + "completion_visit_location_ch3_lm_crater03": 1, + "completion_visit_location_ch3_lm_crater02": 1, + "completion_visit_location_ch3_lm_crater01": 1, + "completion_visit_location_ch3_lm_crackshotscabin": 2, + "completion_visit_location_ch3_lm_cliffhouse": 2, + "completion_visit_location_ch3_lm_clams": 1, + "completion_visit_location_ch3_lm_cauliflower": 1, + "completion_visit_location_ch3_lm_cattus": 1, + "completion_visit_location_ch3_lm_butterbarn": 2, + "completion_visit_location_ch3_lm_burieddeserttown": 1, + "completion_visit_location_ch3_lm_bobshouse": 1, + "completion_visit_location_ch3_lm_boatrentals": 1, + "completion_visit_location_ch3_lm_boatclub": 2, + "completion_visit_location_ch3_lm_blockhouse": 1, + "completion_visit_location_ch3_lm_birdingdunes": 1, + "completion_visit_location_ch3_lm_bigtree": 1, + "completion_visit_location_ch3_lm_bigbridge": 1, + "completion_visit_location_ch3_lm_beachshacks": 1, + "completion_visit_location_ch3_lm_beachparty": 1, + "completion_visit_location_ch3_lm_beachcarpark": 1, + "completion_visit_location_ch3_lm_adrift": 1, + "completion_quest_c3_discover_landmarks_sleepyshrubs": 1, + "completion_quest_c3_discover_landmarks_runway": 1, + "completion_quest_c3_discover_landmarks_realityroots": 1, + "completion_quest_c3_discover_landmarks_lushlogs": 1, + "completion_quest_c3_discover_landmarks_joels": 1, + "completion_quest_c3_discover_landmarks_floatingmineshaft": 1, + "completion_quest_c3_discover_landmarks_deadcabin": 1, + "completion_quest_c3_discover_landmarks_chopshop": 1, + "completion_quest_c3_discover_landmarks_bungalowblooms": 2, + "completion_quest_c3_discover_landmarks_biggas": 1, + "completion_impossible_landmark_of_permanence_ch3": 9001 + }, + "quantity": 1 + }, + "Quest:quest_c3_discover_namedlocations": { + "templateId": "Quest:quest_c3_discover_namedlocations", + "attributes": { + "creation_time": "2018-04-30T00:00:00.000Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-04-30T00:00:00.000Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_visit_location_ch3_tiltedtowers": 3, + "completion_visit_location_ch3_thetower": 1, + "completion_visit_location_ch3_thejoneses": 2, + "completion_visit_location_ch3_thefortress": 1, + "completion_visit_location_ch3_synapsestation": 1, + "completion_visit_location_ch3_sleepysound": 2, + "completion_visit_location_ch3_shuffledshrines": 5, + "completion_visit_location_ch3_shiftyshafts": 1, + "completion_visit_location_ch3_scientistlab": 1, + "completion_visit_location_ch3_sanctuary": 1, + "completion_visit_location_ch3_rockyreels": 2, + "completion_visit_location_ch3_logjam": 5, + "completion_visit_location_ch3_lazylagoon": 4, + "completion_visit_location_ch3_heraldfortress": 1, + "completion_visit_location_ch3_greasygrove": 2, + "completion_visit_location_ch3_dailybugle": 4, + "completion_visit_location_ch3_creamycrossroads": 3, + "completion_visit_location_ch3_covertcavern": 3, + "completion_visit_location_ch3_condocanyon": 3, + "completion_visit_location_ch3_chromerealitytree": 2, + "completion_visit_location_ch3_chonkersspeedway": 1, + "completion_visit_location_ch3_campcuddles": 2, + "completion_visit_location_ch3_airbornebutterbarn": 5, + "completion_impossible_poi_of_permanence_ch3": 9001 + }, + "quantity": 1 + }, + "Quest:quest_c4_discover_landmarks": { + "templateId": "Quest:quest_c4_discover_landmarks", + "attributes": { + "creation_time": "2018-04-30T00:00:00.000Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-04-30T00:00:00.000Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_quest_c4_discover_landmarks_iodrill": 1, + "completion_quest_c4_discover_landmarks_isolatedknighttower": 1, + "completion_quest_c4_discover_landmarks_cuddletrack": 1, + "completion_quest_c4_discover_landmarks_slapstation": 3, + "completion_quest_c4_discover_landmarks_hiddenruin": 1, + "completion_quest_c4_discover_landmarks_guardedvillage": 1, + "completion_quest_c4_discover_landmarks_smallfarm": 1, + "completion_quest_c4_discover_landmarks_islandhomes": 1, + "completion_quest_c4_discover_landmarks_trailerpark": 1, + "completion_quest_c4_discover_landmarks_smallfarm2": 1, + "completion_quest_c4_discover_landmarks_hillhouse": 1, + "completion_quest_c4_discover_landmarks_amberforest": 1, + "completion_quest_c4_discover_landmarks_coastaltower": 1, + "completion_quest_c4_discover_landmarks_treefragment": 1, + "completion_quest_c4_discover_landmarks_smallquarrydock": 1, + "completion_quest_c4_discover_landmarks_islandtower": 1, + "completion_quest_c4_discover_landmarks_blacksmithspring": 1, + "completion_quest_c4_discover_landmarks_castletower1": 1, + "completion_quest_c4_discover_landmarks_castletower2": 1, + "completion_quest_c4_discover_landmarks_riftgatetower": 1, + "completion_quest_c4_discover_landmarks_village": 1, + "completion_quest_c4_discover_landmarks_battlements": 1, + "completion_quest_c4_discover_landmarks_icecaverns": 1, + "completion_quest_c4_discover_landmarks_denseforest": 1, + "completion_quest_c4_discover_landmarks_windycanyon": 1, + "completion_quest_c4_discover_landmarks_frozenfrog": 1, + "completion_quest_c4_discover_landmarks_frozenwaterfall": 1, + "completion_quest_c4_discover_landmarks_bigicelake": 1, + "completion_quest_c4_discover_landmarks_snowshelter": 1, + "completion_quest_c4_discover_landmarks_buriedvillage": 1, + "completion_quest_c4_discover_landmarks_templeoutpost1": 1, + "completion_quest_c4_discover_landmarks_templeoutpost2": 1, + "completion_quest_c4_discover_landmarks_templeoutpost3": 1, + "completion_quest_c4_discover_landmarks_templeoutpost4": 1, + "completion_quest_c4_discover_landmarks_coastalcontainers": 1, + "completion_quest_c4_discover_landmarks_fueldocks": 1, + "completion_quest_c4_discover_landmarks_mountainsummit": 1, + "completion_quest_c4_discover_landmarks_fishyiceberg": 1, + "completion_quest_c4_discover_landmarks_eyelake": 1, + "completion_quest_c4_discover_landmarks_tinytown": 1, + "completion_quest_c4_discover_landmarks_southernisle": 1, + "completion_quest_c4_discover_landmarks_coastalgas": 1, + "completion_quest_c4_discover_landmarks_knightfuel": 1, + "completion_quest_c4_discover_landmarks_towerpoint": 1, + "completion_quest_c4_discover_landmarks_greengas": 1, + "completion_quest_c4_discover_landmarks_mansion": 1, + "completion_quest_c4_discover_landmarks_icebarge": 1, + "completion_quest_c4_discover_landmarks_crackshotscabin": 1, + "completion_quest_c4_discover_landmarks_windpagoda": 1, + "completion_quest_c4_discover_landmarks_thunderpagoda": 1, + "completion_quest_c4_discover_landmarks_firepagoda": 1, + "completion_quest_c4_discover_landmarks_lighthousewest": 1, + "completion_quest_c4_discover_landmarks_lighthouseeast": 1, + "completion_quest_c4_discover_landmarks_neonbaybridge": 1, + "completion_quest_c4_discover_landmarks_dojovillage": 1, + "completion_quest_c4_discover_landmarks_bambooduelingring": 1, + "completion_quest_c4_discover_landmarks_cherryduelingring": 1, + "completion_quest_c4_discover_landmarks_collabduelingring": 1, + "completion_quest_c4_discover_landmarks_bambooboulders": 1, + "completion_quest_c4_discover_landmarks_windchimes": 1, + "completion_quest_c4_discover_landmarks_cedarduelingring": 1, + "completion_quest_c4_discover_landmarks_genshingas": 1, + "completion_quest_c4_discover_landmarks_muddymounds": 1, + "completion_quest_c4_discover_landmarks_driftcartrack": 1, + "completion_quest_c4_discover_landmarks_lighthousesouth": 1, + "completion_quest_c4_discover_landmarks_bambooisland": 1, + "completion_quest_c4_discover_landmarks_cliffthemountain": 1, + "completion_quest_c4_discover_landmarks_boat": 1, + "completion_quest_c4_discover_landmarks_kazecanyon": 1, + "completion_quest_c4_discover_landmarks_bamboopond": 1, + "completion_quest_c4_discover_landmarks_loggingcamp": 1, + "completion_quest_c4_discover_landmarks_smallisland": 1, + "completion_quest_c4_discover_landmarks_beachduelingring": 1, + "completion_quest_c4_discover_landmarks_bamboolake": 1, + "completion_quest_c4_discover_landmarks_clearradiusbasement": 1, + "completion_quest_c4_discover_landmarks_amanastones2": 1, + "completion_quest_c4_discover_landmarks_amanastones3": 1, + "completion_quest_c4_discover_landmarks_jungletemplenorth": 1, + "completion_quest_c4_discover_landmarks_hiddentemple": 1, + "completion_quest_c4_discover_landmarks_jungletemplesouth": 1, + "completion_quest_c4_discover_landmarks_theapparatus": 1, + "completion_quest_c4_discover_landmarks_cargocrash": 1, + "completion_quest_c4_discover_landmarks_kapokcove": 1, + "completion_quest_c4_discover_landmarks_lagoon": 1, + "completion_quest_c4_discover_landmarks_squadhq": 1, + "completion_quest_c4_discover_landmarks_innersanctum": 1, + "completion_impossible_landmark_of_permanence_ch4": 9001 + }, + "quantity": 1 + }, + "Quest:quest_c4_discover_namedlocations": { + "templateId": "Quest:quest_c4_discover_namedlocations", + "attributes": { + "creation_time": "2018-04-30T00:00:00.000Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-04-30T00:00:00.000Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_visit_location_ch4_industrialtown": 1, + "completion_quest_c4_discover_namedlocations_splittown": 1, + "completion_quest_c4_discover_namedlocations_farm": 1, + "completion_quest_c4_discover_namedlocations_fortaniumquarry": 1, + "completion_quest_c4_discover_namedlocations_medievaltown": 1, + "completion_quest_c4_discover_namedlocations_lightcastle": 1, + "completion_quest_c4_discover_namedlocations_realityfortress": 1, + "completion_quest_c4_discover_namedlocations_researchstation": 1, + "completion_quest_c4_discover_namedlocations_northharbor": 1, + "completion_quest_c4_discover_namedlocations_neoncity": 1, + "completion_quest_c4_discover_namedlocations_mountaindojo": 1, + "completion_quest_c4_discover_namedlocations_cherryblossomforest": 1, + "completion_quest_c4_discover_namedlocations_fishingvillageisland": 1, + "completion_quest_c4_discover_namedlocations_jungletemple": 1, + "completion_quest_c4_discover_namedlocations_jungletown": 1, + "completion_quest_c4_discover_namedlocations_junglecompound": 1, + "completion_quest_c4_discover_namedlocations_estatelair": 1, + "completion_quest_c4_discover_namedlocations_hotel": 1, + "completion_quest_c4_discover_namedlocations_resort": 1, + "completion_impossible_poi_of_permanence_ch4": 9001 + }, + "quantity": 1 + }, + "Quest:quest_rufus_discover_namedlocations": { + "templateId": "Quest:quest_rufus_discover_namedlocations", + "attributes": { + "creation_time": "2018-04-30T00:00:00.000Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-04-30T00:00:00.000Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_quest_rufus_discover_namedlocations_obj0": 1, + "completion_quest_rufus_discover_namedlocations_obj1": 1, + "completion_quest_rufus_discover_namedlocations_obj2": 1, + "completion_quest_rufus_discover_namedlocations_obj3": 1, + "completion_quest_rufus_discover_namedlocations_obj4": 1, + "completion_quest_rufus_discover_namedlocations_obj5": 1, + "completion_quest_rufus_discover_namedlocations_obj6": 1, + "completion_quest_rufus_discover_namedlocations_obj7": 1, + "completion_quest_rufus_discover_namedlocations_obj8": 1, + "completion_quest_rufus_discover_namedlocations_obj9": 1, + "completion_quest_rufus_discover_namedlocations_obj10": 1, + "completion_quest_rufus_discover_namedlocations_obj11": 1, + "completion_quest_rufus_discover_namedlocations_obj12": 1, + "completion_quest_rufus_discover_namedlocations_obj13": 1, + "completion_quest_rufus_discover_namedlocations_obj14": 1, + "completion_quest_rufus_discover_namedlocations_obj15": 1, + "completion_quest_rufus_discover_namedlocations_obj16": 1, + "completion_quest_rufus_discover_namedlocations_obj17": 1, + "completion_quest_rufus_discover_namedlocations_obj18": 1, + "completion_quest_rufus_discover_namedlocations_obj19": 1, + "completion_quest_rufus_discover_namedlocations_obj20": 9001, + "completion_quest_rufus_discover_namedlocations_obj21": 1 + }, + "quantity": 1 + }, + "dc11a493-023d-42dd-a2f9-24fc7b35ecfe": { + "templateId": "Quest:AthenaDailyQuest_PlayerEliminationShotguns", + "attributes": { + "creation_time": "2024-05-23T13:38:51.851Z", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-23T13:38:51.851Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_daily_kill_players_shotgun_v2": 0 + }, + "quantity": 1 + }, + "99e2e58c-6260-4757-a10e-dcc7b60ec351": { + "templateId": "Quest:AthenaDailyQuest_InteractAmmoCrate", + "attributes": { + "creation_time": "2024-05-31T19:09:53.495Z", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:09:53.495Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_daily_loot_ammobox_v2": 0 + }, + "quantity": 1 + }, + "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule": { + "templateId": "ChallengeBundleSchedule:Season4_Challenge_Schedule", + "attributes": { + "unlock_epoch": "2024-05-31T19:57:34.940Z", + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false, + "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" + ] + }, + "quantity": 1 + }, + "S4-ChallengeBundleSchedule:Season4_ProgressiveB_Schedule": { + "templateId": "ChallengeBundleSchedule:Season4_ProgressiveB_Schedule", + "attributes": { + "unlock_epoch": "2024-05-31T19:57:34.940Z", + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false, + "granted_bundles": [ + "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB" + ] + }, + "quantity": 1 + }, + "S4-ChallengeBundleSchedule:Season4_StarterChallenge_Schedule": { + "templateId": "ChallengeBundleSchedule:Season4_StarterChallenge_Schedule", + "attributes": { + "unlock_epoch": "2024-05-31T19:57:34.940Z", + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false, + "granted_bundles": [ + "S4-ChallengeBundle:QuestBundle_S4_Starter" + ] + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_Cumulative": { + "templateId": "ChallengeBundle:QuestBundle_S4_Cumulative", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_ProgressiveA": { + "templateId": "ChallengeBundle:QuestBundle_S4_ProgressiveA", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 5, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_Week_001": { + "templateId": "ChallengeBundle:QuestBundle_S4_Week_001", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 8, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_Week_002": { + "templateId": "ChallengeBundle:QuestBundle_S4_Week_002", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 8, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_Week_003": { + "templateId": "ChallengeBundle:QuestBundle_S4_Week_003", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 8, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_Week_004": { + "templateId": "ChallengeBundle:QuestBundle_S4_Week_004", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 8, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_Week_005": { + "templateId": "ChallengeBundle:QuestBundle_S4_Week_005", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 8, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_Week_006": { + "templateId": "ChallengeBundle:QuestBundle_S4_Week_006", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 8, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_Week_007": { + "templateId": "ChallengeBundle:QuestBundle_S4_Week_007", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 8, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_Week_008": { + "templateId": "ChallengeBundle:QuestBundle_S4_Week_008", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 8, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_Week_009": { + "templateId": "ChallengeBundle:QuestBundle_S4_Week_009", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 8, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_Week_010": { + "templateId": "ChallengeBundle:QuestBundle_S4_Week_010", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 8, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_Challenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB": { + "templateId": "ChallengeBundle:QuestBundle_S4_ProgressiveB", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 5, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_ProgressiveB_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-ChallengeBundle:QuestBundle_S4_Starter": { + "templateId": "ChallengeBundle:QuestBundle_S4_Starter", + "attributes": { + "has_unlock_by_completion": false, + "num_quests_completed": 0, + "level": 0, + "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" + ], + "item_seen": true, + "max_allowed_bundle_level": 0, + "num_granted_bundle_quests": 7, + "max_level_bonus": 0, + "challenge_bundle_schedule_id": "S4-ChallengeBundleSchedule:Season4_StarterChallenge_Schedule", + "num_progress_quests_completed": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_01": { + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_01", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_cumulative_token1": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_02": { + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_02", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_cumulative_token2": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_03": { + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_03", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_cumulative_token3": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_04": { + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_04", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_cumulative_token4": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_05": { + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_05", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_cumulative_token5": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_06": { + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_06", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_cumulative_token6": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4_Cumulative_CollectTokens_07": { + "templateId": "Quest:Quest_BR_S4_Cumulative_CollectTokens_07", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Cumulative", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_cumulative_token7": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_01": { + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_01", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveA", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_season_levelup_progressive_a_01": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_02": { + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_02", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveA", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_season_levelup_progressive_a_02": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_03": { + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_03", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveA", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_season_levelup_progressive_a_03": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_04": { + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_04", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveA", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_season_levelup_progressive_a_04": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_05": { + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveA_05", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveA", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_season_levelup_progressive_a_05": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Damage_SniperRifle": { + "templateId": "Quest:Quest_BR_Damage_SniperRifle", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_sniper": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Location_FlushFactory": { + "templateId": "Quest:Quest_BR_Eliminate_Location_FlushFactory", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_flushfactory": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Weapon_Pistol": { + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Pistol", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_pistol": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_Chests_Location_HauntedHills": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_HauntedHills", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_hauntedhills": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_FORTNITE": { + "templateId": "Quest:Quest_BR_Interact_FORTNITE", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_fortnite_letters_01": 0, + "completion_battlepass_interact_athena_fortnite_letters_02": 0, + "completion_battlepass_interact_athena_fortnite_letters_03": 0, + "completion_battlepass_interact_athena_fortnite_letters_04": 0, + "completion_battlepass_interact_athena_fortnite_letters_05": 0, + "completion_battlepass_interact_athena_fortnite_letters_06": 0, + "completion_battlepass_interact_athena_fortnite_letters_07": 0, + "completion_battlepass_interact_athena_fortnite_letters_08": 0, + "completion_battlepass_interact_athena_fortnite_letters_09": 0, + "completion_battlepass_interact_athena_fortnite_letters_10": 0, + "completion_battlepass_interact_athena_fortnite_letters_11": 0, + "completion_battlepass_interact_athena_fortnite_letters_12": 0, + "completion_battlepass_interact_athena_fortnite_letters_13": 0, + "completion_battlepass_interact_athena_fortnite_letters_14": 0, + "completion_battlepass_interact_athena_fortnite_letters_15": 0, + "completion_battlepass_interact_athena_fortnite_letters_16": 0, + "completion_battlepass_interact_athena_fortnite_letters_17": 0, + "completion_battlepass_interact_athena_fortnite_letters_18": 0, + "completion_battlepass_interact_athena_fortnite_letters_19": 0, + "completion_battlepass_interact_athena_fortnite_letters_20": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_01", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_01": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4W1_Cumulative_CompleteAll": { + "templateId": "Quest:Quest_BR_S4W1_Cumulative_CompleteAll", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_completed_s4w1_quest1": 0, + "completion_battlepass_completed_s4w1_quest2": 0, + "completion_battlepass_completed_s4w1_quest3": 0, + "completion_battlepass_completed_s4w1_quest4": 0, + "completion_battlepass_completed_s4w1_quest5": 0, + "completion_battlepass_completed_s4w1_quest6": 0, + "completion_battlepass_completed_s4w1_quest7": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Use_PortaFort": { + "templateId": "Quest:Quest_BR_Use_PortaFort", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_001", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_portafort": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Damage_SuppressedWeapon": { + "templateId": "Quest:Quest_BR_Damage_SuppressedWeapon", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_suppressed_weapon": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Dance_ScavengerHunt_Cameras": { + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_Cameras", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_dance_athena_location_cameras_01": 0, + "completion_battlepass_dance_athena_location_cameras_02": 0, + "completion_battlepass_dance_athena_location_cameras_03": 0, + "completion_battlepass_dance_athena_location_cameras_04": 0, + "completion_battlepass_dance_athena_location_cameras_05": 0, + "completion_battlepass_dance_athena_location_cameras_06": 0, + "completion_battlepass_dance_athena_location_cameras_07": 0, + "completion_battlepass_dance_athena_location_cameras_08": 0, + "completion_battlepass_dance_athena_location_cameras_09": 0, + "completion_battlepass_dance_athena_location_cameras_10": 0, + "completion_battlepass_dance_athena_location_cameras_11": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_ExplosiveWeapon": { + "templateId": "Quest:Quest_BR_Eliminate_ExplosiveWeapon", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_with_explosives": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Location_TomatoTown": { + "templateId": "Quest:Quest_BR_Eliminate_Location_TomatoTown", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_tomatotown": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_Chests_Location_GreasyGrove": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_GreasyGrove", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_greasygrove": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_GravityStones": { + "templateId": "Quest:Quest_BR_Interact_GravityStones", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_gravitystones": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_01", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_02": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4W2_Cumulative_CompleteAll": { + "templateId": "Quest:Quest_BR_S4W2_Cumulative_CompleteAll", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_002", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_completed_s4w2_quest1": 0, + "completion_battlepass_completed_s4w2_quest2": 0, + "completion_battlepass_completed_s4w2_quest3": 0, + "completion_battlepass_completed_s4w2_quest4": 0, + "completion_battlepass_completed_s4w2_quest5": 0, + "completion_battlepass_completed_s4w2_quest6": 0, + "completion_battlepass_completed_s4w2_quest7": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Damage_Pistol": { + "templateId": "Quest:Quest_BR_Damage_Pistol", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_pistol": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Location_TiltedTowers": { + "templateId": "Quest:Quest_BR_Eliminate_Location_TiltedTowers", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_tiltedtowers": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Weapon_SniperRifle": { + "templateId": "Quest:Quest_BR_Eliminate_Weapon_SniperRifle", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_sniper": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_Chests_Location_LonelyLodge": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_LonelyLodge", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_lonelylodge": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_RubberDuckies": { + "templateId": "Quest:Quest_BR_Interact_RubberDuckies", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_rubberduckies_01": 0, + "completion_battlepass_interact_athena_rubberduckies_02": 0, + "completion_battlepass_interact_athena_rubberduckies_03": 0, + "completion_battlepass_interact_athena_rubberduckies_04": 0, + "completion_battlepass_interact_athena_rubberduckies_05": 0, + "completion_battlepass_interact_athena_rubberduckies_06": 0, + "completion_battlepass_interact_athena_rubberduckies_07": 0, + "completion_battlepass_interact_athena_rubberduckies_08": 0, + "completion_battlepass_interact_athena_rubberduckies_09": 0, + "completion_battlepass_interact_athena_rubberduckies_10": 0, + "completion_battlepass_interact_athena_rubberduckies_11": 0, + "completion_battlepass_interact_athena_rubberduckies_12": 0, + "completion_battlepass_interact_athena_rubberduckies_13": 0, + "completion_battlepass_interact_athena_rubberduckies_14": 0, + "completion_battlepass_interact_athena_rubberduckies_15": 0, + "completion_battlepass_interact_athena_rubberduckies_16": 0, + "completion_battlepass_interact_athena_rubberduckies_17": 0, + "completion_battlepass_interact_athena_rubberduckies_18": 0, + "completion_battlepass_interact_athena_rubberduckies_19": 0, + "completion_battlepass_interact_athena_rubberduckies_20": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_02", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_03": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Revive": { + "templateId": "Quest:Quest_BR_Revive", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_revive_player": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4W3_Cumulative_CompleteAll": { + "templateId": "Quest:Quest_BR_S4W3_Cumulative_CompleteAll", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_003", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_completed_s4w3_quest1": 0, + "completion_battlepass_completed_s4w3_quest2": 0, + "completion_battlepass_completed_s4w3_quest3": 0, + "completion_battlepass_completed_s4w3_quest4": 0, + "completion_battlepass_completed_s4w3_quest5": 0, + "completion_battlepass_completed_s4w3_quest6": 0, + "completion_battlepass_completed_s4w3_quest7": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Damage_AssaultRifle": { + "templateId": "Quest:Quest_BR_Damage_AssaultRifle", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_asssult": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Location_SnobbyShores": { + "templateId": "Quest:Quest_BR_Eliminate_Location_SnobbyShores", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.940Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_snobbyshores": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Trap": { + "templateId": "Quest:Quest_BR_Eliminate_Trap", + "attributes": { + "creation_time": "2024-05-31T19:57:34.940Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_with_trap": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch": { + "templateId": "Quest:Quest_BR_Interact_AmmoBoxes_SingleMatch", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_battlepass_loot_ammobox_singlematch": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_Chests_Location_WailingWoods": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_WailingWoods", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_walingwoods": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_02", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_04": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4W4_Cumulative_CompleteAll": { + "templateId": "Quest:Quest_BR_S4W4_Cumulative_CompleteAll", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_completed_s4w4_quest1": 0, + "completion_battlepass_completed_s4w4_quest2": 0, + "completion_battlepass_completed_s4w4_quest3": 0, + "completion_battlepass_completed_s4w4_quest4": 0, + "completion_battlepass_completed_s4w4_quest5": 0, + "completion_battlepass_completed_s4w4_quest6": 0, + "completion_battlepass_completed_s4w4_quest7": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Visit_ScavengerHunt_StormCircles": { + "templateId": "Quest:Quest_BR_Visit_ScavengerHunt_StormCircles", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_004", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_findcenter_location_stormcircle": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Damage_SMG": { + "templateId": "Quest:Quest_BR_Damage_SMG", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_smg": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Dance_ScavengerHunt_Platforms": { + "templateId": "Quest:Quest_BR_Dance_ScavengerHunt_Platforms", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_dance_athena_scavengerhunt_platforms": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Location_LuckyLanding": { + "templateId": "Quest:Quest_BR_Eliminate_Location_LuckyLanding", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_luckylanding": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Weapon_MinigunLMG": { + "templateId": "Quest:Quest_BR_Eliminate_Weapon_MinigunLMG", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_minigunlmg": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_Chests_Location_DustyDivot": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_DustyDivot", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_dustydivot": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_03": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_03", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_05": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4W5_Cumulative_CompleteAll": { + "templateId": "Quest:Quest_BR_S4W5_Cumulative_CompleteAll", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_completed_s4w5_quest1": 0, + "completion_battlepass_completed_s4w5_quest2": 0, + "completion_battlepass_completed_s4w5_quest3": 0, + "completion_battlepass_completed_s4w5_quest4": 0, + "completion_battlepass_completed_s4w5_quest5": 0, + "completion_battlepass_completed_s4w5_quest6": 0, + "completion_battlepass_completed_s4w5_quest7": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Use_VendingMachine": { + "templateId": "Quest:Quest_BR_Use_VendingMachine", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_005", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_vendingmachine": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Damage_Shotgun": { + "templateId": "Quest:Quest_BR_Damage_Shotgun", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_shotgun": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Location_RetailRow": { + "templateId": "Quest:Quest_BR_Eliminate_Location_RetailRow", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_retailrow": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Weapon_SMG": { + "templateId": "Quest:Quest_BR_Eliminate_Weapon_SMG", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_smg": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_Chests_Location_LootLake": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_LootLake", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_lootlake": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_03", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_06": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_SupplyDrops": { + "templateId": "Quest:Quest_BR_Interact_SupplyDrops", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_supply_drop": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4W6_Cumulative_CompleteAll": { + "templateId": "Quest:Quest_BR_S4W6_Cumulative_CompleteAll", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_completed_s4w6_quest1": 0, + "completion_battlepass_completed_s4w6_quest2": 0, + "completion_battlepass_completed_s4w6_quest3": 0, + "completion_battlepass_completed_s4w6_quest4": 0, + "completion_battlepass_completed_s4w6_quest5": 0, + "completion_battlepass_completed_s4w6_quest6": 0, + "completion_battlepass_completed_s4w6_quest7": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Spray_SpecificTargets": { + "templateId": "Quest:Quest_BR_Spray_SpecificTargets", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_006", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_spray_athena_heroposters_01": 0, + "completion_battlepass_spray_athena_heroposters_02": 0, + "completion_battlepass_spray_athena_heroposters_03": 0, + "completion_battlepass_spray_athena_heroposters_04": 0, + "completion_battlepass_spray_athena_heroposters_05": 0, + "completion_battlepass_spray_athena_heroposters_06": 0, + "completion_battlepass_spray_athena_heroposters_07": 0, + "completion_battlepass_spray_athena_heroposters_08": 0, + "completion_battlepass_spray_athena_heroposters_09": 0, + "completion_battlepass_spray_athena_heroposters_10": 0, + "completion_battlepass_spray_athena_heroposters_11": 0, + "completion_battlepass_spray_athena_heroposters_12": 0, + "completion_battlepass_spray_athena_heroposters_13": 0, + "completion_battlepass_spray_athena_heroposters_14": 0, + "completion_battlepass_spray_athena_heroposters_15": 0, + "completion_battlepass_spray_athena_heroposters_16": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Damage_Pickaxe": { + "templateId": "Quest:Quest_BR_Damage_Pickaxe", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_pickaxe": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Location_ShiftyShafts": { + "templateId": "Quest:Quest_BR_Eliminate_Location_ShiftyShafts", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_shiftyshafts": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Weapon_AssaultRifle": { + "templateId": "Quest:Quest_BR_Eliminate_Weapon_AssaultRifle", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_assault": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_Chests_Location_RiskyReels": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_RiskyReels", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_riskyreels": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_ForagedItems": { + "templateId": "Quest:Quest_BR_Interact_ForagedItems", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_forgeditems": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_04", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_07": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4W7_Cumulative_CompleteAll": { + "templateId": "Quest:Quest_BR_S4W7_Cumulative_CompleteAll", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_completed_s4w7_quest1": 0, + "completion_battlepass_completed_s4w7_quest2": 0, + "completion_battlepass_completed_s4w7_quest3": 0, + "completion_battlepass_completed_s4w7_quest4": 0, + "completion_battlepass_completed_s4w7_quest5": 0, + "completion_battlepass_completed_s4w7_quest6": 0, + "completion_battlepass_completed_s4w7_quest7": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Score_Goals": { + "templateId": "Quest:Quest_BR_Score_Goals", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_007", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_score_goals_01": 0, + "completion_battlepass_athena_score_goals_02": 0, + "completion_battlepass_athena_score_goals_03": 0, + "completion_battlepass_athena_score_goals_04": 0, + "completion_battlepass_athena_score_goals_05": 0, + "completion_battlepass_athena_score_goals_06": 0, + "completion_battlepass_athena_score_goals_07": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Damage_Headshot": { + "templateId": "Quest:Quest_BR_Damage_Headshot", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_head_shots": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Location_PleasantPark": { + "templateId": "Quest:Quest_BR_Eliminate_Location_PleasantPark", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_pleasantpark": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_SuppressedWeapon": { + "templateId": "Quest:Quest_BR_Eliminate_SuppressedWeapon", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_with_suppressed_weapon": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_Chests_Location_SaltySprings": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_SaltySprings", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_saltysprings": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_Chests_SingleMatch": { + "templateId": "Quest:Quest_BR_Interact_Chests_SingleMatch", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_loot_chest_single_match": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_GniceGnomes": { + "templateId": "Quest:Quest_BR_Interact_GniceGnomes", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_gnice_gnome_01": 0, + "completion_battlepass_interact_athena_gnice_gnome_02": 0, + "completion_battlepass_interact_athena_gnice_gnome_03": 0, + "completion_battlepass_interact_athena_gnice_gnome_04": 0, + "completion_battlepass_interact_athena_gnice_gnome_05": 0, + "completion_battlepass_interact_athena_gnice_gnome_06": 0, + "completion_battlepass_interact_athena_gnice_gnome_07": 0, + "completion_battlepass_interact_athena_gnice_gnome_08": 0, + "completion_battlepass_interact_athena_gnice_gnome_09": 0, + "completion_battlepass_interact_athena_gnice_gnome_10": 0, + "completion_battlepass_interact_athena_gnice_gnome_11": 0, + "completion_battlepass_interact_athena_gnice_gnome_12": 0, + "completion_battlepass_interact_athena_gnice_gnome_13": 0, + "completion_battlepass_interact_athena_gnice_gnome_14": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_04": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_04", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_08": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4W8_Cumulative_CompleteAll": { + "templateId": "Quest:Quest_BR_S4W8_Cumulative_CompleteAll", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_008", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_completed_s4w8_quest1": 0, + "completion_battlepass_completed_s4w8_quest2": 0, + "completion_battlepass_completed_s4w8_quest3": 0, + "completion_battlepass_completed_s4w8_quest4": 0, + "completion_battlepass_completed_s4w8_quest5": 0, + "completion_battlepass_completed_s4w8_quest6": 0, + "completion_battlepass_completed_s4w8_quest7": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Damage_ExplosiveWeapon": { + "templateId": "Quest:Quest_BR_Damage_ExplosiveWeapon", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_explosives": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Location_AnarchyAcres": { + "templateId": "Quest:Quest_BR_Eliminate_Location_AnarchyAcres", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_anarchyacres": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Weapon_Shotgun": { + "templateId": "Quest:Quest_BR_Eliminate_Weapon_Shotgun", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_shotgun": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_Chests_Location_MoistyMire": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_MoistyMire", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_moistymire": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_TreasureMap_05", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_09": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4W9_Cumulative_CompleteAll": { + "templateId": "Quest:Quest_BR_S4W9_Cumulative_CompleteAll", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_completed_s4w9_quest1": 0, + "completion_battlepass_completed_s4w9_quest2": 0, + "completion_battlepass_completed_s4w9_quest3": 0, + "completion_battlepass_completed_s4w9_quest4": 0, + "completion_battlepass_completed_s4w9_quest5": 0, + "completion_battlepass_completed_s4w9_quest6": 0, + "completion_battlepass_completed_s4w9_quest7": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Use_ShoppingCart": { + "templateId": "Quest:Quest_BR_Use_ShoppingCart", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_use_shoppingcart": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Visit_NamedLocations_SingleMatch": { + "templateId": "Quest:Quest_BR_Visit_NamedLocations_SingleMatch", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_009", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_visit_athena_location_mountain_summit_01": 0, + "completion_battlepass_visit_athena_location_mountain_summit_02": 0, + "completion_battlepass_visit_athena_location_mountain_summit_03": 0, + "completion_battlepass_visit_athena_location_mountain_summit_04": 0, + "completion_battlepass_visit_athena_location_mountain_summit_05": 0, + "completion_battlepass_visit_athena_location_mountain_summit_06": 0, + "completion_battlepass_visit_athena_location_mountain_summit_07": 0, + "completion_battlepass_visit_athena_location_mountain_summit_08": 0, + "completion_battlepass_visit_athena_location_mountain_summit_09": 0, + "completion_battlepass_visit_athena_location_mountain_summit_10": 0, + "completion_battlepass_visit_athena_location_mountain_summit_11": 0, + "completion_battlepass_visit_athena_location_mountain_summit_12": 0, + "completion_battlepass_visit_athena_location_mountain_summit_13": 0, + "completion_battlepass_visit_athena_location_mountain_summit_14": 0, + "completion_battlepass_visit_athena_location_mountain_summit_15": 0, + "completion_battlepass_visit_athena_location_mountain_summit_16": 0, + "completion_battlepass_visit_athena_location_mountain_summit_17": 0, + "completion_battlepass_visit_athena_location_mountain_summit_18": 0, + "completion_battlepass_visit_athena_location_mountain_summit_19": 0, + "completion_battlepass_visit_athena_location_mountain_summit_20": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Damage_Enemy_Buildings": { + "templateId": "Quest:Quest_BR_Damage_Enemy_Buildings", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player_buildings": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate": { + "templateId": "Quest:Quest_BR_Eliminate", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_players": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Eliminate_Location_FatalFields": { + "templateId": "Quest:Quest_BR_Eliminate_Location_FatalFields", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_killingblow_athena_player_fatalfields": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch": { + "templateId": "Quest:Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest": 0, + "completion_battlepass_interact_athena_ammobox": 0, + "completion_battlepass_interact_athena_supplydrop": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_Chests_Location_JunkJunction": { + "templateId": "Quest:Quest_BR_Interact_Chests_Location_JunkJunction", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_treasurechest_junkjunction": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_05": { + "templateId": "Quest:Quest_BR_Interact_ScavengerHunt_Triangulate_05", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_interact_athena_hidden_star_10": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_S4W10_Cumulative_CompleteAll": { + "templateId": "Quest:Quest_BR_S4W10_Cumulative_CompleteAll", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_completed_s4w10_quest1": 0, + "completion_battlepass_completed_s4w10_quest2": 0, + "completion_battlepass_completed_s4w10_quest3": 0, + "completion_battlepass_completed_s4w10_quest4": 0, + "completion_battlepass_completed_s4w10_quest5": 0, + "completion_battlepass_completed_s4w10_quest6": 0, + "completion_battlepass_completed_s4w10_quest7": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Skydive_Rings": { + "templateId": "Quest:Quest_BR_Skydive_Rings", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Week_010", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_skydive_athena_rings": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_01": { + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_01", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_season_levelup_progressive_b_01": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_02": { + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_02", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_season_levelup_progressive_b_02": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_03": { + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_03", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_season_levelup_progressive_b_03": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_04": { + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_04", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_season_levelup_progressive_b_04": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_05": { + "templateId": "Quest:Quest_BR_LevelUp_SeasonLevel_ProgressiveB_05", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_ProgressiveB", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_athena_season_levelup_progressive_b_05": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Damage": { + "templateId": "Quest:Quest_BR_Damage", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_damage_athena_player": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Land_Locations_Different": { + "templateId": "Quest:Quest_BR_Land_Locations_Different", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_land_athena_location_anarchyacres": 0, + "completion_battlepass_land_athena_location_dustydivot": 0, + "completion_battlepass_land_athena_location_fatalfields": 0, + "completion_battlepass_land_athena_location_flushfactory": 0, + "completion_battlepass_land_athena_location_greasygrove": 0, + "completion_battlepass_land_athena_location_hauntedhills": 0, + "completion_battlepass_land_athena_location_junkjunction": 0, + "completion_battlepass_land_athena_location_lonelylodge": 0, + "completion_battlepass_land_athena_location_lootlake": 0, + "completion_battlepass_land_athena_location_moistymire": 0, + "completion_battlepass_land_athena_location_pleasantpark": 0, + "completion_battlepass_land_athena_location_retailrow": 0, + "completion_battlepass_land_athena_location_shiftyshafts": 0, + "completion_battlepass_land_athena_location_saltysprings": 0, + "completion_battlepass_land_athena_location_snobbyshores": 0, + "completion_battlepass_land_athena_location_tiltedtowers": 0, + "completion_battlepass_land_athena_location_tomatotown": 0, + "completion_battlepass_land_athena_location_wailingwoods": 0, + "completion_battlepass_land_athena_location_luckylanding": 0, + "completion_battlepass_land_athena_location_riskyreels": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Outlive": { + "templateId": "Quest:Quest_BR_Outlive", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_outlive_players": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Place_Win": { + "templateId": "Quest:Quest_BR_Place_Win", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_win_match": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Play": { + "templateId": "Quest:Quest_BR_Play", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_play_matches": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Play_Min1Elimination": { + "templateId": "Quest:Quest_BR_Play_Min1Elimination", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_complete_athena_with_killingblow": 0 + }, + "quantity": 1 + }, + "S4-Quest:Quest_BR_Play_Min1Friend": { + "templateId": "Quest:Quest_BR_Play_Min1Friend", + "attributes": { + "creation_time": "2024-05-31T19:57:34.941Z", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "S4-ChallengeBundle:QuestBundle_S4_Starter", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2024-05-31T19:57:34.941Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_battlepass_athena_friend": 0 + }, + "quantity": 1 + } + }, + "stats": { + "attributes": { + "past_seasons": [], + "season_match_boost": 0, + "loadouts": [ + "lawin-loadout" + ], + "favorite_victorypose": "", + "mfa_reward_claimed": true, + "quest_manager": { + "dailyLoginInterval": "2024-05-31T19:09:53.495Z", + "dailyQuestRerolls": 1 + }, + "book_level": 1, + "season_num": 4, + "favorite_consumableemote": "", + "banner_color": "DefaultColor1", + "favorite_callingcard": "", + "favorite_character": "", + "favorite_spray": [], + "book_xp": 0, + "battlestars": 100000, + "battlestars_season_total": 100000, + "style_points": 100000, + "alien_style_points": 100000, + "party_assist_quest": "", + "pinned_quest": "", + "purchased_bp_offers": [], + "favorite_loadingscreen": "", + "book_purchased": false, + "lifetime_wins": 100, + "favorite_hat": "", + "level": 100, + "favorite_battlebus": "", + "favorite_mapmarker": "", + "favorite_vehicledeco": "", + "accountLevel": 100, + "favorite_backpack": "", + "favorite_dance": [ + "", + "", + "", + "", + "", + "" + ], + "inventory_limit_bonus": 0, + "last_applied_loadout": "", + "favorite_skydivecontrail": "", + "favorite_pickaxe": "AthenaPickaxe:DefaultPickaxe", + "favorite_glider": "AthenaGlider:DefaultGlider", + "daily_rewards": {}, + "xp": 0, + "season_friend_match_boost": 0, + "active_loadout_index": 0, + "favorite_musicpack": "", + "banner_icon": "StandardBanner1", + "favorite_itemwraps": [ + "", + "", + "", + "", + "", + "", + "" + ] + } + }, + "commandRevision": 20 +} \ No newline at end of file diff --git a/lawin/profiles/campaign.json b/lawin/profiles/campaign.json new file mode 100644 index 0000000..31c1c17 --- /dev/null +++ b/lawin/profiles/campaign.json @@ -0,0 +1,63677 @@ +{ + "_id": "LawinServer", + "created": "0001-01-01T00:00:00.000Z", + "updated": "0001-01-01T00:00:00.000Z", + "rvn": 1, + "wipeNumber": 1, + "accountId": "LawinServer", + "profileId": "campaign", + "version": "no_version", + "items": { + "0afba33e-84f1-469c-8211-089ba2e782f1": { + "templateId": "Quest:heroquest_loadout_ninja_1", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_complete_pve03_diff24_loadout_ninja": 3, + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-02-01T23:34:21.003Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "210ffe7d-723a-4b15-b7f8-1b9ae1ee3e78": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-F03.IconDef-WorkerPortrait-Competitive-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "382c1fc4-ab7e-45c5-a227-ece51bc804b8": { + "templateId": "HomebaseNode:questreward_plankerton_squad_ssd3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "23b7ae7d-4077-40fd-b095-4ca1942d00c1": { + "templateId": "HomebaseNode:questreward_expedition_rowboat4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "85b3b844-b271-49ee-96d3-5b96432be92c": { + "templateId": "Quest:challenge_holdthedoor_1", + "attributes": { + "completion_complete_outpost": 2, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T15:31:17.112Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "9070d673-1981-491b-9069-99f18872d9ad": { + "templateId": "HomebaseNode:questreward_newheroloadout2_dummy", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "d47f1a48-1a2f-4dc3-a5df-b19b70249251": { + "templateId": "Quest:challenge_missionaccomplished_7", + "attributes": { + "level": -1, + "completion_complete_primary": 6, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-05T14:16:07.659Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "6ca6b0b2-1bb4-4ebf-a356-16ea4aeeca8a": { + "templateId": "HomebaseNode:questreward_cannyvalley_squad_ssd6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ef4d7de9-cacd-4e0f-96a1-f443ba7e0b53": { + "templateId": "Quest:challenge_missionaccomplished_4", + "attributes": { + "level": -1, + "completion_complete_primary": 4, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-29T14:02:35.922Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "e5592ea6-f206-4709-8481-a043d2d1f718": { + "templateId": "Quest:plankertonquest_reactive_speakers", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.919Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_plankertonquest_reactive_speakers": 7, + "favorite": false + }, + "quantity": 1 + }, + "CosmeticLocker:cosmeticlocker_stw": { + "templateId": "CosmeticLocker:cosmeticlocker_stw", + "attributes": { + "locker_slots_data": { + "slots": { + "Pickaxe": { + "items": [ + "AthenaPickaxe:pickaxe_id_stw001_tier_1" + ] + }, + "ItemWrap": { + "items": [ + "", + "", + "", + "", + "", + "", + "", + "" + ] + }, + "LoadingScreen": { + "items": [ + "" + ] + }, + "Dance": { + "items": [ + "AthenaDance:eid_dancemoves", + "", + "", + "", + "", + "" + ] + }, + "MusicPack": { + "items": [ + "AthenaMusicPack:musicpack_000_stw_default" + ] + }, + "Backpack": { + "items": [ + "AthenaBackpack:bid_stwhero" + ] + }, + "Character": { + "items": [ + "" + ] + } + } + }, + "use_count": 0, + "banner_icon_template": "SurvivalBannerStonewoodComplete", + "banner_color_template": "DefaultColor15", + "locker_name": "LawinServer", + "item_seen": false, + "favorite": false + }, + "quantity": 1 + }, + "70810e85-b3b4-4bf1-b20d-01f81f8d5d17": { + "templateId": "Worker:managertrainer_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-PersonalTrainer-F01.IconDef-ManagerPortrait-PersonalTrainer-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "5f06ead2-6021-4417-84de-6505558def86": { + "templateId": "Quest:plankertonquest_filler_7_d4", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-08T14:42:10.779Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_kill_husk_smasher_2_diff4_v2": 20, + "favorite": false + }, + "quantity": 1 + }, + "05129892-2856-4da6-a1d9-bdce9e8ebfc1": { + "templateId": "HomebaseNode:questreward_homebase_defender4", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "c9cdacdb-cbc3-4ed8-aad7-4537647971e4": { + "templateId": "Quest:challenge_holdthedoor_14", + "attributes": { + "completion_complete_outpost": 8, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-06T16:55:03.010Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "5fdde1ca-e058-4000-9823-8ebe9c5eea7d": { + "templateId": "Quest:challenge_toxictreasures_5", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T16:16:42.673Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 4, + "favorite": false + }, + "quantity": 1 + }, + "ceb9730e-fe22-4173-9434-25428e639a47": { + "templateId": "Quest:challenge_holdthedoor_5", + "attributes": { + "completion_complete_outpost": 4, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-06T18:21:18.764Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "a20d050d-55db-42f6-8702-76f44e73900d": { + "templateId": "Quest:reactivequest_roadhome", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-08T15:10:04.493Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_quest_reactive_roadhome": 4, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "1089b9ba-58f9-4bef-bff0-bfc67985630a": { + "templateId": "Stat:resistance", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 540 + }, + "66a3fc2f-2c21-468e-be7d-66991e861d7b": { + "templateId": "Quest:challenge_leavenoonebehind_12", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 80, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-09T18:25:56.226Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "7b37f893-1b40-43ba-b4a6-81eb177f3939": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-M03.IconDef-WorkerPortrait-Dependable-M03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsMeleeDamageLow" + }, + "quantity": 1 + }, + "a808d44a-7455-4757-b75c-14657e7cf962": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-F03.IconDef-WorkerPortrait-Cooperative-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "b7b5cacb-4eae-475a-841b-0c0b09da64a2": { + "templateId": "HomebaseNode:questreward_cannyvalley_squad_ssd3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "c9dd4af8-129b-466a-8e8c-484ed0864b02": { + "templateId": "Quest:plankertonquest_filler_5_d5", + "attributes": { + "completion_complete_launchballoon_2_diff5": 1, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-21T15:07:00.153Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "9a6d2c40-d74e-4117-9efb-421fbd9df4fa": { + "templateId": "Quest:plankertonquest_filler_2_d1", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T00:36:49.783Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_evacuate_2": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "f07f3d45-1f6a-4eac-af65-93818e54fca7": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-M01.IconDef-WorkerPortrait-Dreamer-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "df96672d-7c23-4524-a3b8-e1a7e8c8d3611": { + "templateId": "Quest:plankertonquest_filler_2_d5", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 25, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-10T20:54:20.229Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_evacuateshelter_2_diff5": 2, + "xp": 0, + "completion_complete_evacuateshelter_2_diff5_v2": 0, + "favorite": false + }, + "quantity": 1 + }, + "391c5b59-2120-4d75-94fe-2b79edae0119": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-M03.IconDef-WorkerPortrait-Dependable-M03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "0c41d63e-c938-42e9-8e9d-d366ccfa25f2": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-M02.IconDef-WorkerPortrait-Dependable-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsRangedDamageLow" + }, + "quantity": 1 + }, + "a554d8d2-1c4a-457f-ac3d-500bd1677429": { + "templateId": "Quest:teamperkquest_endlessshadow", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T21:59:29.343Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "236bca99-c197-4726-9905-27cb87cae7f8": { + "templateId": "Stat:offense_team", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 224 + }, + "7a367ed2-ac89-4ca5-8bbd-3476e2b1c68a": { + "templateId": "Quest:plankertonquest_filler_3_d4", + "attributes": { + "level": -1, + "item_seen": true, + "completion_custom_pylonused_stamina": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-29T20:06:22.181Z", + "challenge_linked_quest_parent": "", + "completion_custom_pylonused_shield": 1, + "completion_custom_pylonused_health": 1, + "completion_custom_pylonused_movement": 1, + "max_level_bonus": 0, + "xp": 0, + "completion_custom_pylonused_build": 1, + "favorite": false + }, + "quantity": 1 + }, + "940b0ac0-02af-42de-a8cc-c7a77caec094": { + "templateId": "Quest:challenge_holdthedoor_15", + "attributes": { + "completion_complete_outpost": 9, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-15T19:53:51.122Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "b1ccc040-32fa-4846-bb1e-ac223a3b7312": { + "templateId": "Quest:plankertonquest_filler_6_d5", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-22T22:02:48.974Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_relaysurvivor_2_diff5": 4, + "favorite": false + }, + "quantity": 1 + }, + "77e15c6a-b2fe-4172-8f90-f0a132366ad1": { + "templateId": "HomebaseNode:questreward_stonewood_squad_ssd6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b9d86048-cea2-4eb2-a7b5-9ff6f652195b": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Adventurous-F01.IconDef-WorkerPortrait-Adventurous-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAdventurous", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "cbaef99d-13c7-47af-91c5-97f2b8baf0b1": { + "templateId": "Quest:challenge_leavenoonebehind_2", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 25, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-05T12:15:37.561Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "4ec798b5-bea5-4e22-88f3-8e6c8d5fe066": { + "templateId": "Quest:teamperkquest_kineticoverdrive", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-20T18:32:36.096Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "a51211ef-7178-4e50-970c-37cbb6588c27": { + "templateId": "Quest:challenge_herotraining_2", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-18T20:05:19.022Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_convert_any_hero": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "829c170f-84f3-446d-be4b-a0c4bbfb1adb": { + "templateId": "HomebaseNode:questreward_buildingresourcecap", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "8dbce32a-f9c3-4b46-868d-d6459a20bed6": { + "templateId": "HomebaseNode:questreward_expedition_truck3", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "4b073d1b-353c-484a-99f9-6fed442f738d": { + "templateId": "Quest:plankertonquest_filler_4_d4", + "attributes": { + "completion_complete_mimic_2_diff4": 1, + "level": -1, + "item_seen": true, + "completion_interact_treasurechest_pve02_diff4": 3, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-06T15:54:17.888Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "dba04e24-ec84-4a98-8ac7-9de070c1cf41": { + "templateId": "Quest:challenge_missionaccomplished_8", + "attributes": { + "level": -1, + "completion_complete_primary": 6, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-06T18:21:23.881Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "06140851-5421-4cb1-94d4-122662d7820f": { + "templateId": "Quest:challenge_missionaccomplished_12", + "attributes": { + "level": -1, + "completion_complete_primary": 8, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-14T17:17:07.897Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "f06a1412-a0b3-4a3d-9956-48434f582f0d": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-M03.IconDef-WorkerPortrait-Analytical-M03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "d9b4b4e0-e3bc-4664-acf4-5c7c6a584e34": { + "templateId": "Worker:managerengineer_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Engineer-F01.IconDef-ManagerPortrait-Engineer-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsEngineer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "37ac8f1d-a23a-4697-9b8d-7e5291223759": { + "templateId": "HomebaseNode:questreward_expedition_rowboat", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "249beb1f-a2f8-4116-91be-760c4026304f": { + "templateId": "Quest:challenge_leavenoonebehind_4", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 35, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-15T16:14:50.080Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "4780e849-5bec-4ddb-be24-e793aaad7875": { + "templateId": "Worker:managerinventor_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Inventor-F01.IconDef-ManagerPortrait-Inventor-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsInventor", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "f06de7c1-7119-41c4-91ff-16976a438134": { + "templateId": "Quest:challenge_eldritchabominations_20", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "completion_kill_husk_smasher": 100, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-22T12:16:01.864Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "4020bece-d96a-4876-bc40-bfbfdfbe6e12": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-M03.IconDef-WorkerPortrait-Dependable-M03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDamageLow" + }, + "quantity": 1 + }, + "90491675-6154-416a-a631-c33d6ff21ae6": { + "templateId": "Quest:challenge_toxictreasures_2", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-20T17:53:46.138Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 2, + "favorite": false + }, + "quantity": 1 + }, + "358a3832-fe29-473d-951f-152b63273ccd": { + "templateId": "HomebaseNode:questreward_twinepeaks_squad_ssd2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "72a83a88-2ef2-434b-9160-9c1137e3ea2b": { + "templateId": "Quest:outpostquest_firstopen_ssd", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-12T17:44:51.832Z", + "challenge_linked_quest_parent": "", + "completion_complete_ssd_firstopen": 1, + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "55a05569-e0b8-4fdf-98ac-aa4e01a7cfa5": { + "templateId": "Worker:managersoldier_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Marksman-M01.IconDef-ManagerPortrait-Marksman-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsSoldier", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "16473a53-3ec1-47d9-9943-1ce06e544636": { + "templateId": "Quest:genericquest_completestormzones_repeatable", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-20T18:44:07.280Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_stormzone": 1, + "favorite": false + }, + "quantity": 1 + }, + "d11babe6-a258-40f5-918b-a7585efd00fc": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Adventurous-F01.IconDef-WorkerPortrait-Adventurous-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAdventurous", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDamageLow" + }, + "quantity": 1 + }, + "db8d9a7a-f1de-4086-8069-e4806a26bd0b": { + "templateId": "Quest:pickaxequest_stw006_tier_7", + "attributes": { + "level": -1, + "item_seen": true, + "completion_pickaxequest_stw006_tier_7": 8, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-07T18:27:34.681Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "c5ddf51f-9bab-4d1a-97d3-c7ae75833d47": { + "templateId": "Worker:workerbasic_vr_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-F02.IconDef-WorkerPortrait-Dependable-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "440f94aa-576c-4a7b-ae9e-3e0948560bc0": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Adventurous-F03.IconDef-WorkerPortrait-Adventurous-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAdventurous", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "c49940fc-f586-4711-a131-3f33b7e544c0": { + "templateId": "Quest:challenge_missionaccomplished_2", + "attributes": { + "level": -1, + "completion_complete_primary": 3, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T16:27:48.465Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "d36f9d93-f35d-4b6f-9b72-afdb20d12798": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-M02.IconDef-WorkerPortrait-Competitive-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "8ac2e332-81d4-4fb0-91b3-4c87c9449623": { + "templateId": "HomebaseNode:questreward_expedition_rowboat3", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "8e57f82d-f6d8-42b8-8bd8-4bea74a620a7": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": false, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-F02.IconDef-WorkerPortrait-Pragmatic-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "02f36a91-9818-43e5-9d57-d11657134a1b": { + "templateId": "Quest:challenge_leavenoonebehind_14", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 90, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-29T20:26:35.171Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "8ca02155-d846-4af2-bace-081543322241": { + "templateId": "Quest:plankertonquest_filler_4_d1", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T22:59:54.216Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false, + "completion_complete_buildradargrid_2": 1 + }, + "quantity": 1 + }, + "1bbe7bab-ad2a-4780-9624-2eb656821a60": { + "templateId": "Worker:managerdoctor_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": false, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Doctor-F01.IconDef-ManagerPortrait-Doctor-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsDoctor", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "80028e96-a1f5-41c8-a55a-8d7d43896ef8": { + "templateId": "Quest:achievement_buildstructures", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-25T18:55:36.621Z", + "challenge_linked_quest_parent": "", + "completion_build_any_structure": 56607, + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "711cf5ad-e661-4aca-af5a-a9357e13eec9": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-F03.IconDef-WorkerPortrait-Dreamer-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "f45dc36b-615a-4724-9dfc-c1fc07593255": { + "templateId": "HomebaseNode:questreward_newfollower3_slot", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "9377e9e5-2259-4b1e-9be8-e78a46966c53": { + "templateId": "HomebaseNode:skilltree_supplydrop", + "attributes": { + "item_seen": false + }, + "quantity": 6 + }, + "HomebaseNode:skilltree_proximitymine": { + "templateId": "HomebaseNode:skilltree_proximitymine", + "attributes": { + "item_seen": true + }, + "quantity": 6 + }, + "HomebaseNode:skilltree_slowfield": { + "templateId": "HomebaseNode:skilltree_slowfield", + "attributes": { + "item_seen": true + }, + "quantity": 6 + }, + "HomebaseNode:skilltree_teleporter": { + "templateId": "HomebaseNode:skilltree_teleporter", + "attributes": { + "item_seen": true + }, + "quantity": 6 + }, + "2cd62cda-f24c-45b7-9991-20713135e280": { + "templateId": "HomebaseNode:questreward_twinepeaks_squad_ssd3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8b4f6c21-b209-4811-9b41-81f2788368cd": { + "templateId": "Quest:challenge_leavenoonebehind_16", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 100, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-14T17:13:23.582Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "a8760208-d816-494a-95d9-254553889380": { + "templateId": "HomebaseNode:skilltree_buildandrepairspeed", + "attributes": { + "item_seen": false + }, + "quantity": 8 + }, + "5ee6ffc8-0595-4af0-8fce-994d6d9a4c4b": { + "templateId": "Quest:plankertonquest_filler_3_d5", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_complete_retrievedata_2_diff5": 1, + "quest_state": "Claimed", + "last_state_change_time": "2020-01-11T17:41:47.439Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "ab4a256b-e494-4f9a-a075-fcbb151aab56": { + "templateId": "Quest:plankertonquest_filler_4_d5", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-20T16:36:53.328Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false, + "completion_complete_buildradar_2_diff5": 3 + }, + "quantity": 1 + }, + "c43c0174-a35f-4fd2-a8d2-f4098a53a6fd": { + "templateId": "Quest:plankertonquest_reactive_records", + "attributes": { + "level": -1, + "completion_plankertonquest_reactive_records": 5, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.917Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "fec804d4-9f77-44b3-b268-6bb118edf788": { + "templateId": "HomebaseNode:questreward_newfollower2_slot", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "ed1aeb09-7165-4df7-9a3e-30c338dae65c": { + "templateId": "Worker:managerdoctor_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Doctor-F01.IconDef-ManagerPortrait-Doctor-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsDoctor", + "building_slot_used": -1, + "favorite": false + }, + "refundable": "L ", + "quantity": 1 + }, + "9c0afee3-2379-47e4-93b1-4067bab1ae0a": { + "templateId": "Worker:managertrainer_r_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-PersonalTrainer-M01.IconDef-ManagerPortrait-PersonalTrainer-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "2c0b72fc-35d3-4f37-afc6-e98a85ba50ae": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-M02.IconDef-WorkerPortrait-Cooperative-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsMeleeDamageLow" + }, + "quantity": 1 + }, + "88920c85-966c-4b4c-910f-54b7c7cd8307": { + "templateId": "Quest:pickaxequest_stw002_tier_3", + "attributes": { + "level": -1, + "completion_pickaxequest_stw002_tier_3": 1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-07T18:27:20.657Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "c0d57fdc-4c8b-4aa2-b13c-347eceef3a5e": { + "templateId": "HomebaseNode:questreward_stonewood_squad_ssd5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "531efc32-0810-4332-9f2d-5e3d23dfda28": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-M02.IconDef-WorkerPortrait-Pragmatic-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "b196dfc1-2dd8-4a3e-b0a3-afd2bbc60d66": { + "templateId": "PersonalVehicle:vid_hoverboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "a612762f-f3a9-441e-8b97-6c8f7cb318f4": { + "templateId": "Quest:reactivequest_waterhusks", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-10T19:38:40.174Z", + "completion_quest_reactive_waterhusks": 10, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "fd9069ad-2187-4eae-896a-9051143c9ba9": { + "templateId": "Quest:challenge_missionaccomplished_13", + "attributes": { + "level": -1, + "completion_complete_primary": 9, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T18:08:40.328Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "39e3dbc0-a7f5-4386-a110-1b3aa28a8baf": { + "templateId": "Quest:plankertonquest_filler_8_d4", + "attributes": { + "level": -1, + "item_seen": true, + "completion_complete_delivergoods_2_diff4": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-08T17:07:21.355Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "ac1aa694-8aed-42bf-b975-7cd2e3b82908": { + "templateId": "Quest:plankertonquest_filler_7_d3", + "attributes": { + "completion_complete_launchballoon_2_diff3": 2, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-24T14:08:29.949Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "fd8374d5-5eb4-4cc6-9368-c280d01b125c": { + "templateId": "Quest:challenge_toxictreasures_4", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T17:04:03.208Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 3, + "favorite": false + }, + "quantity": 1 + }, + "c5751160-53c4-4cd7-a0b9-984550ae9310": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-F03.IconDef-WorkerPortrait-Competitive-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsMeleeDamageLow" + }, + "quantity": 1 + }, + "89d6c2d9-661c-43b3-ba37-2cb00ccfe8a9": { + "templateId": "Quest:plankertonquest_filler_6_d3", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-28T15:31:05.943Z", + "challenge_linked_quest_parent": "", + "completion_quick_complete_pve02": 3, + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "c9936f42-271d-408e-94c7-55e85b679212": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-F02.IconDef-WorkerPortrait-Analytical-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsRangedDamageLow" + }, + "quantity": 1 + }, + "14ad8623-f163-40c0-8e93-29817181b29c": { + "templateId": "Quest:challenge_leavenoonebehind_9", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 60, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-09T18:13:47.362Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "4d1836c4-f1ff-4ea1-9a59-96cbeee9fc90": { + "templateId": "Quest:stonewoodquest_hidden_hasitems", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:17:01.698Z", + "challenge_linked_quest_parent": "", + "completion_stonewoodquest_hidden_hasitems": 50, + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "641a351d-de17-4bc3-bf8f-07b1163c59b8": { + "templateId": "Quest:challenge_toxictreasures_11", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-21T15:07:10.098Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 7, + "favorite": false + }, + "quantity": 1 + }, + "bc015ff9-54ad-4422-aff6-3a2fd255aaa7": { + "templateId": "Token:collectionresource_nodegatetoken01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "cb0ba21a-0534-417d-b487-e0ac4ec2f484": { + "templateId": "Quest:stonewoodquest_tutorial_levelup_hero", + "attributes": { + "completion_heroupgrade_tabcallout": 1, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_heroupgrade_guard_command": 1, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.926Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false, + "completion_heroupgrade_guard_heroes": 1, + "completion_heroupgrade_highlight_heroes_button": 1 + }, + "quantity": 1 + }, + "9f9ed720-0c0f-4ce0-923f-f28c8d838817": { + "templateId": "Quest:challenge_weaponupgrade_1", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_upgrade_any_weapon": 1, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-26T16:27:21.016Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "1375bd56-7fbb-4d07-9652-abe0b3708330": { + "templateId": "HomebaseNode:questreward_expedition_dirtbike3", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "d794c2dc-3468-4e0e-bfc4-d1b803de2946": { + "templateId": "Quest:challenge_toxictreasures_9", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-08T15:09:53.912Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 6, + "favorite": false + }, + "quantity": 1 + }, + "1426bb18-4c95-4acf-ac4f-e97d19a66100": { + "templateId": "Quest:pickaxequest_stw004_tier_5", + "attributes": { + "completion_pickaxequest_stw004_tier_5": 4, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-07T18:27:30.488Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "52abbebd-bb06-4084-a1a2-8d04c475d8ed": { + "templateId": "Quest:challenge_herotraining_1", + "attributes": { + "completion_upgrade_any_hero": 1, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-26T16:26:20.069Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "c2346450-7677-4a93-ba37-37895b50db87": { + "templateId": "Quest:heroquest_outlander_1", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-29T14:02:30.252Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_exploration_1_diff2": 1, + "xp": 0, + "completion_unlock_skill_tree_outlander_leadership": 1, + "favorite": false + }, + "quantity": 1 + }, + "b2b5705e-2d48-45f0-a936-f3b0f58e9352": { + "templateId": "Token:accountinventorybonus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 359825 + }, + "217a4a0a-064a-4b99-b918-72342aba6bd4": { + "templateId": "Quest:challenge_missionaccomplished_6", + "attributes": { + "level": -1, + "completion_complete_primary": 5, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-04T22:12:42.297Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "8b78aa4c-d2da-4457-9f53-b8266d798d49": { + "templateId": "HomebaseNode:questreward_mission_defender3", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "76fb44c1-301f-4483-8505-1a45fd98a8cb": { + "templateId": "HomebaseNode:questreward_plankerton_squad_ssd2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2e710b0e-a483-44d8-b597-b89872158dfe": { + "templateId": "HomebaseNode:questreward_expedition_helicopter", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "f8867841-1d3c-4b66-8187-b33b47045941": { + "templateId": "HomebaseNode:questreward_herosupport_slot", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ce32d544-827d-4c8b-a8b6-4cb75e1d41f5": { + "templateId": "Quest:tutorial_loadout_teamperkandsupport3", + "attributes": { + "completion_heroloadout_teamperk_intro": 1, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "completion_heroloadout_support3_intro": 1, + "completion_heroloadout_teamperk_guardscreen1": 1, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T22:04:53.357Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_heroloadout_support3_guardscreen1": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "038a655e-237e-4fd0-9a1a-56c7c7180cb3": { + "templateId": "Quest:plankertonquest_filler_9_d4", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-09T16:16:30.387Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_powerreactor_2_diff4": 2, + "favorite": false + }, + "quantity": 1 + }, + "ac9deea6-3e8c-47d7-83fa-181b7110beb1": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-M01.IconDef-WorkerPortrait-Pragmatic-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDamageLow" + }, + "quantity": 1 + }, + "5488a9c1-281d-4f32-8e62-15b472a87d56": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-F02.IconDef-WorkerPortrait-Analytical-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsShieldRegenLow" + }, + "quantity": 1 + }, + "a7e84730-14ef-4533-9c72-69bf35e237b3": { + "templateId": "Quest:genericquest_killnaturehusks_repeatable", + "attributes": { + "completion_kill_husk_ele_nature": 6, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-20T18:44:07.280Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "4eb29b05-d21a-4927-a32a-c0d2709d2c2d": { + "templateId": "Worker:workerbasic_vr_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-F01.IconDef-WorkerPortrait-Competitive-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "2618910b-9634-43cf-b2e7-9c56c19d6742": { + "templateId": "HomebaseNode:commanderlevel_rpcollection", + "attributes": { + "item_seen": false + }, + "quantity": 6 + }, + "21a688bb-27f3-4ef6-884a-861f7f671cb3": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-F02.IconDef-WorkerPortrait-Dependable-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsMeleeDamageLow" + }, + "quantity": 1 + }, + "73531b8b-8325-43b4-84f2-a2ef9cd62567": { + "templateId": "Quest:stonewoodquest_reactive_fetch_hoverboard", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_stonewoodquest_reactive_fetch_hoverboard": 10, + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-18T19:49:13.823Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "e89f18c3-7437-4cf7-bc87-0686a0e2dfc4": { + "templateId": "Quest:challenge_missionaccomplished_10", + "attributes": { + "level": -1, + "completion_complete_primary": 7, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-09T17:23:48.128Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "7ae0ff26-cd62-4566-a8dc-a4bb434e8687": { + "templateId": "Quest:challenge_eldritchabominations_8", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 40, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T00:36:19.829Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "2b375f6f-badf-45a2-a530-2b745a321d20": { + "templateId": "Quest:stonewoodquest_joelkarolina_savesurvivors", + "attributes": { + "completion_stonewoodquest_joelkarolina_savesurvivors": 100, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T13:28:02.887Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "5deee3f5-6638-4b49-9847-00f698ed239e": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-F02.IconDef-WorkerPortrait-Cooperative-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsMeleeDamageLow" + }, + "quantity": 1 + }, + "313a0513-2d1c-4e12-bd6e-49859f6674c6": { + "templateId": "HomebaseNode:questreward_expedition_dirtbike", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "8945adc8-4278-4d24-9c7b-76fe8488a7ec": { + "templateId": "Quest:challenge_eldritchabominations_13", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 65, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-21T20:00:06.716Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "783eff7f-3cb6-4834-8dc1-440109672f18": { + "templateId": "Quest:challenge_missionaccomplished_1", + "attributes": { + "level": -1, + "completion_complete_primary": 3, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T15:31:21.870Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "0b15f777-9443-4351-b780-6cd5cc75f31b": { + "templateId": "Token:receivemtxcurrency", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "9b272935-d695-480c-b819-290e27d16128": { + "templateId": "Worker:managerdoctor_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Doctor-M01.IconDef-ManagerPortrait-Doctor-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsDoctor", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "575ffac5-8be4-4fb7-9916-fd0afd9eafb9": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-F03.IconDef-WorkerPortrait-Competitive-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDamageLow" + }, + "quantity": 1 + }, + "0c85482b-1c13-40ae-8627-293caa1d2b9f": { + "templateId": "Quest:challenge_leavenoonebehind_1", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 20, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-29T14:29:02.042Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "762d407e-75f7-4aac-90b8-d7e1664b6d58": { + "templateId": "Token:worldinventorybonus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 10000 + }, + "e83235f3-7a27-407c-9140-a37b1066f67c": { + "templateId": "Quest:plankertonquest_filler_4_d2", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_complete_destroyencamp_2_diff2": 2, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-15T12:32:08.268Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "5283d939-426d-4fc4-b70e-4c3d16843882": { + "templateId": "HomebaseNode:questreward_feature_defenderlevelup", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "ac6095de-d10f-4003-8f9f-b507236c499f": { + "templateId": "Quest:plankertonquest_filler_5_d1", + "attributes": { + "completion_complete_exploration_2": 1, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-30T17:03:16.744Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "c9657504-e8f7-42c3-9b14-41dce8dd5211": { + "templateId": "Quest:homebaseonboarding", + "attributes": { + "level": -1, + "completion_hbonboarding_completezone": 1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-25T18:55:36.618Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_hbonboarding_namehomebase": 0, + "completion_hbonboarding_watchsatellitecine": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "5e59bc1d-208b-4d04-b5b2-b6c4a529a79d": { + "templateId": "Quest:reactivequest_trollstash_r2", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T18:08:05.124Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_quest_reactive_trollstash": 1, + "selection": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "72dc029e-2322-4dc2-aa92-0acf4b20568b": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-M03.IconDef-WorkerPortrait-Analytical-M03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsMeleeDamageLow" + }, + "quantity": 1 + }, + "89271fb7-e30b-4e0d-89a0-c46cd7ddb7eb": { + "templateId": "Quest:plankertonquest_launchtherocket", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Inactive", + "last_state_change_time": "2020-01-17T12:16:44.924Z", + "challenge_linked_quest_parent": "", + "completion_questcomplete_plankertonquest_launchrocket_d5": 0, + "max_level_bonus": 0, + "selection": -1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "7664d82d-3e00-46a7-9305-aa82fc903344": { + "templateId": "Quest:stonewoodquest_fetch_trashcans", + "attributes": { + "level": -1, + "item_seen": true, + "completion_stonewoodquest_fetch_trashcans": 5, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.890Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "478b90d8-ed64-4f0a-96aa-26e1800c9272": { + "templateId": "Quest:challenge_eldritchabominations_15", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 75, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-29T15:09:23.642Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "da6322ef-261b-4c2b-957a-8474a792d403": { + "templateId": "Quest:challenge_toxictreasures_1", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-19T16:25:07.714Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 2, + "favorite": false + }, + "quantity": 1 + }, + "b421d840-3405-4454-9169-43ad1f048500": { + "templateId": "HomebaseNode:questreward_expedition_dirtbike2", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "51044442-56ad-47e3-8199-3c292cc7f43d": { + "templateId": "Worker:workerbasic_vr_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": false, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-F03.IconDef-WorkerPortrait-Dependable-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "63f03d50-e8af-4d44-9845-f1562b51fcda": { + "templateId": "Stat:offense", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 540 + }, + "ac278b23-e943-4ee7-ac4d-9a539c7cb5a0": { + "templateId": "Quest:challenge_holdthedoor_20", + "attributes": { + "completion_complete_outpost": 11, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-29T18:45:46.374Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "eeebe150-dfdb-439b-96d1-bd0644fbf6df": { + "templateId": "Quest:stonewoodquest_ability_hoverboard", + "attributes": { + "completion_stonewoodquest_ability_hoverboard": 1, + "level": -1, + "completion_complete_pve01_diff4": 1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-18T20:05:14.283Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "cdc8fb4a-f1f7-4da2-9b69-cf5c54de5a00": { + "templateId": "Quest:stonewoodquest_killcollect_mistmonsters", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.897Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_stonewoodquest_killcollect_mistmonsters": 5, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "f1a591e4-9bdd-4a61-91fe-c632dd434fff": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-F02.IconDef-WorkerPortrait-Curious-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCurious", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsMeleeDamageLow" + }, + "quantity": 1 + }, + "d25f93c6-f8fc-4891-8ab7-ce9fc6a4220f": { + "templateId": "Quest:challenge_missionaccomplished_11", + "attributes": { + "level": -1, + "completion_complete_primary": 8, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-12T15:25:17.389Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "329727cd-8422-45d5-894b-eead42d30b6a": { + "templateId": "Quest:achievement_killmistmonsters", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 1945, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-25T18:55:36.621Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "541c7f8f-bffc-4bc1-b4df-78d16f832d14": { + "templateId": "Quest:challenge_holdthedoor_7", + "attributes": { + "completion_complete_outpost": 5, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-09T16:30:59.691Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "bc89f7de-d62e-4db8-a83e-324fc46ddffc": { + "templateId": "Quest:plankertonquest_filler_2_d4", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-28T19:27:28.589Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "favorite": false, + "completion_kill_husk_2_diff4_v2": 500 + }, + "quantity": 1 + }, + "0e0ba06b-e2dc-4000-a105-d35d7573b49d": { + "templateId": "ConsumableAccountItem:smallxpboost_gift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "xp-boost": { + "templateId": "Token:xpboost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 0 + }, + "b863ca8b-be12-4715-8a84-7d34e1b306f4": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-M01.IconDef-WorkerPortrait-Dependable-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "d498e2f2-9187-4ead-9629-77098d402bc5": { + "templateId": "HomebaseNode:questreward_stonewood_squad_ssd3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dcd46344-2fef-4b04-9bb0-27ca916d9ee9": { + "templateId": "Quest:plankertonquest_landmark_plankharbor", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.915Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_plankertonquest_landmark_plankharbor": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "6de1caac-0b14-496a-970f-ac40853272bf": { + "templateId": "HomebaseNode:questreward_plankerton_squad_ssd6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "66d0bd45-dcb4-45ba-8f84-b9f85026210f": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-F02.IconDef-WorkerPortrait-Cooperative-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsResistanceLow" + }, + "quantity": 1 + }, + "09a36af3-5f4c-4486-a1d7-c7b5eb98420a": { + "templateId": "HomebaseNode:questreward_expedition_truck2", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "de19e55b-84b0-48c4-87ca-5f1e53856d01": { + "templateId": "Quest:tutorial_loadout_support1", + "attributes": { + "completion_heroloadout_support1_intro": 1, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T22:04:44.104Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false, + "completion_heroloadout_support1_guardscreen1": 1 + }, + "quantity": 1 + }, + "6758384a-25ed-473d-8f75-72d54e312918": { + "templateId": "Quest:challenge_holdthedoor_4", + "attributes": { + "completion_complete_outpost": 3, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-04T22:12:48.160Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "5ee5ec8f-89c5-474b-929a-520dfb58b41b": { + "templateId": "Quest:challenge_eldritchabominations_14", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 70, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-26T16:16:23.820Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "385c4680-f9ce-429b-85b9-ad2becb8b609": { + "templateId": "Worker:managersoldier_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Marksman-M01.IconDef-ManagerPortrait-Marksman-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsSoldier", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "2cee144d-e3ab-4e38-8226-eea7184e1124": { + "templateId": "Quest:challenge_holdthedoor_12", + "attributes": { + "completion_complete_outpost": 7, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T01:15:26.100Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "05466c25-bad3-44cf-b544-25f438cb4d1f": { + "templateId": "Quest:challenge_eldritchabominations_18", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 90, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-14T19:22:24.450Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "6a430c9c-f84e-4d16-8b85-2a6e20652f7c": { + "templateId": "Quest:reactivequest_masterservers", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-21T15:19:10.406Z", + "challenge_linked_quest_parent": "", + "completion_complete_protecttheservers_2": 1, + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "fbe39c76-99eb-4b80-8ef7-ccf85e5ac12b": { + "templateId": "Quest:challenge_eldritchabominations_3", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 15, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-19T19:05:23.710Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "0da41ac0-23ac-4565-a450-13b3a5909a34": { + "templateId": "Quest:challenge_eldritchabominations_1", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 5, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T16:38:37.900Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "ed50246d-692e-4614-b9b9-ec176bc578ad": { + "templateId": "Quest:heroquest_soldier_1", + "attributes": { + "level": -1, + "item_seen": true, + "completion_upgrade_soldier": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-28T09:59:48.945Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_kill_husk_commando_assault": 100, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "91c3cf67-11cb-4407-9cfb-94453b82a17a": { + "templateId": "Quest:challenge_leavenoonebehind_7", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 50, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-29T16:58:38.024Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "42060f09-42d5-4511-b79d-76e53983ec83": { + "templateId": "Stat:technology", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 540 + }, + "13eb4f9d-d65e-4c3d-841f-d1de2963859b": { + "templateId": "Quest:challenge_missionaccomplished_5", + "attributes": { + "level": -1, + "completion_complete_primary": 5, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-30T15:35:19.138Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "d112ab18-0f3f-4442-9de1-093b76238420": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-F02.IconDef-WorkerPortrait-Dreamer-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "fd3a14bb-82f2-4d7d-91c9-1518be006f4f": { + "templateId": "Quest:stonewoodquest_mechanical_buildlev2", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.891Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false, + "completion_stonewoodquest_mechanical_buildlev2": 50 + }, + "quantity": 1 + }, + "deff5002-9313-4222-9468-cea7b1d1d008": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-F03.IconDef-WorkerPortrait-Pragmatic-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "5d8d400c-506b-4b75-843c-a5bda783b7b5": { + "templateId": "Stat:fortitude", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 540 + }, + "19b4591e-ed2f-4b9a-b21c-ea7bc193e236": { + "templateId": "Worker:workerbasic_vr_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-M03.IconDef-WorkerPortrait-Competitive-M03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsMeleeDamageLow" + }, + "quantity": 1 + }, + "cc38f919-836a-4b1b-8b3e-63ef167049ec": { + "templateId": "HomebaseNode:skilltree_adrenalinerush", + "attributes": { + "item_seen": false + }, + "quantity": 6 + }, + "7e86b21b-4ddb-49ba-a6ce-4b2f388fd6c9": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-M03.IconDef-WorkerPortrait-Dreamer-M03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "3992a16e-5002-457a-bb6c-4886ba3cb683": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-F01.IconDef-WorkerPortrait-Analytical-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "c8b838d5-2077-4192-8877-d38e9bb8a04c": { + "templateId": "Quest:homebaseonboardingafteroutpost", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "max_reward_slot": " a", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T19:10:31.437Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_open_card_pack": 1, + "xp": 0, + "completion_purchase_card_pack": 1, + "completion_hbonboarding_watchoutpostunlock": 1, + "favorite": false + }, + "quantity": 1 + }, + "bff3da51-c78d-4458-9865-9c8605518dc4": { + "templateId": "HomebaseNode:questreward_evolution3", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "4ff777eb-a9df-4276-b4c2-3b224061327b": { + "templateId": "HomebaseNode:skilltree_airstrike", + "attributes": { + "item_seen": false + }, + "quantity": 6 + }, + "dc4a434b-0e6f-456c-9e58-97d7bc3cc6b6": { + "templateId": "Quest:stonewoodquest_filler_1_d4", + "attributes": { + "level": -1, + "item_seen": true, + "completion_complete_pve01_diff4": 2, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-16T16:37:45.404Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false, + "completion_complete_encampment_1_diff4": 4 + }, + "quantity": 1 + }, + "62c9d8a8-a957-49f3-b20c-b131c648af95": { + "templateId": "HomebaseNode:questreward_twinepeaks_squad_ssd4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "08852309-9890-4632-aeab-ff37c331ace8": { + "templateId": "Worker:managersoldier_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Marksman-F01.IconDef-ManagerPortrait-Marksman-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCurious", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsSoldier", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "e1298c41-3725-4616-be32-09e1ba619faa": { + "templateId": "Quest:challenge_missionaccomplished_17", + "attributes": { + "level": -1, + "completion_complete_primary": 11, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T18:08:15.002Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "2a3e1c30-f3a9-4da5-9045-3505465e0d31": { + "templateId": "Quest:challenge_toxictreasures_14", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T14:08:53.195Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 8, + "favorite": false + }, + "quantity": 1 + }, + "e2ac177f-9020-47c2-b640-48f1bff809ac": { + "templateId": "Quest:stonewoodquest_fetch_researchcrates", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.879Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_stonewoodquest_fetch_researchcrates": 5, + "favorite": false + }, + "quantity": 1 + }, + "220b0ab9-8d01-4f6c-9d83-47be281468cc": { + "templateId": "Quest:stonewoodquest_tutorial_expeditions", + "attributes": { + "completion_expeditions_tabcallout": 1, + "completion_expeditions_guard_heroes": 1, + "level": -1, + "completion_expeditions_intro": 1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.933Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_expeditions_guard_command": 1, + "favorite": false, + "completion_expeditions_highlight_command": 1 + }, + "quantity": 1 + }, + "43463202-24f8-45de-b0a3-27fcc4758768": { + "templateId": "Quest:challenge_holdthedoor_8", + "attributes": { + "completion_complete_outpost": 5, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-13T22:14:59.796Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "38a253b1-7380-4d3b-8ce4-de471e9320d7": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-F01.IconDef-WorkerPortrait-Pragmatic-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsShieldRegenLow" + }, + "quantity": 1 + }, + "e9e46a90-b1cb-407d-a8df-0f648048f49d": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-F01.IconDef-WorkerPortrait-Cooperative-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "03fe74cf-9878-43d5-8e05-cc7040e9b2d2": { + "templateId": "Quest:challenge_holdthedoor_17", + "attributes": { + "completion_complete_outpost": 10, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-09T16:35:41.679Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "4dfc9eae-2829-4c39-886d-7af2dd9d2d5d": { + "templateId": "Quest:stonewoodquest_landmark_buildoff", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "completion_stonewoodquest_landmark_buildoff": 1, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.887Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "a1282f97-875f-4e97-bf64-becad0ce16cf": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCurious", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "d7e7a2e5-fd79-4c32-9344-dfbbc2a45aa7": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-M02.IconDef-WorkerPortrait-Cooperative-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsRangedDamageLow" + }, + "quantity": 1 + }, + "1bedb842-058d-44c8-9782-a41be23a2b13": { + "templateId": "Stat:fortitude_team", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 224 + }, + "e245fbb8-a31e-41f8-a16e-bacd1ea6fab9": { + "templateId": "HomebaseNode:questreward_plankerton_squad_ssd4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2e2e822e-25eb-4f04-9ccd-36c122ce6817": { + "templateId": "Quest:challenge_missionaccomplished_16", + "attributes": { + "level": -1, + "completion_complete_primary": 10, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-23T15:25:43.242Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "248f6221-7cce-4506-a03e-6121e228a13a": { + "templateId": "HomebaseNode:questreward_expedition_rowboat2", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "819ebf83-b097-46ce-af00-629f475e6d3e": { + "templateId": "Quest:heroquest_constructor_2", + "attributes": { + "completion_ability_bullrush": 1, + "level": -1, + "completion_ability_base": 1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_build_any_floor_constructor": 1, + "quest_state": "Claimed", + "last_state_change_time": "2020-01-05T19:11:13.875Z", + "completion_complete_pve01_diff2_constructor": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "e77184ab-7203-4290-a920-8dbfa2181d27": { + "templateId": "Quest:heroquest_constructorleadership", + "attributes": { + "completion_has_item_constructor": 0, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T19:22:16.437Z", + "completion_unlock_skill_tree_constructor_leadership": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "258b2f63-04e8-4d24-9a84-55ed52dbd456": { + "templateId": "Quest:reactivequest_riftdata", + "attributes": { + "completion_quest_reactive_riftdata": 3, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T14:52:17.316Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "f049eabf-1e62-4b31-a7c3-23fcf34dd89f": { + "templateId": "Quest:challenge_leavenoonebehind_15", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 95, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-06T12:04:19.607Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "211f3830-9ff4-4e69-a948-385c39d70d34": { + "templateId": "Quest:heroquest_constructor_3", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "completion_complete_buildradar_1_diff2_con": 1, + "last_state_change_time": "2020-01-09T16:57:03.680Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "bce62425-ef07-44dd-9a77-a1423e260281": { + "templateId": "Quota:restxp", + "attributes": { + "max_quota": 4556491, + "max_level_bonus": 0, + "level": 1, + "units_per_minute_recharge": 3797, + "item_seen": false, + "recharge_delay_minutes": 360, + "xp": 0, + "last_mod_time": "2020-02-05T21:52:20.369Z", + "favorite": false, + "current_value": 4200412 + }, + "quantity": 1 + }, + "074ef96e-9a86-4313-8f32-04bf160e739d": { + "templateId": "Quest:plankertonquest_filler_7_d5", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-23T15:57:42.860Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_exploration_2_diff5": 2, + "favorite": false + }, + "quantity": 1 + }, + "fdd5f17c-3138-472f-898d-840c5ad7b962": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": false, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-F01.IconDef-WorkerPortrait-Dreamer-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsRangedDamageLow" + }, + "quantity": 1 + }, + "a6fa0859-61e9-4c54-8be6-14a881292419": { + "templateId": "Quest:achievement_loottreasurechests", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_interact_treasurechest": 216, + "quest_state": "Active", + "last_state_change_time": "2020-01-25T18:55:36.621Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "3b3c116f-7f1d-4092-89ce-ebeeb6af329f": { + "templateId": "HomebaseNode:questreward_expedition_speedboat3", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "6441c8bd-4f42-4cf8-baac-a07e67d5e6cd": { + "templateId": "Quest:genericquest_killmistmonsters_repeatable", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "completion_kill_husk_smasher": 6, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-20T18:44:07.280Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "119bd706-523a-4d84-a12b-189e1939ec0c": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": false, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-F02.IconDef-WorkerPortrait-Dependable-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsMeleeDamageLow" + }, + "quantity": 1 + }, + "70e6e0e9-0c7a-4eeb-aad2-caea2ffa1258": { + "templateId": "Quest:heroquest_ninja_1", + "attributes": { + "completion_unlock_skill_tree_ninja_leadership": 1, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T15:41:26.078Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_kill_husk_melee": 20, + "favorite": false, + "completion_complete_pve01_diff2": 1 + }, + "quantity": 1 + }, + "01ec9093-6d91-439e-9231-05bdb1ef6d3c": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-M02.IconDef-WorkerPortrait-Competitive-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDamageLow" + }, + "quantity": 1 + }, + "7e2ea346-2c11-407c-a1f0-99a47a7f9bc7": { + "templateId": "Quest:plankertonquest_filler_1_d2", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-31T00:15:31.390Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_powerreactor_2_diff2_v2": 1, + "favorite": false + }, + "quantity": 1 + }, + "43774fe9-0c05-4071-b42e-5513a50d3e25": { + "templateId": "HomebaseNode:questreward_teamperk_slot1", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "993ea8e5-321a-44be-a28e-4db74f93356f": { + "templateId": "Quest:challenge_defendertraining_1", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_upgrade_any_defender": 1, + "quest_state": "Claimed", + "last_state_change_time": "2020-01-02T15:12:56.789Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "f2a426e7-dbba-4cdc-b9d3-7e8a78da5a21": { + "templateId": "Quest:pickaxequest_stw005_tier_6", + "attributes": { + "completion_pickaxequest_stw005_tier_6": 6, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-07T18:27:34.670Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "c645e2fe-916b-4ead-9357-a09813850077": { + "templateId": "Quest:challenge_collectionbook_1", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_collectionbook_levelup": 2, + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-18T16:22:02.710Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "31a4e902-7445-425b-86d1-63958c16b421": { + "templateId": "Quest:achievement_protectthesurvivors", + "attributes": { + "level": -1, + "item_seen": false, + "completion_custom_protectthesurvivors": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T18:54:08.874Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "3674af5f-d635-40c6-8019-e90d20323e8e": { + "templateId": "Quest:heroquest_constructor_1", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-16T16:37:53.690Z", + "completion_upgrade_constructor": 1, + "completion_complete_pve01_diff2_constructor": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_assign_hero_constructor": 1, + "favorite": false + }, + "quantity": 1 + }, + "489b76a0-2973-4522-a2b6-37adc130c1a8": { + "templateId": "Quest:homebasequest_completeexpedition", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T17:42:24.971Z", + "completion_collectexpedition": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "4e81aedf-c8bc-4ac7-8ea3-e2e99d53f0e8": { + "templateId": "Quest:reactivequest_shielders", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-07T11:23:59.938Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_quest_reactive_shielders": 20, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "e504a0ba-0886-4539-8d5c-20deb04c0167": { + "templateId": "Worker:managergadgeteer_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Gadgeteer-M01.IconDef-ManagerPortrait-Gadgeteer-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsGadgeteer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "6a704d46-7f04-4ac9-8172-9eac1ea4f724": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-F03.IconDef-WorkerPortrait-Curious-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCurious", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsRangedDamageLow" + }, + "quantity": 1 + }, + "60becd3f-e281-4f91-94e0-acb9376b1555": { + "templateId": "Quest:achievement_savesurvivors", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 1049, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-25T18:55:36.621Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "1c19baec-99f2-442c-b501-aaa79472d669": { + "templateId": "Quest:achievement_explorezones", + "attributes": { + "completion_complete_exploration_1": 158, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-25T18:55:36.621Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "5ddef65a-a05a-4e77-ab9e-301fa9fbd336": { + "templateId": "Quest:plankertonquest_tutorial_perk", + "attributes": { + "completion_plankertonquest_tutorial_perk_obj_guardscreen01": 1, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.934Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_plankertonquest_tutorial_perk_obj_tabcallout": 1, + "favorite": false + }, + "quantity": 1 + }, + "282df483-26f0-45be-9718-6832ec8dfc37": { + "templateId": "Quest:challenge_toxictreasures_7", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-30T13:03:00.850Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 5, + "favorite": false + }, + "quantity": 1 + }, + "28a4a595-7e4c-42d2-b476-ccebb48c2610": { + "templateId": "HomebaseNode:skilltree_hoverturret", + "attributes": { + "item_seen": false + }, + "quantity": 6 + }, + "523dfd0b-ebdc-4f2a-bd49-e6af15e9732e": { + "templateId": "HomebaseNode:skilltree_banner", + "attributes": { + "item_seen": false + }, + "quantity": 6 + }, + "8619fe18-2f50-4420-a44c-47bfef5a24ae": { + "templateId": "Quest:reactivequest_lightninghusks", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-28T19:27:19.358Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_quest_reactive_lightninghusks": 10, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "2252572a-421f-46ef-9dd6-43fdc67291d4": { + "templateId": "Quest:challenge_toxictreasures_13", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-24T19:39:44.571Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 8, + "favorite": false + }, + "quantity": 1 + }, + "2072035e-3172-4efe-b214-8915283eecc8": { + "templateId": "HomebaseNode:questreward_feature_weaponlevelup", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "5e65cf84-7b03-4f5a-8b21-afcde86b1d0f": { + "templateId": "HomebaseNode:questreward_recyclecollection", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "c76c4f8e-63ea-4dbb-9fce-6535dd946f89": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-F03.IconDef-WorkerPortrait-Pragmatic-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "d09fbdc2-901c-4d9a-a40b-fe89d66d9fc2": { + "templateId": "HomebaseNode:questreward_feature_researchsystem", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "5dba0693-8e18-4a65-89b8-39c3fe652d14": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-M03.IconDef-WorkerPortrait-Cooperative-M03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "b8cc42f5-21f1-4e56-b5c2-6fd96cf3b642": { + "templateId": "Quest:stonewoodquest_joelkarolina_killhusks", + "attributes": { + "completion_stonewoodquest_joelkarolina_killhusks": 1000, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-02-01T23:34:24.861Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "85b92d9b-652f-4424-b956-5f55a8a8989c": { + "templateId": "HomebaseNode:questreward_feature_survivorlevelup", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "1cfe5518-6510-4e8d-a90b-df8cbe4b7b7f": { + "templateId": "HomebaseNode:questreward_feature_herolevelup", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "628877c6-3cac-4cff-bc9b-650680457084": { + "templateId": "Quest:reactivequest_firehusks", + "attributes": { + "completion_quest_reactive_firehusks": 10, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-24T19:05:34.808Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "677c3ce5-cd84-4727-9a17-56507d08081a": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-F02.IconDef-WorkerPortrait-Competitive-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "1ea64d3c-e866-4d38-a997-fac2285f2772": { + "templateId": "Quest:challenge_eldritchabominations_9", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 45, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T23:22:49.871Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "88aa199e-1142-4995-a91d-eca40ac175cc": { + "templateId": "Quest:challenge_leavenoonebehind_10", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 70, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-19T20:06:45.752Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "3b47779c-d566-436b-89a3-3f8455fc4c45": { + "templateId": "Worker:managermartialartist_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-MartialArtist-M01.IconDef-ManagerPortrait-MartialArtist-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsMartialArtist", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "12e032d0-de1d-451c-9822-45f685b4c86a": { + "templateId": "Quest:heroquest_loadout_outlander_1", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-14T17:13:26.986Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_pve03_diff24_loadout_outlander": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "55d559c4-5077-4ae4-ba89-267e929d2046": { + "templateId": "Quest:reactivequest_finddj", + "attributes": { + "level": -1, + "item_seen": true, + "completion_quest_reactive_finddj": 3, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-30T17:26:59.916Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "486da7e8-05f8-4583-9ed9-aa807ed6439d": { + "templateId": "Quest:plankertonquest_launchrocket_d5", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_complete_launchrocket_2": 0, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Inactive", + "last_state_change_time": "2020-01-23T23:36:41.992Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "bf74d44b-775f-4ef3-99de-afeaf870de80": { + "templateId": "Quest:plankertonquest_filler_5_d4", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-06T18:57:23.368Z", + "completion_complete_retrievedata_2_diff4": 2, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "fb410c0f-4703-4909-9624-3b8405257d5d": { + "templateId": "Worker:workerbasic_vr_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-M03.IconDef-WorkerPortrait-Competitive-M03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsRangedDamageLow" + }, + "quantity": 1 + }, + "dfc8517f-8e7d-425c-bd78-d044bb544a73": { + "templateId": "HomebaseNode:questreward_homebase_defender", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "2c8793c7-a81e-47d0-91ba-47a3560ff5a9": { + "templateId": "Quest:stonewoodquest_joelkarolina_killmistmonsters", + "attributes": { + "completion_stonewoodquest_joelkarolina_killmistmonsters": 1, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-02-01T23:34:24.861Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "0beabe87-7d10-4d57-867d-abfef58e6a8c": { + "templateId": "Quest:challenge_toxictreasures_12", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-23T18:18:20.359Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 7, + "favorite": false + }, + "quantity": 1 + }, + "b9c9d6de-ddf1-4946-93a5-61316e48fad0": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-F02.IconDef-WorkerPortrait-Dreamer-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsRangedDamageLow" + }, + "quantity": 1 + }, + "cb4d0267-c03c-4fa9-8ca1-67e6e44a7a23": { + "templateId": "Stat:technology_team", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 224 + }, + "8211bfac-bc99-4128-a49f-3936dcec2e0d": { + "templateId": "Quest:weeklyquest_tiered_completemissionalerts_t10", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "weeklyquestroll_09", + "completion_weeklyquest_tiered_completemissionalerts_t10": 2, + "quest_state": "Active", + "last_state_change_time": "2020-01-09T15:12:46.441Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": -1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "62e454f8-e4e3-42a1-bc80-c02eb9bdeac9": { + "templateId": "Quest:challenge_eldritchabominations_2", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 10, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-18T19:48:58.478Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "5c503769-97ed-482f-9352-ab60be7d6066": { + "templateId": "Quest:homebaseonboardinggrantschematics", + "attributes": { + "level": -1, + "item_seen": false, + "completion_questcomplete_outpostquest_t1_l1": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T19:09:06.461Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "08de9222-afea-4277-b310-35f04052ca07": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-F02.IconDef-WorkerPortrait-Dreamer-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsRangedDamageLow" + }, + "quantity": 1 + }, + "e629a63b-102a-4455-93eb-c3f77b0ed44a": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-F02.IconDef-WorkerPortrait-Curious-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCurious", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsShieldRegenLow" + }, + "quantity": 1 + }, + "488e0567-71e2-4df9-b63e-bdbb249223ba": { + "templateId": "Quest:tutorial_loadout_support5", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "completion_heroloadout_support5_guardscreen1": 1, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T22:04:36.298Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_heroloadout_support5_intro": 1, + "favorite": false + }, + "quantity": 1 + }, + "2ba92906-771e-4ab6-b9ac-bced4d6078db": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-M02.IconDef-WorkerPortrait-Dreamer-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsMeleeDamageLow" + }, + "quantity": 1 + }, + "f293d6b7-1ee5-466b-9c07-c37434e0d672": { + "templateId": "Worker:managergadgeteer_r_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": false, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Gadgeteer-M01.IconDef-ManagerPortrait-Gadgeteer-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsGadgeteer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "25de8383-9153-4518-b967-20cb73e1a135": { + "templateId": "Quest:genericquest_killminibosses_repeatable", + "attributes": { + "level": -1, + "item_seen": false, + "completion_kill_miniboss": 0, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-02-01T23:34:26.226Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "fa299ac9-0773-4ea0-a9dd-f2c93af322a7": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-F02.IconDef-WorkerPortrait-Pragmatic-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsRangedDamageLow" + }, + "quantity": 1 + }, + "4edf74f5-7581-41ac-9775-df839fada583": { + "templateId": "Quest:stonewoodquest_side_1_d3", + "variants": "w ", + "attributes": { + "completion_complete_whackatroll_1_diff3": 2, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-11T21:17:59.020Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "c7057ade-4996-4872-a6c8-7bcd27206950": { + "templateId": "Quest:challenge_workertraining_2", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-29T17:00:21.798Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_convert_any_worker": 1, + "favorite": false + }, + "quantity": 1 + }, + "92c604a8-0ddf-4482-b3e6-e65815b6b054": { + "templateId": "Quest:challenge_holdthedoor_10", + "attributes": { + "completion_complete_outpost": 6, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-24T17:45:25.849Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "e838d5b0-201d-48ea-9172-6174b5ddda05": { + "templateId": "Quest:stonewoodquest_fetch_stormcalls", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.893Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_stonewoodquest_fetch_stormcalls": 5, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "f74c7b5c-0798-4c36-bc08-9a7b9ad7a6b1": { + "templateId": "Quest:stonewoodquest_gathercollect_armoryupgrade", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_stonewoodquest_gathercollect_armoryupgrade": 7, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.898Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "99ff8835-10e5-4ae9-88d4-3fda3722fe98": { + "templateId": "HomebaseNode:questreward_newfollower5_slot", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "63af4d9b-ff40-4906-9491-c126fea64347": { + "templateId": "Quest:challenge_weaponupgrade_2", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-19T22:35:09.171Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_convert_any_weapon": 1, + "favorite": false + }, + "quantity": 1 + }, + "2a001fc6-76ef-4ba8-b50f-3b5245369e9d": { + "templateId": "Quest:reactivequest_poisonlobbers", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_quest_reactive_poisonlobbers": 10, + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T15:44:44.953Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "3d42206a-6645-4b48-9ae7-606fbfd4dca9": { + "templateId": "HomebaseNode:questreward_cannyvalley_squad_ssd1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3e70280d-e35d-430e-a31d-1949da1ba49a": { + "templateId": "Quest:plankertonquest_filler_2_d3", + "attributes": { + "completion_complete_delivergoods_2_diff3_v2": 1, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-20T17:53:51.712Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "90cc0ee5-7d68-4872-8362-ae34f3215d38": { + "templateId": "Quest:challenge_workertraining_1", + "attributes": { + "completion_upgrade_any_worker": 1, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-29T11:19:05.477Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "91200a39-13e7-463c-884c-7dbe70ca4891": { + "templateId": "HomebaseNode:questreward_evolution2", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "040b3ff0-2116-4b58-8b92-f078e2e8f960": { + "templateId": "Worker:managersoldier_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Marksman-F01.IconDef-ManagerPortrait-Marksman-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsSoldier", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "559f9441-f709-47df-b8e5-11660746c0c9": { + "templateId": "Quest:plankertonquest_fetch_searchingforlab", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_plankertonquest_fetch_searchingforlab": 7, + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.903Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "bcaed744-403b-4795-a6b3-3fcaba066519": { + "templateId": "Quest:reactivequest_radiostation", + "attributes": { + "completion_quest_reactive_radiostation": 5, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-15T19:08:15.543Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "bdc978bc-c70f-4fae-8eb9-e626e96fbf93": { + "templateId": "Quest:challenge_eldritchabominations_16", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 80, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-05T18:56:59.793Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "cfd3f607-d3ae-477e-91c8-4d9293dd79e0": { + "templateId": "Quest:stonewoodquest_filler_1_d3", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-06T19:22:15.685Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_evacuate_1_diff3": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "42814259-4183-42ab-b69a-4059b17509b1": { + "templateId": "HomebaseNode:questreward_expedition_speedboat", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "8bfde8d2-7f63-4706-92af-5c802b8ee352": { + "templateId": "Quest:weeklyquest_tiered_completemissionalerts_t12", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_weeklyquest_tiered_completemissionalerts_t12": 2, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "weeklyquestroll_10", + "quest_state": "Active", + "last_state_change_time": "2020-01-31T10:21:34.563Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": -1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "f0ddff25-463f-486a-b70a-188f15f7b170": { + "templateId": "HomebaseNode:questreward_newfollower4_slot", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "f07f49b8-fe90-4f86-bbd8-b88171240061": { + "templateId": "Token:hordepointstier1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "aa696475-f325-46e7-b575-22a7361e61f7": { + "templateId": "Worker:workerbasic_vr_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-F01.IconDef-WorkerPortrait-Dependable-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsMeleeDamageLow" + }, + "quantity": 1 + }, + "35e788e2-5c86-48e0-a1f8-bc9348eba190": { + "templateId": "Quest:challenge_defendertraining_2", + "attributes": { + "level": -1, + "item_seen": true, + "completion_convert_any_defender": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-26T15:28:43.102Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "c59d8607-5b20-4b2c-a13e-a456a577f610": { + "templateId": "Quest:challenge_missionaccomplished_3", + "attributes": { + "level": -1, + "completion_complete_primary": 4, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-28T10:48:17.508Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "8fcb9e83-436e-4024-9f51-51581490f61b": { + "templateId": "Quest:challenge_holdthedoor_19", + "attributes": { + "completion_complete_outpost": 11, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-30T13:01:58.186Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "fb809f77-4f99-4739-b7f8-5ce8c56d196d": { + "templateId": "Quest:stonewoodquest_tutorial_survivorslotting", + "attributes": { + "level": -1, + "item_seen": false, + "completion_survivorslotting_highlight_command": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.932Z", + "challenge_linked_quest_parent": "", + "completion_survivorslotting_tabcallout": 1, + "max_level_bonus": 0, + "xp": 0, + "completion_survivorslotting_guard_survivors": 1, + "favorite": false, + "completion_survivorslotting_guard_command": 1 + }, + "quantity": 1 + }, + "4a07af2a-004a-4838-a443-cc0205daaa1f": { + "templateId": "Worker:managermartialartist_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-MartialArtist-M01.IconDef-ManagerPortrait-MartialArtist-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsMartialArtist", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "fbb47a7e-c5c9-4c65-9997-ce52d68970a2": { + "templateId": "HomebaseNode:questreward_stonewood_squad_ssd4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "62bb087d-3e40-49bf-b8c6-79f676601f6e": { + "templateId": "Quest:challenge_leavenoonebehind_3", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 30, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-07T11:23:53.815Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "2ef0e81d-6654-4568-9793-fa51adf6c78c": { + "templateId": "HomebaseNode:questreward_buildingresourcecap2", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "239e9bfe-9790-4bc5-b424-da0c955b5ad0": { + "templateId": "Quest:challenge_missionaccomplished_18", + "attributes": { + "level": -1, + "completion_complete_primary": 11, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T22:59:48.606Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "fd7fcdec-db02-4ec3-88c2-0c186a9b5072": { + "templateId": "Quest:stonewoodquest_tutorial_levelup_defender", + "attributes": { + "completion_defenderupgrade_guard_heroes": 1, + "completion_defenderupgrade_tabcallout": 1, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_defenderupgrade_guard_command": 1, + "completion_defenderupgrade_highlight_command": 1, + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.931Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_defenderupgrade_intro_defenders": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "9a743651-900a-4bc9-a212-f9d85c151f92": { + "templateId": "HomebaseNode:questreward_stonewood_squad_ssd2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "91fdb812-230e-41d6-b6c0-9df855596bed": { + "templateId": "Quest:plankertonquest_filler_3_d1", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T01:02:16.418Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_launchballoon_2": 1, + "favorite": false + }, + "quantity": 1 + }, + "c8f3a7e3-27dd-4461-8a34-84efff727f5e": { + "templateId": "Worker:managerdoctor_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Doctor-F01.IconDef-ManagerPortrait-Doctor-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsDoctor", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "880397a8-074e-490d-a68d-c9f8bdf22e35": { + "templateId": "Quest:plankertonquest_filler_4_d3", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-26T16:39:22.244Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_relaysurvivor_2_diff3": 6, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "cc64f57b-2ccc-471b-8960-0c446ce1abfb": { + "templateId": "Quest:challenge_toxictreasures_6", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-28T19:01:43.366Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 4, + "favorite": false + }, + "quantity": 1 + }, + "3fc2bbf5-d3c5-493f-804d-ec319d2dd04e": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Adventurous-M03.IconDef-WorkerPortrait-Adventurous-M03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAdventurous", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "5bc2a936-b5a0-40fa-8e14-400690f79bea": { + "templateId": "Quest:challenge_leavenoonebehind_6", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 45, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-24T16:23:15.827Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "4ec610fb-d13e-43f4-b9ba-d20782627032": { + "templateId": "Token:homebasepoints", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "d0298d94-68c1-4e4d-b7d4-e0d9caa9b945": { + "templateId": "Quest:challenge_holdthedoor_16", + "attributes": { + "completion_complete_outpost": 9, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-29T18:04:52.748Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "ec93562e-7b11-4b19-92d3-e3d3e977fd9b": { + "templateId": "Quest:pickaxequest_stw003_tier_4", + "attributes": { + "level": -1, + "completion_pickaxequest_stw003_tier_4": 2, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-07T18:27:26.371Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "85d2db88-408d-40c1-954d-345b9fb8ff96": { + "templateId": "Quest:challenge_herotraining_3", + "attributes": { + "level": -1, + "item_seen": true, + "completion_upgraderarity_hero": 0, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-18T20:05:07.369Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "73e5c182-a185-466c-99e2-ece98dfde4e5": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-M02.IconDef-WorkerPortrait-Dependable-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "bf5cfe46-e2a3-4b5a-aeab-7698c3d48c98": { + "templateId": "Quest:challenge_eldritchabominations_7", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 35, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-29T17:44:04.394Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "f58dfae7-e754-41ea-b662-83a58c3bdea3": { + "templateId": "Quest:reactivequest_flingers", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-04T19:50:37.452Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_quest_reactive_flingers": 5, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "599f888e-8848-4d12-82b7-2fdd03e0ee99": { + "templateId": "Worker:workerbasic_vr_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-M02.IconDef-WorkerPortrait-Cooperative-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "bbc6a686-ef0c-4042-acac-c64c5d4bd13b": { + "templateId": "Quest:plankertonquest_landmark_lars", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "completion_plankertonquest_landmark_lars": 1, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.921Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "a2e7c5c1-8f33-4fa5-a17d-e7c0587aba6d": { + "templateId": "HomebaseNode:questreward_cannyvalley_squad_ssd5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dbf7296a-58ca-4c77-a227-cfaff6ff257d": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M02.IconDef-WorkerPortrait-Curious-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCurious", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "f49e1679-5590-4f27-8917-fbcfda4ef6db": { + "templateId": "Quest:stonewoodquest_retrievedata_d1", + "attributes": { + "level": -1, + "item_seen": true, + "completion_complete_retrievedata_1": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-26T18:33:47.875Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "edcd01ae-4555-4e26-adb5-0503006cdf59": { + "templateId": "Quest:challenge_toxictreasures_15", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-14T22:49:35.080Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 9, + "favorite": false + }, + "quantity": 1 + }, + "029f5e65-7c9e-42eb-818e-d810d29444ec": { + "templateId": "Quest:teamperkquest_superchargedtraps", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T18:23:32.077Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "b73efced-f16a-45f5-bfe6-10d523d9d8f1": { + "templateId": "HomebaseNode:questreward_pickaxe", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "d1180818-7756-4ba8-a115-8a018669e340": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-M02.IconDef-WorkerPortrait-Analytical-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "40fdd5f9-a745-4c80-a7da-25af172abfce": { + "templateId": "Quest:stonewoodquest_closegate_d1", + "attributes": { + "level": -1, + "item_seen": true, + "completion_complete_gate_1": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T20:10:06.097Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "e77ef3f3-7847-4277-b989-71ca7906da9a": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-M01.IconDef-WorkerPortrait-Competitive-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsRangedDamageLow" + }, + "quantity": 1 + }, + "b4841f82-8e97-4f7c-9630-1994d186ec8c": { + "templateId": "Quest:challenge_holdthedoor_3", + "attributes": { + "completion_complete_outpost": 3, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-28T10:24:04.378Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "078828d2-a77a-4078-8c64-57ad33d3bafe": { + "templateId": "Quest:teamperkquest_onetwopunch", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T21:59:29.342Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "631ed973-2027-4579-b19f-e5252ffcdbfc": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-M03.IconDef-WorkerPortrait-Pragmatic-M03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "3199a163-219f-4680-af07-61a3a4e3de3b": { + "templateId": "Quest:plankertonquest_filler_1_d1", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-24T18:53:43.142Z", + "completion_complete_gate_double_2": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "5e202149-d063-43e4-8632-e1c6cce36283": { + "templateId": "HomebaseNode:questreward_feature_skillsystem", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "e6cfdc79-e7d0-4e89-96cf-ad04ed75cc46": { + "templateId": "Quest:tutorial_loadout_gadgets", + "attributes": { + "completion_heroloadout_gadgets_guardscreen1": 1, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T22:04:32.059Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_heroloadout_gadgets_intro": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "706cac0c-951a-4618-84bc-947289a133f9": { + "templateId": "Token:research_respec", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "f45fd23d-73dd-4a4f-8a11-a6f5d2eafb2f": { + "templateId": "Quest:heroquest_loadout_ninja_2", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-02-01T23:34:21.004Z", + "completion_complete_pve03_diff3_loadout_ninja": 0, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "CosmeticLocker:cosmeticlocker_stw_1": { + "templateId": "CosmeticLocker:cosmeticlocker_stw", + "attributes": { + "locker_slots_data": { + "slots": { + "Pickaxe": { + "items": [ + "AthenaPickaxe:pickaxe_id_029_assassin" + ] + }, + "ItemWrap": { + "items": [ + "AthenaItemWrap:wrap_103_yatter", + "AthenaItemWrap:wrap_103_yatter", + "AthenaItemWrap:wrap_103_yatter", + "AthenaItemWrap:wrap_103_yatter", + "AthenaItemWrap:wrap_103_yatter", + "AthenaItemWrap:wrap_103_yatter", + "AthenaItemWrap:wrap_103_yatter", + null + ] + }, + "LoadingScreen": { + "items": [ + "AthenaLoadingScreen:lsid_163_smrocketride" + ] + }, + "Dance": { + "items": [ + "AthenaDance:eid_robot", + "AthenaDance:eid_dreamfeet", + "AthenaDance:eid_poplock", + "AthenaDance:eid_billybounce", + "AthenaDance:eid_ridethepony_athena", + "AthenaDance:eid_electroswing" + ] + }, + "MusicPack": { + "items": [ + "" + ] + }, + "Backpack": { + "items": [ + "AthenaBackpack:bid_stwhero" + ] + } + } + }, + "use_count": 0, + "banner_icon_template": "brs9worldcup2019", + "banner_color_template": "defaultcolor1", + "locker_name": "", + "item_seen": false, + "favorite": false + }, + "quantity": 1 + }, + "ced9fb94-5f9c-4141-904d-812246225c0c": { + "templateId": "HomebaseNode:questreward_mission_defender2", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "14ba6cd6-ba1c-4551-b567-4a898214d809": { + "templateId": "Quest:plankertonquest_mechanical_refuelintro", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.907Z", + "challenge_linked_quest_parent": "", + "completion_plankertonquest_mechanical_refuelintro": 1, + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "65eb4084-40d5-4704-93e7-92ffe9cb7e27": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 3, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-F03.IconDef-WorkerPortrait-Competitive-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "11c33812-ca22-4c8a-bcb7-8b88e8e5f26e": { + "templateId": "Quest:stonewoodquest_launchrocket_d5", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_complete_launchrocket_1": 1, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-19T21:12:00.500Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "66785908-ab69-4f69-939f-3a34fcb8cce7": { + "templateId": "Quest:heroquest_outlanderleadership", + "attributes": { + "level": -1, + "item_seen": false, + "completion_has_item_outlander": 0, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T18:57:06.741Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_unlock_skill_tree_outlander_leadership": 1, + "favorite": false + }, + "quantity": 1 + }, + "505a208e-4fdf-4c27-b38c-73ddfc43bb90": { + "templateId": "Quest:challenge_missionaccomplished_15", + "attributes": { + "level": -1, + "completion_complete_primary": 10, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-20T18:33:26.070Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "1843c67e-bc3e-4023-988d-74bde5d99d26": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Adventurous-M03.IconDef-WorkerPortrait-Adventurous-M03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAdventurous", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "1cd823e1-68e6-4513-a5e6-b82ea4716de2": { + "templateId": "Quest:challenge_eldritchabominations_4", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 20, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-22T17:02:09.631Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "aecaf308-c02e-4a0d-bdcc-5344338cb317": { + "templateId": "Quest:tutorial_loadout_preset1", + "attributes": { + "level": -1, + "completion_heroloadout_preset_guardscreen1": 1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T22:04:40.281Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_heroloadout_preset_highlight": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "101f1a83-9453-411a-bca2-95bc87d7c981": { + "templateId": "HomebaseNode:questreward_cannyvalley_squad_ssd4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "df19c602-e03d-479f-bd4d-2051af8d2f94": { + "templateId": "Quest:stonewoodquest_filler_1_d2", + "attributes": { + "completion_complete_pve01_diff2": 1, + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 3, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-26T18:09:35.170Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "9b60d943-2f82-4ed4-9148-9e553176655d": { + "templateId": "Quest:reactivequest_copperore", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T20:09:41.469Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_quest_reactive_copperore": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "ce22413f-44c2-401b-a2af-96fcffe7caf0": { + "templateId": "Quest:challenge_leavenoonebehind_17", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 31, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-14T17:13:23.591Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "26db3306-6d30-4a7a-841d-fae1afb9693b": { + "templateId": "Quest:challenge_missionaccomplished_19", + "attributes": { + "level": -1, + "completion_complete_primary": 12, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-30T17:03:22.172Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "e3622ca4-8eae-487b-8940-02d3a57dec99": { + "templateId": "Quest:plankertonquest_filler_3_d3", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_complete_anomaly_2_diff3_v2": 3, + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-23T14:34:39.020Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "6b1a3f67-9950-4017-a9a4-fd0316bd5759": { + "templateId": "HomebaseNode:questreward_expedition_propplane", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "89510765-be81-4ae5-9924-461c68301963": { + "templateId": "Quest:heroquest_ninjaleadership", + "attributes": { + "completion_unlock_skill_tree_ninja_leadership": 1, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "completion_has_item_ninja": 0, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T18:57:06.741Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "a68627cd-9730-48b0-862e-2b6c9939ed27": { + "templateId": "HomebaseNode:questreward_twinepeaks_squad_ssd1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "96000457-aa4c-4275-9fc7-a32faf8354da": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-M02.IconDef-WorkerPortrait-Pragmatic-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsResistanceLow" + }, + "quantity": 1 + }, + "6959e216-d078-4bd3-9d3f-40fe98a0afef": { + "templateId": "Quest:homebasequest_slotmissiondefender", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_questcomplete_stonewoodquest_filler_1_d3": 0, + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-26T18:58:00.599Z", + "completion_assign_defender_to_adventure_squadone": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "32ca28f0-8964-45f0-8376-5ffb3e5573a6": { + "templateId": "Quest:heroquest_loadout_soldier_1", + "attributes": { + "level": -1, + "item_seen": false, + "completion_complete_pve03_diff24_loadout_soldier": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-14T17:13:26.986Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "5b26e032-b9c2-4d83-aa58-87515e264f7c": { + "templateId": "Quest:stonewoodquest_mechanical_killhusks", + "attributes": { + "level": -1, + "completion_stonewoodquest_mechanical_killhusks_ranged": 20, + "completion_stonewoodquest_mechanical_killhusks_trap": 20, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.895Z", + "completion_stonewoodquest_mechanical_killhusks_melee": 20, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "7b036cb5-2a71-464d-bc2e-424c14a7f7f0": { + "templateId": "Quest:reactivequest_smasher", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-18T19:49:05.509Z", + "completion_quest_reactive_smasher": 5, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "44a35ac7-b556-4b36-af64-4999a3c716c9": { + "templateId": "Quest:reactivequest_supplyrun", + "attributes": { + "completion_complete_pve01_diff5": 2, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-18T20:05:07.366Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_quest_reactive_larssupplies": 4, + "favorite": false + }, + "quantity": 1 + }, + "358b125b-1b62-4283-ab5b-c24a064aa4c4": { + "templateId": "Quest:tutorial_loadout_support2", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "completion_heroloadout_support2_intro": 1, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T22:04:49.062Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_heroloadout_support2_guardscreen1": 1, + "favorite": false + }, + "quantity": 1 + }, + "296845f1-d4c1-471c-b82f-bd4dc0694e2f": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-M03.IconDef-WorkerPortrait-Analytical-M03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1, + "item_guid": " i" + }, + "3f151fbb-5e85-4d2f-973c-6e83e62168fd": { + "templateId": "Worker:managergadgeteer_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Gadgeteer-M01.IconDef-ManagerPortrait-Gadgeteer-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsGadgeteer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "b7af4591-6bfc-4402-b666-ba3b18d47e1a": { + "templateId": "Quest:teamperkquest_preemptivestrike", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T21:59:29.343Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "b1b4f70d-1537-40fe-aa71-6cf76e804a29": { + "templateId": "Quest:challenge_eldritchabominations_5", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 25, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-24T16:23:27.445Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "4758ebd3-7d69-423b-af6e-5427fc5821f2": { + "templateId": "Quest:stonewoodquest_side_1_d5", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 15, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-20T18:10:02.817Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_pve01_diff5_v2": 3, + "favorite": false + }, + "quantity": 1 + }, + "2e75d3ee-1802-472d-9fd7-b5b9c9154455": { + "templateId": "HomebaseNode:questreward_feature_reperk", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "73d5357c-59bb-4396-bc12-fb3b7e8f57b4": { + "templateId": "Quest:homebasequest_slotoutpostdefender", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_questcomplete_stonewoodquest_filler_1_d3": 0, + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-26T18:37:31.044Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_assign_defender": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "d22042cc-c2d2-442b-b601-851781e965d1": { + "templateId": "Quest:plankertonquest_filler_5_d3", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 15, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T19:10:28.591Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_powerreactor_2_diff3": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "4e802b5b-b926-4bb4-92ff-e56216992903": { + "templateId": "HomebaseNode:questreward_expedition_truck", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "1679e482-5145-44dd-a999-ec502e043b30": { + "templateId": "HomebaseNode:questreward_newheroloadout5_dummy", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "bdf3d8d5-06e9-4dcc-9aba-571edf36c02f": { + "templateId": "Worker:managerexplorer_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Explorer-M01.IconDef-ManagerPortrait-Explorer-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCurious", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsExplorer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "5963a3f6-96fb-41bc-b30e-7f065c596b37": { + "templateId": "HomebaseNode:questreward_evolution", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "827b052c-d91f-4602-a8a1-160f7debaf75": { + "templateId": "Quest:stonewoodquest_fetch_triangulatingpop", + "attributes": { + "completion_stonewoodquest_fetch_triangulatingpop": 5, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.900Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "70f3896c-d369-4fd2-be5e-974eafba59a9": { + "templateId": "Quest:challenge_toxictreasures_16", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T12:19:33.743Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 9, + "favorite": false + }, + "quantity": 1 + }, + "607ad331-cc3b-461d-915c-db24b89f68eb": { + "templateId": "Quest:challenge_missionaccomplished_9", + "attributes": { + "level": -1, + "completion_complete_primary": 7, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-07T10:48:33.553Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "8ebaf589-95ef-4fe2-9bf7-f9f8b075d288": { + "templateId": "Quest:challenge_upgradealteration", + "attributes": { + "completion_alteration_upgrade": 1, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-30T17:57:02.774Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "3eb22240-ceff-4fe8-a4ff-6310a31e18be": { + "templateId": "Quest:heroquest_outlander_2", + "attributes": { + "level": -1, + "item_seen": true, + "completion_complete_pve01_diff3_outlander": 3, + "sent_new_notification": true, + "completion_ability_outlander_fragment": 1, + "challenge_bundle_id": "", + "completion_upgrade_outlander_lvl_3": 1, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-08T18:15:11.323Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "07830a33-e11e-4187-9c10-e2b0461d04b6": { + "templateId": "HomebaseNode:questreward_buildingupgradelevel2", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "66c90371-414a-4a6a-a8f7-3a1f50599212": { + "templateId": "Worker:managertrainer_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-PersonalTrainer-M01.IconDef-ManagerPortrait-PersonalTrainer-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "2e0f2991-66e6-4d1d-947b-0ac0ea22e1a3": { + "templateId": "Quest:stonewoodquest_tutorial_survivorsquads", + "attributes": { + "item_seen": false, + "completion_survivorsquads_squadtilesguard": 1, + "completion_survivorsquads_commandguardaccount": 1, + "xp_reward_scalar": 1, + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.925Z", + "completion_survivorsquads_changeheroguard": 1, + "completion_survivorsquads_powerintro": 1, + "completion_survivorsquads_tabcallout": 1, + "completion_survivorsquads_survivorshighlight": 1, + "completion_survivorsquads_commandguardintro": 1, + "completion_survivorsquads_changeherointro": 1, + "completion_survivorsquads_levelintro": 1, + "level": -1, + "completion_survivorsquads_squadsguard": 1, + "completion_survivorsquads_squadsintro": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "challenge_linked_quest_given": "", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_survivorsquads_squadshighlight": 1, + "xp": 0, + "completion_survivorsquads_commandguardsquad": 1, + "favorite": false + }, + "quantity": 1 + }, + "8df84a10-484d-42fe-b0ac-7bd4f53aec0a": { + "templateId": "Quest:challenge_eldritchabominations_6", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 30, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T18:36:06.830Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "749cc1c2-74c0-4265-bcd3-4fe5f18a288b": { + "templateId": "Quest:challenge_holdthedoor_2", + "attributes": { + "completion_complete_outpost": 2, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T16:10:55.062Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "f1c2bcc3-cc1f-4c15-9459-b26820112ba3": { + "templateId": "HomebaseNode:questreward_plankerton_squad_ssd5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "e440e74a-c59b-4ed8-9278-712357d347e0": { + "templateId": "Quest:challenge_holdthedoor_9", + "attributes": { + "completion_complete_outpost": 6, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-19T16:36:09.856Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "056decfd-cd3c-491e-b5aa-dd020394843a": { + "templateId": "HomebaseNode:questreward_feature_traplevelup", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "a4842a13-0615-4487-8533-8a22f10e2e73": { + "templateId": "Quest:challenge_toxictreasures_8", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T12:02:23.018Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 5, + "favorite": false + }, + "quantity": 1 + }, + "d530c0bf-308e-45b5-8a12-2939fdb3e587": { + "templateId": "Quest:stonewoodquest_launchballoon_d1", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_complete_launchweatherballoon_1": 1, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T20:49:55.823Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "338a277c-0213-4c15-8f23-7bcc878ac008": { + "templateId": "HomebaseNode:questreward_stonewood_squad_ssd1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "0b0bdd19-8f17-4365-8a5d-fcca28959f0f": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-M02.IconDef-WorkerPortrait-Dreamer-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDamageLow" + }, + "quantity": 1 + }, + "b02a8f51-e47a-4cb3-8273-7ccb789569de": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-F01.IconDef-WorkerPortrait-Pragmatic-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsResistanceLow" + }, + "quantity": 1 + }, + "9f34b734-3851-430f-8b24-2a3c6871ca54": { + "templateId": "ConsumableAccountItem:smallxpboost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "fe8032de-98da-4011-800a-db4ba851db85": { + "templateId": "Quest:challenge_eldritchabominations_19", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "completion_kill_husk_smasher": 95, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-21T14:27:18.800Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "33b9a594-0f17-4898-bb3f-dbc50d7a8610": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-F03.IconDef-WorkerPortrait-Cooperative-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "2a6aa9c4-808d-4db1-95b2-d0bdd025bc7a": { + "templateId": "Quest:stonewoodquest_tutorial_levelup_weapon", + "attributes": { + "level": -1, + "completion_schematicupgrade_armoryguard": 1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.928Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_schematicupgrade_tabcallout": 1, + "favorite": false + }, + "quantity": 1 + }, + "30789ea2-1bc0-4cce-8ecb-10253fd38270": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Adventurous-F02.IconDef-WorkerPortrait-Adventurous-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAdventurous", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDamageLow" + }, + "quantity": 1 + }, + "36b1df04-2669-4c6a-bf41-5b0dfc954fe2": { + "templateId": "Quest:reactivequest_blasters", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T18:08:19.563Z", + "completion_quest_reactive_blasters": 10, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "18bddeaf-03f3-41c7-96c8-a9483308f787": { + "templateId": "HomebaseNode:skilltree_buildinghealth", + "attributes": { + "item_seen": false + }, + "quantity": 8 + }, + "f613b590-f312-4358-9250-393412059338": { + "templateId": "HomebaseNode:questreward_newheroloadout3_dummy", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "d6752f39-517f-414e-9d85-b2b986a74312": { + "templateId": "Quest:reactivequest_seebot", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-23T17:59:10.748Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_quest_reactive_seebotv2": 5, + "favorite": false + }, + "quantity": 1 + }, + "84370011-e8ad-427a-ab3c-ef87049fab96": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-F02.IconDef-WorkerPortrait-Cooperative-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDamageLow" + }, + "quantity": 1 + }, + "261eaabe-03a1-4e09-9c08-4b68a1be7d7b": { + "templateId": "Worker:managerdoctor_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Doctor-F01.IconDef-ManagerPortrait-Doctor-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsDoctor", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "ea489ab3-f82f-49d8-81a1-d85fcf761066": { + "templateId": "Quest:challenge_leavenoonebehind_13", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 85, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-24T20:29:28.801Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "ec8ae2ea-82ee-4f11-a745-6131d54fe850": { + "templateId": "HomebaseNode:questreward_expedition_propplane3", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "856d6ee6-5061-4595-888b-598aaf92ead9": { + "templateId": "Quest:challenge_leavenoonebehind_8", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 55, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T19:44:35.706Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "87c115dc-c519-4a43-a672-680d7e66fa29": { + "templateId": "Quest:challenge_holdthedoor_13", + "attributes": { + "completion_complete_outpost": 8, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-04T18:18:37.863Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "31020120-d7a4-4af5-baa8-e7d749abea88": { + "templateId": "HomebaseNode:questreward_herotactical_slot", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "56809215-b68e-4be1-9c76-88741405b8f5": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-F02.IconDef-WorkerPortrait-Analytical-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsMeleeDamageLow" + }, + "quantity": 1 + }, + "68cb8cbb-2b1e-4f1d-93f4-b6743bc5ba21": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-F03.IconDef-WorkerPortrait-Cooperative-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "86d5879e-1701-445e-ba63-93c161d53035": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-F03.IconDef-WorkerPortrait-Curious-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCurious", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDamageLow" + }, + "quantity": 1 + }, + "0c33cccd-9212-4c77-a8d9-10f1c545124d": { + "templateId": "Quest:pickaxequest_stw001_tier_1", + "attributes": { + "level": -1, + "item_seen": false, + "completion_questcomplete_outpostquest_t1_l1": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-07T18:26:49.543Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "17e67b01-b4da-4bc9-9570-c156494cd652": { + "templateId": "HomebaseNode:questreward_homebase_defender2", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "11c688d1-05e8-40f3-950e-f8cc32686a0e": { + "templateId": "Quest:challenge_toxictreasures_17", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-25T12:19:33.746Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 0, + "favorite": false + }, + "quantity": 1 + }, + "b3b7497d-0c27-4c87-9460-add635f4c570": { + "templateId": "Quest:challenge_holdthedoor_11", + "attributes": { + "completion_complete_outpost": 7, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-30T01:29:45.428Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "2a97f947-9edf-49a1-b6fd-869b17922e8e": { + "templateId": "HomebaseNode:questreward_mission_defender", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "15c1c2ef-77a9-4927-ad32-1ac62831847f": { + "templateId": "Quest:challenge_leavenoonebehind_11", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 75, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T21:04:57.821Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "80bd8f52-44db-4dc7-8b7f-84bcfad62e85": { + "templateId": "Quest:challenge_toxictreasures_10", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-10T19:38:44.658Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 6, + "favorite": false + }, + "quantity": 1 + }, + "207e6583-3328-46bc-9162-0d98e9ac8bdf": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-M02.IconDef-WorkerPortrait-Competitive-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDamageLow" + }, + "quantity": 1 + }, + "6d9b42ca-196c-476b-be92-1bda0b1baa07": { + "templateId": "HomebaseNode:questreward_buildingupgradelevel", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "e474aff0-c4ef-4670-917f-78f9c1bd82a2": { + "templateId": "Quest:stonewoodquest_tutorial_upgrade", + "attributes": { + "level": -1, + "item_seen": false, + "completion_upgrades_guard_upgrades": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_upgrades_tabcallout": 1, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.929Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_upgrades_highlight": 1, + "completion_upgrades_guard_command": 1, + "completion_upgrades_intro": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "40dbfea8-9363-4c7a-9565-0ea18c863649": { + "templateId": "HomebaseNode:questreward_expedition_propplane2", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "ed3dfaf4-3485-4020-9272-f019f29dc7b9": { + "templateId": "Quest:outpostquest_firstopen_endless", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "completion_complete_endless_firstopen": 0, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-09T15:12:41.064Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "abb1f8f0-602e-48da-857e-a06e7efeed25": { + "templateId": "Quest:achievement_playwithothers", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-25T18:55:36.621Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_quick_complete": 226, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "c300a4a9-a57e-4d91-8458-af95dfcb3616": { + "templateId": "Quest:plankertonquest_filler_1_d5", + "attributes": { + "level": -1, + "item_seen": true, + "completion_complete_gate_triple_2_diff5": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_questcomplete_plankertonquest_landmark_plankharbor": 0, + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-09T17:24:14.790Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "0d0d8fb9-f973-4551-bd2a-008ef50343df": { + "templateId": "Quest:stonewoodquest_tutorial_collectionbook", + "attributes": { + "completion_cb_tabcallout": 1, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_cb_intro": 1, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.932Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_cb_guard_armory": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "05fe7c3f-c10c-43a5-a06b-8374e4a769e8": { + "templateId": "Quest:teamperkquest_roundtrip", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T21:59:29.342Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "2905dc9e-1812-4e3c-9e28-0a09319043ef": { + "templateId": "Quest:challenge_eldritchabominations_17", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "completion_kill_husk_smasher": 85, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-09T16:16:35.364Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "b43ecef9-c129-4242-9c49-e67cfe08e15e": { + "templateId": "Quest:plankertonquest_filler_6_d4", + "attributes": { + "completion_complete_gate_2_diff4": 1, + "completion_complete_gate_double_2_diff4": 1, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-08T12:36:29.095Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "14f7991e-e601-4b28-ad57-08fc603d1ddf": { + "templateId": "Worker:workerbasic_vr_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-M01.IconDef-WorkerPortrait-Cooperative-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsRangedDamageLow" + }, + "quantity": 1 + }, + "33c857c8-1c2e-4244-83ae-b69643da922b": { + "templateId": "Quest:plankertonquest_filler_5_d2", + "attributes": { + "level": -1, + "item_seen": true, + "completion_complete_medbot_2_diff2": 3, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-02T15:38:24.378Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "8aa8e985-efe9-4643-b039-72077c44f310": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Adventurous-F03.IconDef-WorkerPortrait-Adventurous-F03", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAdventurous", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsResistanceLow" + }, + "quantity": 1 + }, + "d12a84af-643b-4ecd-8f6f-7318d5959c9a": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-F02.IconDef-WorkerPortrait-Dreamer-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsResistanceLow" + }, + "quantity": 1 + }, + "7725f08a-05e9-43bc-9c83-114ebf8ba631": { + "templateId": "Quest:heroquest_soldier_2", + "attributes": { + "level": -1, + "item_seen": true, + "completion_kill_husk_commando_fraggrenade": 10, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-26T18:03:39.134Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "ccc50718-df09-4660-bb5b-96bc91297e96": { + "templateId": "Quest:tutorial_loadout_support4", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T22:04:41.748Z", + "completion_heroloadout_support4_intro": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_heroloadout_support4_guardscreen1": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "97748e1e-20e9-4018-8ab2-d97b6701a6f9": { + "templateId": "Quest:teamperkquest_nevertellmetheodds", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T21:59:29.342Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "ab8e088d-0b5c-4413-a41d-87bc93bdf89c": { + "templateId": "Quest:plankertonquest_filler_1_d3", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-16T14:06:36.458Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_stormchest_2_diff3": 1, + "favorite": false + }, + "quantity": 1 + }, + "3944815f-2565-4fd7-ae55-434fa95b3cf3": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-M01.IconDef-WorkerPortrait-Dreamer-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "12f69348-ec91-4fe4-bf6a-77b832f0a3d5": { + "templateId": "Quest:plankertonquest_filler_1_d4", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-28T16:19:00.977Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_evacuateshelter_2_diff4_v2": 1, + "favorite": false + }, + "quantity": 1 + }, + "a14a62a7-cf96-43b3-97bd-76cd47330c85": { + "templateId": "HomebaseNode:questreward_expedition_speedboat2", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "96d9741e-6d70-4616-815a-c73ce79350e7": { + "templateId": "Quest:challenge_replacealteration", + "attributes": { + "level": -1, + "item_seen": false, + "completion_alteration_respec": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-30T17:56:17.305Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "46485ab6-c26a-4f2c-aa38-1a1945dd1176": { + "templateId": "Quest:stonewoodquest_side_1_d4", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_quick_complete_pve01": 2, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-18T21:10:28.252Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "b3f8086b-c528-4e01-a934-22b028c5e4f6": { + "templateId": "Token:upgrades_respec", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "c5415984-bd79-47e9-8cea-416bafb61bf0": { + "templateId": "HomebaseNode:skilltree_backpacksize", + "attributes": { + "item_seen": false + }, + "quantity": 8 + }, + "b57cf67b-b64d-484f-a17e-233d806f7dd9": { + "templateId": "HomebaseNode:skilltree_pickaxe", + "attributes": { + "item_seen": false + }, + "quantity": 8 + }, + "4b5137f1-89e7-4a73-be24-e8299d2218bb": { + "templateId": "Quest:achievement_destroygnomes", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-31T00:55:38.040Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_destroy_gnome": 100, + "favorite": false + }, + "quantity": 1 + }, + "59049d16-1111-42ee-9ae5-88728bce5c64": { + "templateId": "Quest:genericquest_killfirehusks_repeatable", + "attributes": { + "completion_kill_husk_ele_fire": 63, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-20T18:44:07.280Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "bf9c90f1-55ba-4f26-9062-cea5421637c6": { + "templateId": "Quest:stonewoodquest_tutorial_research", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "completion_research_highlight": 1, + "challenge_bundle_id": "", + "completion_research_tabcallout": 1, + "completion_research_guard_command": 1, + "completion_research_intro": 1, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_research_guard_research": 1, + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.930Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "c34bab19-05cc-40ee-808e-f24d2b0262f2": { + "templateId": "Quest:challenge_holdthedoor_6", + "attributes": { + "completion_complete_outpost": 4, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-06T20:15:11.749Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "b5e20436-791a-44bf-8dc0-c717e7b4a1b6": { + "templateId": "Quest:challenge_missionaccomplished_14", + "attributes": { + "level": -1, + "completion_complete_primary": 9, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-19T16:36:14.721Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "31454abc-1f27-4766-b1ac-4415faf58d41": { + "templateId": "Token:battlebreakers_reward_ramirezhero", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "a1be7e0d-30ce-485b-83d4-dfd150db3e2d": { + "templateId": "HomebaseNode:questreward_plankerton_squad_ssd1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "334fc40b-a5c8-43ac-86a5-eb8500e0359e": { + "templateId": "Quest:challenge_holdthedoor_18", + "attributes": { + "completion_complete_outpost": 10, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-11T16:06:13.264Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "7c5f1830-15b0-459b-9fff-b0b0215af740": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-M01.IconDef-WorkerPortrait-Analytical-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsAnalytical", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsResistanceLow" + }, + "quantity": 1 + }, + "7fe23a65-e5b8-42b3-89f7-eaef3956a203": { + "templateId": "Quest:reactivequest_trollstash_r1", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-24T19:20:57.812Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_quest_reactive_trollstashinit": 1, + "favorite": false + }, + "quantity": 1 + }, + "ab95decc-7f4c-438a-b33f-b57f4201ff33": { + "templateId": "Quest:tutorial_loadout_commander", + "attributes": { + "level": -1, + "completion_heroloadout_commander_guardscreen1": 1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T22:04:48.895Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_heroloadout_commander_highlight": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "0426b693-3e94-4298-88df-f187393599d2": { + "templateId": "HomebaseNode:questreward_homebase_defender3", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "ad941198-09bd-48c1-80de-dd1e3492e7bb": { + "templateId": "Quest:endurancewave30theater01", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-24T16:38:06.807Z", + "completion_endurancewave30theater01_completion": 0, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "65ff37f6-ff7c-4907-9347-f686831141c5": { + "templateId": "Quest:challenge_toxictreasures_3", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-22T18:01:32.871Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_mimic": 3, + "favorite": false + }, + "quantity": 1 + }, + "ff4808a9-fb09-4508-bdee-197c8e9e8101": { + "templateId": "Quest:stonewoodquest_fetch_directorstuff", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "completion_stonewoodquest_fetch_directorstuff": 5, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-17T12:16:44.901Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "007baa35-351f-49e3-bf39-2e30a1790363": { + "templateId": "Quest:reactivequest_findpop", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_quest_reactive_findpop": 3, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T16:19:28.865Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "90c654b2-6c65-4031-95f9-bbdebd0dd63c": { + "templateId": "Quest:challenge_eldritchabominations_10", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 50, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-05T20:00:24.965Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "ececc9a7-8f1d-4f32-8809-1396133ed6eb": { + "templateId": "Quest:reactivequest_elemhusky", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "max_quest_level": "n ", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-11T17:41:52.577Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_quest_reactive_elemhusky": 10, + "favorite": false + }, + "quantity": 1 + }, + "fecdba79-9396-42f6-bf8d-9fbfdac0b307": { + "templateId": "HomebaseNode:skilltree_stormshieldstorage", + "attributes": { + "item_seen": false + }, + "quantity": 8 + }, + "0622055f-529b-4380-a32a-9569c203d550": { + "templateId": "Quest:genericquest_killwaterhusks_repeatable", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-20T18:44:07.280Z", + "completion_kill_husk_ele_water": 2, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "fe15faf6-7f06-43d4-a860-966c0ca40d07": { + "templateId": "Quest:challenge_leavenoonebehind_5", + "attributes": { + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 40, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-19T23:26:07.268Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "aa5e4f23-fee1-4399-a640-e6983121f407": { + "templateId": "Quest:heroquest_loadout_constructor_1", + "attributes": { + "level": -1, + "item_seen": false, + "completion_complete_pve01_diff24_loadout_constructor": 0, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "last_state_change_time": "2020-01-14T17:13:26.986Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "54ccf2c8-f0d0-4eb0-90bd-cedf02250d14": { + "templateId": "Quest:plankertonquest_filler_2_d2", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_complete_destroyencamp_2_diff2": 1, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T14:01:55.046Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "76303693-e9a5-46b5-82db-34e2754c777c": { + "templateId": "Quest:challenge_eldritchabominations_12", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 60, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-15T19:53:55.671Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "85ee80b5-c9a4-405a-b545-e17f0498a73b": { + "templateId": "Worker:managerexplorer_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Explorer-M01.IconDef-ManagerPortrait-Explorer-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCurious", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsExplorer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "d5773e44-bf68-4472-912b-2b818b37c9b9": { + "templateId": "Worker:managersoldier_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Marksman-M01.IconDef-ManagerPortrait-Marksman-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsSoldier", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "4e54a354-9cdd-452b-955a-3ad1b3efce7c": { + "templateId": "Quest:challenge_missionaccomplished_20", + "attributes": { + "level": -1, + "completion_complete_primary": 12, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-01T00:04:07.797Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "777cae36-ea4f-4328-bc79-19284bb5aab9": { + "templateId": "Quest:reactivequest_gatherfood", + "attributes": { + "completion_quest_reactive_gatherfood": 8, + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-29T15:39:46.001Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "4505e84c-20d4-477c-9022-2f05fe30e9d0": { + "templateId": "Quest:reactivequest_taker", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-18T22:20:41.823Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_quest_reactive_taker": 5, + "favorite": false + }, + "quantity": 1 + }, + "a6727d84-e065-4a3b-9363-b4f3f40c2421": { + "templateId": "HomebaseNode:questreward_newfollower1_slot", + "attributes": { + "item_seen": false + }, + "quantity": 1 + }, + "42b817f3-90de-489f-ac61-ea205e679165": { + "templateId": "Quest:pickaxequest_stw007_basic", + "attributes": { + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-07T18:27:15.279Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_questcomplete_stonewoodquest_closegate_d1": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "eca89f38-ccec-475e-8bb5-50b992f90a6a": { + "templateId": "Quest:challenge_eldritchabominations_11", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "completion_kill_husk_smasher": 55, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-10T13:25:47.514Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "fe856a8b-d024-4360-ae09-abd3e7c4a770": { + "templateId": "Quest:achievement_craftfirstweapon", + "attributes": { + "completion_custom_craftfirstweapon": 1, + "level": -1, + "item_seen": false, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-25T18:54:08.874Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "912b4fca-3f14-484c-a2ec-5cc09e90af19": { + "templateId": "Stat:resistance_team", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 224 + }, + "06ce3df0-1405-4d1e-8d30-2a641a109afe": { + "templateId": "HomebaseNode:questreward_cannyvalley_squad_ssd2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "75538f27-26f3-4c54-9eda-764fa5a5e839": { + "templateId": "HomebaseNode:t1_main_ba01a2361", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f47db304-71ad-40f9-b871-98d59d34fcf8": { + "templateId": "HomebaseNode:startnode_commandcenter", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7cc171a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:t1_main_38e8a5bf4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7efc171a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:T1_Main_AD1499E010", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7ef1b71a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:T1_Main_27C02FC60", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7egsac171a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:T1_Main_0011CCD10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7egnnb71a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:T1_Main_904080840", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7eghaab171a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:T1_Main_609C8A9A8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7agnhghaab171a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:T1_Main_9FDB916E6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "barghgnhghaab171a1-eed0-411c-994d-asdgtaa35532": { + "templateId": "HomebaseNode:T1_Main_3FFC8E9D7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "c437b5b9-b0a6-4c0b-ba70-b660cdf20fe9": { + "templateId": "HomebaseNode:t1_main_8d2c3c4d0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5036da7c-c2be-4974-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:t1_main_fabc7c290", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5036gayc-c2be-4974-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_B1AEF23D10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5036flipflopc-c2be-4974-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_498AB88F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5036da7c-faggfgfg-4974-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_E05F04D75", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5036da7c-faggfgfdfgdfgfdgdffdg74-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_849930D55", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5036da7c-faggfgfdfgddgdffdg74-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_B1A3A3771", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sdfdsfsdsdaiwa387r87a8fgfdfgddgdffdg74-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_77F7B7826", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sdfdsfsdsdaiwa387r87a8fgfdfgdgsdeeetfdg74-98v5-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_0336AC827", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sdfdsfsdsdaiwa387r87a8fgfdfgddgdfggbaaag-98v5-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_0ABACB4E2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sdfdsfaaiwa387r87a8fgfdfgddgdfggbaaag-98v5-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_702F364C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sdfdsfaaiwa387r87a8fgfdfgddgdfggbaaag-9gg-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_243215D30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "as384-ep4f-gd6857-qwwg": { + "templateId": "HomebaseNode:T1_Main_0CBF7FEC0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9xq94-7p11-f2a3e2-ax7q": { + "templateId": "HomebaseNode:T1_Main_38EAD7850", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "csdh7-euqd-58rs9l-oyc3": { + "templateId": "HomebaseNode:T1_Main_BD2B45B61", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8z6nh-9pq9-ph1770-e8af": { + "templateId": "HomebaseNode:T1_Main_A16A56111", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m4gby-2teq-43w2g5-ilms": { + "templateId": "HomebaseNode:T1_Main_7A5E40920", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9rpvc-iy5d-971a7r-zks2": { + "templateId": "HomebaseNode:T1_Main_195C3EF52", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "12ggc-x1n6-yimqgz-oef9": { + "templateId": "HomebaseNode:T1_Main_92E3E2179", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "oy4ei-0um7-zowu3n-sxf2": { + "templateId": "HomebaseNode:T1_Main_254CFA5515", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k09xd-ew7a-8fgbv8-ksra": { + "templateId": "HomebaseNode:T1_Main_C06961E711", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5t2g2-stk9-v0h5nf-9f9u": { + "templateId": "HomebaseNode:T1_Main_266068670", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bx0ls-csxr-ovbqr0-wmqa": { + "templateId": "HomebaseNode:T1_Main_59607C6F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1l6o0-fquw-v69k99-d3ro": { + "templateId": "HomebaseNode:T1_Main_2546ECFC0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hh5in-qiyk-ywv7o2-n7ak": { + "templateId": "HomebaseNode:T1_Main_A7E71BED0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2iky3-9swf-ykrxur-h1t1": { + "templateId": "HomebaseNode:T1_Research_0B612C970", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gzixo-83fl-w62hqb-xk3y": { + "templateId": "HomebaseNode:T1_Research_A157C8E30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vn3d1-287m-swxus6-6a0a": { + "templateId": "HomebaseNode:T1_Research_A4F269D10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nws5v-l3q9-wd7ts8-rfan": { + "templateId": "HomebaseNode:T1_Research_248FC3870", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "i8tb8-q4cv-hqsrkf-349w": { + "templateId": "HomebaseNode:T1_Research_3E28BB331", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xo0ie-z30w-ug8q90-r0x7": { + "templateId": "HomebaseNode:T1_Research_D2CE27910", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vb2bn-eg0l-o8d9kt-7rzn": { + "templateId": "HomebaseNode:T1_Research_8707AF440", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7iolb-mfyv-wmq73w-k8t7": { + "templateId": "HomebaseNode:T1_Research_C3D05C4B2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dozrf-yw3e-m8ai5x-1thf": { + "templateId": "HomebaseNode:T1_Research_1BC2BE641", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ux0h1-bcfh-lbg0gu-wadw": { + "templateId": "HomebaseNode:T1_Research_6114FC651", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nk9g2-ciz0-qkdqi2-ld6k": { + "templateId": "HomebaseNode:T1_Research_AD50DB9E1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ku562-zf0m-da0qfg-3f4g": { + "templateId": "HomebaseNode:T1_Research_B543610A1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "q2rm4-fh03-ldh47d-v66w": { + "templateId": "HomebaseNode:T1_Research_EECD426C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yncqh-xlrv-2yadch-5gvx": { + "templateId": "HomebaseNode:T1_Research_700F196A3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "e50uq-wyqn-yvqzgo-2kbt": { + "templateId": "HomebaseNode:T1_Research_A8DB35494", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qamzx-mo4h-5azza8-csd8": { + "templateId": "HomebaseNode:T1_Research_11C82B1D0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bx7m5-xtc5-ocq7ec-n4q2": { + "templateId": "HomebaseNode:T1_Research_F01D00360", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "0mewm-kzrd-slyvgl-x4s8": { + "templateId": "HomebaseNode:T1_Research_B5B8EB7C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "exl8k-3otw-9te82s-8gl2": { + "templateId": "HomebaseNode:T1_Research_E9F394960", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f596l-yv16-idoo0y-0nar": { + "templateId": "HomebaseNode:T1_Research_43A8F68C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tyk5q-5o7p-6mlibx-clyd": { + "templateId": "HomebaseNode:T1_Research_7382D2480", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1i24d-dxe1-db8zol-s01m": { + "templateId": "HomebaseNode:T1_Research_B0D9537A1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1tq57-cziz-q05nzv-3onc": { + "templateId": "HomebaseNode:T1_Research_A5CF39400", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "27hzw-uwcl-i5yqvk-o6s6": { + "templateId": "HomebaseNode:T1_Research_5201143F2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l2fff-p4ee-n29iqg-aiz2": { + "templateId": "HomebaseNode:T1_Research_369E5EAC1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1elbm-1lex-9u4ebf-5y33": { + "templateId": "HomebaseNode:T1_Research_790BDD533", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lsexf-ompq-2ncsvl-0uqz": { + "templateId": "HomebaseNode:T1_Research_307838811", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "62noq-u7qe-uhdcw1-6r1e": { + "templateId": "HomebaseNode:T1_Research_2D0F29AB1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "swk18-yl4b-12lr82-n86x": { + "templateId": "HomebaseNode:T1_Research_1538CA901", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k71dw-lnb2-k3i7ca-ym88": { + "templateId": "HomebaseNode:T1_Research_ED5B34D91", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "517r1-qqtf-h6qrpb-koe7": { + "templateId": "HomebaseNode:T1_Research_04B2A68A4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ozs6c-tguf-p31dsn-m12f213": { + "templateId": "HomebaseNode:TRTrunk_1_0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ozs6c-tguf-p31dsn-m12f": { + "templateId": "HomebaseNode:TRTrunk_1_1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "llfcn-op8h-sg28h7-f8sa": { + "templateId": "HomebaseNode:TRTrunk_2_0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "abn83-q9fw-ozh0b6-wpmi": { + "templateId": "HomebaseNode:T1_Main_B4F394680", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7tzof-t1v5-qahzxt-es6g": { + "templateId": "HomebaseNode:T1_Main_3E84C12D0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "s6h8k-i91p-zwu6vh-ixx2": { + "templateId": "HomebaseNode:T1_Main_0D681A741", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l64os-01ir-x6giy2-egel": { + "templateId": "HomebaseNode:T1_Main_E9C41E050", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dew0y-rxsy-5z5e8l-oc9g": { + "templateId": "HomebaseNode:T1_Main_88F02D792", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "t5y06-uq74-tvvq7z-62qt": { + "templateId": "HomebaseNode:T1_Main_FD10816B3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gzmc5-opdt-uznucy-lrpw": { + "templateId": "HomebaseNode:T1_Main_DCB242B70", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6ygll-u5yk-ndzs9a-mkn7": { + "templateId": "HomebaseNode:T1_Main_D0B070910", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dgec8-5ufp-ircyzt-q8w6": { + "templateId": "HomebaseNode:T1_Main_BF8F555F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5hb20-1tka-mc0blt-xinh": { + "templateId": "HomebaseNode:T1_Main_2E3589B80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "koamq-5f1a-80emkd-kihd": { + "templateId": "HomebaseNode:T1_Main_8991222D1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pp93v-qwwb-d1x28t-dfd1": { + "templateId": "HomebaseNode:T1_Main_911D30562", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "go41u-cs2t-kc2xo8-vb26": { + "templateId": "HomebaseNode:T1_Main_D1C9E5993", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6mxyh-3typ-fybdoe-u3uh": { + "templateId": "HomebaseNode:T1_Main_826346530", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ll40o-7tab-9rhbn2-w8pg": { + "templateId": "HomebaseNode:T1_Main_F681AB1F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f37k2-yvb7-2i5yku-ql7r": { + "templateId": "HomebaseNode:T1_Main_1637F10C4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ed3og-vkms-cyhi50-pvw6": { + "templateId": "HomebaseNode:T1_Main_2996F5C10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k8sbl-4ug3-70apyd-n0le": { + "templateId": "HomebaseNode:T1_Main_58591E630", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "km3tx-lngu-w478vl-6oxw": { + "templateId": "HomebaseNode:T1_Main_8A41E9920", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "uw7k9-cxos-90dek8-op1p": { + "templateId": "HomebaseNode:T1_Main_0828407D3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lovb8-vrx7-n59778-gik6": { + "templateId": "HomebaseNode:T1_Main_566BFEA11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ikgkq-3nhw-pvrkdt-ygih": { + "templateId": "HomebaseNode:T1_Main_F1EB76072", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7lmmz-9pnc-rwr6r8-0wb2": { + "templateId": "HomebaseNode:T1_Main_448295574", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hgz4k-517m-x1bto6-54vg": { + "templateId": "HomebaseNode:T1_Main_FF2595300", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1v72p-uahx-awnzqd-csum": { + "templateId": "HomebaseNode:T1_Main_1B6486FC0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p9bxu-45ed-6ov583-h1vc": { + "templateId": "HomebaseNode:T1_Main_4BDCB2465", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "31wg4-6ca5-hsu2m4-1pe4": { + "templateId": "HomebaseNode:T1_Main_986B7D201", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pp2m3-moi0-1bm516-yv6d": { + "templateId": "HomebaseNode:T1_Main_AD1D66991", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "r4y8v-2d9p-u1awpm-ttuy": { + "templateId": "HomebaseNode:T1_Main_F6FA8ECB3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fvhof-5vx7-22qevm-lb5d": { + "templateId": "HomebaseNode:T1_Main_8B125D0F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9a99l-infp-ldlq4t-km1x": { + "templateId": "HomebaseNode:T1_Main_D4ED4A3C4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1hfk2-uirw-1l1gl4-6dkf": { + "templateId": "HomebaseNode:T1_Main_FAEE79B10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o108e-l7rq-i0c4xd-5iqp": { + "templateId": "HomebaseNode:T1_Main_5FAA4C765", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "64z9k-o4rw-hkvu0d-w1f1": { + "templateId": "HomebaseNode:T1_Main_82EFDDB312", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T1Defender2": { + "templateId": "HomebaseNode:T1_Main_2051EFB31", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T1Defender3": { + "templateId": "HomebaseNode:T1_Main_6E6F74400", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T1_Main_7064C2440": { + "templateId": "HomebaseNode:T1_Main_7064C2440", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T1_Main_4658A42D3": { + "templateId": "HomebaseNode:T1_Main_4658A42D3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T1_Main_20D6FB134": { + "templateId": "HomebaseNode:T1_Main_20D6FB134", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T1_Main_640195112": { + "templateId": "HomebaseNode:T1_Main_640195112", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6b4kq-p5ye-u67vry-ninb": { + "templateId": "HomebaseNode:T2_Main_A3A5DA870", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vxnom-zxsx-pya6k3-d3yu": { + "templateId": "HomebaseNode:T2_Main_FB4378A61", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rqlpu-7kcm-3ttxgm-869d": { + "templateId": "HomebaseNode:T2_Main_25EFB8C70", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pbyln-xmvh-h6v4wp-0zqc": { + "templateId": "HomebaseNode:T2_Main_B8E0A6A91", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p5wae-f4vl-9f2u5z-88na": { + "templateId": "HomebaseNode:T2_Main_41217F7D2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "02g3i-g3ht-33b6k3-7982": { + "templateId": "HomebaseNode:T2_Main_FE2869370", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5kcou-c4wi-cd07f6-1xfm": { + "templateId": "HomebaseNode:T2_Main_19A17BDE3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2tqp7-tqum-05ap0x-6w7s": { + "templateId": "HomebaseNode:T2_Main_D20A597A4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "krcg7-17lp-v0dbzh-5sec": { + "templateId": "HomebaseNode:T2_Main_6BEDE9B65", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nez6r-qyat-8k872v-7e94": { + "templateId": "HomebaseNode:T2_Main_A0995FCB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ucbp8-80tg-rhyfwy-bizg": { + "templateId": "HomebaseNode:T2_Main_2367C82F1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ml5ms-v17q-ozhisn-hkce": { + "templateId": "HomebaseNode:T2_Main_B8A9E7CC2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "13n4h-vdpk-r6t9qe-kong": { + "templateId": "HomebaseNode:T2_Main_F782A9CF3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wdmt8-d7o1-e77bl3-dqq3": { + "templateId": "HomebaseNode:T2_Main_BAAA5FA10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p52z6-d7su-ldt9g5-hpyt": { + "templateId": "HomebaseNode:T2_Main_DFA624051", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zf7q5-z7fs-ypghu9-pi4b": { + "templateId": "HomebaseNode:T2_Main_B99A48BE2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ndpn4-0efr-1nlo9h-g3nv": { + "templateId": "HomebaseNode:T2_Main_9BBF38680", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "33c5t-nemf-vpy838-6ii3": { + "templateId": "HomebaseNode:T2_Main_26F4FB891", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3p0o3-t3pk-y8i3hn-6f6d": { + "templateId": "HomebaseNode:T2_Main_4C95A7D12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g0w00-2l4n-o23uta-ysoa": { + "templateId": "HomebaseNode:T2_Main_F4E138243", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cx1p3-7iss-ku5ams-rind": { + "templateId": "HomebaseNode:T2_Main_88D0C6DE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4bb1a-gyai-2aeopc-lqp8": { + "templateId": "HomebaseNode:T2_Main_B75EFFC64", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "n4b7m-dpkp-ll596i-clsr": { + "templateId": "HomebaseNode:T2_Main_221229060", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "snief-9uq3-nhybyf-8t46": { + "templateId": "HomebaseNode:T2_Main_FA6884911", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8b9zq-d5u9-41yfw3-ha29": { + "templateId": "HomebaseNode:T2_Main_AEEEF5183", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "x8hwr-53si-wo55xq-x9ru": { + "templateId": "HomebaseNode:T2_Main_180921FB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cd9w3-z6cu-xzuapi-lc2d": { + "templateId": "HomebaseNode:T2_Main_63F751711", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6mxp2-rsng-bmpvcc-r13g": { + "templateId": "HomebaseNode:T2_Main_6A6764682", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cmppp-3uiq-wwzyc7-tvp1": { + "templateId": "HomebaseNode:T2_Main_AEBC27E24", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mzcby-lvqp-x3uqpw-b8g7": { + "templateId": "HomebaseNode:T2_Main_079EDD2C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cqpda-okaz-wift43-7p95": { + "templateId": "HomebaseNode:T2_Main_9D7FA9270", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "36sxf-p5rs-00qiq7-hqk9": { + "templateId": "HomebaseNode:T2_Main_BF1AE4C87", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7inlh-pdmv-l2ii1l-6csm": { + "templateId": "HomebaseNode:T2_Main_75F1308C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3mx8v-r44k-oyembm-rpxd": { + "templateId": "HomebaseNode:T2_Main_A454A2615", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4rvp7-dakl-3zar3y-tpar": { + "templateId": "HomebaseNode:T2_Main_636F167A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bpm0t-yp5l-14txt9-c33f": { + "templateId": "HomebaseNode:T2_Main_21CE15E51", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rr4ug-y9zf-tvkq8a-g2d6": { + "templateId": "HomebaseNode:T2_Main_3D00CB840", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rlypr-qagk-vebuun-ib62": { + "templateId": "HomebaseNode:T2_Main_FC5809C05", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "17a9c-152x-zhineg-nqkk": { + "templateId": "HomebaseNode:T2_Main_D52B4F3E0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "0g59q-661o-5lytx8-edxk": { + "templateId": "HomebaseNode:T2_Main_BE95EBE17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "krzg6-qlcb-i10rrr-1wud": { + "templateId": "HomebaseNode:T2_Main_2006052B6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T2_Main_E1D78B190": { + "templateId": "HomebaseNode:T2_Main_E1D78B190", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T2_Main_A9644DDD1": { + "templateId": "HomebaseNode:T2_Main_A9644DDD1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T2_Main_117540212": { + "templateId": "HomebaseNode:T2_Main_117540212", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gspd7-zx1d-9wdlpa-r1co": { + "templateId": "HomebaseNode:T2_Main_EC26C41D0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lqqaq-snbz-sse1s8-g5xw": { + "templateId": "HomebaseNode:T2_Main_3C068CFB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "aueda-2595-2rg1yv-nkmx": { + "templateId": "HomebaseNode:T2_Main_4E74E6F91", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sf75m-9406-7an5ot-o8x8": { + "templateId": "HomebaseNode:T2_Main_B2E063FC1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2clwe-vfa6-2u6g7s-mm23": { + "templateId": "HomebaseNode:T2_Main_D192EEC22", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "59izr-kd6c-imms6g-3utk": { + "templateId": "HomebaseNode:T2_Main_D2FB71B12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "em3m9-qh54-m0pzbi-9ebu": { + "templateId": "HomebaseNode:T2_Main_9FC3978C3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "39buv-yn12-3qznht-p1fq": { + "templateId": "HomebaseNode:T2_Main_CF6FD83E3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "0q9qc-xdum-y6ww5r-wuf5": { + "templateId": "HomebaseNode:T2_Main_5B37C9358", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6s21r-hwof-kg3757-ro4v": { + "templateId": "HomebaseNode:T2_Main_F70BA14A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b90qt-ihq9-h9xdcv-olgi": { + "templateId": "HomebaseNode:T2_Main_D26651800", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "41rb3-sfm4-domblf-xqg3": { + "templateId": "HomebaseNode:T2_Main_4C8171671", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9rksw-u9sk-5tmus7-hzai": { + "templateId": "HomebaseNode:T2_Main_74699C1B1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5mqpz-lv9o-9z2ddh-rfbc": { + "templateId": "HomebaseNode:T2_Main_01F9D82A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k221v-it4z-h5anpf-el12": { + "templateId": "HomebaseNode:T2_Main_4D442C140", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "e30fa-c0pt-fst2nn-z6zn": { + "templateId": "HomebaseNode:T2_Main_07D55D6A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3uvev-0but-vexes5-9eov": { + "templateId": "HomebaseNode:T2_Main_2D6993922", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vc8pp-rnkd-yws3a3-wdnu": { + "templateId": "HomebaseNode:T2_Main_E321E3463", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bgq38-7vbs-10whc3-8udu": { + "templateId": "HomebaseNode:T2_Main_5346207C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yu351-wdiv-o01ol8-xl73": { + "templateId": "HomebaseNode:T2_Main_04D5C4430", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rftyb-fic7-07rww7-a6nk": { + "templateId": "HomebaseNode:T2_Main_A50295643", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pmhhl-ndda-v6hdax-l1d0": { + "templateId": "HomebaseNode:T2_Main_B2A944EC4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1uofz-pcsq-o59x9l-vqwx": { + "templateId": "HomebaseNode:T2_Main_D80BA2E80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "i9m0h-5gk7-mdyzwe-l57e": { + "templateId": "HomebaseNode:T2_Main_BA14281E0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9sea9-tsm6-yysusk-ee85": { + "templateId": "HomebaseNode:T2_Main_07E641121", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gt79y-o8ii-384y91-widm": { + "templateId": "HomebaseNode:T2_Main_FA6F27881", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "iact1-w2iv-coexhv-pqvu": { + "templateId": "HomebaseNode:T2_Main_BF56C52E2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wxo98-de3z-8809pi-gmum": { + "templateId": "HomebaseNode:T2_Main_1FDF39DB5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yy1ck-vfow-vczihy-0nva": { + "templateId": "HomebaseNode:T2_Main_93D6486A6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8btvi-hwrn-w5gtcd-23cm": { + "templateId": "HomebaseNode:T2_Main_166C29DC2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5gucz-bz1x-by9w26-tx1p": { + "templateId": "HomebaseNode:T2_Main_A84A13C07", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "36p9f-vw1l-ubt0ss-5yst": { + "templateId": "HomebaseNode:T2_Main_CF49A9C40", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "838c5-14zs-w1y5cq-cbmw": { + "templateId": "HomebaseNode:T2_Main_A225639B4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8baf0-7mc7-tkryka-9fgl": { + "templateId": "HomebaseNode:T2_Main_D289C7C75", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1lcmt-8xdc-v2hdt3-x3lh": { + "templateId": "HomebaseNode:T2_Main_F625D4F20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "21da6-pcln-0u68qw-bg0f": { + "templateId": "HomebaseNode:T2_Main_2A17D7306", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "395dh-16fy-sxrcpy-fhf1": { + "templateId": "HomebaseNode:T2_Main_E0E4352B0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lvrcx-9rci-0p37cm-tkse": { + "templateId": "HomebaseNode:T2_Main_9670DF2A7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "89ztv-uisr-xyi9ms-l6zr": { + "templateId": "HomebaseNode:T2_Main_FBC34AA68", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rfw8h-m0w8-ntpfm8-dl27": { + "templateId": "HomebaseNode:T2_Main_F657B25C9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "r1wty-6rvt-0cgb36-02nf": { + "templateId": "HomebaseNode:T2_Main_C4BBDFF80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zeaaa-uueo-8klcxh-zbhr": { + "templateId": "HomebaseNode:T2_Main_A1487C230", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ru1o8-9xaf-xiq19o-ckpu": { + "templateId": "HomebaseNode:T2_Main_69A5836F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "78yw7-7er7-3bggos-8v8g": { + "templateId": "HomebaseNode:T2_Main_CC1A24D76", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wkswg-fh3a-odrndg-hlay": { + "templateId": "HomebaseNode:T2_Main_B98656430", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "exemk-7wa1-tgx1ml-d2ax": { + "templateId": "HomebaseNode:T2_Main_CBBB2FF11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pzs6u-dr5g-gaiot5-4b1z": { + "templateId": "HomebaseNode:T2_Main_134007C27", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dwg6g-1acz-7rlllm-mrbu": { + "templateId": "HomebaseNode:T2_Main_D76888E98", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k6osr-q5o1-x8saga-dtwg": { + "templateId": "HomebaseNode:T2_Main_9FE51ADF0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gizmb-0lti-v6twif-ns3b": { + "templateId": "HomebaseNode:T2_Main_71B7C8AA0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "a11bi-dshs-d32xqw-b9ah": { + "templateId": "HomebaseNode:T2_Main_9FD8CEE49", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sszr5-6qkf-eyrbc1-8y0u": { + "templateId": "HomebaseNode:T2_Main_AC3B8CE810", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bbvrm-dggw-1ucqvh-g0f2": { + "templateId": "HomebaseNode:T2_Main_C677C3AF0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wkb36-mm5e-fqtf0z-nahr": { + "templateId": "HomebaseNode:T2_Main_9D4C8CD511", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fzpl8-x169-pym24t-1b55": { + "templateId": "HomebaseNode:T2_Main_1F8F85AE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ry905-3pql-51cfyb-3azv": { + "templateId": "HomebaseNode:T2_Main_D8D12ECF8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7kwdq-o9bq-kcl4ou-dy0o": { + "templateId": "HomebaseNode:T3_Main_3F0E7B000", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rzo9h-ygyn-2iuu3a-qnik": { + "templateId": "HomebaseNode:T3_Main_D111A2EE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vb4l9-5lpp-214hv5-d8uk": { + "templateId": "HomebaseNode:T3_Main_A4C742E90", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m997s-7y46-gq8mno-l5uq": { + "templateId": "HomebaseNode:T3_Main_DC39D9A60", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wtqwg-f579-yn79yv-m413": { + "templateId": "HomebaseNode:T3_Main_5147BFC91", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4onuv-b9xf-c4ktoh-afs4": { + "templateId": "HomebaseNode:T3_Main_642745262", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "0t5iw-gbn7-ntsi5a-ec2t": { + "templateId": "HomebaseNode:T3_Main_1D1190E83", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6bfty-z0rq-xt67m3-m2lt": { + "templateId": "HomebaseNode:T3_Main_223DB7781", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5gw7m-8ore-vogfd4-cvog": { + "templateId": "HomebaseNode:T3_Main_BB28968A1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zdsgz-u8w1-6q4q9t-ctkv": { + "templateId": "HomebaseNode:T3_Main_22DB38500", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o597b-uo1d-pb8lhg-o5fl": { + "templateId": "HomebaseNode:T3_Main_924E29D91", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xg2go-m5on-l2l3q8-wnow": { + "templateId": "HomebaseNode:T3_Main_70C759670", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7krzi-ff98-owphti-qkff": { + "templateId": "HomebaseNode:T3_Main_05EE62252", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rcngf-rkvt-m9ncm6-uue5": { + "templateId": "HomebaseNode:T3_Main_68DB04EE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bxfk8-phhy-xwgd5x-7lr0": { + "templateId": "HomebaseNode:T3_Main_5203AC5A1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "shbft-cu1y-lxnigr-nh1m": { + "templateId": "HomebaseNode:T3_Main_78CB0B021", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "10zz1-yt4g-hgxrbz-zewz": { + "templateId": "HomebaseNode:T3_Main_7B6AD6772", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "v021d-kuik-ha4y2l-7qv0": { + "templateId": "HomebaseNode:T3_Main_F9620A490", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p0vfm-0g0e-69pksc-qxab": { + "templateId": "HomebaseNode:T3_Main_12DEAE460", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "eshqz-gzlc-sqzc1i-fb1l": { + "templateId": "HomebaseNode:T3_Main_CDD911FA1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tomf1-ge6h-whf6xf-r44n": { + "templateId": "HomebaseNode:T3_Main_3A06BC390", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gnyst-zmva-0wfict-qhk2": { + "templateId": "HomebaseNode:T3_Main_E591A24B0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "x0as4-ltpz-d47chr-mo1a": { + "templateId": "HomebaseNode:T3_Main_E3C7C83C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xx8pn-ynuo-1yanfg-lmp7": { + "templateId": "HomebaseNode:T3_Main_B98F78C61", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fyvrb-wlm0-guam7b-a27o": { + "templateId": "HomebaseNode:T3_Main_9341DEF82", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rbdtk-alz9-71n36p-9zfb": { + "templateId": "HomebaseNode:T3_Main_54016F663", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "udlbp-ni9f-mneu91-n9qf": { + "templateId": "HomebaseNode:T3_Main_BB09D9260", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "y8a63-sn51-6spzrw-sv37": { + "templateId": "HomebaseNode:T3_Main_D259FE9E0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "u9dat-7wdy-vxr040-7t76": { + "templateId": "HomebaseNode:T3_Main_4363B46C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "852zf-y4rb-8zlwpg-ytbd": { + "templateId": "HomebaseNode:T3_Main_3DCEC5D44", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2scdk-fu5x-rb4ex0-hay3": { + "templateId": "HomebaseNode:T3_Main_211972050", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4r3ag-b2dv-scbc7g-b7i2": { + "templateId": "HomebaseNode:T3_Main_51FBB5B30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yex3g-l6a5-vb8mw1-ye21": { + "templateId": "HomebaseNode:T3_Main_1D3614B63", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "op1vb-mx06-mussmm-xhrn": { + "templateId": "HomebaseNode:T3_Main_5973F0934", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sx4dx-utbm-ptw4lv-nz0m": { + "templateId": "HomebaseNode:T3_Main_CC393D8C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "af38f-2cad-6h3rps-ideb": { + "templateId": "HomebaseNode:T3_Main_93B01CC71", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h51fn-zrna-5otpoh-iqfw": { + "templateId": "HomebaseNode:T3_Main_1650B98B5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gnbpp-mydl-x61anq-ebao": { + "templateId": "HomebaseNode:T3_Main_A2EB05DE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8svib-k0vb-0s5g6l-ssvo": { + "templateId": "HomebaseNode:T3_Main_931CDF301", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cuxxe-lnva-31hzq0-wb85": { + "templateId": "HomebaseNode:T3_Main_0F646E3E2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "btkt5-8xil-86i0mz-u0hf": { + "templateId": "HomebaseNode:T3_Main_7CD55E053", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "24l4p-l1px-llb9eb-935m": { + "templateId": "HomebaseNode:T3_Main_0CEA80C20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l1iai-tkxo-n2m201-cw2z": { + "templateId": "HomebaseNode:T3_Main_AD53DF901", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ia5a8-lm7o-aktnsk-7d1i": { + "templateId": "HomebaseNode:T3_Main_C0C07FD02", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k53ow-zxw8-p563ek-tqaa": { + "templateId": "HomebaseNode:T3_Main_BBE9C2383", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zs591-308o-q9yrqt-6uat": { + "templateId": "HomebaseNode:T3_Main_41C374291", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vl8xp-904q-bt00kt-gt23": { + "templateId": "HomebaseNode:T3_Main_5272EBF85", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "oe4iu-3rhe-06z30g-yr9c": { + "templateId": "HomebaseNode:T3_Main_3EA832246", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dzgfp-szpu-imcm9o-9lh6": { + "templateId": "HomebaseNode:T3_Main_38ADE9320", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4we7f-o89p-grhstf-5zkf": { + "templateId": "HomebaseNode:T3_Main_62511CB01", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "am45q-h07l-35fxlg-uw7e": { + "templateId": "HomebaseNode:T3_Main_392B5C050", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tgru8-yzhd-rflvd3-zpr4": { + "templateId": "HomebaseNode:T3_Main_AE0417420", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "aa63e2ee-b6bf-4b7d-9874-da06cbaaa584": { + "templateId": "Quest:heroquest_ninja_2", + "attributes": { + "completion_ability_mantisleap": 3, + "level": -1, + "completion_upgrade_ninja_lvl_3": 1, + "completion_complete_pve01_diff3_ninja": 3, + "item_seen": true, + "required_quest": " S", + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-31T14:24:40.090Z", + "completion_ability_throwingstars": 3, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "8q4a2-sodh-s9ucc1-oto6": { + "templateId": "HomebaseNode:T3_Main_5F1FF8F01", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nchog-bdgc-6ccvku-reme": { + "templateId": "HomebaseNode:T3_Main_B22284A80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k4pyq-lhzk-gvo52y-e8u7": { + "templateId": "HomebaseNode:T3_Main_FDEA96100", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2fxuu-iyq3-217bp4-fsbh": { + "templateId": "HomebaseNode:T3_Main_67DAD5FE1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T3_Main_3E101B6A5": { + "templateId": "HomebaseNode:T3_Main_3E101B6A5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T3_Main_E5013A630": { + "templateId": "HomebaseNode:T3_Main_E5013A630", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T3_Main_114D8AD91": { + "templateId": "HomebaseNode:T3_Main_114D8AD91", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ywn7f-7bwk-4m599g-r1iq": { + "templateId": "HomebaseNode:T3_Main_2E9E28772", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3iegd-df7p-s5empa-yf82": { + "templateId": "HomebaseNode:T3_Main_8AEC0C687", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hywaa-9r21-bbkyx9-404d": { + "templateId": "HomebaseNode:T3_Main_21BAEBB70", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k3ie2-ok4w-ac36rs-z41u": { + "templateId": "HomebaseNode:T3_Main_16213C9D1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kbms9-l2rq-13cv8l-qswi": { + "templateId": "HomebaseNode:T3_Main_7AAE50F90", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m5m5m-6ott-0fu37n-d47t": { + "templateId": "HomebaseNode:T3_Main_A9FEE26B3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rbip2-uvod-cr6lti-afg8": { + "templateId": "HomebaseNode:T3_Main_D9B9C4A80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "aw1vv-4erk-u8tvyo-3mxq": { + "templateId": "HomebaseNode:T3_Main_DA33A8740", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5t3tk-ddmw-iuxv82-dbl2": { + "templateId": "HomebaseNode:T3_Main_AAF369514", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3ie70-osby-lt46vv-zek8": { + "templateId": "HomebaseNode:T3_Main_B3EC767E5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fy52b-6mz1-9lvzar-8g5w": { + "templateId": "HomebaseNode:T3_Main_95A061850", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "owus0-2w8w-cn048u-hllg": { + "templateId": "HomebaseNode:T3_Main_A9CD47110", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2mqo9-mvfe-ei3p2d-25hd": { + "templateId": "HomebaseNode:T3_Main_F6BCC2AC0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f84cu-hqzd-eo77ie-9kki": { + "templateId": "HomebaseNode:T3_Main_5BBDCA774", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "oamo5-0dbn-8t5lt9-43dn": { + "templateId": "HomebaseNode:T3_Main_4BB06AC83", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "eaaig-hw72-ccytl0-16p1": { + "templateId": "HomebaseNode:T3_Main_8A85E0460", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "iytla-z8yu-gme45c-b2o4": { + "templateId": "HomebaseNode:T3_Main_B2F8126F4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "oh6ml-m7gf-qx6tll-c0hf": { + "templateId": "HomebaseNode:T3_Main_AA2BD6745", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vz5t0-n87q-s4xghv-7nap": { + "templateId": "HomebaseNode:T3_Main_D17065500", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "aylan-zq09-gp4h4p-xhm5": { + "templateId": "HomebaseNode:T3_Main_47FDEBF30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "y2ut9-eili-91hoce-hnqf": { + "templateId": "HomebaseNode:T3_Main_0F7CDF126", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "anda7-bvn9-ovrcml-fkft": { + "templateId": "HomebaseNode:T3_Main_C55707977", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xvkzg-sqh5-h00k66-xn2w": { + "templateId": "HomebaseNode:T3_Main_9CFF8ACB8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8k7ci-15ei-3i14mg-nwmb": { + "templateId": "HomebaseNode:T3_Main_A9BDF1C40", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "q7b5r-13da-vn3tam-qdv4": { + "templateId": "HomebaseNode:T3_Main_94BEADE00", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6k0ca-bnvv-6oa5hx-skye": { + "templateId": "HomebaseNode:T3_Main_81657C2A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b268t-elx7-hwwy8v-pwyk": { + "templateId": "HomebaseNode:T3_Main_FF1800780", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h41g4-do4x-h7ckb5-p4el": { + "templateId": "HomebaseNode:T3_Main_4ECA66830", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dkghs-9997-nl5f6u-zhq1": { + "templateId": "HomebaseNode:T3_Main_AA546FD04", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f0hov-207u-fxvre1-tqdb": { + "templateId": "HomebaseNode:T3_Main_F6B1C09C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l56st-5qh4-e1ok4b-av9x": { + "templateId": "HomebaseNode:T3_Main_FA382D2A2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ie768-0rdc-wkxc3q-7nlb": { + "templateId": "HomebaseNode:T3_Main_0830E2535", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "11d2x-mydh-oytsur-h0ed": { + "templateId": "HomebaseNode:T3_Main_B31485F76", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qu2b8-n3d8-o3xig9-nwuk": { + "templateId": "HomebaseNode:T3_Main_4900856E7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7m5fs-m922-79vu6g-gxr8": { + "templateId": "HomebaseNode:T3_Main_BA0F64D00", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "84nrl-ftnq-ayy0p3-he27": { + "templateId": "HomebaseNode:T3_Main_B9E79E910", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pzcgm-b142-ace9sp-w34t": { + "templateId": "HomebaseNode:T3_Main_844582E68", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rfzxv-wu5n-if9u9e-6trh": { + "templateId": "HomebaseNode:T3_Main_C583B74E0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "knza8-mzfn-m2gmdo-2cbt": { + "templateId": "HomebaseNode:T3_Main_DF62B4190", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9z3bv-z4m2-61euym-a2ok": { + "templateId": "HomebaseNode:T3_Main_8C8C10DE9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ct8x7-8g0x-8v12dx-qclt": { + "templateId": "HomebaseNode:T3_Main_C1C21E346", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1xtet-h3nh-ufs6gm-sfwq": { + "templateId": "HomebaseNode:T4_Main_223600910", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8yfml-tfa7-1idyxq-vfxp": { + "templateId": "HomebaseNode:T4_Main_8014D8830", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nzyg7-9nn9-qzgovz-8efa": { + "templateId": "HomebaseNode:T4_Main_234E42F51", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k3nzs-cafs-umblln-56xb": { + "templateId": "HomebaseNode:T4_Main_2FB647A80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "klvx1-yga8-5bdqo8-n034": { + "templateId": "HomebaseNode:T4_Main_BD23D0AF0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1n93o-liiw-yw81uo-tbyq": { + "templateId": "HomebaseNode:T4_Main_C76C04C11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7733l-kn0s-hb7hqd-0o1w": { + "templateId": "HomebaseNode:T4_Main_631DBFA62", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vo64y-qend-k6ka5t-f0c8": { + "templateId": "HomebaseNode:T4_Main_A1CFB4AB3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cf9yn-c9c7-0q8gbp-qegu": { + "templateId": "HomebaseNode:T4_Main_294C621C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lz7rq-55mr-y76234-cm1h": { + "templateId": "HomebaseNode:T4_Main_E410950A2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kbqqn-37ty-o84bxq-w32i": { + "templateId": "HomebaseNode:T4_Main_B2B288DB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kyars-yqes-z67ng3-i4ai": { + "templateId": "HomebaseNode:T4_Main_A30E056A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "78awq-a7b2-7hevrl-o8df": { + "templateId": "HomebaseNode:T4_Main_FCA70A2B1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gl99y-y2ah-2vnyff-lh1d": { + "templateId": "HomebaseNode:T4_Main_EECD0C941", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kwcg9-tpu8-49071i-dtne": { + "templateId": "HomebaseNode:T4_Main_F8A251AE2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "06nba-qrru-v4kvre-y4un": { + "templateId": "HomebaseNode:T4_Main_476E9F060", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "a5hqs-urnc-agvzku-aynd": { + "templateId": "HomebaseNode:T4_Main_8D4F9BED1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tvxqn-gs53-tgzd0t-hbh0": { + "templateId": "HomebaseNode:T4_Main_477EABF92", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "r2mb0-b5c6-53mhnm-hpny": { + "templateId": "HomebaseNode:T4_Main_08545F6C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7vkbv-ovfg-vxg8f5-afyk": { + "templateId": "HomebaseNode:T4_Main_A23E778A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6na3t-3aeg-n168f3-gwh9": { + "templateId": "HomebaseNode:T4_Main_3D8125FA3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "farvp-13tq-chpoy1-zsrd": { + "templateId": "HomebaseNode:T4_Main_70213E0D4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kb86k-fxrq-hmevhr-um03": { + "templateId": "HomebaseNode:T4_Main_9AFB1FD60", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ksp5c-ciet-8o63qq-gp0g": { + "templateId": "HomebaseNode:T4_Main_2A05CE670", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "alrp6-7m0u-k2lu84-1ovx": { + "templateId": "HomebaseNode:T4_Main_0B169C105", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "67bx0-vmya-aod32c-apmz": { + "templateId": "HomebaseNode:T4_Main_08666D8D6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xz55i-7qfw-rb1oro-xic7": { + "templateId": "HomebaseNode:T4_Main_888A664C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6v148-if26-9z6txh-ovru": { + "templateId": "HomebaseNode:T4_Main_E6F4B67E0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l6i6o-c0eo-0dclr4-84q3": { + "templateId": "HomebaseNode:T4_Main_6E14C9711", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vuddv-506b-3ela3a-f1i9": { + "templateId": "HomebaseNode:T4_Main_11D1BB631", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hzyad-zzcd-2tda80-ixpv": { + "templateId": "HomebaseNode:T4_Main_751262F92", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cq27c-9e2h-hbuu4u-t3oh": { + "templateId": "HomebaseNode:T4_Main_5968FE123", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6tzxo-fgw8-mt3y1n-44ba": { + "templateId": "HomebaseNode:T4_Main_6DAC1DFD4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1b0rz-ilup-te3lkw-mnxg": { + "templateId": "HomebaseNode:T4_Main_9B36B5171", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "olyvr-n943-6idwg3-o3zm": { + "templateId": "HomebaseNode:T4_Main_8B174C410", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bqd48-kazk-q51mw8-89ba": { + "templateId": "HomebaseNode:T4_Main_2210EDD55", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g4gre-eg8p-uq0c5z-pzg8": { + "templateId": "HomebaseNode:T4_Main_96C918A20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2mi8b-e2dg-26tgz2-rbr7": { + "templateId": "HomebaseNode:T4_Main_5406B8760", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "va7vo-4gma-gmayd0-21ht": { + "templateId": "HomebaseNode:T4_Main_9F152D8C6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fz0z0-nxbu-5666ob-yi5r": { + "templateId": "HomebaseNode:T4_Main_20F255B61", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xi56h-6hi4-zp9yg0-b0vp": { + "templateId": "HomebaseNode:T4_Main_384F84F57", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8yteg-3bea-obz8fb-afxq": { + "templateId": "HomebaseNode:T4_Main_362079E30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "x37dq-xavl-bahgnk-wnum": { + "templateId": "HomebaseNode:T4_Main_111C734D0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mfgnm-zmoc-q0bd92-1kg6": { + "templateId": "HomebaseNode:T4_Main_22983E241", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "71ift-2tgb-g7fno0-9p6g": { + "templateId": "HomebaseNode:T4_Main_CD327EAA1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "elr1s-vk3u-sqss9s-kf0l": { + "templateId": "HomebaseNode:T4_Main_62BCC9A02", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wzex3-z0ga-2ldu1b-z6rv": { + "templateId": "HomebaseNode:T4_Main_B854D25D2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "60c80-blo2-tmzyue-xi01": { + "templateId": "HomebaseNode:T4_Main_D94772630", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kewar-tidx-o3g05n-qcs5": { + "templateId": "HomebaseNode:T4_Main_D1DA41AB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fml2l-qbkz-rfa4ch-83z3": { + "templateId": "HomebaseNode:T4_Main_49DF3CFD1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g2ng4-65zt-0suka4-n04h": { + "templateId": "HomebaseNode:T4_Main_65B1BCF51", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b0rcl-geif-u90g61-fu5l": { + "templateId": "HomebaseNode:T4_Main_72793BD96", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bpnib-hs6y-hmxdkf-70eq": { + "templateId": "HomebaseNode:T4_Main_94A92D3E7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4pl34-zak8-bs534q-dm70": { + "templateId": "HomebaseNode:T4_Main_7CD9FDA30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "e7wts-gy1r-lfyq2q-c8n1": { + "templateId": "HomebaseNode:T4_Main_908DD2BE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8yblz-k4iw-kzgdkb-mbrg": { + "templateId": "HomebaseNode:T4_Main_155A29BA1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5msip-6dh4-3gfla2-q10r": { + "templateId": "HomebaseNode:T4_Main_1FC4328C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ztxy9-ab62-q0iefg-r48p": { + "templateId": "HomebaseNode:T4_Main_13F4802B0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wx3b9-h9cw-3991tb-oqt2": { + "templateId": "HomebaseNode:T4_Main_A29F04970", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m5cnd-94fu-rc1gbu-e634": { + "templateId": "HomebaseNode:T4_Main_FFA3B8D60", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5nt76-2ibf-peqrhc-gvs8": { + "templateId": "HomebaseNode:T4_Main_C8A839111", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "imiyv-sklm-7lay5n-muus": { + "templateId": "HomebaseNode:T4_Main_BC0E6F120", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m4fmn-pld0-2uh2za-ui8e": { + "templateId": "HomebaseNode:T4_Main_FB88FBD52", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "y7sgl-nflh-91dd4u-t1lg": { + "templateId": "HomebaseNode:T4_Main_65A3A1DE2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "uefup-gzre-88e1k7-vivf": { + "templateId": "HomebaseNode:T4_Main_0C7672723", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gsdcv-r30b-ulh8px-iqav": { + "templateId": "HomebaseNode:T4_Main_02652EDE4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "optn8-zrxa-3w8iwc-zr0p": { + "templateId": "HomebaseNode:T4_Main_44036CC70", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "v3nmv-xo1h-0kexoz-tany": { + "templateId": "HomebaseNode:T4_Main_6572170A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "06yeo-l6sz-fphkp4-gni9": { + "templateId": "HomebaseNode:T4_Main_CED279315", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "y88qg-9dk1-uo7q4m-gg1b": { + "templateId": "HomebaseNode:T4_Main_152DB9C30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T4_Main_64CEDC561": { + "templateId": "HomebaseNode:T4_Main_64CEDC561", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T4_Main_EE2BC2321": { + "templateId": "HomebaseNode:T4_Main_EE2BC2321", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T4_Main_BE19D3D22": { + "templateId": "HomebaseNode:T4_Main_BE19D3D22", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5tpek-4b8k-34vwd6-34m4": { + "templateId": "HomebaseNode:T4_Main_4B1D51060", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "05xxf-l5cr-5x5l3k-lsmr": { + "templateId": "HomebaseNode:T4_Main_0A5D56161", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hof3l-eqvk-3xnfbn-c21b": { + "templateId": "HomebaseNode:T4_Main_DC7E2B381", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vb4y9-t3w6-nb2vpz-kwfo": { + "templateId": "HomebaseNode:T4_Main_4EED13AE1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ydqic-ptyy-5xkd98-1o3o": { + "templateId": "HomebaseNode:T4_Main_170F375F1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ner2l-ehm8-qdkmir-k3on": { + "templateId": "HomebaseNode:T4_Main_140B284C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tup2v-58lh-fhpcee-v8xy": { + "templateId": "HomebaseNode:T4_Main_6CE978810", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h9igf-5k8s-t6zfpw-bs3k": { + "templateId": "HomebaseNode:T4_Main_6C92B3622", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ithl4-qzmn-wyxnl2-n2wg": { + "templateId": "HomebaseNode:T4_Main_FE1404BF2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b640o-zg4k-45ey9b-s0sf": { + "templateId": "HomebaseNode:T4_Main_33A623670", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kf3ln-rapc-h3oc3e-nosx": { + "templateId": "HomebaseNode:T4_Main_2C576F893", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "01txo-xw7y-ulhrw5-0cuc": { + "templateId": "HomebaseNode:T4_Main_9D72E3E50", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "imllp-x511-ea3e0s-blb3": { + "templateId": "HomebaseNode:T4_Main_A1A4F7617", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "w8ph2-cm1d-001fqc-hpoz": { + "templateId": "HomebaseNode:T4_Main_DA1126E08", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hx3t6-63ug-8542f2-w5k0": { + "templateId": "HomebaseNode:T4_Main_03BC55D00", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7w2dh-1m79-38luxd-p1do": { + "templateId": "HomebaseNode:T4_Main_6AD9A53A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2y73a-0f96-nux0kf-sio8": { + "templateId": "HomebaseNode:T4_Main_D9295A610", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "i683b-l9bu-kd40vk-royf": { + "templateId": "HomebaseNode:T4_Main_A07CCEFA0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "w03so-u2ip-nsevnz-r0o4": { + "templateId": "HomebaseNode:T4_Main_7003C8704", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "86gyc-1vn3-vzyos5-wud4": { + "templateId": "HomebaseNode:T4_Main_C1E85D7B4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8ggue-nibu-7nfuxw-6ara": { + "templateId": "HomebaseNode:T4_Main_66ADEDF16", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fym22-627n-w25acf-s2uq": { + "templateId": "HomebaseNode:T4_Main_146871B30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k580d-h7ht-zh0bk5-a41l": { + "templateId": "HomebaseNode:T4_Main_F0F851670", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h1hgb-gb0e-h0hhkg-a9m2": { + "templateId": "HomebaseNode:T4_Main_C6AE84EB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "oh3qv-1egf-u4oqo0-4hz6": { + "templateId": "HomebaseNode:T4_Main_2270189F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tte2w-ga19-gx5wsq-ons4": { + "templateId": "HomebaseNode:T4_Main_5DA04F861", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "v4kg0-zqr6-tc0yob-7c1g": { + "templateId": "HomebaseNode:T4_Main_7C7F5F5B1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pmdzb-5neh-z8vbbx-3zdk": { + "templateId": "HomebaseNode:T4_Main_95489EF50", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "clive-3vl0-i5qqzy-4k9x": { + "templateId": "HomebaseNode:T1_Research_7C7638680", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2rug8-te45-yg0svr-29aw": { + "templateId": "HomebaseNode:T2_Research_EA43FDB41", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "86cf9-q843-egatya-ws26": { + "templateId": "HomebaseNode:T2_Research_45306C490", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qksrx-79ft-cux2ie-it4d": { + "templateId": "HomebaseNode:T2_Research_794309E80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dvvhk-ez47-ducc4d-quq5": { + "templateId": "HomebaseNode:T2_Research_8D3A925A1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9r24y-86wy-prxnqg-gu9o": { + "templateId": "HomebaseNode:T2_Research_DE7035662", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hnzeo-wh2b-ypgcvc-dbdh": { + "templateId": "HomebaseNode:T2_Research_BC4833EE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "svqmx-d4vx-k0zfob-inxs": { + "templateId": "HomebaseNode:T2_Research_CDC67FA60", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kfqvi-szlf-sf1f5v-1zaw": { + "templateId": "HomebaseNode:T2_Research_C90F99E71", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p9lvx-zxd2-s3mvgc-yk8p": { + "templateId": "HomebaseNode:T2_Research_EC48272D2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gvorf-4yyn-hem8gr-wb7s": { + "templateId": "HomebaseNode:T2_Research_EB75BBD01", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7g0as-flqq-ciqi5h-yqs4": { + "templateId": "HomebaseNode:T2_Research_49280C800", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m54qg-sq8s-47b5z1-nvyw": { + "templateId": "HomebaseNode:T2_Research_BA7B225B0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "74k7c-m1i5-txtgpk-gtv8": { + "templateId": "HomebaseNode:T2_Research_5F21793E0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g8wir-pkxd-me8hxq-5lo8": { + "templateId": "HomebaseNode:T2_Research_861D8EE12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8kzsx-303f-cqp89r-ekxc": { + "templateId": "HomebaseNode:T2_Research_4384865E3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tyrcb-i6ev-774so0-vb3c": { + "templateId": "HomebaseNode:T2_Research_69D354CA3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "50zl2-fnqc-w6i6xv-i44z": { + "templateId": "HomebaseNode:T2_Research_E31381504", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o5a12-uva8-yhu9r0-zyim": { + "templateId": "HomebaseNode:T2_Research_F583EED84", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "x8tbr-rl8q-vlh64r-phvm": { + "templateId": "HomebaseNode:T2_Research_676EA9075", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "odtng-0mo9-r1ekfb-yidl": { + "templateId": "HomebaseNode:T2_Research_EE4D092F5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g12cx-yikv-up1e6e-izd2": { + "templateId": "HomebaseNode:T2_Research_E29CC2D33", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4m58i-e9t0-xalhsq-d4se": { + "templateId": "HomebaseNode:T2_Research_8C57445F1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "340a9-dgh4-4qtc3x-pzmu": { + "templateId": "HomebaseNode:T2_Research_1986CE6E1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fidyt-97ch-r097c5-s0l7": { + "templateId": "HomebaseNode:T2_Research_DC6F1EE52", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mp4fy-ngef-qf7m23-s5nk": { + "templateId": "HomebaseNode:T2_Research_371F90623", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "41epp-7xeg-zhbmu7-hgl6": { + "templateId": "HomebaseNode:T2_Research_816377AF1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wtx25-sdsa-qco09b-0u0f": { + "templateId": "HomebaseNode:T2_Research_04F33FDD2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9o8sa-wqvp-ldek2w-3t1m": { + "templateId": "HomebaseNode:T2_Research_C4DCB3993", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sctvc-py7g-tcwyvs-g40z": { + "templateId": "HomebaseNode:T2_Research_ACF00FD11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rkdzx-r9e3-1ws82y-0x2o": { + "templateId": "HomebaseNode:T2_Research_D71CC3522", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "swzs2-zxre-g760mt-bows": { + "templateId": "HomebaseNode:T2_Research_15F1DC0B3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bs267-n4u2-it3m37-6gof": { + "templateId": "HomebaseNode:T2_Research_6C56AEA04", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "02uhb-7emr-k9h9ei-x5pu": { + "templateId": "HomebaseNode:T2_Research_00E5B7763", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h9ff3-9bz9-5ryl7b-5e6i": { + "templateId": "HomebaseNode:T2_Research_11FC257C5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3gx4x-mgo1-svvb2y-gptx": { + "templateId": "HomebaseNode:T2_Research_6C377C7B6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p58cv-xepo-e9q52b-94pc": { + "templateId": "HomebaseNode:T2_Research_941ABAAC5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xibbk-zmm6-m6de31-ism1": { + "templateId": "HomebaseNode:T2_Research_A0AF3E194", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vfilp-opqg-y18xsq-l39i": { + "templateId": "HomebaseNode:T2_Research_3AFD81BA3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1t22w-59z0-8x59sd-gy9n": { + "templateId": "HomebaseNode:T2_Research_5FB50D871", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "akdm8-pf2u-qed21w-veku": { + "templateId": "HomebaseNode:T2_Research_B3F93C620", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vf39r-h6po-s2gz8o-7cid": { + "templateId": "HomebaseNode:T2_Research_5D47FE190", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mkh8g-0rlc-xtsmbl-auq6": { + "templateId": "HomebaseNode:T2_Research_F8BDEEBB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l7o1k-fxk9-1877m0-anso": { + "templateId": "HomebaseNode:T2_Research_C682FDD51", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mxr7a-7w8n-knpdgi-4706": { + "templateId": "HomebaseNode:T2_Research_81C6B0432", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "69erh-tef4-1t9lbi-080g": { + "templateId": "HomebaseNode:T2_Research_D74CAB422", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "946ov-56o9-awou2q-pauk": { + "templateId": "HomebaseNode:T2_Research_163260621", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "116p5-2qp7-gfuemq-xefr": { + "templateId": "HomebaseNode:T2_Research_72F6C6DE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "u4z4m-emuh-ofpf29-nzxv": { + "templateId": "HomebaseNode:T2_Research_EB4AF8030", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dhwbi-locq-cyihnt-8cmc": { + "templateId": "HomebaseNode:TRTrunk_2_1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "uou44-xk9n-efw7da-6yf4": { + "templateId": "HomebaseNode:TRTrunk_3_0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "54746-llpo-y7i9dw-kf8b": { + "templateId": "HomebaseNode:T3_Research_66AD113A1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rkswt-kx4o-7zwq8a-b89m": { + "templateId": "HomebaseNode:T3_Research_FE0BC1210", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "94czi-0x8q-fv2tfh-4o9a": { + "templateId": "HomebaseNode:T3_Research_AA1DA8210", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rbpra-8ngi-4illls-dkrv": { + "templateId": "HomebaseNode:T3_Research_A39241861", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "r3lb1-yi18-x8ucbi-wd8d": { + "templateId": "HomebaseNode:T3_Research_BF9440313", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "u1q4t-ou2g-f14n1h-80dt": { + "templateId": "HomebaseNode:T3_Research_B43852611", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vgt1h-1dgo-wqn0h8-umd2": { + "templateId": "HomebaseNode:T3_Research_2A7F438C2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wo01w-38q3-fsu6tz-h607": { + "templateId": "HomebaseNode:T3_Research_E8CB49191", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p3xra-u64t-y63eqx-cwv2": { + "templateId": "HomebaseNode:T3_Research_AEB9B0780", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "00l1d-fusb-lxdlqu-01bm": { + "templateId": "HomebaseNode:T3_Research_296889EA0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "grhl2-q9ss-fles03-vmab": { + "templateId": "HomebaseNode:T3_Research_C82820E21", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "eg1cp-p0zz-u6p6no-h22l": { + "templateId": "HomebaseNode:T3_Research_5D0CB6CF0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "147fg-szks-zpk86c-scvv": { + "templateId": "HomebaseNode:T3_Research_87634D530", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7wcri-l66m-1kbvwa-6vbn": { + "templateId": "HomebaseNode:T3_Research_9DAC24CC1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qna1g-m1sy-m9d6v5-95ol": { + "templateId": "HomebaseNode:T3_Research_9A55874D0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9ddaz-laqy-focout-00bh": { + "templateId": "HomebaseNode:T3_Research_A1E8D6A12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wud6g-dw14-3yca5z-y9at": { + "templateId": "HomebaseNode:T3_Research_62E106C43", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7dhbi-cb3a-0oh95u-guig": { + "templateId": "HomebaseNode:T3_Research_F48DE6842", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lpnxp-ptnw-psy029-t30m": { + "templateId": "HomebaseNode:T3_Research_3A1909AB4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3koy4-ib32-7s7wog-vcfe": { + "templateId": "HomebaseNode:T3_Research_CB48078A1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "y3kxs-ymun-2sor7e-nu67": { + "templateId": "HomebaseNode:T3_Research_6F0EF6CA5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "li09p-1id5-y9svgf-5p0a": { + "templateId": "HomebaseNode:T3_Research_57056E764", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k47dg-iwqu-3o9x08-68yz": { + "templateId": "HomebaseNode:T3_Research_9B20CC2A3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8ri3g-ne5m-ras0o7-3d8g": { + "templateId": "HomebaseNode:T3_Research_A7D38AEA4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9kcyr-0pek-0uvdzr-3b3y": { + "templateId": "HomebaseNode:T3_Research_8BCCB9037", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "s1p6f-7249-7n6p0g-lqu9": { + "templateId": "HomebaseNode:T3_Research_4ED9F84A6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "owgur-xd0o-rh2hd7-i26q": { + "templateId": "HomebaseNode:T3_Research_202D50112", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kx813-1b5s-3dbwq9-ab6p": { + "templateId": "HomebaseNode:T3_Research_0095DC2C3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "69he0-9fex-p4n1u2-kd4w": { + "templateId": "HomebaseNode:T3_Research_BA83CA3A3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "61qk8-0cn8-mmuduy-lni2": { + "templateId": "HomebaseNode:T3_Research_60B83C472", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4246a-oen3-4tqxde-40gt": { + "templateId": "HomebaseNode:T3_Research_CEBB3B219", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9h76u-503h-znwy90-pswn": { + "templateId": "HomebaseNode:T3_Research_EC3512538", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ms9zm-2mw1-vckr0f-imnl": { + "templateId": "HomebaseNode:T3_Research_DB4C9CF95", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xlbm6-i5ua-uereid-32hl": { + "templateId": "HomebaseNode:T3_Research_9DBEF7D52", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zhqyo-opno-oq5dtf-q2p5": { + "templateId": "HomebaseNode:T3_Research_72A6A9015", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dr6k7-z5mr-wv02vb-6xgy": { + "templateId": "HomebaseNode:T3_Research_A78DD3873", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vwst9-s3qq-6icalr-w4f3": { + "templateId": "HomebaseNode:T3_Research_4877E8553", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b1fi8-24t3-zh7q8g-3ucz": { + "templateId": "HomebaseNode:T3_Research_E920B5567", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tuw79-a8t9-8v583q-9tmm": { + "templateId": "HomebaseNode:T3_Research_0AC5CCFD6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cqcem-ixyz-3s1795-kx87": { + "templateId": "HomebaseNode:T3_Research_97EE240B1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kxgdy-lto5-8gikxi-7k55": { + "templateId": "HomebaseNode:T3_Research_4898C79D3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "woyx7-w1qk-fh09pd-2o6b": { + "templateId": "HomebaseNode:T3_Research_DDCAA1041", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "eul2t-21i4-0klyqf-izmp": { + "templateId": "HomebaseNode:T3_Research_A3701B970", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xk3ne-fkky-cidfvw-ldnd": { + "templateId": "HomebaseNode:T3_Research_EF9604C70", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b9czy-9fw0-pdmy1h-5f50": { + "templateId": "HomebaseNode:T3_Research_868B67A00", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dynvm-i1pe-kb5652-nqua": { + "templateId": "HomebaseNode:T3_Research_2E0654DB1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yimv7-797k-fyd7hy-zmvi": { + "templateId": "HomebaseNode:T3_Research_3BBA74012", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "u9xr0-eczp-e5wh8y-lls5": { + "templateId": "HomebaseNode:T3_Research_244E0BAE1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wsc0l-nz9o-f1rp1i-yyzn": { + "templateId": "HomebaseNode:T3_Research_E63953BC2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nak49-hxmr-iqc908-id7p": { + "templateId": "HomebaseNode:T3_Research_CF78A5F20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g1gc5-1qzu-yeeh6g-sw99": { + "templateId": "HomebaseNode:T3_Research_2989E24E1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "q9mo8-olku-aubv0m-ueri": { + "templateId": "HomebaseNode:T3_Research_99D650340", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h7ixv-i6zi-morqdw-g5qh": { + "templateId": "HomebaseNode:T3_Research_877423D00", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3e0gb-gt1c-nrw952-9uoa": { + "templateId": "HomebaseNode:T3_Research_9B544A970", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "q8lyw-3dc4-q2avkf-vno5": { + "templateId": "HomebaseNode:T3_Research_E558C1F41", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9bkrz-ipqw-6x7mmy-hc9f": { + "templateId": "HomebaseNode:T3_Research_CF908A9F2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "n6fdf-xnr4-c7b0o1-1in7": { + "templateId": "HomebaseNode:T3_Research_86C896DF3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bq536-ywxu-i4sr1b-ppbt": { + "templateId": "HomebaseNode:T3_Research_24CDE2F34", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zgmln-f2ok-2yrzz5-2sf8": { + "templateId": "HomebaseNode:T3_Research_40DCA0BC1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vih3m-kdwz-s537wl-xd5h": { + "templateId": "HomebaseNode:T3_Research_88DDAFB05", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hg1f6-dq54-8a3z5x-z2wz": { + "templateId": "HomebaseNode:T3_Research_B708B4253", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fz7ms-9bog-lhwlhm-8ipq": { + "templateId": "HomebaseNode:T3_Research_AF4DC7FB4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4ov4s-bez2-8qf2eu-fgdl": { + "templateId": "HomebaseNode:T3_Research_C60271AF5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "87636-6q7n-29sh3a-2882": { + "templateId": "HomebaseNode:T3_Research_BEB49E403", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "78gry-swl3-xghh75-qf5r": { + "templateId": "HomebaseNode:T3_Research_2066C9CE7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "em5xu-v7sg-qhia9l-t2c3": { + "templateId": "HomebaseNode:T3_Research_E1A249502", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "oghep-dpa9-56lbb4-ttzu": { + "templateId": "HomebaseNode:T3_Research_1EF0F9B86", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "a2tii-o4de-cigd55-biwk": { + "templateId": "HomebaseNode:T3_Research_18366F893", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3c99e-2kkn-pdopvn-d8gb": { + "templateId": "HomebaseNode:T3_Research_0356C8B05", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "q1z1a-axh5-i6hfas-ypok": { + "templateId": "HomebaseNode:T3_Research_8E5BF50B8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o6oq4-5lc9-7sk5q1-5x97": { + "templateId": "HomebaseNode:T3_Research_A2C489547", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "unglz-7r8d-ts4fvc-v5q9": { + "templateId": "HomebaseNode:T3_Research_6EF8FB684", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ukqp2-zh9d-5yh40a-wmp0": { + "templateId": "HomebaseNode:T3_Research_330E09826", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pzqix-word-lvt9t3-zq5h": { + "templateId": "HomebaseNode:T3_Research_F49975212", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dauyt-yg0f-1kx9gp-qbo6": { + "templateId": "HomebaseNode:T3_Research_EB7B4E453", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wtcbf-8u44-3c6g4g-hfa6": { + "templateId": "HomebaseNode:T3_Research_D3CC6C383", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "n1foq-y826-1woo1v-9p1x": { + "templateId": "HomebaseNode:T3_Research_9CDE36052", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4fcd2-iacq-on1lq8-lgkw": { + "templateId": "HomebaseNode:T3_Research_FCCD6F5F9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gsev0-y7q5-z5td63-n3ku": { + "templateId": "HomebaseNode:TRTrunk_3_1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "i3efy-v4ze-yz9llv-87q3": { + "templateId": "HomebaseNode:TRTrunk_4_0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "z6c79-oygc-5qqyah-589p": { + "templateId": "HomebaseNode:T4_Research_5D5DA3875", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dhy9m-e7gf-9oceuh-zu8s": { + "templateId": "HomebaseNode:T4_Research_3465FE4C4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "z0g02-rzb4-wqo2k1-4r3n": { + "templateId": "HomebaseNode:T4_Research_0DA1313B4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yiuhy-3t5r-lmd0vt-fcbw": { + "templateId": "HomebaseNode:T4_Research_F6FA2A943", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g075q-gmcv-3i0ilo-8psp": { + "templateId": "HomebaseNode:T4_Research_2C5E6CA32", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h3rt9-3sgw-wyxzit-iec8": { + "templateId": "HomebaseNode:T4_Research_05F0E3251", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4ei7s-uzis-y0rovb-w6o7": { + "templateId": "HomebaseNode:T4_Research_4ED905580", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "47f1f-wibs-a8uio0-19v8": { + "templateId": "HomebaseNode:T4_Research_806A452A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bm1on-chke-a7qzhc-k6uf": { + "templateId": "HomebaseNode:T4_Research_990FA7030", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6vodn-r8yi-hqb7dk-bnzh": { + "templateId": "HomebaseNode:T4_Research_FD6399601", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nd67g-blyz-tugy8b-5u4a": { + "templateId": "HomebaseNode:T4_Research_BEDE637C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "d6mz3-a5qp-q653tf-wnf0": { + "templateId": "HomebaseNode:T4_Research_6085AB582", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "s1bn5-7pvw-e1htnv-0xdq": { + "templateId": "HomebaseNode:T4_Research_1782F61F2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "94ku6-mxul-qyi5b5-2ofr": { + "templateId": "HomebaseNode:T4_Research_87BC668A3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7so7h-5g3r-s5logd-dllu": { + "templateId": "HomebaseNode:T4_Research_7C66E51A3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "092sr-f82m-rv18rv-y67i": { + "templateId": "HomebaseNode:T4_Research_0AF63DBB1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "r4l9z-s50z-01upzb-oqui": { + "templateId": "HomebaseNode:T4_Research_7A19BC553", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1um3a-pthq-hpo42t-oroc": { + "templateId": "HomebaseNode:T4_Research_D8DF26F42", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6v37o-ot7y-3ui9qz-v55n": { + "templateId": "HomebaseNode:T4_Research_DF4C1EB61", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "z40eh-nsp8-7gn2ia-xxyh": { + "templateId": "HomebaseNode:T4_Research_1F3130D74", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qnvp1-vdv5-q33deq-i2uu": { + "templateId": "HomebaseNode:T4_Research_24ECB6ED0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mh3qn-s9bc-whwdyq-g4ff": { + "templateId": "HomebaseNode:T4_Research_6970CA911", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9iruz-vl3y-lh212w-06cp": { + "templateId": "HomebaseNode:T4_Research_6950520A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "e ": { + "templateId": "HomebaseNode:T4_Research_0002FFCE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ihp15-bzq1-0fvcmr-cpe8": { + "templateId": "HomebaseNode:T4_Research_ADE43EB42", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lgtn3-xyf8-boznxt-hw79": { + "templateId": "HomebaseNode:T4_Research_CF5201C53", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9fnla-e5tu-rpkxv5-ms38": { + "templateId": "HomebaseNode:T4_Research_A442E02E5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b8i5u-lnhz-f34mcu-8vct": { + "templateId": "HomebaseNode:T4_Research_C498D7916", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m2n7o-s0qa-q9pwv7-io9z": { + "templateId": "HomebaseNode:T4_Research_949685757", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qapra-m8ym-bamh2w-dnq2": { + "templateId": "HomebaseNode:T4_Research_5B2432E08", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pmt1z-zk1m-l4ucs9-3ihx": { + "templateId": "HomebaseNode:T4_Research_C03156729", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wd726-5nlr-fk25dk-z9kx": { + "templateId": "HomebaseNode:T4_Research_86EA19CB10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zx9mn-urcx-blheml-navy": { + "templateId": "HomebaseNode:T4_Research_8A5CB4BD4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p3uo6-2acs-uh11ls-q3bw": { + "templateId": "HomebaseNode:T4_Research_2AC5DFFE2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8sbi7-91xi-sh65bi-39xq": { + "templateId": "HomebaseNode:T4_Research_96FCF31F4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "81yiq-s9n3-cq07ot-6ppv": { + "templateId": "HomebaseNode:T4_Research_62F4D4C75", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xkm9y-xvok-tlnrmu-qpbw": { + "templateId": "HomebaseNode:T4_Research_E4F5B7D33", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4zoi0-t6b5-yhwel5-fdro": { + "templateId": "HomebaseNode:T4_Research_6E74626D6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k66ys-xbte-mtwmlp-ux3r": { + "templateId": "HomebaseNode:T4_Research_EE28E1455", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dxusm-rcvm-3cyk48-rzkn": { + "templateId": "HomebaseNode:T4_Research_D9B9ACC97", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nktpn-m3s8-yxbxv0-gd9l": { + "templateId": "HomebaseNode:T4_Research_85834F016", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "v9ibo-4vci-f1gzct-ez1n": { + "templateId": "HomebaseNode:T4_Research_2D3408466", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ronzt-0vib-9l4efw-eufa": { + "templateId": "HomebaseNode:T4_Research_D39889354", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bc7vp-wv3i-wgx9yi-8kyg": { + "templateId": "HomebaseNode:T4_Research_CB52ED2E6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "x4563-kcu3-bwc7xv-r73u": { + "templateId": "HomebaseNode:T4_Research_B794A99C7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o2rho-oq7y-g8kfef-w9qz": { + "templateId": "HomebaseNode:T4_Research_E68B273F8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cgw3b-ndct-whttob-zdif": { + "templateId": "HomebaseNode:T4_Research_E122D94B8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f1ai8-zdta-3u9d7d-h0uk": { + "templateId": "HomebaseNode:T4_Research_92602BB17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5etki-zp7u-u91p24-6kk4": { + "templateId": "HomebaseNode:T4_Research_D59F481A7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pzp2l-620k-atxfan-sw2d": { + "templateId": "HomebaseNode:T4_Research_08E6699F8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sav9u-wcm7-1whruo-dl2s": { + "templateId": "HomebaseNode:T4_Research_57F9B1498", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "t4ias-35ks-nxbdf5-svyd": { + "templateId": "HomebaseNode:T4_Research_866E34969", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "eem4p-edu7-iq65vn-5fp9": { + "templateId": "HomebaseNode:T4_Research_FBC54B5110", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "uogpd-tebu-910xxs-4e9x": { + "templateId": "HomebaseNode:T4_Research_C2263DD311", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ibaro-gly9-4eartn-do9v": { + "templateId": "HomebaseNode:T4_Research_85880B7A9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l0n07-aqpt-wo2p4b-f5nt": { + "templateId": "HomebaseNode:T4_Research_29AB3FAD9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "77g0q-gapp-3p2fl0-6gmv": { + "templateId": "HomebaseNode:T4_Research_C510196D5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3kzcx-yzfx-l4nbab-3dbo": { + "templateId": "HomebaseNode:T4_Research_77B7B7E021", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9159y-wcz7-kvybad-w9wl": { + "templateId": "HomebaseNode:T4_Research_FBD13E0B20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "31v8p-l35d-vrb2yk-80w2": { + "templateId": "HomebaseNode:T4_Research_8C4FF2FF9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4bxvr-u3t1-dvlsic-n978": { + "templateId": "HomebaseNode:T4_Research_9041558119", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "co0bw-p2i4-gt7ioa-fdmm": { + "templateId": "HomebaseNode:T4_Research_50AD3C3A18", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sf959-7t5e-kev2nb-rm3x": { + "templateId": "HomebaseNode:T4_Research_BD65896217", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rl6c0-wfzn-3myuey-6twr": { + "templateId": "HomebaseNode:T4_Research_6DE82BE116", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dmbie-f3fo-8u76as-2hrr": { + "templateId": "HomebaseNode:T4_Research_1A3360F815", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "am5ml-mzs6-dyqmp3-qg4c": { + "templateId": "HomebaseNode:T4_Research_5B05F0CD14", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g2lpm-zqcf-qoe0b8-q74m": { + "templateId": "HomebaseNode:T4_Research_143D055A13", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ntx70-406h-nb657i-ii91": { + "templateId": "HomebaseNode:T4_Research_4B2B314212", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "n4669-w7ka-qauyko-g9yw": { + "templateId": "HomebaseNode:T4_Research_60BECF5C11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qghw4-bilg-nzhqlk-p2zu": { + "templateId": "HomebaseNode:T4_Research_FFBEB25A5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7u5as-ay06-w6d886-t353": { + "templateId": "HomebaseNode:T4_Research_9F67DB025", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kd9oz-rid1-ldky8v-p6mg": { + "templateId": "HomebaseNode:T4_Research_DCF7D2104", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hga4r-ky0d-ufy4th-e8qv": { + "templateId": "HomebaseNode:T4_Research_D469F49D4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2oybe-0uym-vtvtao-1czc": { + "templateId": "HomebaseNode:T4_Research_0B4E2EB53", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bsf0w-uxcr-mtvsyd-apz7": { + "templateId": "HomebaseNode:T4_Research_B0CBC67F2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k5mxg-oc2l-mgif8p-yzyl": { + "templateId": "HomebaseNode:T4_Research_297CF12B1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9nc1i-0cwx-n3frpn-u2mh": { + "templateId": "HomebaseNode:T4_Research_D178232F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "a9avo-md0y-fwc1sw-1qr0": { + "templateId": "HomebaseNode:T4_Research_143A1B010", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5a2g0-5g2q-o9ffkf-63cl": { + "templateId": "HomebaseNode:T4_Research_4CB258320", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lx0ut-6vly-dk4d1o-0smy": { + "templateId": "HomebaseNode:T4_Research_4D72E54C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gea56-xs4q-zl3lhi-upfz": { + "templateId": "HomebaseNode:T4_Research_6D8F7DAB2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "64q3z-hm55-cqthd7-c1z8": { + "templateId": "HomebaseNode:T4_Research_800C36E52", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ibnef-m4qq-1mo8a1-08u4": { + "templateId": "HomebaseNode:T4_Research_7DE649371", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vnas6-k6kz-h6k9bv-ftwa": { + "templateId": "HomebaseNode:T4_Research_6C012B1E3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m7cfr-5piw-nk7i6d-ifli": { + "templateId": "HomebaseNode:T4_Research_66A77BD23", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vgfuc-shn1-h3akd4-pw1z": { + "templateId": "HomebaseNode:T4_Research_42B6496F1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "821ha-g1ky-taoe0h-9law": { + "templateId": "HomebaseNode:T4_Research_F1D475263", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "onw7y-u2ka-405kyo-35k3": { + "templateId": "HomebaseNode:T4_Research_A901DFFE2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h2q36-hdvm-7kdmlb-38p0": { + "templateId": "HomebaseNode:T4_Research_37206D211", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lzgxu-mv55-czo4b8-e86q": { + "templateId": "HomebaseNode:T4_Research_478935174", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2asii-i3fr-54scpa-5is9": { + "templateId": "HomebaseNode:T4_Research_FD9A30F10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o93gh-fhra-9apnpn-r1yg": { + "templateId": "HomebaseNode:T4_Research_B01AE71C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ir5w7-thak-srxfp8-qqkg": { + "templateId": "HomebaseNode:T4_Research_8C0D8B320", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f13fz-lftm-ohatu1-r9c2": { + "templateId": "HomebaseNode:T4_Research_5D2134621", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dxchd-mwsb-3u429p-69xn": { + "templateId": "HomebaseNode:T4_Research_7C9260F62", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "derik-y6ex-ehcm6r-lgli": { + "templateId": "HomebaseNode:T4_Research_424AF64A3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "uav52-ilz9-bd3502-bl8e": { + "templateId": "HomebaseNode:T4_Research_7ADDBB805", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "r55ha-3e8c-smch3f-ff8m": { + "templateId": "HomebaseNode:T4_Research_FBBD71C96", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "moyop-fosv-c696tu-9025": { + "templateId": "HomebaseNode:T4_Research_30C626C17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "v2pbg-b2br-qfmdlu-t6s0": { + "templateId": "HomebaseNode:T4_Research_6421FCAF8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "uudcl-yxll-580rni-9ot2": { + "templateId": "HomebaseNode:T4_Research_E5101A759", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1twyx-cp8b-5yvrvy-4tdp": { + "templateId": "HomebaseNode:T4_Research_41ED22CE10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "0hsw6-i62h-v3kaku-8bt1": { + "templateId": "HomebaseNode:T4_Research_4C1080774", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wcp41-8q0l-g7hg83-tl9d": { + "templateId": "HomebaseNode:T4_Research_108DCEC92", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "x8taa-fv3t-1i7ufb-bzkg": { + "templateId": "HomebaseNode:T4_Research_F31044D14", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8wqut-0vs7-2bq5df-e4vt": { + "templateId": "HomebaseNode:T4_Research_C858E35A5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zsehb-5hy0-59a8tn-a2qr": { + "templateId": "HomebaseNode:T4_Research_468E857A6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2tkd9-7uxh-vuvefi-x6y0": { + "templateId": "HomebaseNode:T4_Research_0BEE01B35", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1ucl0-6cww-is3cwa-m85m": { + "templateId": "HomebaseNode:T4_Research_040079B07", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3x9un-e3au-8wi3lb-4aat": { + "templateId": "HomebaseNode:T4_Research_1ACFC7918", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kbxff-5yym-pgmryo-opdz": { + "templateId": "HomebaseNode:T4_Research_8EBF80409", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4xcgg-lbsw-46v083-9568": { + "templateId": "HomebaseNode:T4_Research_303E53CC10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "d9167-wxnn-xzuuqt-eyp1": { + "templateId": "HomebaseNode:T4_Research_BDE783F111", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "s1wx6-oqpu-stcsve-yxg5": { + "templateId": "HomebaseNode:T4_Research_36CF54759", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k4u5x-1t6e-p859in-1aia": { + "templateId": "HomebaseNode:T4_Research_E4CA598F8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "w8upv-ne1r-pa1hns-l0i3": { + "templateId": "HomebaseNode:T4_Research_34B078C57", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ne5w6-mx52-pt4d22-dnf6": { + "templateId": "HomebaseNode:T4_Research_EA348B7E6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dpfx8-caf6-m9sryo-xw7r": { + "templateId": "HomebaseNode:T4_Research_4857FFC06", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hqf03-z1d8-6ukopt-b9lh": { + "templateId": "HomebaseNode:T4_Research_8006526C4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "n6x7w-4k6m-19bi46-9and": { + "templateId": "HomebaseNode:T4_Research_9509CDBC7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nhoel-yce5-3ucnh7-nmrd": { + "templateId": "HomebaseNode:T4_Research_CED5C91E8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2tb57-obmz-0hpewm-p2o0": { + "templateId": "HomebaseNode:T4_Research_7A4057E95", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "i920v-tdhu-cm2nug-m7rc": { + "templateId": "HomebaseNode:T4_Research_E5B708AC9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h5ans-ehe7-grv8q9-1po4": { + "templateId": "HomebaseNode:T4_Research_A22C720C9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yf351-9762-uxiiwl-1st9": { + "templateId": "HomebaseNode:T4_Research_B406B19221", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bzmda-cz3g-nevisl-1i99": { + "templateId": "HomebaseNode:T4_Research_93FB640920", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o17ey-t4wu-m3rg40-eg5d": { + "templateId": "HomebaseNode:T4_Research_C6AC6DCD19", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "i2gao-ltvh-de80st-qwzp": { + "templateId": "HomebaseNode:T4_Research_BD62253618", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "liu84-mci5-tub8nv-uvr7": { + "templateId": "HomebaseNode:T4_Research_4F0BF50F17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mmocw-79qq-1ik958-izqp": { + "templateId": "HomebaseNode:T4_Research_E5F6B93D8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8muc2-ym4b-syn85d-930n": { + "templateId": "HomebaseNode:T4_Research_51BA89697", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cthsl-12gd-ygc9nh-46ip": { + "templateId": "HomebaseNode:T4_Research_7BE60D1F6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9bncx-olpv-wx3hc2-94uk": { + "templateId": "HomebaseNode:T4_Research_E05201F55", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gnr7r-mh46-h0qr86-s2i2": { + "templateId": "HomebaseNode:T4_Research_67582B143", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "0a20t-4eu1-fcazfi-07un": { + "templateId": "HomebaseNode:T4_Research_EC61C87B11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dfivx-01ri-4m9h2o-dk6s": { + "templateId": "HomebaseNode:T4_Research_A10A422F12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xah4p-rcwx-0yciok-nxup": { + "templateId": "HomebaseNode:T4_Research_F956124D13", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "s1key-irlr-ubdtex-odmb": { + "templateId": "HomebaseNode:T4_Research_4E145E6814", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "du7b8-dof9-wuzb8r-z455": { + "templateId": "HomebaseNode:T4_Research_0E591BA215", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hm7o8-za5p-23tbbr-d70v": { + "templateId": "HomebaseNode:T4_Research_822B8CA716", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "Hero:HID_Commando_045_Chaos_Agent_SR_T05": { + "templateId": "Hero:HID_Commando_045_Chaos_Agent_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_046_ForestQueen_SR_T05": { + "templateId": "Hero:HID_Commando_046_ForestQueen_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_046_ForestQueen_VR_T05": { + "templateId": "Hero:HID_Commando_046_ForestQueen_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_030_RetroSciFiSoldier_SR_T05": { + "templateId": "Hero:HID_Commando_030_RetroSciFiSoldier_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GrenadeGun_VR_T05": { + "templateId": "Hero:HID_Commando_GrenadeGun_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_031_RadSoldier_SR_T05": { + "templateId": "Hero:HID_Commando_031_RadSoldier_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunTough_RS01_SR_T05": { + "templateId": "Hero:HID_Commando_GunTough_RS01_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_013_VR_T05": { + "templateId": "Hero:HID_Commando_013_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_008_VR_T05": { + "templateId": "Hero:HID_Commando_008_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GCGrenade_R_T04": { + "templateId": "Hero:HID_Commando_GCGrenade_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_XBOX_VR_T05": { + "templateId": "Hero:HID_Commando_XBOX_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_XBOX_SR_T05": { + "templateId": "Hero:HID_Commando_XBOX_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_XBOX_R_T04": { + "templateId": "Hero:HID_Commando_XBOX_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_Sony_VR_T05": { + "templateId": "Hero:HID_Commando_Sony_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_Sony_SR_T05": { + "templateId": "Hero:HID_Commando_Sony_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_Sony_R_T04": { + "templateId": "Hero:HID_Commando_Sony_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_ShockDamage_VR_T05": { + "templateId": "Hero:HID_Commando_ShockDamage_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_ShockDamage_SR_T05": { + "templateId": "Hero:HID_Commando_ShockDamage_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_ShockDamage_R_T04": { + "templateId": "Hero:HID_Commando_ShockDamage_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_Myth03_SR_T05": { + "templateId": "Hero:HID_Commando_Myth03_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier5.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_Myth02_SR_T05": { + "templateId": "Hero:HID_Commando_Myth02_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunTough_VR_T05": { + "templateId": "Hero:HID_Commando_GunTough_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunTough_Valentine_SR_T05": { + "templateId": "Hero:HID_Commando_GunTough_Valentine_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunTough_SR_T05": { + "templateId": "Hero:HID_Commando_GunTough_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunTough_R_T04": { + "templateId": "Hero:HID_Commando_GunTough_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunTough_UC_T03": { + "templateId": "Hero:HID_Commando_GunTough_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunTough_M_4thJuly_SR_T05": { + "templateId": "Hero:HID_Commando_GunTough_M_4thJuly_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunTough_F_4thJuly_SR_T05": { + "templateId": "Hero:HID_Commando_GunTough_F_4thJuly_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunHeadshot_VR_T05": { + "templateId": "Hero:HID_Commando_GunHeadshot_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunHeadShot_Starter_M_SR_T05": { + "templateId": "Hero:HID_Commando_GunHeadShot_Starter_M_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunHeadshot_SR_T05": { + "templateId": "Hero:HID_Commando_GunHeadshot_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunHeadshot_M_V1_RoadTrip_SR_T05": { + "templateId": "Hero:HID_Commando_GunHeadshot_M_V1_RoadTrip_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunHeadshotHW_VR_T05": { + "templateId": "Hero:HID_Commando_GunHeadshotHW_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunHeadshotHW_SR_T05": { + "templateId": "Hero:HID_Commando_GunHeadshotHW_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunHeadshotHW_RS01_SR_T05": { + "templateId": "Hero:HID_Commando_GunHeadshotHW_RS01_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GrenadeMaster_SR_T05": { + "templateId": "Hero:HID_Commando_GrenadeMaster_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Mythic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GrenadeGun_UC_T03": { + "templateId": "Hero:HID_Commando_GrenadeGun_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GrenadeGun_SR_T05": { + "templateId": "Hero:HID_Commando_GrenadeGun_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": 0, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "Squad_Combat_AdventureSquadOne", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GrenadeGun_R_T04": { + "templateId": "Hero:HID_Commando_GrenadeGun_R_T04", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GrenadeGun_M_T_SR_T05": { + "templateId": "Hero:HID_Commando_GrenadeGun_M_T_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GCGrenade_VR_T05": { + "templateId": "Hero:HID_Commando_GCGrenade_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GCGrenade_T_VR_T05": { + "templateId": "Hero:HID_Commando_GCGrenade_T_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GCGrenade_T_SR_T05": { + "templateId": "Hero:HID_Commando_GCGrenade_T_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GCGrenade_SR_T05": { + "templateId": "Hero:HID_Commando_GCGrenade_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_044_Gumshoe_Dark_VR_T05": { + "templateId": "Hero:HID_Commando_044_Gumshoe_Dark_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_044_Gumshoe_Dark_SR_T05": { + "templateId": "Hero:HID_Commando_044_Gumshoe_Dark_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_042_Major_VR_T05": { + "templateId": "Hero:HID_Commando_042_Major_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_042_Major_SR_T05": { + "templateId": "Hero:HID_Commando_042_Major_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_041_Pirate_02_BR_VR_T05": { + "templateId": "Hero:HID_Commando_041_Pirate_02_BR_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_041_Pirate_02_BR_SR_T05": { + "templateId": "Hero:HID_Commando_041_Pirate_02_BR_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "durability": " r", + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_040_Pirate_BR_VR_T05": { + "templateId": "Hero:HID_Commando_040_Pirate_BR_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_040_Pirate_BR_SR_T05": { + "templateId": "Hero:HID_Commando_040_Pirate_BR_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_039_Pajama_Party_VR_T05": { + "templateId": "Hero:HID_Commando_039_Pajama_Party_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_039_Pajama_Party_SR_T05": { + "templateId": "Hero:HID_Commando_039_Pajama_Party_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_038_Shock_Wave_VR_T05": { + "templateId": "Hero:HID_Commando_038_Shock_Wave_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_038_Shock_Wave_SR_T05": { + "templateId": "Hero:HID_Commando_038_Shock_Wave_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_035_Caped_Valentine_SR_T05": { + "templateId": "Hero:HID_Commando_035_Caped_Valentine_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_034_ToyTinkerer_VR_T05": { + "templateId": "Hero:HID_Commando_034_ToyTinkerer_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_034_ToyTinkerer_SR_T05": { + "templateId": "Hero:HID_Commando_034_ToyTinkerer_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_033_HalloweenQuestSoldier_SR_T05": { + "templateId": "Hero:HID_Commando_033_HalloweenQuestSoldier_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_032_HalloweenSoldier_SR_T05": { + "templateId": "Hero:HID_Commando_032_HalloweenSoldier_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_031_RadSoldier_VR_T05": { + "templateId": "Hero:HID_Commando_031_RadSoldier_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_030_RetroSciFiSoldier_VR_T05": { + "templateId": "Hero:HID_Commando_030_RetroSciFiSoldier_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_029_DinoSoldier_SR_T05": { + "templateId": "Hero:HID_Commando_029_DinoSoldier_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_028_BunnyBrawler_SR_T05": { + "templateId": "Hero:HID_Commando_028_BunnyBrawler_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_027_PirateSoldier_VR_T05": { + "templateId": "Hero:HID_Commando_027_PirateSoldier_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_027_PirateSoldier_SR_T05": { + "templateId": "Hero:HID_Commando_027_PirateSoldier_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_026_SR_T05": { + "templateId": "Hero:HID_Commando_026_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_025_SR_T05": { + "templateId": "Hero:HID_Commando_025_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_024_VR_T05": { + "templateId": "Hero:HID_Commando_024_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_024_SR_T05": { + "templateId": "Hero:HID_Commando_024_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_023_VR_T05": { + "templateId": "Hero:HID_Commando_023_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_023_SR_T05": { + "templateId": "Hero:HID_Commando_023_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_022_SR_T05": { + "templateId": "Hero:HID_Commando_022_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_021_SR_T05": { + "templateId": "Hero:HID_Commando_021_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_019_SR_T05": { + "templateId": "Hero:HID_Commando_019_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Mythic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_018_SR_T05": { + "templateId": "Hero:HID_Commando_018_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier5.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_017_F_V1_VR_T05": { + "templateId": "Hero:HID_Commando_017_F_V1_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_017_F_V1_SR_T05": { + "templateId": "Hero:HID_Commando_017_F_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_017_F_V1_R_T04": { + "templateId": "Hero:HID_Commando_017_F_V1_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_016_M_V1_SR_T05": { + "templateId": "Hero:HID_Commando_016_M_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_016_F_V1_VR_T05": { + "templateId": "Hero:HID_Commando_016_F_V1_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_016_F_V1_SR_T05": { + "templateId": "Hero:HID_Commando_016_F_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_015_M_V1_VR_T05": { + "templateId": "Hero:HID_Commando_015_M_V1_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_015_M_V1_SR_T05": { + "templateId": "Hero:HID_Commando_015_M_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_015_M_V1_BlockBuster_SR_T05": { + "templateId": "Hero:HID_Commando_015_M_V1_BlockBuster_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_015_F_V1_BlockBuster_SR_T05": { + "templateId": "Hero:HID_Commando_015_F_V1_BlockBuster_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_014_Wukong_SR_T05": { + "templateId": "Hero:HID_Commando_014_Wukong_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Mythic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_014_VR_T05": { + "templateId": "Hero:HID_Commando_014_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_014_SR_T05": { + "templateId": "Hero:HID_Commando_014_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_014_M_SR_T05": { + "templateId": "Hero:HID_Commando_014_M_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_013_StPatricks_M_SR_T05": { + "templateId": "Hero:HID_Commando_013_StPatricks_M_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_013_StPatricks_F_V2_SR_T05": { + "templateId": "Hero:HID_Commando_013_StPatricks_F_V2_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_013_StPatricks_F_V1_SR_T05": { + "templateId": "Hero:HID_Commando_013_StPatricks_F_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_013_SR_T05": { + "templateId": "Hero:HID_Commando_013_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_013_R_T04": { + "templateId": "Hero:HID_Commando_013_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_011_VR_T05": { + "templateId": "Hero:HID_Commando_011_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_011_UC_T03": { + "templateId": "Hero:HID_Commando_011_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_011_SR_T05": { + "templateId": "Hero:HID_Commando_011_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_011_R_T04": { + "templateId": "Hero:HID_Commando_011_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_011_M_SR_T05": { + "templateId": "Hero:HID_Commando_011_M_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_011_M_Easter_SR_T05": { + "templateId": "Hero:HID_Commando_011_M_Easter_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_011_F_V1_RoadTrip_SR_T05": { + "templateId": "Hero:HID_Commando_011_F_V1_RoadTrip_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_010_VR_T05": { + "templateId": "Hero:HID_Commando_010_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_010_SR_T05": { + "templateId": "Hero:HID_Commando_010_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_010_Bday_SR_T05": { + "templateId": "Hero:HID_Commando_010_Bday_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_009_VR_T05": { + "templateId": "Hero:HID_Commando_009_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_009_SR_T05": { + "templateId": "Hero:HID_Commando_009_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_009_R_T04": { + "templateId": "Hero:HID_Commando_009_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_009_M_VR_T05": { + "templateId": "Hero:HID_Commando_009_M_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_009_M_SR_T05": { + "templateId": "Hero:HID_Commando_009_M_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_009_M_R_T04": { + "templateId": "Hero:HID_Commando_009_M_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_008_SR_T05": { + "templateId": "Hero:HID_Commando_008_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_008_R_T04": { + "templateId": "Hero:HID_Commando_008_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_008_FoundersM_SR_T05": { + "templateId": "Hero:HID_Commando_008_FoundersM_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_008_FoundersF_SR_T05": { + "templateId": "Hero:HID_Commando_008_FoundersF_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_007_VR_T05": { + "templateId": "Hero:HID_Commando_007_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_007_UC_T03": { + "templateId": "Hero:HID_Commando_007_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_007_SR_T05": { + "templateId": "Hero:HID_Commando_007_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_007_R_T04": { + "templateId": "Hero:HID_Commando_007_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_007HW_VR_T05": { + "templateId": "Hero:HID_Commando_007HW_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_007HW_SR_T05": { + "templateId": "Hero:HID_Commando_007HW_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_007HW_RS01_SR_T05": { + "templateId": "Hero:HID_Commando_007HW_RS01_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_Prototype": { + "templateId": "Hero:HID_Commando_Prototype", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_040_Lars_VR_T05": { + "templateId": "Hero:HID_Constructor_040_Lars_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_040_Lars_SR_T05": { + "templateId": "Hero:HID_Constructor_040_Lars_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_41_Alien_Agent_SR_T05": { + "templateId": "Hero:HID_Constructor_41_Alien_Agent_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_XBOX_VR_T05": { + "templateId": "Hero:HID_Constructor_XBOX_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_XBOX_SR_T05": { + "templateId": "Hero:HID_Constructor_XBOX_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "slot_unlocked": "v ", + "quantity": 1 + }, + "Hero:HID_Constructor_XBOX_R_T04": { + "templateId": "Hero:HID_Constructor_XBOX_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_Sony_VR_T05": { + "templateId": "Hero:HID_Constructor_Sony_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_Sony_SR_T05": { + "templateId": "Hero:HID_Constructor_Sony_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_Sony_R_T04": { + "templateId": "Hero:HID_Constructor_Sony_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_RushBASE_VR_T05": { + "templateId": "Hero:HID_Constructor_RushBASE_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_RushBASE_UC_T03": { + "templateId": "Hero:HID_Constructor_RushBASE_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_RushBASE_SR_T05": { + "templateId": "Hero:HID_Constructor_RushBASE_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_RushBASE_R_T04": { + "templateId": "Hero:HID_Constructor_RushBASE_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier1.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_RushBASE_F_VR_T05": { + "templateId": "Hero:HID_Constructor_RushBASE_F_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_RushBASE_F_SR_T05": { + "templateId": "Hero:HID_Constructor_RushBASE_F_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_PlasmaDamage_VR_T05": { + "templateId": "Hero:HID_Constructor_PlasmaDamage_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_PlasmaDamage_SR_T05": { + "templateId": "Hero:HID_Constructor_PlasmaDamage_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_PlasmaDamage_R_T04": { + "templateId": "Hero:HID_Constructor_PlasmaDamage_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_PlasmaDamage_Easter_SR_T05": { + "templateId": "Hero:HID_Constructor_PlasmaDamage_Easter_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_Myth02_SR_T05": { + "templateId": "Hero:HID_Constructor_Myth02_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_HammerTank_VR_T05": { + "templateId": "Hero:HID_Constructor_HammerTank_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_HammerTank_R_T04": { + "templateId": "Hero:HID_Constructor_HammerTank_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_HammerTank_UC_T03": { + "templateId": "Hero:HID_Constructor_HammerTank_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_HammerTank_SR_T05": { + "templateId": "Hero:HID_Constructor_HammerTank_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_HammerPlasma_VR_T05": { + "templateId": "Hero:HID_Constructor_HammerPlasma_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_HammerPlasma_SR_T05": { + "templateId": "Hero:HID_Constructor_HammerPlasma_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_HammerPlasma_4thJuly_SR_T05": { + "templateId": "Hero:HID_Constructor_HammerPlasma_4thJuly_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_BaseHyper_SR_T05": { + "templateId": "Hero:HID_Constructor_BaseHyper_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_BaseHyper_VR_T05": { + "templateId": "Hero:HID_Constructor_BaseHyper_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_BaseHyper_R_T04": { + "templateId": "Hero:HID_Constructor_BaseHyper_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_BaseHyperHW_VR_T05": { + "templateId": "Hero:HID_Constructor_BaseHyperHW_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_BaseHyperHW_SR_T05": { + "templateId": "Hero:HID_Constructor_BaseHyperHW_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_BASEBig_SR_T05": { + "templateId": "Hero:HID_Constructor_BASEBig_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Mythic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_039_Assemble_L_VR_T05": { + "templateId": "Hero:HID_Constructor_039_Assemble_L_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_039_Assemble_L_SR_T05": { + "templateId": "Hero:HID_Constructor_039_Assemble_L_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_038_Gumshoe_VR_T05": { + "templateId": "Hero:HID_Constructor_038_Gumshoe_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_038_Gumshoe_SR_T05": { + "templateId": "Hero:HID_Constructor_038_Gumshoe_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_037_Director_VR_T05": { + "templateId": "Hero:HID_Constructor_037_Director_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_037_Director_SR_T05": { + "templateId": "Hero:HID_Constructor_037_Director_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_036_Dino_Constructor_VR_T05": { + "templateId": "Hero:HID_Constructor_036_Dino_Constructor_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_036_Dino_Constructor_SR_T05": { + "templateId": "Hero:HID_Constructor_036_Dino_Constructor_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_035_Birthday_Constructor_SR_T05": { + "templateId": "Hero:HID_Constructor_035_Birthday_Constructor_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_035_Birthday_Constructor_VR_T05": { + "templateId": "Hero:HID_Constructor_035_Birthday_Constructor_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_034_Mechstructor_VR_T05": { + "templateId": "Hero:HID_Constructor_034_Mechstructor_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_034_Mechstructor_SR_T05": { + "templateId": "Hero:HID_Constructor_034_Mechstructor_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_033_Villain_Fleming_VR_T05": { + "templateId": "Hero:HID_Constructor_033_Villain_Fleming_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_033_Villain_Fleming_SR_T05": { + "templateId": "Hero:HID_Constructor_033_Villain_Fleming_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_032_ToyConstructor_VR_T05": { + "templateId": "Hero:HID_Constructor_032_ToyConstructor_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_032_ToyConstructor_SR_T05": { + "templateId": "Hero:HID_Constructor_032_ToyConstructor_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_031_HalloweenConstructor_SR_T05": { + "templateId": "Hero:HID_Constructor_031_HalloweenConstructor_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_030_RadConstructor_SR_T05": { + "templateId": "Hero:HID_Constructor_030_RadConstructor_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_030_RadConstructor_VR_T05": { + "templateId": "Hero:HID_Constructor_030_RadConstructor_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_029_RadStoryConstructor_SR_T05": { + "templateId": "Hero:HID_Constructor_029_RadStoryConstructor_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_028_RetroSciFiConstructor_SR_T05": { + "templateId": "Hero:HID_Constructor_028_RetroSciFiConstructor_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_028_RetroSciFiConstructor_VR_T05": { + "templateId": "Hero:HID_Constructor_028_RetroSciFiConstructor_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_027_DinoConstructor_SR_T05": { + "templateId": "Hero:HID_Constructor_027_DinoConstructor_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_026_BombSquadConstructor_VR_T05": { + "templateId": "Hero:HID_Constructor_026_BombSquadConstructor_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier1.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_026_BombSquadConstructor_SR_T05": { + "templateId": "Hero:HID_Constructor_026_BombSquadConstructor_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_025_ProgressivePirateConstructor_SR_T05": { + "templateId": "Hero:HID_Constructor_025_ProgressivePirateConstructor_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier5.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_024_PirateConstructor_VR_T05": { + "templateId": "Hero:HID_Constructor_024_PirateConstructor_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_024_PirateConstructor_SR_T05": { + "templateId": "Hero:HID_Constructor_024_PirateConstructor_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_023_SR_T05": { + "templateId": "Hero:HID_Constructor_023_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_022_SR_T05": { + "templateId": "Hero:HID_Constructor_022_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_021_SR_T05": { + "templateId": "Hero:HID_Constructor_021_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_020_SR_T05": { + "templateId": "Hero:HID_Constructor_020_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_019_SR_T05": { + "templateId": "Hero:HID_Constructor_019_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_018_SR_T05": { + "templateId": "Hero:HID_Constructor_018_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_017_F_V1_VR_T05": { + "templateId": "Hero:HID_Constructor_017_F_V1_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_017_F_V1_SR_T05": { + "templateId": "Hero:HID_Constructor_017_F_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_017_F_V1_R_T04": { + "templateId": "Hero:HID_Constructor_017_F_V1_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_016_M_V1_SR_T05": { + "templateId": "Hero:HID_Constructor_016_M_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_016_M_V1_BlockBuster_SR_T05": { + "templateId": "Hero:HID_Constructor_016_M_V1_BlockBuster_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_016_F_V1_VR_T05": { + "templateId": "Hero:HID_Constructor_016_F_V1_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_016_F_V1_SR_T05": { + "templateId": "Hero:HID_Constructor_016_F_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_015_VR_T05": { + "templateId": "Hero:HID_Constructor_015_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_015_SR_T05": { + "templateId": "Hero:HID_Constructor_015_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_015_R_T04": { + "templateId": "Hero:HID_Constructor_015_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_014_VR_T05": { + "templateId": "Hero:HID_Constructor_014_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_014_SR_T05": { + "templateId": "Hero:HID_Constructor_014_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_014_R_T04": { + "templateId": "Hero:HID_Constructor_014_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_014_F_SR_T05": { + "templateId": "Hero:HID_Constructor_014_F_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_013_VR_T05": { + "templateId": "Hero:HID_Constructor_013_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_013_UC_T03": { + "templateId": "Hero:HID_Constructor_013_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "requirement": " e", + "quantity": 1 + }, + "Hero:HID_Constructor_013_SR_T05": { + "templateId": "Hero:HID_Constructor_013_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_013_R_T04": { + "templateId": "Hero:HID_Constructor_013_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_011_VR_T05": { + "templateId": "Hero:HID_Constructor_011_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_011_SR_T05": { + "templateId": "Hero:HID_Constructor_011_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_011_R_T04": { + "templateId": "Hero:HID_Constructor_011_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_011_F_V1_RoadTrip_SR_T05": { + "templateId": "Hero:HID_Constructor_011_F_V1_RoadTrip_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_010_VR_T05": { + "templateId": "Hero:HID_Constructor_010_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_010_SR_T05": { + "templateId": "Hero:HID_Constructor_010_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_009_VR_T05": { + "templateId": "Hero:HID_Constructor_009_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_009_SR_T05": { + "templateId": "Hero:HID_Constructor_009_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_009_R_T04": { + "templateId": "Hero:HID_Constructor_009_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_008_VR_T05": { + "templateId": "Hero:HID_Constructor_008_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_008_SR_T05": { + "templateId": "Hero:HID_Constructor_008_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_008_R_T04": { + "templateId": "Hero:HID_Constructor_008_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_008_FoundersM_SR_T05": { + "templateId": "Hero:HID_Constructor_008_FoundersM_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_008_FoundersF_SR_T05": { + "templateId": "Hero:HID_Constructor_008_FoundersF_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_007_VR_T05": { + "templateId": "Hero:HID_Constructor_007_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_007_UC_T03": { + "templateId": "Hero:HID_Constructor_007_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_007_SR_T05": { + "templateId": "Hero:HID_Constructor_007_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_007_R_T04": { + "templateId": "Hero:HID_Constructor_007_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_007HW_VR_T05": { + "templateId": "Hero:HID_Constructor_007HW_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_007HW_SR_T05": { + "templateId": "Hero:HID_Constructor_007HW_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_044_Fennix_SR_T05": { + "templateId": "Hero:HID_Ninja_044_Fennix_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_XBOX_VR_T05": { + "templateId": "Hero:HID_Ninja_XBOX_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_XBOX_SR_T05": { + "templateId": "Hero:HID_Ninja_XBOX_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_XBOX_R_T04": { + "templateId": "Hero:HID_Ninja_XBOX_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_Swordmaster_SR_T05": { + "templateId": "Hero:HID_Ninja_Swordmaster_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Mythic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsRain_VR_T05": { + "templateId": "Hero:HID_Ninja_StarsRain_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsRain_SR_T05": { + "templateId": "Hero:HID_Ninja_StarsRain_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsRainHW_VR_T05": { + "templateId": "Hero:HID_Ninja_StarsRainHW_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsRainHW_SR_T05": { + "templateId": "Hero:HID_Ninja_StarsRainHW_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsAssassin_FoundersF_SR_T05": { + "templateId": "Hero:HID_Ninja_StarsAssassin_FoundersF_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsAssassin_VR_T05": { + "templateId": "Hero:HID_Ninja_StarsAssassin_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsAssassin_UC_T03": { + "templateId": "Hero:HID_Ninja_StarsAssassin_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsAssassin_SR_T05": { + "templateId": "Hero:HID_Ninja_StarsAssassin_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsAssassin_R_T04": { + "templateId": "Hero:HID_Ninja_StarsAssassin_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier1.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsAssassin_FoundersM_SR_T05": { + "templateId": "Hero:HID_Ninja_StarsAssassin_FoundersM_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_Sony_VR_T05": { + "templateId": "Hero:HID_Ninja_Sony_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_Sony_SR_T05": { + "templateId": "Hero:HID_Ninja_Sony_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_Sony_R_T04": { + "templateId": "Hero:HID_Ninja_Sony_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SmokeDimMak_SR_T05": { + "templateId": "Hero:HID_Ninja_SmokeDimMak_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SmokeDimMak_VR_T05": { + "templateId": "Hero:HID_Ninja_SmokeDimMak_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SmokeDimMak_R_T04": { + "templateId": "Hero:HID_Ninja_SmokeDimMak_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashTail_VR_T05": { + "templateId": "Hero:HID_Ninja_SlashTail_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashTail_UC_T03": { + "templateId": "Hero:HID_Ninja_SlashTail_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashTail_SR_T05": { + "templateId": "Hero:HID_Ninja_SlashTail_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashTail_R_T04": { + "templateId": "Hero:HID_Ninja_SlashTail_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier1.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashBreath_R_T04": { + "templateId": "Hero:HID_Ninja_SlashBreath_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashBreath_VR_T05": { + "templateId": "Hero:HID_Ninja_SlashBreath_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashBreath_SR_T05": { + "templateId": "Hero:HID_Ninja_SlashBreath_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashBreathHW_VR_T05": { + "templateId": "Hero:HID_Ninja_SlashBreathHW_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashBreathHW_SR_T05": { + "templateId": "Hero:HID_Ninja_SlashBreathHW_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_Myth03_SR_T05": { + "templateId": "Hero:HID_Ninja_Myth03_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_Myth02_SR_T05": { + "templateId": "Hero:HID_Ninja_Myth02_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_043_Cranium_VR_T05": { + "templateId": "Hero:HID_Ninja_043_Cranium_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier4.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier4.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_043_Cranium_SR_T05": { + "templateId": "Hero:HID_Ninja_043_Cranium_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier4.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier4.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_042_AssembleR_VR_T05": { + "templateId": "Hero:HID_Ninja_042_AssembleR_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_042_AssembleR_SR_T05": { + "templateId": "Hero:HID_Ninja_042_AssembleR_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_041_Deco_VR_T05": { + "templateId": "Hero:HID_Ninja_041_Deco_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_041_Deco_SR_T05": { + "templateId": "Hero:HID_Ninja_041_Deco_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_040_Dennis_VR_T05": { + "templateId": "Hero:HID_Ninja_040_Dennis_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_040_Dennis_SR_T05": { + "templateId": "Hero:HID_Ninja_040_Dennis_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_039_Dino_Ninja_VR_T05": { + "templateId": "Hero:HID_Ninja_039_Dino_Ninja_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_039_Dino_Ninja_SR_T05": { + "templateId": "Hero:HID_Ninja_039_Dino_Ninja_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_038_Male_Ninja_Pirate_VR_T05": { + "templateId": "Hero:HID_Ninja_038_Male_Ninja_Pirate_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier1.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_038_Male_Ninja_Pirate_SR_T05": { + "templateId": "Hero:HID_Ninja_038_Male_Ninja_Pirate_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_037_Junk_Samurai_SR_T05": { + "templateId": "Hero:HID_Ninja_037_Junk_Samurai_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_037_Junk_Samurai_VR_T05": { + "templateId": "Hero:HID_Ninja_037_Junk_Samurai_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_035_F_Cupid_SR_T05": { + "templateId": "Hero:HID_Ninja_035_F_Cupid_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_034_ToyMonkey_VR_T05": { + "templateId": "Hero:HID_Ninja_034_ToyMonkey_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_034_ToyMonkey_SR_T05": { + "templateId": "Hero:HID_Ninja_034_ToyMonkey_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_033_HalloweenNinja_SR_T05": { + "templateId": "Hero:HID_Ninja_033_HalloweenNinja_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_031_RadNinja_SR_T05": { + "templateId": "Hero:HID_Ninja_031_RadNinja_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_031_RadNinja_VR_T05": { + "templateId": "Hero:HID_Ninja_031_RadNinja_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_030_RetroSciFiNinja_SR_T05": { + "templateId": "Hero:HID_Ninja_030_RetroSciFiNinja_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_030_RetroSciFiNinja_VR_T05": { + "templateId": "Hero:HID_Ninja_030_RetroSciFiNinja_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_029_DinoNinja_SR_T05": { + "templateId": "Hero:HID_Ninja_029_DinoNinja_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_028_Razor_SR_T05": { + "templateId": "Hero:HID_Ninja_028_Razor_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_027_BunnyNinja_SR_T05": { + "templateId": "Hero:HID_Ninja_027_BunnyNinja_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [], + "parts": "r " + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_026_RedDragonNinja_SR_T05": { + "templateId": "Hero:HID_Ninja_026_RedDragonNinja_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier4.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_025_PirateNinja_VR_T05": { + "templateId": "Hero:HID_Ninja_025_PirateNinja_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_025_PirateNinja_SR_T05": { + "templateId": "Hero:HID_Ninja_025_PirateNinja_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_024_SR_T05": { + "templateId": "Hero:HID_Ninja_024_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_023_SR_T05": { + "templateId": "Hero:HID_Ninja_023_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier5.Mythic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_022_SR_T05": { + "templateId": "Hero:HID_Ninja_022_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_021_SR_T05": { + "templateId": "Hero:HID_Ninja_021_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_020_SR_T05": { + "templateId": "Hero:HID_Ninja_020_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_019_SR_T05": { + "templateId": "Hero:HID_Ninja_019_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier5.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_018_SR_T05": { + "templateId": "Hero:HID_Ninja_018_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_017_M_V1_VR_T05": { + "templateId": "Hero:HID_Ninja_017_M_V1_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_017_M_V1_SR_T05": { + "templateId": "Hero:HID_Ninja_017_M_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_017_M_V1_R_T04": { + "templateId": "Hero:HID_Ninja_017_M_V1_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_016_M_V1_VR_T05": { + "templateId": "Hero:HID_Ninja_016_M_V1_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_016_M_V1_SR_T05": { + "templateId": "Hero:HID_Ninja_016_M_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_016_F_V1_SR_T05": { + "templateId": "Hero:HID_Ninja_016_F_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_015_F_V1_VR_T05": { + "templateId": "Hero:HID_Ninja_015_F_V1_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_015_F_V1_UC_T03": { + "templateId": "Hero:HID_Ninja_015_F_V1_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_015_F_V1_SR_T05": { + "templateId": "Hero:HID_Ninja_015_F_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_015_F_V1_R_T04": { + "templateId": "Hero:HID_Ninja_015_F_V1_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_015_F_V1_RoadTrip_SR_T05": { + "templateId": "Hero:HID_Ninja_015_F_V1_RoadTrip_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_014_VR_T05": { + "templateId": "Hero:HID_Ninja_014_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_014_UC_T03": { + "templateId": "Hero:HID_Ninja_014_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_014_SR_T05": { + "templateId": "Hero:HID_Ninja_014_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_014_R_T04": { + "templateId": "Hero:HID_Ninja_014_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_014_F_SR_T05": { + "templateId": "Hero:HID_Ninja_014_F_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_013_VR_T05": { + "templateId": "Hero:HID_Ninja_013_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_013_SR_T05": { + "templateId": "Hero:HID_Ninja_013_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_013_R_T04": { + "templateId": "Hero:HID_Ninja_013_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_011_VR_T05": { + "templateId": "Hero:HID_Ninja_011_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_011_SR_T05": { + "templateId": "Hero:HID_Ninja_011_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_011_R_T04": { + "templateId": "Hero:HID_Ninja_011_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_010_VR_T05": { + "templateId": "Hero:HID_Ninja_010_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_010_SR_T05": { + "templateId": "Hero:HID_Ninja_010_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_010_F_VR_T05": { + "templateId": "Hero:HID_Ninja_010_F_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_010_F_SR_T05": { + "templateId": "Hero:HID_Ninja_010_F_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_009_VR_T05": { + "templateId": "Hero:HID_Ninja_009_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_009_SR_T05": { + "templateId": "Hero:HID_Ninja_009_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_009_R_T04": { + "templateId": "Hero:HID_Ninja_009_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_009_F_Valentine_SR_T05": { + "templateId": "Hero:HID_Ninja_009_F_Valentine_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_008_VR_T05": { + "templateId": "Hero:HID_Ninja_008_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_008_SR_T05": { + "templateId": "Hero:HID_Ninja_008_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_008_R_T04": { + "templateId": "Hero:HID_Ninja_008_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_007_VR_T05": { + "templateId": "Hero:HID_Ninja_007_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_007_UC_T03": { + "templateId": "Hero:HID_Ninja_007_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_007_SR_T05": { + "templateId": "Hero:HID_Ninja_007_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_007_R_T04": { + "templateId": "Hero:HID_Ninja_007_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZonePistol_VR_T05": { + "templateId": "Hero:HID_Outlander_ZonePistol_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZonePistol_SR_T05": { + "templateId": "Hero:HID_Outlander_ZonePistol_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZonePistol_R_T04": { + "templateId": "Hero:HID_Outlander_ZonePistol_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZonePistolHW_VR_T05": { + "templateId": "Hero:HID_Outlander_ZonePistolHW_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZonePistolHW_SR_T05": { + "templateId": "Hero:HID_Outlander_ZonePistolHW_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZoneHarvest_UC_T03": { + "templateId": "Hero:HID_Outlander_ZoneHarvest_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZoneHarvest_SR_T05": { + "templateId": "Hero:HID_Outlander_ZoneHarvest_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZoneHarvest_VR_T05": { + "templateId": "Hero:HID_Outlander_ZoneHarvest_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZoneHarvest_R_T04": { + "templateId": "Hero:HID_Outlander_ZoneHarvest_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier1.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZoneHarvest_BlockBuster_SR_T05": { + "templateId": "Hero:HID_Outlander_ZoneHarvest_BlockBuster_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZoneHarvestHW_SR_T05": { + "templateId": "Hero:HID_Outlander_ZoneHarvestHW_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZoneFragment_SR_T05": { + "templateId": "Hero:HID_Outlander_ZoneFragment_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Mythic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_XBOX_VR_T05": { + "templateId": "Hero:HID_Outlander_XBOX_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_XBOX_SR_T05": { + "templateId": "Hero:HID_Outlander_XBOX_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_XBOX_R_T04": { + "templateId": "Hero:HID_Outlander_XBOX_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_SphereFragment_VR_T05": { + "templateId": "Hero:HID_Outlander_SphereFragment_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_SphereFragment_UC_T03": { + "templateId": "Hero:HID_Outlander_SphereFragment_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_SphereFragment_SR_T05": { + "templateId": "Hero:HID_Outlander_SphereFragment_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_SphereFragment_R_T04": { + "templateId": "Hero:HID_Outlander_SphereFragment_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_Sony_VR_T05": { + "templateId": "Hero:HID_Outlander_Sony_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_Sony_SR_T05": { + "templateId": "Hero:HID_Outlander_Sony_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_Sony_R_T04": { + "templateId": "Hero:HID_Outlander_Sony_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_PunchPhase_VR_T05": { + "templateId": "Hero:HID_Outlander_PunchPhase_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier1.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_PunchPhase_UC_T03": { + "templateId": "Hero:HID_Outlander_PunchPhase_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_PunchPhase_SR_T05": { + "templateId": "Hero:HID_Outlander_PunchPhase_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier1.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_PunchPhase_R_T04": { + "templateId": "Hero:HID_Outlander_PunchPhase_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier1.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_PunchDamage_SR_T05": { + "templateId": "Hero:HID_Outlander_PunchDamage_SR_T05", + "visibility": " ", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_PunchDamage_VR_T05": { + "templateId": "Hero:HID_Outlander_PunchDamage_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_Myth03_SR_T05": { + "templateId": "Hero:HID_Outlander_Myth03_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Mythic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_Myth02_SR_T05": { + "templateId": "Hero:HID_Outlander_Myth02_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier5.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_040_AssembleK_VR_T05": { + "templateId": "Hero:HID_Outlander_040_AssembleK_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_040_AssembleK_SR_T05": { + "templateId": "Hero:HID_Outlander_040_AssembleK_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_039_Female_Gumshoe_VR_T05": { + "templateId": "Hero:HID_Outlander_039_Female_Gumshoe_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_039_Female_Gumshoe_SR_T05": { + "templateId": "Hero:HID_Outlander_039_Female_Gumshoe_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_038_Clip_VR_T05": { + "templateId": "Hero:HID_Outlander_038_Clip_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_038_Clip_SR_T05": { + "templateId": "Hero:HID_Outlander_038_Clip_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_037_Fuzzy_Bear_Teddy_VR_T05": { + "templateId": "Hero:HID_Outlander_037_Fuzzy_Bear_Teddy_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_037_Fuzzy_Bear_Teddy_SR_T05": { + "templateId": "Hero:HID_Outlander_037_Fuzzy_Bear_Teddy_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_036_Dino_Outlander_VR_T05": { + "templateId": "Hero:HID_Outlander_036_Dino_Outlander_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_036_Dino_Outlander_SR_T05": { + "templateId": "Hero:HID_Outlander_036_Dino_Outlander_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_035_Palespooky_Outlander_Holiday_SR_T05": { + "templateId": "Hero:HID_Outlander_035_Palespooky_Outlander_Holiday_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_035_Palespooky_Outlander_Holiday_VR_T05": { + "templateId": "Hero:HID_Outlander_035_Palespooky_Outlander_Holiday_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_034_Period_Fleming_VR_T05": { + "templateId": "Hero:HID_Outlander_034_Period_Fleming_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_034_Period_Fleming_SR_T05": { + "templateId": "Hero:HID_Outlander_034_Period_Fleming_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_033_Kurohomura_SR_T05": { + "templateId": "Hero:HID_Outlander_033_Kurohomura_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_032_ToyOutlander_SR_T05": { + "templateId": "Hero:HID_Outlander_032_ToyOutlander_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_031_HalloweenOutlander_SR_T05": { + "templateId": "Hero:HID_Outlander_031_HalloweenOutlander_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_030_RadOutlander_SR_T05": { + "templateId": "Hero:HID_Outlander_030_RadOutlander_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_030_RadOutlander_VR_T05": { + "templateId": "Hero:HID_Outlander_030_RadOutlander_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_029_RetroSciFiOutlander_SR_T05": { + "templateId": "Hero:HID_Outlander_029_RetroSciFiOutlander_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_029_RetroSciFiOutlander_VR_T05": { + "templateId": "Hero:HID_Outlander_029_RetroSciFiOutlander_VR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_028_RetroSciFiStoryOutlander_SR_T05": { + "templateId": "Hero:HID_Outlander_028_RetroSciFiStoryOutlander_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_027_DinoOutlander_SR_T05": { + "templateId": "Hero:HID_Outlander_027_DinoOutlander_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_026_BunnyOutlander_SR_T05": { + "templateId": "Hero:HID_Outlander_026_BunnyOutlander_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_025_PirateOutlander_VR_T05": { + "templateId": "Hero:HID_Outlander_025_PirateOutlander_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_025_PirateOutlander_SR_T05": { + "templateId": "Hero:HID_Outlander_025_PirateOutlander_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_024_SR_T05": { + "templateId": "Hero:HID_Outlander_024_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_023_SR_T05": { + "templateId": "Hero:HID_Outlander_023_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_022_SR_T05": { + "templateId": "Hero:HID_Outlander_022_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier4.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_021_SR_T05": { + "templateId": "Hero:HID_Outlander_021_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_020_SR_T05": { + "templateId": "Hero:HID_Outlander_020_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_018_SR_T05": { + "templateId": "Hero:HID_Outlander_018_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_017_M_V1_VR_T05": { + "templateId": "Hero:HID_Outlander_017_M_V1_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_017_M_V1_SR_T05": { + "templateId": "Hero:HID_Outlander_017_M_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_016_M_V1_VR_T05": { + "templateId": "Hero:HID_Outlander_016_M_V1_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_016_M_V1_SR_T05": { + "templateId": "Hero:HID_Outlander_016_M_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_016_F_V1_SR_T05": { + "templateId": "Hero:HID_Outlander_016_F_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_015_F_V1_VR_T05": { + "templateId": "Hero:HID_Outlander_015_F_V1_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_015_F_V1_SR_T05": { + "templateId": "Hero:HID_Outlander_015_F_V1_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_015_F_V1_R_T04": { + "templateId": "Hero:HID_Outlander_015_F_V1_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_014_VR_T05": { + "templateId": "Hero:HID_Outlander_014_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_014_SR_T05": { + "templateId": "Hero:HID_Outlander_014_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_014_R_T04": { + "templateId": "Hero:HID_Outlander_014_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_014_M_SR_T05": { + "templateId": "Hero:HID_Outlander_014_M_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_013_VR_T05": { + "templateId": "Hero:HID_Outlander_013_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_013_StPatricks_SR_T05": { + "templateId": "Hero:HID_Outlander_013_StPatricks_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_013_SR_T05": { + "templateId": "Hero:HID_Outlander_013_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_011_VR_T05": { + "templateId": "Hero:HID_Outlander_011_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_011_SR_T05": { + "templateId": "Hero:HID_Outlander_011_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_010_VR_T05": { + "templateId": "Hero:HID_Outlander_010_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_010_SR_T05": { + "templateId": "Hero:HID_Outlander_010_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_010_M_VR_T05": { + "templateId": "Hero:HID_Outlander_010_M_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_010_M_SR_T05": { + "templateId": "Hero:HID_Outlander_010_M_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_010_M_4thJuly_SR_T05": { + "templateId": "Hero:HID_Outlander_010_M_4thJuly_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_009_VR_T05": { + "templateId": "Hero:HID_Outlander_009_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_009_SR_T05": { + "templateId": "Hero:HID_Outlander_009_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_009_R_T04": { + "templateId": "Hero:HID_Outlander_009_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_008_VR_T05": { + "templateId": "Hero:HID_Outlander_008_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_008_SR_T05": { + "templateId": "Hero:HID_Outlander_008_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_008_R_T04": { + "templateId": "Hero:HID_Outlander_008_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_008_FoundersM_SR_T05": { + "templateId": "Hero:HID_Outlander_008_FoundersM_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_008_FoundersF_SR_T05": { + "templateId": "Hero:HID_Outlander_008_FoundersF_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_007_VR_T05": { + "templateId": "Hero:HID_Outlander_007_VR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Epic", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Epic", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_007_UC_T03": { + "templateId": "Hero:HID_Outlander_007_UC_T03", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_007_SR_T05": { + "templateId": "Hero:HID_Outlander_007_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier3.Legendary", + "owned": [] + } + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_007_R_T04": { + "templateId": "Hero:HID_Outlander_007_R_T04", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Rare", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_007_RS01_SR_T05": { + "templateId": "Hero:HID_Outlander_007_RS01_SR_T05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier2.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Wood_Spikes_VR_T05": { + "templateId": "Schematic:SID_Wall_Wood_Spikes_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Wood_Spikes_UC_T03": { + "templateId": "Schematic:SID_Wall_Wood_Spikes_UC_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Wood_Spikes_SR_T05": { + "templateId": "Schematic:SID_Wall_Wood_Spikes_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Wood_Spikes_R_T04": { + "templateId": "Schematic:SID_Wall_Wood_Spikes_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Wood_Spikes_C_T02": { + "templateId": "Schematic:SID_Wall_Wood_Spikes_C_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Speaker_VR_T05": { + "templateId": "Schematic:SID_Wall_Speaker_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Speaker_UC_T03": { + "templateId": "Schematic:SID_Wall_Speaker_UC_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Speaker_SR_T05": { + "templateId": "Schematic:SID_Wall_Speaker_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "book_requirement": " P", + "quantity": 1 + }, + "Schematic:SID_Wall_Speaker_R_T04": { + "templateId": "Schematic:SID_Wall_Speaker_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Mechstructor_VR_T05": { + "templateId": "Schematic:SID_Wall_Mechstructor_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Mechstructor_SR_T05": { + "templateId": "Schematic:SID_Wall_Mechstructor_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Light_VR_T05": { + "templateId": "Schematic:SID_Wall_Light_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Light_SR_T05": { + "templateId": "Schematic:SID_Wall_Light_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Light_R_T04": { + "templateId": "Schematic:SID_Wall_Light_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Launcher_VR_T05": { + "templateId": "Schematic:SID_Wall_Launcher_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Launcher_UC_T03": { + "templateId": "Schematic:SID_Wall_Launcher_UC_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Launcher_SR_T05": { + "templateId": "Schematic:SID_Wall_Launcher_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Launcher_R_T04": { + "templateId": "Schematic:SID_Wall_Launcher_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Electric_VR_T05": { + "templateId": "Schematic:SID_Wall_Electric_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Electric_UC_T03": { + "templateId": "Schematic:SID_Wall_Electric_UC_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Electric_SR_T05": { + "templateId": "Schematic:SID_Wall_Electric_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Electric_R_T04": { + "templateId": "Schematic:SID_Wall_Electric_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Darts_VR_T05": { + "templateId": "Schematic:SID_Wall_Darts_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Darts_UC_T03": { + "templateId": "Schematic:SID_Wall_Darts_UC_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Darts_SR_T05": { + "templateId": "Schematic:SID_Wall_Darts_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Darts_R_T04": { + "templateId": "Schematic:SID_Wall_Darts_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Cannons_VR_T05": { + "templateId": "Schematic:SID_Wall_Cannons_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Cannons_SR_T05": { + "templateId": "Schematic:SID_Wall_Cannons_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Cannons_R_T04": { + "templateId": "Schematic:SID_Wall_Cannons_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Track": { + "templateId": "Schematic:SID_Floor_Track", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Ward_VR_T05": { + "templateId": "Schematic:SID_Floor_Ward_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Ward_UC_T03": { + "templateId": "Schematic:SID_Floor_Ward_UC_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Ward_SR_T05": { + "templateId": "Schematic:SID_Floor_Ward_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Ward_R_T04": { + "templateId": "Schematic:SID_Floor_Ward_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Tar_VR_T05": { + "templateId": "Schematic:SID_Floor_Tar_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Tar_SR_T05": { + "templateId": "Schematic:SID_Floor_Tar_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Tar_R_T04": { + "templateId": "Schematic:SID_Floor_Tar_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_Wood_VR_T05": { + "templateId": "Schematic:SID_Floor_Spikes_Wood_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_Wood_UC_T03": { + "templateId": "Schematic:SID_Floor_Spikes_Wood_UC_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_Wood_SR_T05": { + "templateId": "Schematic:SID_Floor_Spikes_Wood_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_Wood_R_T04": { + "templateId": "Schematic:SID_Floor_Spikes_Wood_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_Wood_C_T02": { + "templateId": "Schematic:SID_Floor_Spikes_Wood_C_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_VR_T05": { + "templateId": "Schematic:SID_Floor_Spikes_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_UC_T03": { + "templateId": "Schematic:SID_Floor_Spikes_UC_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_SR_T05": { + "templateId": "Schematic:SID_Floor_Spikes_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_R_T04": { + "templateId": "Schematic:SID_Floor_Spikes_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Player_Jump_Pad_Free_Direction": { + "templateId": "Schematic:SID_Floor_Player_Jump_Pad_Free_Direction", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Player_Jump_Pad": { + "templateId": "Schematic:SID_Floor_Player_Jump_Pad", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Launcher_VR_T05": { + "templateId": "Schematic:SID_Floor_Launcher_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Launcher_UC_T03": { + "templateId": "Schematic:SID_Floor_Launcher_UC_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Launcher_SR_T05": { + "templateId": "Schematic:SID_Floor_Launcher_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Launcher_R_T04": { + "templateId": "Schematic:SID_Floor_Launcher_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Health_VR_T05": { + "templateId": "Schematic:SID_Floor_Health_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Health_UC_T03": { + "templateId": "Schematic:SID_Floor_Health_UC_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Health_SR_T05": { + "templateId": "Schematic:SID_Floor_Health_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Health_R_T04": { + "templateId": "Schematic:SID_Floor_Health_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Health_C_T00": { + "templateId": "Schematic:SID_Floor_Health_C_T00", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Freeze_VR_T05": { + "templateId": "Schematic:SID_Floor_Freeze_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Freeze_SR_T05": { + "templateId": "Schematic:SID_Floor_Freeze_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Freeze_R_T04": { + "templateId": "Schematic:SID_Floor_Freeze_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_FlameGrill_VR_T05": { + "templateId": "Schematic:SID_Floor_FlameGrill_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_FlameGrill_SR_T05": { + "templateId": "Schematic:SID_Floor_FlameGrill_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_FlameGrill_R_T04": { + "templateId": "Schematic:SID_Floor_FlameGrill_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Defender": { + "templateId": "Schematic:SID_Floor_Defender", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Campfire_VR_T05": { + "templateId": "Schematic:SID_Floor_Campfire_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Campfire_SR_T05": { + "templateId": "Schematic:SID_Floor_Campfire_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Campfire_R_T04": { + "templateId": "Schematic:SID_Floor_Campfire_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Gas_VR_T05": { + "templateId": "Schematic:SID_Ceiling_Gas_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Gas_UC_T03": { + "templateId": "Schematic:SID_Ceiling_Gas_UC_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Gas_SR_T05": { + "templateId": "Schematic:SID_Ceiling_Gas_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Gas_R_T04": { + "templateId": "Schematic:SID_Ceiling_Gas_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Falling_VR_T05": { + "templateId": "Schematic:SID_Ceiling_Falling_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Falling_SR_T05": { + "templateId": "Schematic:SID_Ceiling_Falling_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Falling_R_T04": { + "templateId": "Schematic:SID_Ceiling_Falling_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_Single_VR_T05": { + "templateId": "Schematic:SID_Ceiling_Electric_Single_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_Single_UC_T03": { + "templateId": "Schematic:SID_Ceiling_Electric_Single_UC_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_Single_SR_T05": { + "templateId": "Schematic:SID_Ceiling_Electric_Single_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_Single_R_T04": { + "templateId": "Schematic:SID_Ceiling_Electric_Single_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_Single_C_T02": { + "templateId": "Schematic:SID_Ceiling_Electric_Single_C_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_AOE_VR_T05": { + "templateId": "Schematic:SID_Ceiling_Electric_AOE_VR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_AOE_SR_T05": { + "templateId": "Schematic:SID_Ceiling_Electric_AOE_SR_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_AOE_R_T04": { + "templateId": "Schematic:SID_Ceiling_Electric_AOE_R_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Winter_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Winter_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Winter_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Winter_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Vindertech_Bow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Vindertech_Bow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Vindertech_Bow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Vindertech_Bow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Valentine_Bow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Valentine_Bow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Valentine_Bow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Valentine_Bow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_VacuumTube_Bow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_VacuumTube_Bow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_VacuumTube_Bow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_VacuumTube_Bow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_VacuumTube_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_VacuumTube_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_VacuumTube_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_VacuumTube_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_VacuumTube_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_VacuumTube_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_TripleShot_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_TripleShot_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_TripleShot_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_TripleShot_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_TripleShot_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_TripleShot_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_TripleShot_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_TripleShot_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Steampunk_Bow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Steampunk_Bow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Steampunk_Bow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Steampunk_Bow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Steampunk_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Steampunk_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "itemSource": "R ", + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Steampunk_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Steampunk_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Steampunk_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Steampunk_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Steampunk_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Steampunk_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_VT_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_VT_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_VT_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_VT_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_UC_Ore_T03": { + "templateId": "Schematic:SID_Sniper_Standard_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_R_Ore_T04": { + "templateId": "Schematic:SID_Sniper_Standard_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_R_Crystal_T04": { + "templateId": "Schematic:SID_Sniper_Standard_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_C_Ore_T02": { + "templateId": "Schematic:SID_Sniper_Standard_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Shredder_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Shredder_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Shredder_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Shredder_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Shredder_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Shredder_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Shredder_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Shredder_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Scavenger_Bow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Scavenger_Bow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Scavenger_Bow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Scavenger_Bow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Scavenger_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Scavenger_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Scavenger_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Scavenger_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_RetroSciFi_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_RetroSciFi_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_RetroSciFi_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_RetroSciFi_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_RetroSciFi_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_RetroSciFi_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_RetroSciFi_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_RetroSciFi_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_RatRod_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_RatRod_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_RatRod_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_RatRod_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_RatRod_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_RatRod_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_RatRod_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_RatRod_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Neon_Bow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Neon_Bow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Neon_Bow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Neon_Bow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_NeonGlow_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_NeonGlow_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_NeonGlow_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_NeonGlow_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_NeonGlow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_NeonGlow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_NeonGlow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_NeonGlow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Military_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Military_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Military_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Military_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Military_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Military_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Military_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Military_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Medieval_Bow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Medieval_Bow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Medieval_Bow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Medieval_Bow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Medieval_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Medieval_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Medieval_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Medieval_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Hydraulic_Bow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Hydraulic_Bow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Hydraulic_Bow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Hydraulic_Bow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Hydraulic_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Hydraulic_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Hydraulic_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Hydraulic_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_Scope_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_Scope_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_Scope_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_Scope_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_Scope_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_Scope_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_Scope_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_Scope_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_Bow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_Bow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_Bow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_Bow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_R_Ore_T04": { + "templateId": "Schematic:SID_Sniper_Flintlock_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_R_Crystal_T04": { + "templateId": "Schematic:SID_Sniper_Flintlock_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Fleming_Bow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Fleming_Bow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Fleming_Bow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Fleming_Bow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Fleming_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Fleming_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Fleming_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Fleming_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Fleming_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Fleming_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Fleming_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Fleming_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_ExplosiveBow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_ExplosiveBow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_ExplosiveBow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_ExplosiveBow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Dragon_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Dragon_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Dragon_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Dragon_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Dragon_R_Ore_T04": { + "templateId": "Schematic:SID_Sniper_Dragon_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Dragon_R_Crystal_T04": { + "templateId": "Schematic:SID_Sniper_Dragon_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Crossbow_Military_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Crossbow_Military_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Crossbow_Military_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Crossbow_Military_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Crossbow_Military_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Crossbow_Military_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Crossbow_Military_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Crossbow_Military_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Crossbow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Crossbow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Crossbow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Crossbow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Boombox_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Boombox_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Boombox_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Boombox_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "owned": " O", + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Boombox_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Boombox_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Boombox_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Boombox_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_Scope_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_BoltAction_Scope_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_Scope_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_BoltAction_Scope_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_Scope_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_BoltAction_Scope_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_Scope_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_BoltAction_Scope_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_Scope_R_Ore_T04": { + "templateId": "Schematic:SID_Sniper_BoltAction_Scope_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_Scope_R_Crystal_T04": { + "templateId": "Schematic:SID_Sniper_BoltAction_Scope_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_UC_Ore_T03": { + "templateId": "Schematic:SID_Sniper_BoltAction_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_R_Ore_T04": { + "templateId": "Schematic:SID_Sniper_BoltAction_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_R_Crystal_T04": { + "templateId": "Schematic:SID_Sniper_BoltAction_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_C_Ore_T02": { + "templateId": "Schematic:SID_Sniper_BoltAction_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BlackMetal_Bow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_BlackMetal_Bow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BlackMetal_Bow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_BlackMetal_Bow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BlackMetal_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_BlackMetal_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BlackMetal_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_BlackMetal_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BlackMetal_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_BlackMetal_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BlackMetal_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_BlackMetal_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BBGun_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_BBGun_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BBGun_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_BBGun_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BBGun_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_BBGun_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BBGun_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_BBGun_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BBGun_R_Ore_T04": { + "templateId": "Schematic:SID_Sniper_BBGun_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BBGun_R_Crystal_T04": { + "templateId": "Schematic:SID_Sniper_BBGun_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Auto_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Auto_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Auto_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Auto_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Auto_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Auto_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_UC_Ore_T03": { + "templateId": "Schematic:SID_Sniper_Auto_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_R_Ore_T04": { + "templateId": "Schematic:SID_Sniper_Auto_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_R_Crystal_T04": { + "templateId": "Schematic:SID_Sniper_Auto_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_ArtDeco_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_ArtDeco_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_ArtDeco_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_ArtDeco_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_ArtDeco_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_ArtDeco_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_ArtDeco_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_ArtDeco_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_AMR_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_AMR_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_AMR_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_AMR_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_AMR_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_AMR_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_AMR_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_AMR_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_AMR_R_Ore_T04": { + "templateId": "Schematic:SID_Sniper_AMR_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_AMR_R_Crystal_T04": { + "templateId": "Schematic:SID_Sniper_AMR_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_SMG_Fleming_SideFeed_VR_Ore_T05": { + "templateId": "Schematic:SID_SMG_Fleming_SideFeed_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_SMG_Fleming_SideFeed_VR_Crystal_T05": { + "templateId": "Schematic:SID_SMG_Fleming_SideFeed_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_SMG_Fleming_SideFeed_SR_Ore_T05": { + "templateId": "Schematic:SID_SMG_Fleming_SideFeed_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_SMG_Fleming_SideFeed_SR_Crystal_T05": { + "templateId": "Schematic:SID_SMG_Fleming_SideFeed_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_SMG_Fleming_BurstFire_VR_Ore_T05": { + "templateId": "Schematic:SID_SMG_Fleming_BurstFire_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_SMG_Fleming_BurstFire_VR_Crystal_T05": { + "templateId": "Schematic:SID_SMG_Fleming_BurstFire_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_SMG_Fleming_BurstFire_SR_Ore_T05": { + "templateId": "Schematic:SID_SMG_Fleming_BurstFire_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_SMG_Fleming_BurstFire_SR_Crystal_T05": { + "templateId": "Schematic:SID_SMG_Fleming_BurstFire_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Winter_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Winter_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Winter_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Winter_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Winter_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Winter_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Winter_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Winter_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Winter_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Winter_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Winter_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Winter_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_VacuumTube_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_VacuumTube_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_VacuumTube_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_VacuumTube_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_VacuumTube_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_VacuumTube_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Precision_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Precision_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Precision_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Precision_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Precision_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Precision_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Precision_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Precision_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Precision_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Tactical_Precision_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Precision_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Tactical_Precision_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_UC_Ore_T03": { + "templateId": "Schematic:SID_Shotgun_Tactical_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Tactical_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Tactical_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Founders_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Founders_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Founders_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Founders_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Founders_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Tactical_Founders_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Founders_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Tactical_Founders_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_C_Ore_T02": { + "templateId": "Schematic:SID_Shotgun_Tactical_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Steampunk_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Steampunk_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Steampunk_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Steampunk_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Steampunk_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Steampunk_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Steampunk_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Steampunk_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_VT_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_VT_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_VT_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_VT_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_UC_Ore_T03": { + "templateId": "Schematic:SID_Shotgun_Standard_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Standard_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Standard_R_Crystal_T04", + "attributes": { + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_C_Ore_T02": { + "templateId": "Schematic:SID_Shotgun_Standard_C_Ore_T02", + "attributes": { + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "bundle_id": 1, + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_UC_Ore_T03": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_Scavenger_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_Scavenger_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_Scavenger_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_Scavenger_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_Scavenger_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_Scavenger_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_Scavenger_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_Scavenger_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_RetroScifi_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_RetroScifi_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_RetroScifi_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_RetroScifi_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_RatRod_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_RatRod_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_RatRod_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_RatRod_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_RatRod_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_RatRod_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_RatRod_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_RatRod_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_NeonGlow_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_NeonGlow_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_NeonGlow_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_NeonGlow_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_NeonGlow_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_NeonGlow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_NeonGlow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_NeonGlow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Minigun_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Minigun_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Minigun_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Minigun_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Military_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Military_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Military_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Military_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Military_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Military_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Military_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Military_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Medieval_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Medieval_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Medieval_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Medieval_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Medieval_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Medieval_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Medieval_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Medieval_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Longarm_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Longarm_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Longarm_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Longarm_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Longarm_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Longarm_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Longarm_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Longarm_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Hydraulic_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Hydraulic_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Hydraulic_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Hydraulic_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Heavy_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Heavy_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Heavy_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Heavy_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Fleming_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Fleming_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Fleming_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Fleming_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Fleming_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Fleming_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Fleming_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Fleming_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_Drum_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_Drum_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_Drum_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_Drum_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_Drum_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_Drum_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_Drum_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_Drum_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Burst_BlackMetal_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Burst_BlackMetal_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Burst_BlackMetal_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Burst_BlackMetal_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Burst_BlackMetal_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Burst_BlackMetal_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Burst_BlackMetal_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Burst_BlackMetal_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Burst_BlackMetal_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Burst_BlackMetal_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Burst_BlackMetal_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Burst_BlackMetal_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_OU_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_OU_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_OU_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_OU_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_UC_Ore_T03": { + "templateId": "Schematic:SID_Shotgun_Break_OU_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Break_OU_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Break_OU_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_Flintlock_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_Flintlock_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_Flintlock_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_Flintlock_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_Flintlock_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_Flintlock_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_Flintlock_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_Flintlock_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_UC_Ore_T03": { + "templateId": "Schematic:SID_Shotgun_Break_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Break_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Break_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_C_Ore_T02": { + "templateId": "Schematic:SID_Shotgun_Break_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Boombox_Drum_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Boombox_Drum_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Boombox_Drum_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Boombox_Drum_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Boombox_Drum_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Boombox_Drum_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Boombox_Drum_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Boombox_Drum_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Boombox_Break_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Boombox_Break_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Boombox_Break_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Boombox_Break_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Boombox_Break_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Boombox_Break_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Boombox_Break_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Boombox_Break_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Boombox_Break_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Boombox_Break_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Boombox_Break_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Boombox_Break_R_Crystal_T04", + "attributes": { + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Auto_VR_Ore_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "inventory_overflow_level": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Auto_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Auto_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Auto_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Auto_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Auto_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_UC_Ore_T03": { + "templateId": "Schematic:SID_Shotgun_Auto_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Auto_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Auto_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_ArtDeco_Break_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_ArtDeco_Break_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_ArtDeco_Break_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_ArtDeco_Break_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_ArtDeco_Break_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_ArtDeco_Break_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_ArtDeco_Break_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_ArtDeco_Break_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_ArtDeco_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_ArtDeco_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_ArtDeco_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_ArtDeco_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_ArtDeco_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_ArtDeco_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_ArtDeco_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_ArtDeco_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Zapper_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Zapper_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Zapper_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Zapper_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Zapper_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Zapper_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Zapper_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Zapper_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Winter_GingerBread_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Winter_GingerBread_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Winter_GingerBread_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Winter_GingerBread_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Winter_GingerBread_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Winter_GingerBread_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Winter_GingerBread_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Winter_GingerBread_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Revolver_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Revolver_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Revolver_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Revolver_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Revolver_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Revolver_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Revolver_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Revolver_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Auto_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Auto_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Auto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Auto_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Auto_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Auto_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Auto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Auto_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Stormking_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Stormking_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Stormking_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Stormking_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Steampunk_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Steampunk_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Steampunk_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Steampunk_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Steampunk_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Steampunk_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Steampunk_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Steampunk_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Space_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Space_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Space_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Space_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Space_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Space_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Space_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Space_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SixShooter_UC_Ore_T03": { + "templateId": "Schematic:SID_Pistol_SixShooter_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SixShooter_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_SixShooter_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SixShooter_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_SixShooter_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SixShooter_C_Ore_T02": { + "templateId": "Schematic:SID_Pistol_SixShooter_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SingleBurst_BlackMetal_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_SingleBurst_BlackMetal_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SingleBurst_BlackMetal_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_SingleBurst_BlackMetal_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Silenced_Military_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Silenced_Military_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Silenced_Military_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Silenced_Military_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Silenced_Military_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Silenced_Military_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Silenced_Military_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Silenced_Military_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Silenced_Christmas_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Silenced_Christmas_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Silenced_Christmas_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Silenced_Christmas_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_SemiAuto_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_SemiAuto_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_SemiAuto_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_SemiAuto_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_SemiAuto_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_SemiAuto_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_UC_Ore_T03": { + "templateId": "Schematic:SID_Pistol_SemiAuto_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_SemiAuto_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_SemiAuto_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_C_Ore_T02": { + "templateId": "Schematic:SID_Pistol_SemiAuto_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_C_Ore_T00": { + "templateId": "Schematic:SID_Pistol_SemiAuto_C_Ore_T00", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Scavenger_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Scavenger_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Scavenger_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Scavenger_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rocket_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Rocket_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rocket_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Rocket_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Revolver_SingleAction_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Revolver_SingleAction_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Revolver_SingleAction_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Revolver_SingleAction_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_RetroSciFi_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_RetroSciFi_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_RetroSciFi_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_RetroSciFi_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_RetroSciFi_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_RetroSciFi_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_RetroSciFi_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_RetroSciFi_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_RatRod_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_RatRod_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_RatRod_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_RatRod_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Rapid_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Rapid_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Rapid_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Rapid_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_Rapid_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_Rapid_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Rapid_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Rapid_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Pirate_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Pirate_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Pirate_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Pirate_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Paper_Airplane_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Paper_Airplane_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Paper_Airplane_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Paper_Airplane_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_NeonGlow_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_NeonGlow_VR_Ore_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_NeonGlow_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_NeonGlow_VR_Crystal_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "required_level": 0, + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_NeonGlow_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_NeonGlow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_NeonGlow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_NeonGlow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Medieval_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Medieval_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Medieval_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Medieval_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Medieval_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Medieval_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Medieval_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Medieval_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Hydraulic_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Hydraulic_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Hydraulic_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Hydraulic_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_VT_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_VT_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_VT_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_VT_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_DE_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_DE_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_DE_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_DE_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_DE_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_DE_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_DE_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_DE_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_VT_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_VT_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_Handcannon_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_Handcannon_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Halloween_Handcannon_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Halloween_Handcannon_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Halloween_Handcannon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Halloween_Handcannon_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Gatling_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Gatling_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Gatling_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Gatling_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Gatling_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Gatling_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Gatling_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Gatling_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Flintlock_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Flintlock_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Flintlock_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Flintlock_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Flintlock_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Flintlock_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Flintlock_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Flintlock_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Flintlock_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_Flintlock_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Flintlock_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_Flintlock_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Fleming_Tactical_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Fleming_Tactical_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Fleming_Tactical_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Fleming_Tactical_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Fleming_Tactical_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Fleming_Tactical_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Fleming_Tactical_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Fleming_Tactical_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Fleming_Scoped_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Fleming_Scoped_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Fleming_Scoped_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Fleming_Scoped_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Fleming_Scoped_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Fleming_Scoped_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Fleming_Scoped_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Fleming_Scoped_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_FireCracker_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_FireCracker_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_FireCracker_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_FireCracker_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_FireCracker_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_FireCracker_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_FireCracker_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_FireCracker_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_FireCracker_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_FireCracker_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_FireCracker_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_FireCracker_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Dragon_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Dragon_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Dragon_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Dragon_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Boombox_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Boombox_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Boombox_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Boombox_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_BoltRevolver_UC_Ore_T03": { + "templateId": "Schematic:SID_Pistol_BoltRevolver_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_BoltRevolver_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_BoltRevolver_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_BoltRevolver_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_BoltRevolver_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_BoltRevolver_C_Ore_T02": { + "templateId": "Schematic:SID_Pistol_BoltRevolver_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Bolt_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Bolt_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Bolt_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Bolt_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Bolt_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Bolt_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Bolt_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Bolt_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_RetroSciFi_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Auto_RetroSciFi_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_RetroSciFi_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Auto_RetroSciFi_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_RetroSciFi_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Auto_RetroSciFi_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_RetroSciFi_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Auto_RetroSciFi_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Auto_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Auto_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Auto_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Auto_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_VT_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_VT_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_VT_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_VT_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_Founders_VR_Crystal_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_Founders_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_Founders_SR_Ore_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "base_rarity": "K ", + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_Founders_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_Founders_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_Founders_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_Founders_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_Founders_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_Founders_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_UC_Ore_T03": { + "templateId": "Schematic:SID_Pistol_Auto_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_Auto_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_Auto_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_C_Ore_T02": { + "templateId": "Schematic:SID_Pistol_Auto_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_ArtDeco_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_ArtDeco_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_ArtDeco_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_ArtDeco_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_ArtDeco_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_ArtDeco_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_ArtDeco_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_ArtDeco_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Grenade_Winter_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Grenade_Winter_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Stormking_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Stormking_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Steampunk_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Steampunk_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Shark_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Shark_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Rocket_Winter_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Rocket_Winter_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Rocket_VR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Rocket_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Rocket_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Rocket_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Rocket_R_Ore_T04": { + "templateId": "Schematic:SID_Launcher_Rocket_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Pumpkin_RPG_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Pumpkin_RPG_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_VacuumTube_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_VacuumTube_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Scavenger_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Scavenger_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Launcher_RatRod_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Launcher_RatRod_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Launcher_NeonGlow_VR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Launcher_NeonGlow_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Launcher_NeonGlow_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Launcher_NeonGlow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Launcher_Military_VR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Launcher_Military_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Launcher_Military_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Launcher_Military_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Hydraulic_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Launcher_Hydraulic_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Hydraulic_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Launcher_Hydraulic_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_RetroScifi_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_RetroScifi_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Medieval_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Medieval_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Grenade_VR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Grenade_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Grenade_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Grenade_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Grenade_R_Ore_T04": { + "templateId": "Schematic:SID_Launcher_Grenade_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Grenade_Easter_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Grenade_Easter_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Flintlock_VR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Flintlock_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Flintlock_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Flintlock_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Fleming_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Fleming_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Rocket_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Rocket_Dragon_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Rocket_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Rocket_Dragon_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Boombox_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Boombox_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_BlackMetal_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_BlackMetal_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_ArtDeco_VR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_ArtDeco_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_ArtDeco_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_ArtDeco_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Bone_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Bone_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Bone_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Bone_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Bone_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Bone_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Bone_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Bone_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Bone_Pistol_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Bone_Pistol_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Bone_Pistol_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Bone_Pistol_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Bone_Pistol_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Bone_Pistol_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Bone_Pistol_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Bone_Pistol_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Bone_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Bone_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Bone_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Bone_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Bone_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Bone_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Bone_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Bone_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_SMG_bone_SR_Crystal_T05": { + "templateId": "Schematic:SID_SMG_bone_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_SMG_bone_SR_Ore_T05": { + "templateId": "Schematic:SID_SMG_bone_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_SMG_bone_VR_Crystal_T05": { + "templateId": "Schematic:SID_SMG_bone_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_SMG_bone_VR_Ore_T05": { + "templateId": "Schematic:SID_SMG_bone_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Winter_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Winter_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Winter_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Winter_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_VacuumTube_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_VacuumTube_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_VacuumTube_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_VacuumTube_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_VacuumTube_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_VacuumTube_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Surgical_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Surgical_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Surgical_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Surgical_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Surgical_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Surgical_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Surgical_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Surgical_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Stormking_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Stormking_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Stormking_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Stormking_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Steampunk_Drum_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Steampunk_Drum_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Steampunk_Drum_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Steampunk_Drum_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Steampunk_Drum_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Steampunk_Drum_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Steampunk_Drum_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Steampunk_Drum_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Snowball_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Snowball_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Snowball_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Snowball_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Snowball_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Snowball_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Snowball_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Snowball_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SMG_Unsilenced_Military_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_SMG_Unsilenced_Military_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SMG_Unsilenced_Military_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_SMG_Unsilenced_Military_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SMG_Silenced_Military_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SMG_Silenced_Military_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SMG_Silenced_Military_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SMG_Silenced_Military_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SMG_Silenced_Military_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SMG_Silenced_Military_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SMG_Silenced_Military_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SMG_Silenced_Military_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_BlackMetal_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SingleShot_BlackMetal_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_BlackMetal_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SingleShot_BlackMetal_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_BlackMetal_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SingleShot_BlackMetal_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_BlackMetal_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SingleShot_BlackMetal_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_BlackMetal_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_SingleShot_BlackMetal_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_BlackMetal_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_SingleShot_BlackMetal_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SingleShot_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SingleShot_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SingleShot_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SingleShot_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_SingleShot_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_SingleShot_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Shockwave_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Shockwave_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Shockwave_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Shockwave_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Shockwave_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Shockwave_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Shockwave_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Shockwave_SR_Crystal_T05", + "attributes": { + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_Steampunk_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_Steampunk_VR_Ore_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "index": " a", + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_Steampunk_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_Steampunk_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_Steampunk_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_Steampunk_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_Steampunk_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_Steampunk_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_UC_Ore_T03": { + "templateId": "Schematic:SID_Assault_SemiAuto_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_SemiAuto_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_SemiAuto_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_C_Ore_T02": { + "templateId": "Schematic:SID_Assault_SemiAuto_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_C_Ore_T00": { + "templateId": "Schematic:SID_Assault_SemiAuto_C_Ore_T00", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Scavenger_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Scavenger_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Scavenger_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Scavenger_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Raygun_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Raygun_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Raygun_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Raygun_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Raygun_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Raygun_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Raygun_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Raygun_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_RatRod_Slug_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_RatRod_Slug_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_RatRod_Slug_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_RatRod_Slug_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_RatRod_AutoDrum_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_RatRod_AutoDrum_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_RatRod_AutoDrum_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_RatRod_AutoDrum_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_RatRod_AutoDrum_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_RatRod_AutoDrum_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_RatRod_AutoDrum_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_RatRod_AutoDrum_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_NeonGlow_LMG_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_NeonGlow_LMG_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_NeonGlow_LMG_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_NeonGlow_LMG_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_NeonGlow_LMG_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_NeonGlow_LMG_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_NeonGlow_LMG_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_NeonGlow_LMG_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_NeonGlow_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_NeonGlow_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_NeonGlow_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_NeonGlow_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_NeonGlow_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_NeonGlow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_NeonGlow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_NeonGlow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Surgical_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Military_Surgical_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Surgical_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Military_Surgical_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Surgical_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Military_Surgical_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Surgical_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Military_Surgical_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Silenced_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Military_Silenced_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Silenced_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Military_Silenced_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Silenced_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Military_Silenced_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Silenced_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Military_Silenced_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Burst_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Military_Burst_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Burst_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Military_Burst_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Burst_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Military_Burst_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Burst_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Military_Burst_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Auto_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Military_Auto_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Auto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Military_Auto_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Auto_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Military_Auto_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Military_Auto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Military_Auto_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Medieval_SMG_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Medieval_SMG_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Medieval_SMG_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Medieval_SMG_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Medieval_SMG_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Medieval_SMG_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Medieval_SMG_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Medieval_SMG_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Military_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_LMG_Military_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Military_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_LMG_Military_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Military_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_LMG_Military_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Military_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_LMG_Military_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Halloween_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_LMG_Halloween_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Halloween_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_LMG_Halloween_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Surgical_Drum_Founders_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_Surgical_Drum_Founders_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Surgical_Drum_Founders_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_Surgical_Drum_Founders_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_LMG_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_LMG_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_LMG_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_LMG_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_LMG_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_LMG_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Drum_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_LMG_Drum_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Drum_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_LMG_Drum_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Drum_Founders_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_LMG_Drum_Founders_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Drum_Founders_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_LMG_Drum_Founders_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Hydraulic_Drum_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Hydraulic_Drum_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Hydraulic_Drum_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Hydraulic_Drum_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Hydraulic_Drum_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Hydraulic_Drum_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Hydraulic_Drum_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Hydraulic_Drum_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Hydra_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Hydra_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Hydra_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Hydra_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Flintlock_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Flintlock_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Flintlock_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Flintlock_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Flintlock_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Flintlock_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Flintlock_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Flintlock_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Fleming_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Fleming_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Fleming_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Fleming_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Fleming_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Fleming_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Fleming_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Fleming_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Dragon_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Dragon_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Dragon_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Dragon_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Dragon_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_Dragon_R_Ore_T04", + "attributes": { + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "state": "t ", + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Dragon_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_Dragon_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Doubleshot_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Doubleshot_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Doubleshot_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Doubleshot_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Doubleshot_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Doubleshot_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Doubleshot_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Doubleshot_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_RetroScifi_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Burst_RetroScifi_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_RetroScifi_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Burst_RetroScifi_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_RetroScifi_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Burst_RetroScifi_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_RetroScifi_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Burst_RetroScifi_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Burst_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Burst_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Burst_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Burst_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_UC_Ore_T03": { + "templateId": "Schematic:SID_Assault_Burst_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_Burst_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_Burst_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_C_Ore_T02": { + "templateId": "Schematic:SID_Assault_Burst_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Boombox_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Boombox_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Boombox_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Boombox_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Boombox_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Boombox_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Boombox_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Boombox_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Boombox_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_Boombox_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Boombox_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_Boombox_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Auto_VT_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Auto_VT_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Auto_VT_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Auto_VT_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Auto_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Auto_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Auto_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Auto_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_Halloween_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Auto_Halloween_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_Halloween_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Auto_Halloween_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_Founders_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Auto_Founders_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_Founders_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Auto_Founders_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_OB_Assault_Auto_T03": { + "templateId": "Schematic:SID_OB_Assault_Auto_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_AutoDrum_Teddy_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_AutoDrum_Teddy_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_AutoDrum_Teddy_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_AutoDrum_Teddy_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_AutoDrum_Teddy_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_AutoDrum_Teddy_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_AutoDrum_Teddy_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_AutoDrum_Teddy_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_AutoDrum_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_AutoDrum_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_AutoDrum_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_AutoDrum_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_UC_Ore_T03": { + "templateId": "Schematic:SID_Assault_Auto_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_Auto_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_Auto_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_C_Ore_T02": { + "templateId": "Schematic:SID_Assault_Auto_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_C_Ore_T00": { + "templateId": "Schematic:SID_Assault_Auto_C_Ore_T00", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_ArtDeco_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_ArtDeco_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_ArtDeco_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_ArtDeco_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_ArtDeco_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_ArtDeco_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_ArtDeco_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_ArtDeco_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Invasion_PulseRifle_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Invasion_PulseRifle_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Invasion_PulseRifle_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Invasion_PulseRifle_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Invasion_PulseRifle_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Invasion_PulseRifle_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Invasion_PulseRifle_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Invasion_PulseRifle_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Invasion_PlasmaCannon_VR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Invasion_PlasmaCannon_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Explosive_Invasion_PlasmaCannon_SR_Ore_T05": { + "templateId": "Schematic:SID_Explosive_Invasion_PlasmaCannon_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SMG_Invasion_Raygun_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SMG_Invasion_Raygun_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SMG_Invasion_Raygun_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SMG_Invasion_Raygun_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SMG_Invasion_Raygun_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SMG_Invasion_Raygun_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SMG_Invasion_Raygun_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SMG_Invasion_Raygun_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Invasion_RailGun_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Invasion_RailGun_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Invasion_RailGun_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Invasion_RailGun_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Invasion_RailGun_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Invasion_RailGun_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Invasion_RailGun_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Invasion_RailGun_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_IceSword_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_IceSword_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_IceSword_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_IceSword_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_IceSword_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_IceSword_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_IceSword_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_IceSword_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ingredient_Duct_Tape": { + "templateId": "Schematic:Ingredient_Duct_Tape", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ingredient_Blastpowder": { + "templateId": "Schematic:Ingredient_Blastpowder", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_VacuumTube_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_VacuumTube_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_VacuumTube_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_VacuumTube_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_VacuumTube_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_VacuumTube_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Steampunk_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Steampunk_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Steampunk_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Steampunk_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Scavenger_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Scavenger_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Scavenger_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Scavenger_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_RetroSciFi_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_RetroSciFi_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_RetroSciFi_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_RetroSciFi_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_RetroSciFi_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_RetroSciFi_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_RetroSciFi_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_RetroSciFi_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Military_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Military_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Military_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Military_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Military_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Military_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Military_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Military_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Military_R_Ore_T04": { + "templateId": "Schematic:SID_Piercing_Spear_Military_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Military_R_Crystal_T04": { + "templateId": "Schematic:SID_Piercing_Spear_Military_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Medieval_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Medieval_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Medieval_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Medieval_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_C_Ore_T02": { + "templateId": "Schematic:SID_Piercing_Spear_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Laser_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Laser_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Laser_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Laser_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Laser_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Laser_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Laser_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Laser_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Hydraulic_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Hydraulic_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Hydraulic_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Hydraulic_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Dragon_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Dragon_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Dragon_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Dragon_SR_Crystal_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Boombox_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Boombox_VR_Ore_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "new_notification": " Y", + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Boombox_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Boombox_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Boombox_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Boombox_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Boombox_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Boombox_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_BlackMetal_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_BlackMetal_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_BlackMetal_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_BlackMetal_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_BlackMetal_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_BlackMetal_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_BlackMetal_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_BlackMetal_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_BlackMetal_R_Ore_T04": { + "templateId": "Schematic:SID_Piercing_Spear_BlackMetal_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_BlackMetal_R_Crystal_T04": { + "templateId": "Schematic:SID_Piercing_Spear_BlackMetal_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_UC_Ore_T03": { + "templateId": "Schematic:SID_Piercing_Spear_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_R_Ore_T04": { + "templateId": "Schematic:SID_Piercing_Spear_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_R_Crystal_T04": { + "templateId": "Schematic:SID_Piercing_Spear_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Junkyard_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Junkyard_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Junkyard_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Junkyard_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Junkyard_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Junkyard_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Junkyard_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Junkyard_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Stormking_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Stormking_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Stormking_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Stormking_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Pirate_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Pirate_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Pirate_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Pirate_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_NeonGlow_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_NeonGlow_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_NeonGlow_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_NeonGlow_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_NeonGlow_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_NeonGlow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_NeonGlow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_NeonGlow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VacuumTube_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VacuumTube_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VacuumTube_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VacuumTube_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VacuumTube_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VacuumTube_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Sword_Medium_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_C_Ore_T00": { + "templateId": "Schematic:SID_Edged_Sword_Medium_C_Ore_T00", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_Founders_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_Founders_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_Founders_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_Founders_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_Founders_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_Founders_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_Founders_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_Founders_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VT_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VT_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VT_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VT_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Sword_Medium_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Sword_Medium_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Sword_Medium_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medieval_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medieval_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medieval_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medieval_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Light_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Light_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Sword_Light_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Light_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Light_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Sword_Light_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Sword_Light_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Light_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Light_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Sword_Light_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Hydraulic_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Hydraulic_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Hydraulic_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Hydraulic_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Halloween_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Halloween_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Halloween_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Halloween_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Dragon_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Dragon_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Dragon_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Dragon_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Dragon_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Sword_Dragon_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Dragon_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Sword_Dragon_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Christmas_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Christmas_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Christmas_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Christmas_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_BlackMetal_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_BlackMetal_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_BlackMetal_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_BlackMetal_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_ArtDeco_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_ArtDeco_VR_Ore_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_ArtDeco_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_ArtDeco_VR_Crystal_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_ArtDeco_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_ArtDeco_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_ArtDeco_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_ArtDeco_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "building_id": "T ", + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Steampunk_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Steampunk_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Steampunk_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Steampunk_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Steampunk_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Steampunk_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Steampunk_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Steampunk_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_NeonGlow_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_NeonGlow_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_NeonGlow_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_NeonGlow_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_NeonGlow_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_NeonGlow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_NeonGlow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_NeonGlow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Scythe_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Laser_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Laser_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Laser_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Laser_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Laser_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Laser_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Laser_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Laser_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Flintlock_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Flintlock_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Flintlock_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Flintlock_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Flintlock_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Flintlock_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Flintlock_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Flintlock_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_BlackMetal_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_BlackMetal_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_BlackMetal_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_BlackMetal_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_BlackMetal_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_BlackMetal_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_BlackMetal_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_BlackMetal_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Scythe_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Scythe_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Scythe_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_VT_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_VT_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_VT_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_VT_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Scavenger_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Scavenger_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Scavenger_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Scavenger_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_NeonGlow_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_NeonGlow_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_NeonGlow_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_NeonGlow_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_NeonGlow_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_NeonGlow_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_NeonGlow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_NeonGlow_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Axe_Medium_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_Laser_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_Laser_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_Laser_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_Laser_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_Laser_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_Laser_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_Laser_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_Laser_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Axe_Medium_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Axe_Medium_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Axe_Medium_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medieval_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medieval_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medieval_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medieval_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medieval_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medieval_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medieval_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medieval_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_RatRod_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Light_RatRod_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_RatRod_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Light_RatRod_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_RatRod_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Light_RatRod_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_RatRod_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Light_RatRod_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Light_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Light_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Light_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Light_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Axe_Light_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Axe_Light_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Axe_Light_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Axe_Light_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_VacuumTube_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_VacuumTube_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_VacuumTube_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_VacuumTube_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_VacuumTube_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_VacuumTube_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_BlackMetal_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_BlackMetal_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_BlackMetal_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_BlackMetal_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_ArtDeco_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_ArtDeco_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_ArtDeco_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_ArtDeco_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_ArtDeco_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_ArtDeco_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_ArtDeco_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_ArtDeco_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Airplane_Axe_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Airplane_Axe_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Airplane_Axe_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Airplane_Axe_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Airplane_Axe_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Airplane_Axe_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Airplane_Axe_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Airplane_Axe_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Shovel_Halloween_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Shovel_Halloween_VR_Ore_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "equipped": " ", + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Shovel_Halloween_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Shovel_Halloween_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Shovel_Halloween_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Shovel_Halloween_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Shovel_Halloween_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Shovel_Halloween_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Scavenger_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Scavenger_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Scavenger_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Scavenger_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_C_Ore_T02": { + "templateId": "Schematic:SID_Blunt_Medium_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Medium_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Medium_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Medium_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Medium_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_UC_Ore_T03": { + "templateId": "Schematic:SID_Blunt_Medium_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Medium_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Medium_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Light_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Light_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Light_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Light_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Tool_Light_UC_Ore_T03": { + "templateId": "Schematic:SID_Blunt_Tool_Light_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Tool_Light_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Tool_Light_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Tool_Light_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Tool_Light_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Steampunk_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Steampunk_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Steampunk_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Steampunk_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Steampunk_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Steampunk_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Steampunk_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Steampunk_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_VT_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_VT_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_VT_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_VT_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_RatRod_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_RatRod_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_RatRod_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_RatRod_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_RatRod_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_RatRod_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_RatRod_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_RatRod_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Medieval_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Medieval_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Medieval_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Medieval_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Medieval_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Medieval_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Medieval_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Medieval_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Hydraulic_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Hydraulic_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Hydraulic_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Hydraulic_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_C_Ore_T02": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_Founders_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_Founders_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_UC_Ore_T03": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Flintlock_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Flintlock_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Flintlock_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Flintlock_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Flintlock_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Flintlock_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Flintlock_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Flintlock_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_Dragon_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_Dragon_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_Dragon_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_Dragon_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_RetroSciFi_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Light_RetroSciFi_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_RetroSciFi_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Light_RetroSciFi_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_RetroSciFi_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Light_RetroSciFi_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_RetroSciFi_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Light_RetroSciFi_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Boombox_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Light_Boombox_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Boombox_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Light_Boombox_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Boombox_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Light_Boombox_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Boombox_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Light_Boombox_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Boombox_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Light_Boombox_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Boombox_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Light_Boombox_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Stormking_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Stormking_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Stormking_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Stormking_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_RetroSciFi_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_RetroSciFi_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_RetroSciFi_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_RetroSciFi_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_RetroSciFi_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_RetroSciFi_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_RetroSciFi_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_RetroSciFi_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Boombox_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Boombox_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Boombox_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Boombox_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_ArtDeco_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_ArtDeco_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_ArtDeco_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_ArtDeco_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_ArtDeco_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_ArtDeco_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_ArtDeco_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_ArtDeco_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_RatRod_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Medium_RatRod_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_RatRod_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Medium_RatRod_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_RatRod_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Medium_RatRod_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_RatRod_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Medium_RatRod_SR_Crystal_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Rocketbat_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Light_Rocketbat_VR_Ore_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Rocketbat_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Light_Rocketbat_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Rocketbat_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Light_Rocketbat_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "alteration_base_rarities": " L", + "refundable": false, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Rocketbat_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Light_Rocketbat_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_C_Ore_T02": { + "templateId": "Schematic:SID_Blunt_Light_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Bat_UC_Ore_T03": { + "templateId": "Schematic:SID_Blunt_Light_Bat_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Bat_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Light_Bat_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Bat_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Light_Bat_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Club_Light_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Club_Light_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Club_Light_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Club_Light_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Club_Light_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Club_Light_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Club_Light_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Club_Light_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_UC_Ore_T03": { + "templateId": "Schematic:SID_Blunt_Light_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Light_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Light_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Paddle_UC_Ore_T03": { + "templateId": "Schematic:SID_Blunt_Heavy_Paddle_UC_Ore_T03", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 30, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Paddle_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Heavy_Paddle_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Paddle_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Heavy_Paddle_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Paddle_C_Ore_T02": { + "templateId": "Schematic:SID_Blunt_Heavy_Paddle_C_Ore_T02", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 20, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Flintlock_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Heavy_Flintlock_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Flintlock_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Heavy_Flintlock_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Flintlock_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Heavy_Flintlock_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Flintlock_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Heavy_Flintlock_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Flintlock_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Heavy_Flintlock_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Flintlock_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Heavy_Flintlock_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Boxing_Glove_Club_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Boxing_Glove_Club_VR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Boxing_Glove_Club_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Boxing_Glove_Club_VR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Boxing_Glove_Club_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Boxing_Glove_Club_SR_Ore_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Boxing_Glove_Club_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Boxing_Glove_Club_SR_Crystal_T05", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 50, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Boxing_Glove_Club_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Boxing_Glove_Club_R_Ore_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Boxing_Glove_Club_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Boxing_Glove_Club_R_Crystal_T04", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 40, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Gadget_Generic_Turret": { + "templateId": "Schematic:Gadget_Generic_Turret", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ammo_Explosive": { + "templateId": "Schematic:Ammo_Explosive", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ammo_EnergyCell": { + "templateId": "Schematic:Ammo_EnergyCell", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ammo_Shells": { + "templateId": "Schematic:Ammo_Shells", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ammo_BulletsMedium": { + "templateId": "Schematic:Ammo_BulletsMedium", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ammo_BulletsHeavy": { + "templateId": "Schematic:Ammo_BulletsHeavy", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ammo_BulletsLight": { + "templateId": "Schematic:Ammo_BulletsLight", + "attributes": { + "legacy_alterations": [], + "max_level_bonus": 0, + "level": 1, + "refund_legacy_item": false, + "item_seen": true, + "alterations": [ + "", + "", + "", + "", + "", + "" + ], + "xp": 0, + "refundable": false, + "alteration_base_rarities": [], + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_VR_T05": { + "templateId": "Defender:DID_DefenderSniper_Basic_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_UC_T03": { + "templateId": "Defender:DID_DefenderSniper_Basic_UC_T03", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_SR_T05": { + "templateId": "Defender:DID_DefenderSniper_Basic_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_R_T04": { + "templateId": "Defender:DID_DefenderSniper_Basic_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_M_VR_T05": { + "templateId": "Defender:DID_DefenderSniper_Basic_M_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_M_SR_T05": { + "templateId": "Defender:DID_DefenderSniper_Basic_M_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_M_R_T04": { + "templateId": "Defender:DID_DefenderSniper_Basic_M_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_C_T02": { + "templateId": "Defender:DID_DefenderSniper_Basic_C_T02", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 20, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_VR_T05": { + "templateId": "Defender:DID_DefenderShotgun_Basic_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_UC_T03": { + "templateId": "Defender:DID_DefenderShotgun_Basic_UC_T03", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_SR_T05": { + "templateId": "Defender:DID_DefenderShotgun_Basic_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_R_T04": { + "templateId": "Defender:DID_DefenderShotgun_Basic_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_F_VR_T05": { + "templateId": "Defender:DID_DefenderShotgun_Basic_F_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_F_SR_T05": { + "templateId": "Defender:DID_DefenderShotgun_Basic_F_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_F_R_T04": { + "templateId": "Defender:DID_DefenderShotgun_Basic_F_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_C_T02": { + "templateId": "Defender:DID_DefenderShotgun_Basic_C_T02", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 20, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Founders_VR_T05": { + "templateId": "Defender:DID_DefenderPistol_Founders_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_VR_T05": { + "templateId": "Defender:DID_DefenderPistol_Basic_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_UC_T03": { + "templateId": "Defender:DID_DefenderPistol_Basic_UC_T03", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_SR_T05": { + "templateId": "Defender:DID_DefenderPistol_Basic_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_R_T04": { + "templateId": "Defender:DID_DefenderPistol_Basic_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_F_VR_T05": { + "templateId": "Defender:DID_DefenderPistol_Basic_F_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_F_SR_T05": { + "templateId": "Defender:DID_DefenderPistol_Basic_F_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_F_R_T04": { + "templateId": "Defender:DID_DefenderPistol_Basic_F_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_C_T02": { + "templateId": "Defender:DID_DefenderPistol_Basic_C_T02", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 20, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderMelee_Basic_VR_T05": { + "templateId": "Defender:DID_DefenderMelee_Basic_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderMelee_Basic_UC_T03": { + "templateId": "Defender:DID_DefenderMelee_Basic_UC_T03", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderMelee_Basic_SR_T05": { + "templateId": "Defender:DID_DefenderMelee_Basic_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderMelee_Basic_R_T04": { + "templateId": "Defender:DID_DefenderMelee_Basic_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderMelee_Basic_F_SR_T05": { + "templateId": "Defender:DID_DefenderMelee_Basic_F_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderMelee_Basic_C_T02": { + "templateId": "Defender:DID_DefenderMelee_Basic_C_T02", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 20, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Founders_VR_T05": { + "templateId": "Defender:DID_DefenderAssault_Founders_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_VR_T05": { + "templateId": "Defender:DID_DefenderAssault_Basic_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_UC_T03": { + "templateId": "Defender:DID_DefenderAssault_Basic_UC_T03", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_SR_T05": { + "templateId": "Defender:DID_DefenderAssault_Basic_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_R_T04": { + "templateId": "Defender:DID_DefenderAssault_Basic_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_M_VR_T05": { + "templateId": "Defender:DID_DefenderAssault_Basic_M_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_M_SR_T05": { + "templateId": "Defender:DID_DefenderAssault_Basic_M_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_M_R_T04": { + "templateId": "Defender:DID_DefenderAssault_Basic_M_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_C_T02": { + "templateId": "Defender:DID_DefenderAssault_Basic_C_T02", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 20, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_C_T00": { + "templateId": "Defender:DID_DefenderAssault_Basic_C_T00", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "TeamPerk:TPID_ViolentInspiration": { + "templateId": "TeamPerk:TPID_ViolentInspiration", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_TrickAndTreat": { + "templateId": "TeamPerk:TPID_TrickAndTreat", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_TotallyGnarly": { + "templateId": "TeamPerk:TPID_TotallyGnarly", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_SuperchargedTraps": { + "templateId": "TeamPerk:TPID_SuperchargedTraps", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_SoaringMantis": { + "templateId": "TeamPerk:TPID_SoaringMantis", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_SlowYourRoll": { + "templateId": "TeamPerk:TPID_SlowYourRoll", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_ShiftingGears": { + "templateId": "TeamPerk:TPID_ShiftingGears", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_ShakeItOff": { + "templateId": "TeamPerk:TPID_ShakeItOff", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_RoundTrip": { + "templateId": "TeamPerk:TPID_RoundTrip", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_Recycling": { + "templateId": "TeamPerk:TPID_Recycling", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_PreemptiveStrike": { + "templateId": "TeamPerk:TPID_PreemptiveStrike", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_PhaseBlaster": { + "templateId": "TeamPerk:TPID_PhaseBlaster", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_OneTwoPunch": { + "templateId": "TeamPerk:TPID_OneTwoPunch", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_NeverTellMeTheOdds": { + "templateId": "TeamPerk:TPID_NeverTellMeTheOdds", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_LongArmOfTheLaw": { + "templateId": "TeamPerk:TPID_LongArmOfTheLaw", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_KineticOverdrive": { + "templateId": "TeamPerk:TPID_KineticOverdrive", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_KeepOut": { + "templateId": "TeamPerk:TPID_KeepOut", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_HuntersInstinct": { + "templateId": "TeamPerk:TPID_HuntersInstinct", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_HolidayCheer": { + "templateId": "TeamPerk:TPID_HolidayCheer", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_EndlessShadow": { + "templateId": "TeamPerk:TPID_EndlessShadow", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_DimMak": { + "templateId": "TeamPerk:TPID_DimMak", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_DangerDanger": { + "templateId": "TeamPerk:TPID_DangerDanger", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_CoolCustomer": { + "templateId": "TeamPerk:TPID_CoolCustomer", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_BOOMBASE": { + "templateId": "TeamPerk:TPID_BOOMBASE", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_BlastFromThePast": { + "templateId": "TeamPerk:TPID_BlastFromThePast", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_BlakebeardsStash": { + "templateId": "TeamPerk:TPID_BlakebeardsStash", + "attributes": {}, + "quantity": 1 + }, + "TeamPerk:TPID_BioEnergySource": { + "templateId": "TeamPerk:TPID_BioEnergySource", + "attributes": {}, + "quantity": 1 + }, + "Worker:Worker_Halloween_Troll_VR_T05": { + "templateId": "Worker:Worker_Halloween_Troll_VR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Troll.IconDef-WorkerPortrait-Troll", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Troll_SR_T05": { + "templateId": "Worker:Worker_Halloween_Troll_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Troll.IconDef-WorkerPortrait-Troll", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Smasher_SR_T05": { + "templateId": "Worker:Worker_Halloween_Smasher_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Smasher.IconDef-WorkerPortrait-Smasher", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Pitcher_UC_T03": { + "templateId": "Worker:Worker_Halloween_Pitcher_UC_T03", + "attributes": { + "gender": 0, + "level": 30, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pitcher.IconDef-WorkerPortrait-Pitcher", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Pitcher_R_T04": { + "templateId": "Worker:Worker_Halloween_Pitcher_R_T04", + "attributes": { + "gender": 0, + "level": 40, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pitcher.IconDef-WorkerPortrait-Pitcher", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Pitcher_C_T02": { + "templateId": "Worker:Worker_Halloween_Pitcher_C_T02", + "attributes": { + "gender": 0, + "level": 20, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pitcher.IconDef-WorkerPortrait-Pitcher", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Lobber_VR_T05": { + "templateId": "Worker:Worker_Halloween_Lobber_VR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Lobber.IconDef-WorkerPortrait-Lobber", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Lobber_SR_T05": { + "templateId": "Worker:Worker_Halloween_Lobber_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Lobber.IconDef-WorkerPortrait-Lobber", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Lobber_R_T04": { + "templateId": "Worker:Worker_Halloween_Lobber_R_T04", + "attributes": { + "gender": 0, + "level": 40, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Lobber.IconDef-WorkerPortrait-Lobber", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Husky_VR_T05": { + "templateId": "Worker:Worker_Halloween_Husky_VR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husky.IconDef-WorkerPortrait-Husky", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Husky_UC_T03": { + "templateId": "Worker:Worker_Halloween_Husky_UC_T03", + "attributes": { + "gender": 0, + "level": 30, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husky.IconDef-WorkerPortrait-Husky", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Husky_R_T04": { + "templateId": "Worker:Worker_Halloween_Husky_R_T04", + "attributes": { + "gender": 0, + "level": 40, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husky.IconDef-WorkerPortrait-Husky", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Husky_C_T02": { + "templateId": "Worker:Worker_Halloween_Husky_C_T02", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husky.IconDef-WorkerPortrait-Husky", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Husk_UC_T03": { + "templateId": "Worker:Worker_Halloween_Husk_UC_T03", + "attributes": { + "gender": 0, + "level": 30, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husk.IconDef-WorkerPortrait-Husk", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Husk_C_T02": { + "templateId": "Worker:Worker_Halloween_Husk_C_T02", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husk.IconDef-WorkerPortrait-Husk", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "0511ef8c-5e23-4ad4-92e9-c7dd730e3b1e": { + "templateId": "PrerollData:preroll_basic", + "attributes": { + "linked_offer": "", + "fulfillmentId": "2D09C70ABD0049EBAF1D4054127287FF", + "expended_streakbreakers": {}, + "level": 1, + "item_seen": true, + "max_level_bonus": 0, + "highest_rarity": 2, + "xp": 0, + "offerId": "2D09C70ABD0049EBAF1D4054127287FF", + "expiration": "2021-10-27T00:00:00.000Z", + "items": [ + { + "itemType": "Hero:hid_constructor_015_r_t01", + "attributes": {}, + "quantity": 1 + }, + { + "itemType": "Schematic:sid_assault_singleshot_r_ore_t01", + "attributes": { + "Alteration": { + "LootTierGroup": "AlterationTG.Ranged.R", + "Tier": 0 + }, + "alterations": [ + "Alteration:aid_att_critdamage_t01", + "Alteration:aid_att_reloadspeed_ranged_t02", + "Alteration:aid_att_damage_physical_t02", + "Alteration:aid_att_critdamage_t02", + "Alteration:aid_conditional_boss_dmgbonus_t03", + "Alteration:aid_g_ranged_headshot_explodeondeath_v2" + ] + }, + "quantity": 1 + }, + { + "itemType": "Worker:workerbasic_r_t01", + "attributes": { + "personality": "Homebase.Worker.Personality.IsAnalytical", + "gender": "1", + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-M01.IconDef-WorkerPortrait-Analytical-M01", + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + { + "itemType": "Worker:managermartialartist_r_t01", + "attributes": { + "personality": "Homebase.Worker.Personality.IsCurious", + "gender": "2", + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-MartialArtist-F01.IconDef-ManagerPortrait-MartialArtist-F01" + }, + "quantity": 1 + }, + { + "itemType": "CardPack:cardpack_choice_melee_vr", + "attributes": { + "pack_source": "", + "options": [ + { + "itemType": "Schematic:sid_piercing_spear_laser_vr_ore_t01", + "attributes": { + "alterations": [ + "Alteration:aid_att_critdamage_t02", + "Alteration:aid_att_movementspeed_t01", + "Alteration:aid_ele_energy_t02", + "Alteration:aid_att_firerate_melee_t03", + "Alteration:aid_conditional_slowed_dmgbonus_t03", + "Alteration:aid_g_onmeleekill_regenshields" + ] + }, + "quantity": 1 + }, + { + "itemType": "Schematic:sid_piercing_spear_scavenger_vr_ore_t01", + "attributes": { + "alterations": [ + "Alteration:aid_att_critdamage_t01", + "Alteration:aid_att_damage_t02", + "Alteration:aid_att_damage_physical_t03", + "Alteration:aid_att_critdamage_t02", + "Alteration:aid_conditional_boss_dmgbonus_t03", + "Alteration:aid_g_onmeleehit_stackbuff_critrate" + ] + }, + "quantity": 1 + } + ] + }, + "quantity": 1 + }, + { + "itemType": "Worker:workerbasic_vr_t01", + "attributes": { + "personality": "Homebase.Worker.Personality.IsDependable", + "gender": "1", + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-M02.IconDef-WorkerPortrait-Dependable-M02", + "set_bonus": "Homebase.Worker.SetBonus.IsResistanceLow" + }, + "quantity": 1 + }, + { + "itemType": "AccountResource:eventcurrency_candy", + "attributes": {}, + "quantity": 500 + }, + { + "itemType": "Schematic:sid_wall_electric_sr_t01", + "attributes": { + "alterations": [ + "Alteration:aid_ele_nature_intrin_t01", + "Alteration:aid_att_damage_t02", + "Alteration:aid_att_reloadspeed_trap_t02", + "Alteration:aid_att_damage_t03", + "Alteration:aid_att_damage_t03", + "Alteration:aid_att_buildingheal_t03" + ] + }, + "quantity": 1 + }, + { + "itemType": "Schematic:sid_blunt_hammer_rocket_vt_sr_ore_t01", + "attributes": { + "alterations": [ + "Alteration:aid_att_firerate_melee_t01", + "Alteration:aid_att_movementspeed_t02", + "Alteration:aid_att_damage_physical_t02", + "Alteration:aid_att_damage_t02", + "Alteration:aid_conditional_afflicted_dmgbonus_t03", + "Alteration:aid_g_onmeleehit_stackbuff_movespeed" + ] + }, + "quantity": 1 + } + ], + "favorite": false + }, + "quantity": 1 + }, + "84b0ccde-28ec-494c-807a-7997a1b9d5cc": { + "templateId": "PrerollData:preroll_basic", + "attributes": { + "linked_offer": "", + "fulfillmentId": "D2E08EFA731D437B85B7340EB51A5E1D", + "expended_streakbreakers": {}, + "level": 1, + "item_seen": false, + "max_level_bonus": 0, + "highest_rarity": 0, + "xp": 0, + "offerId": "D2E08EFA731D437B85B7340EB51A5E1D", + "expiration": "2021-10-27T00:00:00.000Z", + "items": [ + { + "itemType": "Worker:workerbasic_uc_t01", + "attributes": { + "personality": "Homebase.Worker.Personality.IsCooperative", + "gender": "2", + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-F03.IconDef-WorkerPortrait-Cooperative-F03", + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + { + "itemType": "Schematic:sid_pistol_auto_uc_ore_t01", + "attributes": { + "Alteration": { + "LootTierGroup": "AlterationTG.Ranged.UC", + "Tier": 0 + }, + "alterations": [ + "Alteration:aid_att_damage_t01", + "Alteration:aid_att_stability_t01", + "Alteration:aid_ele_energy_t02", + "Alteration:aid_att_magazinesize_t02", + "Alteration:aid_conditional_boss_dmgbonus_t03", + "Alteration:aid_g_ranged_headshotstreak_dmgbonus_v2" + ] + }, + "quantity": 1 + }, + { + "itemType": "Schematic:sid_blunt_light_uc_ore_t01", + "attributes": { + "Alteration": { + "LootTierGroup": "AlterationTG.Melee.UC", + "Tier": 0 + }, + "alterations": [ + "Alteration:aid_att_firerate_melee_t01", + "Alteration:aid_att_maxdurability_t01", + "Alteration:aid_att_damage_physical_t02", + "Alteration:aid_att_damage_t03", + "Alteration:aid_conditional_boss_dmgbonus_t03", + "Alteration:aid_g_weapon_ondmg_applysnare_v2" + ] + }, + "quantity": 1 + }, + { + "itemType": "Worker:workerbasic_r_t01", + "attributes": { + "personality": "Homebase.Worker.Personality.IsAnalytical", + "gender": "1", + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-M02.IconDef-WorkerPortrait-Analytical-M02", + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + { + "itemType": "AccountResource:eventcurrency_candy", + "attributes": {}, + "quantity": 50 + } + ], + "favorite": false + }, + "quantity": 1 + }, + "CampaignHeroLoadout1": { + "templateId": "CampaignHeroLoadout:defaultloadout", + "attributes": { + "team_perk": "", + "loadout_name": "", + "crew_members": { + "followerslot3": "", + "followerslot2": "", + "followerslot1": "", + "commanderslot": "Hero:HID_Commando_GrenadeGun_SR_T05", + "followerslot5": "", + "followerslot4": "" + }, + "loadout_index": 0, + "gadgets": [ + { + "gadget": "", + "slot_index": 0 + }, + { + "gadget": "", + "slot_index": 1 + } + ] + }, + "quantity": 1 + }, + "CampaignHeroLoadout2": { + "templateId": "CampaignHeroLoadout:defaultloadout", + "attributes": { + "team_perk": "", + "loadout_name": "", + "crew_members": { + "followerslot3": "", + "followerslot2": "", + "followerslot1": "", + "commanderslot": "Hero:HID_Commando_GrenadeGun_SR_T05", + "followerslot5": "", + "followerslot4": "" + }, + "loadout_index": 1, + "gadgets": [ + { + "gadget": "", + "slot_index": 0 + }, + { + "gadget": "", + "slot_index": 1 + } + ] + }, + "quantity": 1 + }, + "CampaignHeroLoadout3": { + "templateId": "CampaignHeroLoadout:defaultloadout", + "attributes": { + "team_perk": "", + "loadout_name": "", + "crew_members": { + "followerslot3": "", + "followerslot2": "", + "followerslot1": "", + "commanderslot": "Hero:HID_Commando_GrenadeGun_SR_T05", + "followerslot5": "", + "followerslot4": "" + }, + "loadout_index": 2, + "gadgets": [ + { + "gadget": "", + "slot_index": 0 + }, + { + "gadget": "", + "slot_index": 1 + } + ] + }, + "quantity": 1 + }, + "CampaignHeroLoadout4": { + "templateId": "CampaignHeroLoadout:defaultloadout", + "attributes": { + "team_perk": "", + "loadout_name": "", + "crew_members": { + "followerslot3": "", + "followerslot2": "", + "followerslot1": "", + "commanderslot": "Hero:HID_Commando_GrenadeGun_SR_T05", + "followerslot5": "", + "followerslot4": "" + }, + "loadout_index": 3, + "gadgets": [ + { + "gadget": "", + "slot_index": 0 + }, + { + "gadget": "", + "slot_index": 1 + } + ] + }, + "quantity": 1 + }, + "CampaignHeroLoadout5": { + "templateId": "CampaignHeroLoadout:defaultloadout", + "attributes": { + "team_perk": "", + "loadout_name": "", + "crew_members": { + "followerslot3": "", + "followerslot2": "", + "followerslot1": "", + "commanderslot": "Hero:HID_Commando_GrenadeGun_SR_T05", + "followerslot5": "", + "followerslot4": "" + }, + "loadout_index": 4, + "gadgets": [ + { + "gadget": "", + "slot_index": 0 + }, + { + "gadget": "", + "slot_index": 1 + } + ] + }, + "quantity": 1 + }, + "CampaignHeroLoadout6": { + "templateId": "CampaignHeroLoadout:defaultloadout", + "attributes": { + "team_perk": "", + "loadout_name": "", + "crew_members": { + "followerslot3": "", + "followerslot2": "", + "followerslot1": "", + "commanderslot": "Hero:HID_Commando_GrenadeGun_SR_T05", + "followerslot5": "", + "followerslot4": "" + }, + "loadout_index": 5, + "gadgets": [ + { + "gadget": "", + "slot_index": 0 + }, + { + "gadget": "", + "slot_index": 1 + } + ] + }, + "quantity": 1 + }, + "CampaignHeroLoadout7": { + "templateId": "CampaignHeroLoadout:defaultloadout", + "attributes": { + "team_perk": "", + "loadout_name": "", + "crew_members": { + "followerslot3": "", + "followerslot2": "", + "followerslot1": "", + "commanderslot": "Hero:HID_Commando_GrenadeGun_SR_T05", + "followerslot5": "", + "followerslot4": "" + }, + "loadout_index": 6, + "gadgets": [ + { + "gadget": "", + "slot_index": 0 + }, + { + "gadget": "", + "slot_index": 1 + } + ] + }, + "quantity": 1 + }, + "CampaignHeroLoadout8": { + "templateId": "CampaignHeroLoadout:defaultloadout", + "attributes": { + "team_perk": "", + "loadout_name": "", + "crew_members": { + "followerslot3": "", + "followerslot2": "", + "followerslot1": "", + "commanderslot": "Hero:HID_Commando_GrenadeGun_SR_T05", + "followerslot5": "", + "followerslot4": "" + }, + "loadout_index": 7, + "gadgets": [ + { + "gadget": "", + "slot_index": 0 + }, + { + "gadget": "", + "slot_index": 1 + } + ] + }, + "quantity": 1 + }, + "CampaignHeroLoadout9": { + "templateId": "CampaignHeroLoadout:defaultloadout", + "attributes": { + "team_perk": "", + "loadout_name": "", + "crew_members": { + "followerslot3": "", + "followerslot2": "", + "followerslot1": "", + "commanderslot": "Hero:HID_Commando_GrenadeGun_SR_T05", + "followerslot5": "", + "followerslot4": "" + }, + "loadout_index": 8, + "gadgets": [ + { + "gadget": "", + "slot_index": 0 + }, + { + "gadget": "", + "slot_index": 1 + } + ] + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l1": { + "templateId": "Quest:outpostquest_t1_l1", + "attributes": { + "creation_time": "min", + "level": -1, + "completion_custom_supplydropreceived": 1, + "completion_complete_outpost_1_1": 1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "completion_custom_deployoutpost": 1, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-21T13:45:24.247Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l2": { + "templateId": "Quest:outpostquest_t1_l2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-21T15:37:01.947Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_1_2": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l3": { + "templateId": "Quest:outpostquest_t1_l3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-21T17:14:01.473Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_outpost_1_3": 1, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_custom_defendersupplyreceived": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l4": { + "templateId": "Quest:outpostquest_t1_l4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-23T13:41:57.009Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_1_4": 1, + "quest_rarity": "uncommon", + "completion_custom_defendersupplyreceived": 1, + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l5": { + "templateId": "Quest:outpostquest_t1_l5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-25T14:42:11.295Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_1_5": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l6": { + "templateId": "Quest:outpostquest_t1_l6", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T07:43:42.708Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "completion_complete_outpost_1_6": 1, + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l7": { + "templateId": "Quest:outpostquest_t1_l7", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T09:17:18.893Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_1_7": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l8": { + "templateId": "Quest:outpostquest_t1_l8", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T10:12:11.791Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_1_8": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l9": { + "templateId": "Quest:outpostquest_t1_l9", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T10:57:09.344Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_1_9": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l10": { + "templateId": "Quest:outpostquest_t1_l10", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "completion_complete_outpost_1_10": 1, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T11:35:40.261Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_endless": { + "templateId": "Quest:outpostquest_t1_endless", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_complete_outpost_1_endless": 0, + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2019-10-26T11:35:40.264Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l1": { + "templateId": "Quest:outpostquest_t2_l1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_custom_plankdeployoutpost": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T13:57:03.465Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_2_1": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l2": { + "templateId": "Quest:outpostquest_t2_l2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T20:07:12.034Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_outpost_2_2": 1, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l3": { + "templateId": "Quest:outpostquest_t2_l3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-09T15:47:26.883Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_2_3": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l4": { + "templateId": "Quest:outpostquest_t2_l4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-10T10:52:40.398Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_2_4": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l5": { + "templateId": "Quest:outpostquest_t2_l5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-10T19:05:12.712Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "completion_complete_outpost_2_5": 1, + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l6": { + "templateId": "Quest:outpostquest_t2_l6", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-10T20:46:26.147Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_2_6": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l7": { + "templateId": "Quest:outpostquest_t2_l7", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-16T14:10:07.281Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_2_7": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l8": { + "templateId": "Quest:outpostquest_t2_l8", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-25T16:01:16.591Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_2_8": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l9": { + "templateId": "Quest:outpostquest_t2_l9", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-01T15:42:38.342Z", + "completion_complete_outpost_2_9": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l10": { + "templateId": "Quest:outpostquest_t2_l10", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_complete_outpost_2_10": 1, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-01T16:58:09.093Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_endless": { + "templateId": "Quest:outpostquest_t2_endless", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2019-12-01T16:58:09.095Z", + "completion_complete_outpost_2_endless": 0, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l1": { + "templateId": "Quest:outpostquest_t3_l1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-16T12:13:06.057Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_outpost_3_1": 1, + "xp": 0, + "completion_custom_cannydeployoutpost": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l2": { + "templateId": "Quest:outpostquest_t3_l2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-02T16:37:35.118Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_3_2": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l3": { + "templateId": "Quest:outpostquest_t3_l3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-07T08:13:33.307Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_3_3": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l4": { + "templateId": "Quest:outpostquest_t3_l4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-07T08:36:40.401Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "completion_complete_outpost_3_4": 1, + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l5": { + "templateId": "Quest:outpostquest_t3_l5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-07T08:56:28.282Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_3_5": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l6": { + "templateId": "Quest:outpostquest_t3_l6", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-08T13:17:58.981Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_3_6": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l7": { + "templateId": "Quest:outpostquest_t3_l7", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-15T12:01:00.118Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_3_7": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l8": { + "templateId": "Quest:outpostquest_t3_l8", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-15T12:36:50.544Z", + "completion_complete_outpost_3_8": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l9": { + "templateId": "Quest:outpostquest_t3_l9", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_complete_outpost_3_9": 1, + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-15T13:06:06.512Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l10": { + "templateId": "Quest:outpostquest_t3_l10", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-15T13:47:16.025Z", + "completion_complete_outpost_3_10": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_endless": { + "templateId": "Quest:outpostquest_t3_endless", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2019-12-15T13:47:16.030Z", + "challenge_linked_quest_parent": "", + "completion_complete_outpost_3_endless": 0, + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t4_l1": { + "templateId": "Quest:outpostquest_t4_l1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-19T11:56:37.628Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_4_1": 1, + "completion_custom_twinedeployoutpost": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t4_l2": { + "templateId": "Quest:outpostquest_t4_l2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-19T13:23:16.961Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_4_2": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t4_l3": { + "templateId": "Quest:outpostquest_t4_l3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-19T13:58:12.505Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "completion_complete_outpost_4_3": 1, + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t4_l4": { + "templateId": "Quest:outpostquest_t4_l4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-19T15:02:57.127Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_4_4": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t4_l5": { + "templateId": "Quest:outpostquest_t4_l5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-19T16:17:04.872Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_4_5": 1 + }, + "quantity": 1 + }, + "Quest:plankertonquest_outpost_l2": { + "templateId": "Quest:plankertonquest_outpost_l2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_questcomplete_outpostquest_t2_l2": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T20:07:14.072Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:plankertonquest_outpost_l3": { + "templateId": "Quest:plankertonquest_outpost_l3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_questcomplete_outpostquest_t2_l3": 1, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-09T15:47:33.440Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:plankertonquest_outpost_l4": { + "templateId": "Quest:plankertonquest_outpost_l4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_questcomplete_outpostquest_t2_l4": 1, + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-10T17:33:21.112Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:plankertonquest_outpost_l5": { + "templateId": "Quest:plankertonquest_outpost_l5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "completion_questcomplete_outpostquest_t2_l5": 1, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-30T16:45:03.942Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:plankertonquest_outpost_l6": { + "templateId": "Quest:plankertonquest_outpost_l6", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_questcomplete_outpostquest_t2_l6": 1, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-27T16:50:46.976Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:twinepeaksquest_outpost_l2": { + "templateId": "Quest:twinepeaksquest_outpost_l2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_questcomplete_outpostquest_t4_l2": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2020-01-01T17:08:00.666Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:twinepeaksquest_outpost_l3": { + "templateId": "Quest:twinepeaksquest_outpost_l3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_questcomplete_outpostquest_t4_l3": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2020-01-01T17:08:00.666Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:twinepeaksquest_outpost_l4": { + "templateId": "Quest:twinepeaksquest_outpost_l4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_questcomplete_outpostquest_t4_l4": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2020-01-01T17:08:00.666Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:twinepeaksquest_outpost_l5": { + "templateId": "Quest:twinepeaksquest_outpost_l5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_questcomplete_outpostquest_t4_l5": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2020-01-01T17:08:00.666Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "e7937131-d261-47bb-af93-b64b813ae8b7": { + "templateId": "HomebaseNode:questreward_evolution4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "AccountResource:Campaign_Event_Currency": { + "templateId": "AccountResource:Campaign_Event_Currency", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Currency_MtxSwap": { + "templateId": "AccountResource:Currency_MtxSwap", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Currency_XRayLlama": { + "templateId": "AccountResource:Currency_XRayLlama", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:EventCurrency_Adventure": { + "templateId": "AccountResource:EventCurrency_Adventure", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:EventCurrency_Blockbuster": { + "templateId": "AccountResource:EventCurrency_Blockbuster", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:EventCurrency_Candy": { + "templateId": "AccountResource:EventCurrency_Candy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:EventCurrency_Founders": { + "templateId": "AccountResource:EventCurrency_Founders", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:EventCurrency_Lunar": { + "templateId": "AccountResource:EventCurrency_Lunar", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:EventCurrency_PumpkinWarhead": { + "templateId": "AccountResource:EventCurrency_PumpkinWarhead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:EventCurrency_RoadTrip": { + "templateId": "AccountResource:EventCurrency_RoadTrip", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:EventCurrency_Scaling": { + "templateId": "AccountResource:EventCurrency_Scaling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:EventCurrency_Scavenger": { + "templateId": "AccountResource:EventCurrency_Scavenger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:EventCurrency_Snowballs": { + "templateId": "AccountResource:EventCurrency_Snowballs", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:EventCurrency_Spring": { + "templateId": "AccountResource:EventCurrency_Spring", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:EventCurrency_StormZone": { + "templateId": "AccountResource:EventCurrency_StormZone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:EventCurrency_Summer": { + "templateId": "AccountResource:EventCurrency_Summer", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:HeroXP": { + "templateId": "AccountResource:HeroXP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:PeopleResource": { + "templateId": "AccountResource:PeopleResource", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:PersonnelXP": { + "templateId": "AccountResource:PersonnelXP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:PhoenixXP": { + "templateId": "AccountResource:PhoenixXP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Alteration_Ele_Fire": { + "templateId": "AccountResource:Reagent_Alteration_Ele_Fire", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Alteration_Ele_Nature": { + "templateId": "AccountResource:Reagent_Alteration_Ele_Nature", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Alteration_Ele_Water": { + "templateId": "AccountResource:Reagent_Alteration_Ele_Water", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Alteration_Gameplay_Generic": { + "templateId": "AccountResource:Reagent_Alteration_Gameplay_Generic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Alteration_Generic": { + "templateId": "AccountResource:Reagent_Alteration_Generic", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Alteration_Upgrade_R": { + "templateId": "AccountResource:Reagent_Alteration_Upgrade_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Alteration_Upgrade_SR": { + "templateId": "AccountResource:Reagent_Alteration_Upgrade_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Alteration_Upgrade_UC": { + "templateId": "AccountResource:Reagent_Alteration_Upgrade_UC", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Alteration_Upgrade_VR": { + "templateId": "AccountResource:Reagent_Alteration_Upgrade_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_C_T01": { + "templateId": "AccountResource:Reagent_C_T01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_C_T02": { + "templateId": "AccountResource:Reagent_C_T02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_C_T03": { + "templateId": "AccountResource:Reagent_C_T03", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_C_T04": { + "templateId": "AccountResource:Reagent_C_T04", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_EvolveRarity_R": { + "templateId": "AccountResource:Reagent_EvolveRarity_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_EvolveRarity_SR": { + "templateId": "AccountResource:Reagent_EvolveRarity_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_EvolveRarity_VR": { + "templateId": "AccountResource:Reagent_EvolveRarity_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_People": { + "templateId": "AccountResource:Reagent_People", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Promotion_Heroes": { + "templateId": "AccountResource:Reagent_Promotion_Heroes", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Promotion_Survivors": { + "templateId": "AccountResource:Reagent_Promotion_Survivors", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Promotion_Traps": { + "templateId": "AccountResource:Reagent_Promotion_Traps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Promotion_Weapons": { + "templateId": "AccountResource:Reagent_Promotion_Weapons", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Traps": { + "templateId": "AccountResource:Reagent_Traps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Reagent_Weapons": { + "templateId": "AccountResource:Reagent_Weapons", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:SchematicXP": { + "templateId": "AccountResource:SchematicXP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:SpecialCurrency_Daily": { + "templateId": "AccountResource:SpecialCurrency_Daily", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_BasicPack": { + "templateId": "AccountResource:Voucher_BasicPack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_CardPack_2021Anniversary": { + "templateId": "AccountResource:Voucher_CardPack_2021Anniversary", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_CardPack_Bronze": { + "templateId": "AccountResource:Voucher_CardPack_Bronze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_CardPack_Jackpot": { + "templateId": "AccountResource:Voucher_CardPack_Jackpot", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Custom_Firecracker_R": { + "templateId": "AccountResource:Voucher_Custom_Firecracker_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Founders_Constructor_Bundle": { + "templateId": "AccountResource:Voucher_Founders_Constructor_Bundle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Founders_Constructor_Weapon_SR": { + "templateId": "AccountResource:Voucher_Founders_Constructor_Weapon_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Founders_Constructor_Weapon_VR": { + "templateId": "AccountResource:Voucher_Founders_Constructor_Weapon_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Founders_Ninja_Bundle": { + "templateId": "AccountResource:Voucher_Founders_Ninja_Bundle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Founders_Ninja_Weapon_SR": { + "templateId": "AccountResource:Voucher_Founders_Ninja_Weapon_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Founders_Ninja_Weapon_VR": { + "templateId": "AccountResource:Voucher_Founders_Ninja_Weapon_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Founders_Outlander_Bundle": { + "templateId": "AccountResource:Voucher_Founders_Outlander_Bundle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Founders_Outlander_Weapon_SR": { + "templateId": "AccountResource:Voucher_Founders_Outlander_Weapon_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Founders_Outlander_Weapon_VR": { + "templateId": "AccountResource:Voucher_Founders_Outlander_Weapon_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Founders_Soldier_Bundle": { + "templateId": "AccountResource:Voucher_Founders_Soldier_Bundle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Founders_Soldier_Weapon_SR": { + "templateId": "AccountResource:Voucher_Founders_Soldier_Weapon_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Founders_Soldier_Weapon_VR": { + "templateId": "AccountResource:Voucher_Founders_Soldier_Weapon_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Founders_StarterWeapons_Bundle": { + "templateId": "AccountResource:Voucher_Founders_StarterWeapons_Bundle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Defender_R": { + "templateId": "AccountResource:Voucher_Generic_Defender_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Defender_SR": { + "templateId": "AccountResource:Voucher_Generic_Defender_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Defender_VR": { + "templateId": "AccountResource:Voucher_Generic_Defender_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Hero_R": { + "templateId": "AccountResource:Voucher_Generic_Hero_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Hero_SR": { + "templateId": "AccountResource:Voucher_Generic_Hero_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Hero_VR": { + "templateId": "AccountResource:Voucher_Generic_Hero_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Manager_R": { + "templateId": "AccountResource:Voucher_Generic_Manager_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Manager_SR": { + "templateId": "AccountResource:Voucher_Generic_Manager_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Manager_VR": { + "templateId": "AccountResource:Voucher_Generic_Manager_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Melee_R": { + "templateId": "AccountResource:Voucher_Generic_Melee_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Melee_SR": { + "templateId": "AccountResource:Voucher_Generic_Melee_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Melee_VR": { + "templateId": "AccountResource:Voucher_Generic_Melee_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Ranged_R": { + "templateId": "AccountResource:Voucher_Generic_Ranged_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Ranged_SR": { + "templateId": "AccountResource:Voucher_Generic_Ranged_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Ranged_VR": { + "templateId": "AccountResource:Voucher_Generic_Ranged_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Schematic_R": { + "templateId": "AccountResource:Voucher_Generic_Schematic_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_source": " w", + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Schematic_SR": { + "templateId": "AccountResource:Voucher_Generic_Schematic_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Schematic_VR": { + "templateId": "AccountResource:Voucher_Generic_Schematic_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Trap_R": { + "templateId": "AccountResource:Voucher_Generic_Trap_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Trap_SR": { + "templateId": "AccountResource:Voucher_Generic_Trap_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Trap_VR": { + "templateId": "AccountResource:Voucher_Generic_Trap_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Weapon_R": { + "templateId": "AccountResource:Voucher_Generic_Weapon_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Weapon_SR": { + "templateId": "AccountResource:Voucher_Generic_Weapon_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Weapon_VR": { + "templateId": "AccountResource:Voucher_Generic_Weapon_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Worker_R": { + "templateId": "AccountResource:Voucher_Generic_Worker_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Worker_SR": { + "templateId": "AccountResource:Voucher_Generic_Worker_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Generic_Worker_VR": { + "templateId": "AccountResource:Voucher_Generic_Worker_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_HeroBuyback": { + "templateId": "AccountResource:Voucher_HeroBuyback", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "AccountResource:Voucher_Item_Buyback": { + "templateId": "AccountResource:Voucher_Item_Buyback", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "EMTSquad-ManagerDoctor_SR_kingsly_T05": { + "templateId": "Worker:ManagerDoctor_SR_kingsly_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Doctor-kingsly.IconDef-ManagerPortrait-SR-Doctor-kingsly", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "EMTSquad1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "EMTSquad2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "EMTSquad3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "EMTSquad4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "EMTSquad5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "EMTSquad6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "EMTSquad7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha-ManagerSoldier_SR_malcolm_T05": { + "templateId": "Worker:ManagerSoldier_SR_malcolm_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Soldier-malcolm.IconDef-ManagerPortrait-SR-Soldier-malcolm", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "FireTeamAlpha1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers-ManagerGadgeteer_SR_fixer_T05": { + "templateId": "Worker:ManagerGadgeteer_SR_fixer_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Gadgeteer-fixer.IconDef-ManagerPortrait-SR-Gadgeteer-fixer", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Gadgeteers1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering-ManagerEngineer_SR_countess_T05": { + "templateId": "Worker:ManagerEngineer_SR_countess_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Engineer-countess.IconDef-ManagerPortrait-SR-Engineer-countess", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "CorpsOfEngineering1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam-ManagerTrainer_SR_raider_T05": { + "templateId": "Worker:ManagerTrainer_SR_raider_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-PersonalTrainer-raider.IconDef-ManagerPortrait-SR-PersonalTrainer-raider", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "TrainingTeam1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad-ManagerMartialArtist_SR_dragon_T05": { + "templateId": "Worker:ManagerMartialArtist_SR_dragon_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-MartialArtist-dragon.IconDef-ManagerPortrait-SR-MartialArtist-dragon", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "CloseAssaultSquad1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty-ManagerExplorer_SR_birdie_T05": { + "templateId": "Worker:ManagerExplorer_SR_birdie_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Explorer-birdie.IconDef-ManagerPortrait-SR-Explorer-birdie", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "ScoutingParty1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank-ManagerInventor_SR_frequency_T05": { + "templateId": "Worker:ManagerInventor_SR_frequency_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Inventor-frequency.IconDef-ManagerPortrait-SR-Inventor-frequency", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "TheThinkTank1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "0b734386-faa8-49b8-81e3-497f4d9b9516": { + "templateId": "Quest:cannyvalleyquest_filler_3_d1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "completion_complete_pve03_diff1_v2": 3, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-08T12:40:15.064Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_questcollect_survivoritemdata_v2": 15 + }, + "quantity": 1 + }, + "31c6b691-0043-4877-aaa6-f9903ba8014d": { + "templateId": "Quest:cannyvalleyquest_side_4_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_complete_retrievedata_3_diff5": 3, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-09-08T05:33:42.132Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "ad40b454-ed42-4cb4-b5da-a1cd07cd9227": { + "templateId": "Quest:cannyvalleyquest_filler_16_d5", + "attributes": { + "completion_complete_gate_double_3_diff5": 3, + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-10-06T07:37:12.133Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "3c49431e-e904-448e-a050-bcbc7951890b": { + "templateId": "Quest:cannyvalley_landmark_welcome", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "completion_cannyvalley_landmark_welcome": 1, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-24T09:57:34.710Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "e4bf0844-d29f-404f-aa5f-5ddb6a2262ca": { + "templateId": "Quest:cannyvalley_reactive_vacuum", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-19T16:20:29.500Z", + "completion_cannyvalley_reactive_vacuum": 30, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "84254101-b1c2-4680-93ec-bbf2594b23c1": { + "templateId": "Quest:cannyvalleyquest_filler_15_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_complete_evacuateshelter_3_diff4": 3, + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-22T19:40:19.227Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "9be0e485-ea85-4bd8-9edd-b9b6b247d08a": { + "templateId": "Quest:cannyvalleyquest_filler_9_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_complete_retrievedata_3_diff4": 2, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-17T06:55:27.589Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "839a4973-cbd6-4195-83b8-2eef8184f5a2": { + "templateId": "Quest:cannyvalley_landmark_mansion", + "attributes": { + "creation_time": "min", + "completion_cannyvalley_landmark_mansion": 1, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-12T16:17:34.422Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "fa81b1c1-d518-47ec-a71f-afa2047ed0df": { + "templateId": "Quest:cannyvalleyquest_filler_13_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-09-08T20:26:43.237Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_launchballoon_3_diff5": 3, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "b9e25aa5-7373-43f9-9d85-b028d49d75a0": { + "templateId": "Quest:cannyvalley_reactive_powertransformers", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-12T15:56:03.896Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_cannyvalley_reactive_powertransformers": 7, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "f36b14b6-38ee-43d0-b586-2ec24972afe2": { + "templateId": "Quest:cannyvalley_hidden_enablegunslinger", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-26T17:36:41.026Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_questcomplete_cannyvalley_landmark_highnoon": 1, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "f31d8e27-3acd-4156-8064-045dd025e5d6": { + "templateId": "Quest:cannyvalleyquest_filler_13_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-29T06:35:19.031Z", + "completion_complete_evacuateshelter_3_diff2": 3, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "bdbbd405-bd92-4736-b86e-99a7298315ce": { + "templateId": "Quest:cannyvalley_reactive_musichalls", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_cannyvalley_reactive_musichalls": 5, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-09T13:45:45.495Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "be9ffed7-5fd6-455d-87bb-e764a3ee1043": { + "templateId": "Quest:cannyvalley_reactive_tinfoil", + "attributes": { + "creation_time": "min", + "level": -1, + "completion_cannyvalley_reactive_tinfoil": 7, + "item_seen": true, + "playlists": [], + "loadouts": "i ", + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-15T12:06:48.506Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "3296d23d-3d53-4cb0-ab28-b47c853afe7e": { + "templateId": "Quest:cannyvalleyquest_side_2_d3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "completion_complete_gate_triple_3_diff3": 3, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-28T11:26:48.201Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "be6c1c0c-18b1-4992-94ff-c8d7c59344d7": { + "templateId": "Quest:cannyvalleyquest_filler_13_d3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "completion_complete_gate_3_diff3": 3, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-05T15:07:22.035Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "584da929-3d46-44e4-af88-3c9e93bce055": { + "templateId": "Quest:cannyvalley_reactive_cannons", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "completion_cannyvalley_reactive_cannons": 7, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-17T20:12:09.778Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "afe46257-72bb-4741-865a-79b3ffcc0d4f": { + "templateId": "Quest:cannyvalley_reactive_forts", + "attributes": { + "creation_time": "min", + "level": -1, + "completion_cannyvalley_reactive_forts": 3, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-01T10:32:08.828Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "9a038ca9-3db9-4e52-84c7-b4bed72822e4": { + "templateId": "Quest:cannyvalleyquest_filler_4_d3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-30T15:20:52.779Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_gate_quadruple_3_diff3_v2": 2, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "0abddd87-fcce-4a13-9351-daeb861f5831": { + "templateId": "Quest:cannyvalley_reactive_cards", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-08T16:47:26.631Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_cannyvalley_reactive_cards": 15 + }, + "quantity": 1 + }, + "82a3809e-9f9a-4490-82e0-3c644b09dfa7": { + "templateId": "Quest:cannyvalleyquest_filler_2_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_complete_gate_triple_3_diff4": 3, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-06T13:20:47.270Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 1, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "718b5806-6ce3-4e48-ae4c-d9cfc4e63cf6": { + "templateId": "Quest:cannyvalleyquest_filler_4_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-28T11:26:52.103Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "completion_complete_bluglosiphon_3_diff5_v2": 2, + "favorite": false, + "completion_complete_refuel_3_diff5": 0 + }, + "quantity": 1 + }, + "c9299207-82c2-40c5-aadf-8592ab9610f9": { + "templateId": "Quest:cannyvalleyquest_filler_11_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_complete_gate_3_diff5": 3, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-08-22T17:17:02.960Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "175ff979-9883-4924-a437-19c49ddc8545": { + "templateId": "Quest:cannyvalleyquest_filler_2_d3", + "attributes": { + "creation_time": "min", + "completion_complete_delivergoods_3_diff3": 1, + "completion_complete_refuel_3_diff3": 0, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-30T12:01:50.569Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_bluglosiphon_3_diff3": 2, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "99b36976-8019-4184-ab93-eb65d0725352": { + "templateId": "Quest:cannyvalleyquest_filler_1_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-24T16:10:30.626Z", + "completion_complete_gate_quadruple_3_diff2": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "68e4b60c-01cc-47f3-b6b3-e50f33ed489c": { + "templateId": "Quest:cannyvalleyquest_filler_3_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_complete_encampment_3_diff2": 5, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-26T06:43:25.467Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "f519a3b0-bd0a-4272-a34f-6fc7922710dc": { + "templateId": "Quest:cannyvalley_reactive_tabs", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "completion_cannyvalley_reactive_tabs": 7, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-26T12:09:45.310Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "efb0007d-857e-446b-85d8-111c394387f9": { + "templateId": "Quest:cannyvalley_reactive_trophies", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-22T07:53:40.533Z", + "challenge_linked_quest_parent": "", + "completion_cannyvalley_reactive_trophies": 3, + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "7bfe7f63-80df-4047-b3d3-1037ce26b01e": { + "templateId": "Quest:cannyvalleyquest_filler_5_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-29T10:33:17.093Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_whackatroll_3_diff5_v3": 1 + }, + "quantity": 1 + }, + "ee258ac7-bd6f-493f-ae42-3c241e73939e": { + "templateId": "Quest:cannyvalley_reactive_tumbleweed", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-26T17:28:55.014Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "completion_cannyvalley_reactive_tumbleweed": 10, + "favorite": false + }, + "quantity": 1 + }, + "7b13ab6f-5c2f-4f7d-8ecc-a36834f82588": { + "templateId": "Quest:cannyvalley_landmark_rift", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-02T18:38:42.757Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "completion_cannyvalley_landmark_rift": 1, + "favorite": false + }, + "quantity": 1 + }, + "669d072c-f53f-4fc2-ab06-8acf4289221b": { + "templateId": "Quest:cannyvalley_landmark_bossfight", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_cannyvalley_landmark_bossfight": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-22T08:50:28.311Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 3, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "8e62a78a-1119-4275-8bd2-09bcb6d64683": { + "templateId": "Quest:cannyvalleyquest_filler_7_d1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-18T16:42:50.848Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_launchballoon_3_diff1": 3 + }, + "quantity": 1 + }, + "0e1dc131-dd36-4422-9be9-500722f12d7c": { + "templateId": "Quest:cannyvalleyquest_side_2_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-04T20:05:44.390Z", + "completion_complete_evacuateshelter_3_diff2": 3, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "1e8a84a7-f8fe-4653-b53c-6aff6b5cb441": { + "templateId": "Quest:cannyvalley_reactive_watertowers", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-26T16:44:59.970Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_cannyvalley_reactive_watertowers": 7, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "d22dceb2-5eb0-4cf4-9a4a-e73ef15e870c": { + "templateId": "Quest:cannyvalley_reactive_bikes", + "attributes": { + "creation_time": "min", + "completion_cannyvalley_reactive_bikes": 7, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-19T09:28:17.356Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "eb9c052f-be9d-4909-a721-05cd59aa81f3": { + "templateId": "Quest:cannyvalley_reactive_seebot", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_cannyvalley_reactive_seebot": 5, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-24T11:30:37.351Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "a8ce1071-3be9-4d04-9dcd-2f611a4c3a83": { + "templateId": "Quest:cannyvalleyquest_filler_6_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-26T15:38:28.458Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_launchballoon_3_diff2": 2 + }, + "quantity": 1 + }, + "4340b0b8-d8f8-4c8b-a205-fa804fbd90e6": { + "templateId": "Quest:cannyvalleyquest_side_2_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_complete_gate_3_diff5": 3, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-08-22T17:17:06.834Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "efb53aa8-ae80-43fd-bc91-3ba6aaaa1221": { + "templateId": "Quest:cannyvalley_reactive_oillamps", + "attributes": { + "completion_cannyvalley_reactive_oillamps": 7, + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-11-30T16:46:47.534Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "2c97e2e5-12d0-4f88-b188-ce011074aff2": { + "templateId": "Quest:cannyvalley_reactive_signalexplore", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-17T16:02:25.371Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_cannyvalley_reactive_signalexplore": 7 + }, + "quantity": 1 + }, + "e6873582-17a1-4d52-a1cc-df832d267cac": { + "templateId": "Quest:cannyvalley_reactive_mainframes", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-15T11:00:58.600Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_cannyvalley_reactive_mainframes": 30 + }, + "quantity": 1 + }, + "546666d8-29f1-4e14-b05f-63d04f8623c4": { + "templateId": "Quest:cannyvalleyquest_filler_14_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_complete_retrievedata_3_diff5": 2, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-09-29T15:28:24.083Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "598412ce-8333-45ec-920c-accdb37ede79": { + "templateId": "Quest:cannyvalleyquest_outpost_l2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_questcomplete_outpostquest_t3_l2": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-25T10:35:33.503Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "b0a39c48-2f1b-4011-bd9a-f7f3e26743de": { + "templateId": "Quest:cannyvalley_hidden_end_watchvideo", + "attributes": { + "creation_time": "min", + "completion_cannyvalley_hidden_end_watchvideo": 1, + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-09-26T05:58:35.736Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "a9e7afb5-4df5-4b11-b7da-cf309fefff1c": { + "templateId": "Quest:cannyvalley_reactive_mandelaeffect", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-11-30T21:16:40.168Z", + "completion_cannyvalley_reactive_mandelaeffect": 9, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 3, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "c3ea195d-bd8a-4fa7-a101-e98688e467b0": { + "templateId": "Quest:cannyvalley_reactive_route99", + "attributes": { + "completion_cannyvalley_reactive_route99_motel": 1, + "completion_cannyvalley_reactive_route99_gasstation": 1, + "creation_time": "min", + "completion_cannyvalley_reactive_route99_diner": 1, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-24T11:02:42.854Z", + "completion_cannyvalley_reactive_route99_truckstop": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "90c80076-bbbe-4cc4-a562-f5ccf856570d": { + "templateId": "Quest:cannyvalley_reactive_dredgers", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-02T18:29:54.920Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "completion_cannyvalley_reactive_dredgers": 5, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "3cedd4e2-cece-4f22-9435-2db26350819a": { + "templateId": "Quest:cannyvalley_reactive_survey", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-24T12:19:48.632Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_cannyvalley_reactive_survey": 7, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "be0cc0bb-5c28-4437-9f19-d772808fe0b7": { + "templateId": "Quest:cannyvalley_hidden_watchvideo", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2018-12-22T08:50:28.313Z", + "challenge_linked_quest_parent": "", + "completion_cannyvalley_hidden_watchvideo": 0, + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "6d785dec-e4dc-438b-8d2d-cd134ab17611": { + "templateId": "Quest:cannyvalleyquest_side_1_d5", + "attributes": { + "creation_time": "min", + "completion_complete_powerreactor_3_diff5": 2, + "level": -1, + "item_seen": true, + "playlists": [], + "completion_complete_delivergoods_3_diff5_v2": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-08-19T11:31:39.498Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "2e839950-511c-497d-8833-b78cd917e271": { + "templateId": "Quest:cannyvalleyquest_filler_14_d3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-05T16:03:21.326Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_launchballoon_3_diff3": 3, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "3df5bf3e-9920-4d84-879d-7a44d53bfb8a": { + "templateId": "Quest:cannyvalleyquest_filler_10_d5", + "attributes": { + "completion_complete_gate_double_3_diff5": 3, + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-08-21T17:36:16.680Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "a9c498bf-57b6-4d88-839f-f60d5b808ae9": { + "templateId": "Quest:cannyvalley_reactive_junkfood", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_cannyvalley_reactive_junkfood": 15, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-16T11:41:28.055Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "49cbf62a-a322-4c68-ad68-cbf9ba2c3e12": { + "templateId": "Quest:cannyvalley_reactive_rockformations", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-24T14:16:40.037Z", + "completion_cannyvalley_reactive_rockformations": 17, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "de3a96ca-cb9a-4381-af31-7c011b9a0418": { + "templateId": "Quest:cannyvalley_mechanical_shelterrescue", + "attributes": { + "creation_time": "min", + "completion_cannyvalley_mechanical_shelterrescue": 1, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-09T14:04:36.543Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "6453ffac-e65c-4b86-bd39-41d6bfaad9d6": { + "templateId": "Quest:cannyvalley_reactive_stores", + "attributes": { + "creation_time": "min", + "completion_cannyvalley_reactive_stores": 5, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-02T13:49:33.481Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "2725d5b9-5864-48af-a7c3-23a77e793e2d": { + "templateId": "Quest:cannyvalley_reactive_truther", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-11-27T16:10:06.557Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_cannyvalley_reactive_truther": 5 + }, + "quantity": 1 + }, + "c52fb66d-e8be-49c1-82b3-fb62e994f897": { + "templateId": "Quest:cannyvalley_reactive_dinosaurs", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-11T18:16:19.016Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_cannyvalley_reactive_dinosaurs": 5, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "e63c9f73-980b-4ff2-928f-69f5901f6830": { + "templateId": "Quest:cannyvalleyquest_side_3_d3", + "attributes": { + "creation_time": "min", + "completion_complete_delivergoods_3_diff3": 2, + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-06T11:42:52.461Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "335c324e-bb23-4409-a1ac-3a56e6680034": { + "templateId": "Quest:cannyvalley_reactive_telegraph", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_cannyvalley_reactive_telegraph": 15, + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-11-29T18:07:29.833Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "a84b0a6e-a215-4516-8363-dff2cf67041a": { + "templateId": "Quest:cannyvalley_reactive_tubs", + "attributes": { + "creation_time": "min", + "completion_cannyvalley_reactive_tubs": 5, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-02T17:37:56.438Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "735abe60-3c25-43e0-90e4-d6eaa2f92711": { + "templateId": "Quest:cannyvalleyquest_filler_7_d3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "completion_complete_retrievedata_3_diff3": 2, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-02T18:55:46.254Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "78b8b496-97d8-4ab0-a184-766cd5bf2c43": { + "templateId": "Quest:cannyvalleyquest_filler_1_d3", + "attributes": { + "creation_time": "min", + "level": -1, + "completion_complete_evacuate_3_diff3": 2, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-29T13:32:54.283Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "feff5731-7ac1-4e4f-9f1e-126ea9c1f4ed": { + "templateId": "Quest:cannyvalleyquest_filler_5_d1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-09T05:17:26.422Z", + "completion_complete_gate_double_3": 3, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "79350fd2-33d7-486a-8ef3-6fc93ad00312": { + "templateId": "Quest:cannyvalley_reactive_servers", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-26T07:59:35.424Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "completion_cannyvalley_reactive_servers": 6, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "b566ae5d-c880-4692-8112-44dfd5a928da": { + "templateId": "Quest:cannyvalleyquest_filler_8_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_complete_gate_3_diff5": 3, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-08-03T06:15:52.251Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "ba30f34e-f591-489d-8d2e-83232fe0dcea": { + "templateId": "Quest:cannyvalley_landmark_deploytheprobe", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-10T20:56:05.012Z", + "completion_cannyvalley_landmark_deploytheprobe": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "b04e7b18-42ae-45c3-b198-57b74d1e0df3": { + "templateId": "Quest:cannyvalleyquest_filler_1_d4", + "attributes": { + "creation_time": "min", + "completion_complete_mimic_3_diff4": 2, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-06T11:22:57.770Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "2ad2d76b-b56f-4ee3-b01f-ea5180744b31": { + "templateId": "Quest:cannyvalleyquest_filler_11_d4", + "attributes": { + "creation_time": "min", + "completion_complete_gate_double_3_diff4": 3, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-18T13:34:35.533Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "6c7d2466-c261-416a-8ed6-1c0219670d9e": { + "templateId": "Quest:cannyvalley_reactive_coaches", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-11-28T16:03:10.002Z", + "completion_cannyvalley_reactive_coaches": 7, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "121c75ca-3fac-485d-bb18-c334eb98fd31": { + "templateId": "Quest:cannyvalleyquest_filler_9_d1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-20T19:20:08.791Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_launchballoon_3_diff1": 3 + }, + "quantity": 1 + }, + "b21d21d4-7b3c-4dd3-a58d-c7ecaac31281": { + "templateId": "Quest:cannyvalleyquest_filler_2_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-25T06:39:04.768Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_anomaly_3_diff2": 3, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "3cc8cb55-a864-498f-8ae1-e46200e1cfd2": { + "templateId": "Quest:cannyvalleyquest_filler_10_d3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-04T16:53:08.087Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_launchballoon_3_diff3": 2, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "62399fd2-901c-4fb2-8b13-ad1d68b83a1d": { + "templateId": "Quest:cannyvalleyquest_side_1_d1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_interact_teddybear_pve03_v2": 5, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-26T12:37:36.982Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "b577ecc5-ea3d-486d-b796-30814b6c705a": { + "templateId": "Quest:cannyvalleyquest_filler_13_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-20T11:46:57.169Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_launchballoon_3_diff4": 3, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "dd7d459c-8a64-40db-80b8-fc8d1cb2b730": { + "templateId": "Quest:cannyvalleyquest_filler_6_d1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-17T15:07:22.428Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_evacuateshelter_3_diff1": 3, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "55dab957-3df9-4b25-a711-d18190e25349": { + "templateId": "Quest:cannyvalleyquest_filler_10_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "completion_complete_gate_triple_3_diff2": 3, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-27T16:21:34.909Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "c832ad39-c432-4db3-8df0-9da74b9516d6": { + "templateId": "Quest:cannyvalleyquest_side_3_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_complete_delivergoods_3_diff5": 3, + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-08-25T11:09:40.850Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "b9699e93-7378-4fa0-8e2f-8868172f2f9a": { + "templateId": "Quest:cannyvalleyquest_filler_8_d1", + "attributes": { + "creation_time": "min", + "completion_complete_delivergoods_3_diff1": 2, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-20T15:28:23.777Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "ae3ef29b-8ffa-4c11-8c8f-bc9927b41ec7": { + "templateId": "Quest:cannyvalleyquest_side_4_d3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-17T17:43:10.447Z", + "challenge_linked_quest_parent": "", + "completion_complete_evacuateshelter_3_diff3": 3, + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "97f27b49-2b6e-40d9-aace-877462e09934": { + "templateId": "Quest:cannyvalley_mechanical_exploration", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-11-27T16:36:04.651Z", + "completion_cannyvalley_mechanical_exploration": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "49c663c2-12a8-45d5-8fcc-2f94096285d9": { + "templateId": "Quest:cannyvalley_reactive_canoes", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-22T08:38:33.299Z", + "completion_cannyvalley_reactive_canoes": 7, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "813d4ded-68e0-40fa-b055-c594eee14aea": { + "templateId": "Quest:cannyvalleyquest_filler_16_d4", + "attributes": { + "creation_time": "min", + "completion_complete_gate_double_3_diff4": 3, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-23T09:58:45.228Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "0386cbd9-6d2b-4049-817b-0bd032590fe8": { + "templateId": "Quest:cannyvalleyquest_launchtherocket", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_questcomplete_cannyvalleyquest_launchrocket_d5": 0, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2018-12-22T13:10:27.933Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": -1, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "8061b1f2-c3ac-4e1e-bd2b-631fb243a26d": { + "templateId": "Quest:cannyvalley_reactive_pueblos", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-11-28T15:41:42.765Z", + "completion_cannyvalley_reactive_pueblos": 3, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "a4029b40-a1c5-4f71-8872-748fb31caffc": { + "templateId": "Quest:cannyvalleyquest_filler_14_d2", + "attributes": { + "completion_complete_delivergoods_3_diff2": 3, + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-29T11:40:17.801Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "c4681687-0bbe-4293-8b12-dc74f674ddcd": { + "templateId": "Quest:cannyvalley_reactive_rifts", + "attributes": { + "creation_time": "min", + "completion_cannyvalley_reactive_rifts": 5, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-01T10:57:35.043Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 2, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "52c08039-00ed-44fd-b42e-5eb3dc885ebf": { + "templateId": "Quest:cannyvalleyquest_filler_9_d2", + "attributes": { + "completion_complete_delivergoods_3_diff2": 2, + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-27T07:22:47.846Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "f24f9123-3986-4bce-9391-683334811c38": { + "templateId": "Quest:cannyvalleyquest_filler_7_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "completion_complete_gate_3_diff4": 3, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-15T11:30:17.578Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "84b37980-aa55-401f-b9d2-2c30122a3c5f": { + "templateId": "Quest:cannyvalleyquest_filler_11_d1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-24T14:43:15.122Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_launchballoon_3_diff1": 3 + }, + "quantity": 1 + }, + "a94b315c-bcc9-4a6d-9a08-ed5009eec115": { + "templateId": "Quest:cannyvalleyquest_outpost_l6", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_questcomplete_outpostquest_t3_l6": 1, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-22T13:10:24.967Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "ae49236f-53d2-4b34-870d-f4ed0a4a79f8": { + "templateId": "Quest:cannyvalleyquest_side_1_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_complete_gate_double_3_diff4_v2": 3, + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-08-21T17:36:15.358Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "33588e20-4de6-4c4b-9ecf-e408bdde86d8": { + "templateId": "Quest:cannyvalleyquest_filler_11_d2", + "attributes": { + "creation_time": "min", + "completion_complete_powerreactor_3_diff2": 3, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-28T11:17:04.519Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "421a40fd-bdf8-4ae1-91f5-489b3dddde99": { + "templateId": "Quest:cannyvalley_reactive_trail", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-26T14:41:37.899Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_cannyvalley_reactive_trail": 7, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "6c75a4bc-ef0c-4676-9ef5-396387933776": { + "templateId": "Quest:cannyvalleyquest_filler_1_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_complete_delivergoods_3_diff5": 2, + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-23T15:34:42.344Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "04e38ba3-34a2-48c9-991c-bd0ac25d0231": { + "templateId": "Quest:cannyvalleyquest_filler_4_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-14T14:55:08.788Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_whackatroll_3_diff4_v2": 0, + "completion_complete_whackatroll_3_diff4_v3": 1 + }, + "quantity": 1 + }, + "f0744f4a-d23e-4d58-8841-417ed8f65ee3": { + "templateId": "Quest:cannyvalleyquest_filler_7_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_complete_gate_triple_3_diff5": 2, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-08-02T07:03:11.139Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "62a9e61e-0c7a-4b48-bd18-54bce8382b44": { + "templateId": "Quest:cannyvalleyquest_filler_2_d1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-06T16:59:44.951Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_kill_husk_smasher_3_diff1_v3": 15, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "67f0ac79-71ed-46a2-8a66-099bd3774a48": { + "templateId": "Quest:cannyvalleyquest_filler_5_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_complete_destroyencamp_3_diff4": 3, + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-14T17:25:39.750Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "08b44d9f-9370-43aa-87e3-f5e4d5a5dea4": { + "templateId": "Quest:cannyvalleyquest_side_3_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "completion_complete_gate_triple_3_diff2": 3, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-30T12:01:46.865Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "c4f18815-ac2d-461a-85ca-ba0094b97b3a": { + "templateId": "Quest:cannyvalleyquest_outpost_l3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "completion_questcomplete_outpostquest_t3_l3": 0, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Inactive", + "bucket": "", + "last_state_change_time": "2018-07-26T17:37:36.808Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "80dd4bbc-7d6d-4b25-9302-2192d093a9f2": { + "templateId": "Quest:cannyvalleyquest_filler_12_d3", + "attributes": { + "creation_time": "min", + "completion_complete_powerreactor_3_diff3": 2, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-05T06:27:12.235Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "e8d4d8d4-8e65-4cb2-910f-5754208e2828": { + "templateId": "Quest:cannyvalleyquest_filler_6_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-08-01T07:26:06.367Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_anomaly_3_diff5_v2": 3, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "dea7e53a-f403-4941-affe-3d0538eb3651": { + "templateId": "Quest:cannyvalleyquest_launchrocket_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_complete_launchrocket_3": 1, + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-29T12:33:26.742Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "1a94296a-5103-46f0-a0d5-f0f1a818a10b": { + "templateId": "Quest:cannyvalley_reactive_telescopes", + "attributes": { + "creation_time": "min", + "completion_cannyvalley_reactive_telescopes": 7, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-10T20:02:16.028Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "6fe92655-ed22-46a3-9cbc-0478ca5d3522": { + "templateId": "Quest:cannyvalleyquest_filler_8_d4", + "attributes": { + "creation_time": "min", + "completion_complete_gate_double_3_diff4": 3, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-16T14:24:58.032Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "f7309ae2-249c-4442-9174-0f23898bae25": { + "templateId": "Quest:cannyvalleyquest_side_1_d3", + "attributes": { + "creation_time": "min", + "level": -1, + "completion_interact_safe_pve03_diff3_v2": 5, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-23T13:18:58.912Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "61d4171e-816b-4a8d-9c18-e1ba4585b24b": { + "templateId": "Quest:cannyvalley_reactive_oldbooks", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_cannyvalley_reactive_oldbooks": 7, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-11T09:35:02.539Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "a6c6466c-37b6-42b8-81a0-94abc5e13633": { + "templateId": "Quest:cannyvalleyquest_filler_9_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-08-18T10:09:59.497Z", + "completion_complete_evacuateshelter_3_diff5": 2, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "4843e8de-67ac-4b90-9415-59c0fb74cd6d": { + "templateId": "Quest:cannyvalleyquest_filler_3_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "completion_kill_husk_taker_3_diff4_v3": 25, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-06T14:41:06.507Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "13e54e5c-4857-4b37-8b18-9c680e20cdb9": { + "templateId": "Quest:cannyvalleyquest_filler_3_d3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-30T13:19:05.843Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "completion_kill_husk_flinger_3_diff3_v3": 20, + "favorite": false + }, + "quantity": 1 + }, + "712ba53f-0bc8-47a8-b0dc-6d9ddda91dcb": { + "templateId": "Quest:cannyvalleyquest_filler_5_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "completion_complete_gate_triple_3_diff2": 3, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-26T15:02:46.801Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "bb87b772-ce57-4bef-8583-48b230e9a78b": { + "templateId": "Quest:cannyvalley_reactive_jukeboxes", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-26T13:00:26.259Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_cannyvalley_reactive_jukeboxes": 10, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "d3d1c299-0d15-4f98-b922-49c83448eade": { + "templateId": "Quest:cannyvalley_reactive_demotape", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "completion_cannyvalley_reactive_demotape": 1, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-09-26T05:58:35.246Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "996a5fe1-3b4f-407d-a114-8b15a5c8dc73": { + "templateId": "Quest:cannyvalley_mechanical_killriotshields", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-11T19:11:55.799Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "completion_cannyvalley_mechanical_killriotshields": 15, + "favorite": false + }, + "quantity": 1 + }, + "be1ceb11-ff63-42ca-920d-acdca5577208": { + "templateId": "Quest:cannyvalley_reactive_trees", + "attributes": { + "creation_time": "min", + "completion_cannyvalley_reactive_trees": 20, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-17T20:49:22.569Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "1387c37e-85bb-499f-82d7-695dbd80853f": { + "templateId": "Quest:cannyvalleyquest_filler_14_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_complete_retrievedata_3_diff4": 3, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-22T13:15:52.478Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "686ed22c-26eb-4998-81e7-a083e8923b09": { + "templateId": "Quest:cannyvalleyquest_side_4_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-07T11:48:04.709Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_buildradargrid_3_diff2": 3, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "ff724739-19e5-4ebe-9048-488396070e50": { + "templateId": "Quest:cannyvalley_reactive_trainstations", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-10T20:42:03.956Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_cannyvalley_reactive_trainstations": 4, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "fd1322ea-976c-42bb-9074-ed882324b098": { + "templateId": "Quest:cannyvalleyquest_filler_6_d3", + "attributes": { + "creation_time": " n", + "level": -1, + "item_seen": true, + "completion_complete_gate_3_diff3": 3, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-02T12:18:52.872Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "cba1ea9e-a849-4e2c-9274-d48505cef5a8": { + "templateId": "Quest:cannyvalleyquest_filler_4_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "completion_complete_powerreactor_3_diff2_v2": 3, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-26T13:52:11.695Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "56135d3f-19f4-46ea-b3e7-d67afcbc41c8": { + "templateId": "Quest:cannyvalley_reactive_dinobones", + "attributes": { + "creation_time": "min", + "completion_cannyvalley_reactive_dinobones": 7, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-24T13:44:08.367Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "27e7360b-bd7a-49c0-8f5b-7abfb8c82179": { + "templateId": "Quest:cannyvalleyquest_filler_12_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-28T14:01:46.201Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_launchballoon_3_diff2": 2 + }, + "quantity": 1 + }, + "287c2d4e-4751-4fd4-bf76-4c04405b031b": { + "templateId": "Quest:cannyvalleyquest_outpost_l4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_questcomplete_outpostquest_t3_l4": 1, + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-01T10:57:45.431Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "0570275c-4ce2-439f-933e-75c1fd028bd6": { + "templateId": "Quest:cannyvalleyquest_filler_11_d3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "completion_complete_retrievedata_3_diff3": 3, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-04T19:45:31.205Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "2f7b7450-ec68-43be-931d-12bf381e22bb": { + "templateId": "Quest:cannyvalleyquest_side_1_d2", + "attributes": { + "creation_time": "min", + "completion_complete_gate_double_3_diff2": 2, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-03T12:59:42.776Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "cf0b192e-e1d1-4f33-80f1-8078544cf73b": { + "templateId": "Quest:cannyvalleyquest_side_2_d1", + "attributes": { + "creation_time": "min", + "completion_complete_delivergoods_3_diff1": 3, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-30T07:12:53.281Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "349a4841-2326-4331-aa95-eb30e7b77080": { + "templateId": "Quest:cannyvalley_reactive_aftercredits", + "attributes": { + "creation_time": "min", + "completion_cannyvalley_reactive_aftercredits": 6, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-22T13:09:17.388Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "97ae15dc-3212-499c-bfbf-850a5e1945c7": { + "templateId": "Quest:cannyvalley_reactive_glyphs", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "completion_cannyvalley_reactive_glyphs": 5, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-25T10:35:24.585Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "59ee0971-9a49-4d78-8a61-e434e53430cf": { + "templateId": "Quest:cannyvalley_mechanical_constructor", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_cannyvalley_mechanical_constructor": 100, + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-26T17:08:08.666Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "76f0df40-cf3b-4b8b-b046-36ffa2184c1f": { + "templateId": "Quest:cannyvalley_reactive_oilsamples", + "attributes": { + "creation_time": "min", + "completion_cannyvalley_reactive_oilsamples": 5, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-24T13:26:17.446Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "b6f10e72-3cbf-407f-ac1f-f1730bb52a2b": { + "templateId": "Quest:cannyvalleyquest_filler_12_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_complete_evacuateshelter_3_diff4": 2, + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-19T11:27:22.190Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "a89b4ab6-cd45-48c3-9387-786dc4b588b3": { + "templateId": "Quest:cannyvalley_landmark_memorial", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_cannyvalley_landmark_memorial": 1, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-24T11:13:10.557Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "6cbc5679-9272-4f0f-9aac-ca3df1284e17": { + "templateId": "Quest:cannyvalley_reactive_clocks", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-11T08:14:08.681Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_cannyvalley_reactive_clocks": 50, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "518ddde2-a148-413b-94a7-485d34c493a3": { + "templateId": "Quest:cannyvalleyquest_filler_6_d4", + "attributes": { + "creation_time": "min", + "completion_complete_pve03_diff3_v2": 2, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-14T19:56:48.230Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_questcollect_survivoritemdata_v2": 10 + }, + "quantity": 1 + }, + "ffcf5261-8656-4b46-8615-8a141b0599f0": { + "templateId": "Quest:cannyvalleyquest_filler_2_d5", + "attributes": { + "creation_time": "min", + "completion_complete_pve03_diff5_v2": 3, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-27T09:09:56.254Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_questcollect_survivoritemdata_v2": 15 + }, + "quantity": 1 + }, + "0772ba5b-6eb3-402a-bd18-1a9bba748c74": { + "templateId": "Quest:cannyvalleyquest_filler_10_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_complete_gate_triple_3_diff4": 3, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-17T18:20:26.099Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "5aa4a3e2-9ec2-4fc9-ba6a-69b22d83eaca": { + "templateId": "Quest:cannyvalleyquest_filler_15_d3", + "attributes": { + "creation_time": "min", + "completion_complete_gate_double_3_diff3": 2, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-05T16:45:11.554Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "e9b4b5d6-2733-42b1-b059-e6b1c780b8d9": { + "templateId": "Quest:cannyvalleyquest_filler_12_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_complete_delivergoods_3_diff5": 3, + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-08-25T11:09:37.854Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "2587c9a3-14e3-4b77-9adc-2a1f5012744b": { + "templateId": "Quest:cannyvalleyquest_filler_9_d3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-03T12:59:47.433Z", + "challenge_linked_quest_parent": "", + "completion_complete_evacuateshelter_3_diff3": 3, + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "dac33675-5996-446e-bbde-3ed679b6edce": { + "templateId": "Quest:cannyvalleyquest_filler_7_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_complete_gate_3_diff2": 2, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-26T16:43:16.078Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "5924d9a1-b907-4e38-a116-fcc19b631ec5": { + "templateId": "Quest:cannyvalley_reactive_periscopes", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-25T14:23:18.980Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_cannyvalley_reactive_periscopes": 10, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "bacb0723-60fc-4198-a98f-49b5b4e3e7c3": { + "templateId": "Quest:cannyvalleyquest_side_2_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-08-22T16:33:09.382Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_launchballoon_3_diff4": 3, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "4d83f287-c062-428c-a7e2-6d93f4309bf3": { + "templateId": "Quest:cannyvalleyquest_filler_8_d3", + "attributes": { + "creation_time": "min", + "completion_complete_delivergoods_3_diff3": 3, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-03T11:08:10.609Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "4fa6b25b-9fc7-4b09-8f14-8d12e835ec1f": { + "templateId": "Quest:cannyvalleyquest_filler_1_d1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-06T14:51:27.440Z", + "completion_quick_complete_pve03": 2, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "5489aa0d-1b4b-4aa8-a02f-599eac50601a": { + "templateId": "Quest:cannyvalley_reactive_outhouses", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-11-30T18:00:53.457Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_cannyvalley_reactive_outhouses": 5, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "f8378eff-1e6b-4ab3-9df9-a9c47eb39800": { + "templateId": "Quest:cannyvalley_reactive_pianos", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-09T16:05:20.242Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_cannyvalley_reactive_pianos": 5, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "fa17166a-3c39-4e4f-9a60-0c2425b2ec89": { + "templateId": "Quest:cannyvalleyquest_filler_10_d1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-22T14:39:56.751Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_gate_triple_3": 3, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "3079fdb5-195c-45ae-a2f2-8f09097b00dc": { + "templateId": "Quest:cannyvalley_landmark_highnoon", + "attributes": { + "creation_time": "min", + "level": -1, + "completion_cannyvalley_landmark_highnoon": 1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-26T17:37:00.287Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "0f4cd4a2-7482-4138-9c03-0c09b76dcd51": { + "templateId": "Quest:cannyvalleyquest_side_5_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_complete_delivergoods_3_diff5": 3, + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-09-21T18:19:44.408Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "baf4f648-800e-40a4-8616-faacd9cca857": { + "templateId": "Quest:cannyvalleyquest_filler_17_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-10-07T17:22:51.171Z", + "completion_complete_evacuateshelter_3_diff5": 3, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "d17b358a-0a36-4241-834e-ce3fd7d38625": { + "templateId": "Quest:cannyvalleyquest_filler_4_d1", + "attributes": { + "creation_time": "min", + "completion_complete_gate_triple_3_v2": 2, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-08T15:00:00.619Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "6cb613fc-99e9-4acd-acdf-762079d8a596": { + "templateId": "Quest:cannyvalleyquest_side_4_d4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "completion_complete_gate_3_diff4": 3, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-30T14:22:36.569Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "475fee60-9f4c-44a2-815d-d1a0335321dc": { + "templateId": "Quest:cannyvalleyquest_outpost_l5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_questcomplete_outpostquest_t3_l5": 0, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Inactive", + "bucket": "", + "last_state_change_time": "2018-12-10T20:42:07.278Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "213008a2-702c-4bc6-9284-e865b26d682b": { + "templateId": "Quest:cannyvalleyquest_filler_8_d2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "completion_complete_retrievedata_3_diff2": 3, + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-27T06:22:38.410Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "8dd53215-9314-44e7-bfec-47190074e667": { + "templateId": "Quest:cannyvalleyquest_filler_5_d3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "completion_complete_retrievedata_3_diff3": 3, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-01T15:06:32.818Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "06f2d365-4a4e-475d-b0f3-609d28b14a94": { + "templateId": "Quest:cannyvalleyquest_side_3_d4", + "attributes": { + "creation_time": "min", + "completion_complete_powerreactor_3_diff4": 3, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-27T14:01:38.263Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "aea8449b-1a8f-44ef-80c1-0545d7d24253": { + "templateId": "Quest:cannyvalley_reactive_pamphlets", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-11-27T18:35:40.871Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_cannyvalley_reactive_pamphlets": 7, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "c36ba763-b2d6-4bd9-ba15-ce68d4a254a0": { + "templateId": "Quest:cannyvalleyquest_filler_15_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_complete_gate_triple_3_diff5": 3, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-10-05T16:38:24.656Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "634b2493-c485-4f91-b790-5d7a1dab9675": { + "templateId": "Quest:cannyvalleyquest_side_3_d1", + "attributes": { + "creation_time": "min", + "completion_complete_powerreactor_3_diff1": 3, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-06-26T07:02:29.564Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "66a3d432-deca-4933-954a-3e095a6bfac5": { + "templateId": "Quest:cannyvalley_reactive_oldmaps", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-12-11T17:15:12.803Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "selection": 1, + "completion_cannyvalley_reactive_oldmaps": 50, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "5c63cb08-9275-4bd8-b6fc-62eb8307a957": { + "templateId": "Quest:cannyvalley_reactive_bases", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_cannyvalley_reactive_bases": 3, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-25T18:17:05.897Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "b819e822-a440-4f08-8660-7d255e3b81b2": { + "templateId": "Quest:cannyvalley_reactive_rustedcars", + "attributes": { + "creation_time": "min", + "completion_cannyvalley_reactive_rustedcars": 9, + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-25T18:40:04.931Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "85e3ca49-0e86-4ac6-8388-5b66a7d09178": { + "templateId": "Quest:cannyvalleyquest_filler_3_d5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-07-27T14:43:37.961Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_kill_husk_smasher_3_diff5_v3": 30, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "6312e120-8ddf-451d-bd47-76eed288e8b3": { + "templateId": "Quest:outpostquest_t4_l6", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-09-02T09:41:27.342Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_4_6": 1 + }, + "quantity": 1 + }, + "b6469334-2df6-4d86-83ae-fa32d354a0f0": { + "templateId": "Quest:outpostquest_t4_l7", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-10-19T16:08:15.701Z", + "completion_complete_outpost_4_7": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "dc882161-1e04-4b53-9585-640e5f5537f2": { + "templateId": "Quest:outpostquest_t4_l8", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_complete_outpost_4_8": 1, + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2018-11-21T16:24:59.096Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "496bef29-70f4-41d4-baf4-032f0278bd40": { + "templateId": "Quest:outpostquest_t4_l9", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-01-06T16:26:53.767Z", + "challenge_linked_quest_parent": "", + "completion_complete_outpost_4_9": 1, + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "cba0aaa8-c136-4f5c-9697-1680381848f4": { + "templateId": "Quest:outpostquest_t4_l10", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_complete_outpost_4_10": 1, + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-01-07T15:55:42.540Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "71b49db4-23f3-4a16-9bc8-9e20b7f4c3c3": { + "templateId": "Quest:outpostquest_t4_endless", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2019-06-18T12:25:25.593Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_4_endless": 0 + }, + "quantity": 1 + }, + "caa033cd-e579-4210-9e8a-5224d12198cc": { + "templateId": "Worker:worker_karolina_ur_t05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "favorite": false, + "building_slot_used": -1, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "6112061a-1ca1-4a0f-aaac-8f30c2bd6400": { + "templateId": "Worker:worker_joel_ur_t05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "favorite": false, + "building_slot_used": -1, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Hero:hid_outlander_041_dinocollector_sr_t05": { + "templateId": "Hero:hid_outlander_041_dinocollector_sr_t05", + "attributes": { + "outfitvariants": [ + { + "channel": "Parts", + "active": "CampaignHero.Tier4.Legendary", + "owned": [] + } + ], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_047_Prickly_Patroller_SR_T05": { + "templateId": "Hero:HID_Commando_047_Prickly_Patroller_SR_T05", + "attributes": { + "outfitvariants": [], + "backblingvariants": [], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "refundable": false, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Token:hordepointstier2": { + "templateId": "Token:hordepointstier2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "Token:hordepointstier3": { + "templateId": "Token:hordepointstier3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "Token:hordepointstier4": { + "templateId": "Token:hordepointstier4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "HomebaseNode:questreward_transformation": { + "templateId": "HomebaseNode:questreward_transformation", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "Quest:plankertonquest_tutorial_transform": { + "templateId": "Quest:plankertonquest_tutorial_transform", + "attributes": { + "level": -1, + "item_seen": true, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "last_state_change_time": "2020-01-27T21:00:37.783Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_plankertonquest_tutorial_transform_obj_tabcallout": 1, + "completion_plankertonquest_tutorial_transform_obj_guardscreen01": 1, + "completion_plankertonquest_tutorial_transform_obj_buttonintro": 1, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_unlimited": { + "templateId": "ConversionControl:cck_worker_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_unlimited_vr": { + "templateId": "ConversionControl:cck_worker_core_unlimited_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_consumable_vr": { + "templateId": "ConversionControl:cck_worker_core_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_consumable_uc": { + "templateId": "ConversionControl:cck_worker_core_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_consumable_sr": { + "templateId": "ConversionControl:cck_worker_core_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_consumable_r": { + "templateId": "ConversionControl:cck_worker_core_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_consumable_c": { + "templateId": "ConversionControl:cck_worker_core_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_consumable": { + "templateId": "ConversionControl:cck_worker_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_weapon_core_unlimited": { + "templateId": "ConversionControl:cck_weapon_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_weapon_scavenger_consumable_sr": { + "templateId": "ConversionControl:cck_weapon_scavenger_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_weapon_core_consumable": { + "templateId": "ConversionControl:cck_weapon_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_unlimited": { + "templateId": "ConversionControl:cck_trap_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_consumable_vr": { + "templateId": "ConversionControl:cck_trap_core_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_consumable_uc": { + "templateId": "ConversionControl:cck_trap_core_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_consumable_sr": { + "templateId": "ConversionControl:cck_trap_core_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_consumable_r": { + "templateId": "ConversionControl:cck_trap_core_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_consumable_c": { + "templateId": "ConversionControl:cck_trap_core_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_consumable": { + "templateId": "ConversionControl:cck_trap_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_unlimited": { + "templateId": "ConversionControl:cck_ranged_sniper_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_unlimited": { + "templateId": "ConversionControl:cck_ranged_shotgun_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_unlimited": { + "templateId": "ConversionControl:cck_ranged_pistol_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_core_unlimited_vr": { + "templateId": "ConversionControl:cck_ranged_core_unlimited_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_core_unlimited": { + "templateId": "ConversionControl:cck_ranged_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_unlimited": { + "templateId": "ConversionControl:cck_ranged_assault_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_consumable_vr": { + "templateId": "ConversionControl:cck_ranged_sniper_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_consumable_uc": { + "templateId": "ConversionControl:cck_ranged_sniper_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_sniper_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_consumable_r": { + "templateId": "ConversionControl:cck_ranged_sniper_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_consumable_c": { + "templateId": "ConversionControl:cck_ranged_sniper_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_consumable": { + "templateId": "ConversionControl:cck_ranged_sniper_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_consumable_vr": { + "templateId": "ConversionControl:cck_ranged_shotgun_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_consumable_uc": { + "templateId": "ConversionControl:cck_ranged_shotgun_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_shotgun_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_consumable_r": { + "templateId": "ConversionControl:cck_ranged_shotgun_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_consumable_c": { + "templateId": "ConversionControl:cck_ranged_shotgun_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_consumable": { + "templateId": "ConversionControl:cck_ranged_shotgun_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_consumable_vr": { + "templateId": "ConversionControl:cck_ranged_pistol_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_consumable_uc": { + "templateId": "ConversionControl:cck_ranged_pistol_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_pistol_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_consumable_r": { + "templateId": "ConversionControl:cck_ranged_pistol_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_consumable_c": { + "templateId": "ConversionControl:cck_ranged_pistol_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_consumable": { + "templateId": "ConversionControl:cck_ranged_pistol_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_launcher_scavenger_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_launcher_scavenger_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_launcher_pumpkin_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_launcher_pumpkin_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_core_consumable": { + "templateId": "ConversionControl:cck_ranged_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_hydra_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_assault_hydra_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_consumable_vr": { + "templateId": "ConversionControl:cck_ranged_assault_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_consumable_uc": { + "templateId": "ConversionControl:cck_ranged_assault_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_assault_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_consumable_r": { + "templateId": "ConversionControl:cck_ranged_assault_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_consumable_c": { + "templateId": "ConversionControl:cck_ranged_assault_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_consumable": { + "templateId": "ConversionControl:cck_ranged_assault_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_auto_halloween_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_assault_auto_halloween_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_material_event_pumpkinwarhead": { + "templateId": "ConversionControl:cck_material_event_pumpkinwarhead", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_consumable": { + "templateId": "ConversionControl:cck_ranged_smg_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_consumable_c": { + "templateId": "ConversionControl:cck_ranged_smg_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_consumable_r": { + "templateId": "ConversionControl:cck_ranged_smg_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_smg_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_consumable_uc": { + "templateId": "ConversionControl:cck_ranged_smg_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_consumable_vr": { + "templateId": "ConversionControl:cck_ranged_smg_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_unlimited": { + "templateId": "ConversionControl:cck_ranged_smg_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_unlimited": { + "templateId": "ConversionControl:cck_melee_tool_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_unlimited": { + "templateId": "ConversionControl:cck_melee_sword_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_unlimited": { + "templateId": "ConversionControl:cck_melee_spear_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_unlimited": { + "templateId": "ConversionControl:cck_melee_scythe_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_piercing_unlimited": { + "templateId": "ConversionControl:cck_melee_piercing_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_edged_unlimited": { + "templateId": "ConversionControl:cck_melee_edged_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_core_unlimited_vr": { + "templateId": "ConversionControl:cck_melee_core_unlimited_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_core_unlimited": { + "templateId": "ConversionControl:cck_melee_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_unlimited": { + "templateId": "ConversionControl:cck_melee_club_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_blunt_unlimited": { + "templateId": "ConversionControl:cck_melee_blunt_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_unlimited": { + "templateId": "ConversionControl:cck_melee_axe_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_consumable_vr": { + "templateId": "ConversionControl:cck_melee_tool_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_consumable_uc": { + "templateId": "ConversionControl:cck_melee_tool_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_consumable_sr": { + "templateId": "ConversionControl:cck_melee_tool_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_consumable_r": { + "templateId": "ConversionControl:cck_melee_tool_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_consumable_c": { + "templateId": "ConversionControl:cck_melee_tool_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_consumable": { + "templateId": "ConversionControl:cck_melee_tool_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_consumable_vr": { + "templateId": "ConversionControl:cck_melee_sword_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_consumable_uc": { + "templateId": "ConversionControl:cck_melee_sword_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_consumable_sr": { + "templateId": "ConversionControl:cck_melee_sword_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_consumable_r": { + "templateId": "ConversionControl:cck_melee_sword_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_consumable_c": { + "templateId": "ConversionControl:cck_melee_sword_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_consumable": { + "templateId": "ConversionControl:cck_melee_sword_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_consumable_vr": { + "templateId": "ConversionControl:cck_melee_spear_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_consumable_uc": { + "templateId": "ConversionControl:cck_melee_spear_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_consumable_sr": { + "templateId": "ConversionControl:cck_melee_spear_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_consumable_r": { + "templateId": "ConversionControl:cck_melee_spear_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_consumable_c": { + "templateId": "ConversionControl:cck_melee_spear_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_consumable": { + "templateId": "ConversionControl:cck_melee_spear_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_consumable_vr": { + "templateId": "ConversionControl:cck_melee_scythe_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_consumable_uc": { + "templateId": "ConversionControl:cck_melee_scythe_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_consumable_sr": { + "templateId": "ConversionControl:cck_melee_scythe_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_consumable_r": { + "templateId": "ConversionControl:cck_melee_scythe_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_consumable_c": { + "templateId": "ConversionControl:cck_melee_scythe_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_consumable": { + "templateId": "ConversionControl:cck_melee_scythe_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_piercing_consumable": { + "templateId": "ConversionControl:cck_melee_piercing_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_edged_consumable": { + "templateId": "ConversionControl:cck_melee_edged_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_core_consumable": { + "templateId": "ConversionControl:cck_melee_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_consumable_vr": { + "templateId": "ConversionControl:cck_melee_club_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_consumable_uc": { + "templateId": "ConversionControl:cck_melee_club_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_consumable_sr": { + "templateId": "ConversionControl:cck_melee_club_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_consumable_r": { + "templateId": "ConversionControl:cck_melee_club_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_consumable_c": { + "templateId": "ConversionControl:cck_melee_club_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_consumable": { + "templateId": "ConversionControl:cck_melee_club_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_blunt_consumable": { + "templateId": "ConversionControl:cck_melee_blunt_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_consumable_vr": { + "templateId": "ConversionControl:cck_melee_axe_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_consumable_uc": { + "templateId": "ConversionControl:cck_melee_axe_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_consumable_sr": { + "templateId": "ConversionControl:cck_melee_axe_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_consumable_r": { + "templateId": "ConversionControl:cck_melee_axe_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_consumable_c": { + "templateId": "ConversionControl:cck_melee_axe_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_consumable": { + "templateId": "ConversionControl:cck_melee_axe_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_unlimited": { + "templateId": "ConversionControl:cck_manager_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_consumable_vr": { + "templateId": "ConversionControl:cck_manager_core_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_consumable_uc": { + "templateId": "ConversionControl:cck_manager_core_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_consumable_sr": { + "templateId": "ConversionControl:cck_manager_core_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_consumable_r": { + "templateId": "ConversionControl:cck_manager_core_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_consumable_c": { + "templateId": "ConversionControl:cck_manager_core_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_consumable": { + "templateId": "ConversionControl:cck_manager_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_outlander_unlimited": { + "templateId": "ConversionControl:cck_hero_outlander_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_ninja_unlimited": { + "templateId": "ConversionControl:cck_hero_ninja_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_unlimited": { + "templateId": "ConversionControl:cck_hero_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_constructor_unlimited": { + "templateId": "ConversionControl:cck_hero_constructor_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_commando_unlimited": { + "templateId": "ConversionControl:cck_hero_commando_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_outlander_consumable": { + "templateId": "ConversionControl:cck_hero_outlander_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_ninja_consumable": { + "templateId": "ConversionControl:cck_hero_ninja_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_unlimited_vr": { + "templateId": "ConversionControl:cck_hero_core_unlimited_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_consumable_vr": { + "templateId": "ConversionControl:cck_hero_core_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_consumable_uc": { + "templateId": "ConversionControl:cck_hero_core_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_consumable_sr": { + "templateId": "ConversionControl:cck_hero_core_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_consumable_r": { + "templateId": "ConversionControl:cck_hero_core_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_consumable": { + "templateId": "ConversionControl:cck_hero_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_constructor_consumable": { + "templateId": "ConversionControl:cck_hero_constructor_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_commando_consumable": { + "templateId": "ConversionControl:cck_hero_commando_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_worker_veryrare": { + "templateId": "ConversionControl:cck_expedition_worker_veryrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_worker_uncommon": { + "templateId": "ConversionControl:cck_expedition_worker_uncommon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_worker_superrare": { + "templateId": "ConversionControl:cck_expedition_worker_superrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_worker_rare": { + "templateId": "ConversionControl:cck_expedition_worker_rare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_worker_common": { + "templateId": "ConversionControl:cck_expedition_worker_common", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_weapon_veryrare": { + "templateId": "ConversionControl:cck_expedition_weapon_veryrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_weapon_uncommon": { + "templateId": "ConversionControl:cck_expedition_weapon_uncommon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_weapon_superrare": { + "templateId": "ConversionControl:cck_expedition_weapon_superrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_weapon_rare": { + "templateId": "ConversionControl:cck_expedition_weapon_rare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_weapon_common": { + "templateId": "ConversionControl:cck_expedition_weapon_common", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_trap_veryrare": { + "templateId": "ConversionControl:cck_expedition_trap_veryrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_trap_uncommon": { + "templateId": "ConversionControl:cck_expedition_trap_uncommon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_trap_superrare": { + "templateId": "ConversionControl:cck_expedition_trap_superrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_trap_rare": { + "templateId": "ConversionControl:cck_expedition_trap_rare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_trap_common": { + "templateId": "ConversionControl:cck_expedition_trap_common", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_manager_veryrare": { + "templateId": "ConversionControl:cck_expedition_manager_veryrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_manager_unique": { + "templateId": "ConversionControl:cck_expedition_manager_unique", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_manager_uncommon": { + "templateId": "ConversionControl:cck_expedition_manager_uncommon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_manager_superrare": { + "templateId": "ConversionControl:cck_expedition_manager_superrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_manager_rare": { + "templateId": "ConversionControl:cck_expedition_manager_rare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_hero_veryrare": { + "templateId": "ConversionControl:cck_expedition_hero_veryrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_hero_uncommon": { + "templateId": "ConversionControl:cck_expedition_hero_uncommon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_hero_superrare": { + "templateId": "ConversionControl:cck_expedition_hero_superrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_hero_rare": { + "templateId": "ConversionControl:cck_expedition_hero_rare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_defender_veryrare": { + "templateId": "ConversionControl:cck_expedition_defender_veryrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_defender_uncommon": { + "templateId": "ConversionControl:cck_expedition_defender_uncommon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_defender_superrare": { + "templateId": "ConversionControl:cck_expedition_defender_superrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_defender_rare": { + "templateId": "ConversionControl:cck_expedition_defender_rare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_unlimited": { + "templateId": "ConversionControl:cck_defender_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_consumable_vr": { + "templateId": "ConversionControl:cck_defender_core_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_consumable_uc": { + "templateId": "ConversionControl:cck_defender_core_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_consumable_sr": { + "templateId": "ConversionControl:cck_defender_core_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_consumable_r": { + "templateId": "ConversionControl:cck_defender_core_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_consumable_c": { + "templateId": "ConversionControl:cck_defender_core_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_consumable": { + "templateId": "ConversionControl:cck_defender_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ac79c107-1c93-447b-bf8e-2251ab3592a3": { + "templateId": "Quest:homebasequest_researchpurchase", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_researchfortitude": 1 + }, + "quantity": 1 + }, + "b2d5a5be-2754-4ac4-9191-bbc83662f1b1": { + "templateId": "Quest:homebasequest_slotemtworker", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_assign_worker_to_emt_squadone": 1 + }, + "quantity": 1 + }, + "b031e2b7-735e-4228-aae7-d1b23f5ef78e": { + "templateId": "Quest:homebasequest_slotfireteamalphaworker", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_assign_worker_to_fire_squadone": 1 + }, + "quantity": 1 + }, + "ec7cbdf0-57b3-4953-9722-61f5e69adf73": { + "templateId": "Quest:homebasequest_unlockemtworker", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_emtworker": 1 + }, + "quantity": 1 + }, + "775f82ab-a389-4a13-bf62-eb62c415bc29": { + "templateId": "Quest:homebasequest_unlockexpeditions", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_expeditions": 1 + }, + "quantity": 1 + }, + "c2bb44bb-8304-48a8-b730-cdc26febc056": { + "templateId": "Quest:homebasequest_unlockfireteamalphaworker", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_fireteamalpha": 1 + }, + "quantity": 1 + }, + "cee73fef-ec92-471e-a2fd-6242877801e7": { + "templateId": "Quest:homebasequest_unlockmissiondefender", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_missiondefender": 1 + }, + "quantity": 1 + }, + "49b1bdd0-6bf2-4e13-830a-2bba5a945aa3": { + "templateId": "Quest:homebasequest_unlockoutpostdefender", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_outpostdefender": 1 + }, + "quantity": 1 + }, + "08a37dd2-eea5-4c3d-ae71-5d0e0df26047": { + "templateId": "Quest:homebasequest_unlockresearch", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_research": 1 + }, + "quantity": 1 + }, + "bf5e6f3f-f452-4d20-9c0d-453fc65a0cbf": { + "templateId": "Quest:homebasequest_unlocksquads", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_squads": 1 + }, + "quantity": 1 + }, + "c550678d-1531-4851-a405-aba3311d77cd": { + "templateId": "Quest:homebasequest_weakpointvision", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_weakpointvision": 1 + }, + "quantity": 1 + }, + "7db38f62-605b-45de-a2f3-bb5a8d368d58": { + "templateId": "Quest:outpostquest_t1_p1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "981dbe97-bc42-4a00-9e89-1f1182aea8f4": { + "templateId": "Quest:outpostquest_t1_p2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "44984c82-ecdc-4487-b9fb-fa80b17f3135": { + "templateId": "Quest:outpostquest_t2_p1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "a2d07f69-8cce-42bd-8633-d8eea0012226": { + "templateId": "Quest:outpostquest_t2_p2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "ea476fec-bca6-428f-a178-07183eebf66c": { + "templateId": "Quest:outpostquest_t3_p1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "ba3fe9f1-091a-48a0-9019-d055a762f33f": { + "templateId": "Quest:outpostquest_t3_p2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "44337606-b9f8-4ad3-8ee7-e54b44ad3089": { + "templateId": "Quest:plankertonquest_filler_10_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_launchballoon_2_diff5": 1 + }, + "quantity": 1 + }, + "af6fa002-096e-44d2-911c-46626e204022": { + "templateId": "Quest:plankertonquest_filler_3_d2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_custom_bluglosyphon_full_v2": 3 + }, + "quantity": 1 + }, + "ecc6ed9b-0313-496a-87d3-20a49756a10f": { + "templateId": "Quest:plankertonquest_filler_8_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_buildradar_2_diff5": 5 + }, + "quantity": 1 + }, + "6cb80821-c524-4b79-9058-1f9aa5af1452": { + "templateId": "Quest:plankertonquest_filler_9_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_delivergoods_2_diff5": 3 + }, + "quantity": 1 + }, + "f3eba3c9-2d9c-490c-bcbd-80cb31beb735": { + "templateId": "Quest:reactivequest_avoiceinthenight", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_avoiceinthenightv2": 4 + }, + "quantity": 1 + }, + "053513d9-3815-4dee-a2ef-c8d16fe09225": { + "templateId": "Quest:reactivequest_destroyobject", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_destroyactor": 5 + }, + "quantity": 1 + }, + "44ceada8-eb09-456d-8b1a-db928e4134e4": { + "templateId": "Quest:reactivequest_distresscalls", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_distresscallv2": 5 + }, + "quantity": 1 + }, + "9ac2c0f2-c365-4775-b16c-c605156c33a7": { + "templateId": "Quest:reactivequest_findmimic", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_findmimic": 1, + "completion_complete_mimic_1_diff5": 1 + }, + "quantity": 1 + }, + "7239dbea-df66-4710-ac3b-778cf2c9cc8e": { + "templateId": "Quest:reactivequest_findsurvivor", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_findsurvivor": 50 + }, + "quantity": 1 + }, + "a7395b07-6a52-4263-84a8-8aa8671f6927": { + "templateId": "Quest:reactivequest_goodpop", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_goodpop": 4 + }, + "quantity": 1 + }, + "11d0d0b6-37d5-4ff6-b5af-fb1c7bbf1aa8": { + "templateId": "Quest:reactivequest_itsatrap", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_trappartv2": 4, + "completion_complete_pve01_diff3": 2 + }, + "quantity": 1 + }, + "c6edebaf-cc07-4b6e-a478-df127119aeea": { + "templateId": "Quest:reactivequest_killsmasher", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_killsmasher": 50 + }, + "quantity": 1 + }, + "784896da-3e87-4504-87b6-891e06987c43": { + "templateId": "Quest:reactivequest_knowyourenemy", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_knowyourenemy": 5 + }, + "quantity": 1 + }, + "b5e2e0c2-784f-4650-aee6-90b056304f99": { + "templateId": "Quest:reactivequest_medicaldata", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_medicaldata": 4, + "completion_complete_pve01_diff4": 2 + }, + "quantity": 1 + }, + "d919eb2f-7327-4fb1-a8c9-a58042e753ff": { + "templateId": "Quest:reactivequest_medicalsupplies", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_medicalsupplies": 2 + }, + "quantity": 1 + }, + "e3c4e66d-b462-447b-af1a-9541119718e5": { + "templateId": "Quest:reactivequest_pumpkins", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_questcollect_quest_pumpkins": 3 + }, + "quantity": 1 + }, + "427cd577-edca-4a29-a163-6bea31e7fd6a": { + "templateId": "Quest:reactivequest_survivorradios", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_survivorradio": 50 + }, + "quantity": 1 + }, + "feb2c694-fd1d-4f4b-b1fb-ce956e3bb06c": { + "templateId": "Quest:reactivequest_transmitters", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_transmitters": 3 + }, + "quantity": 1 + }, + "fa526aa1-53d9-4b4d-ae83-83b810c7cc6b": { + "templateId": "Quest:stonewoodquest_filler_2_d4", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_craft_health_station": 5, + "completion_complete_pve01_diff3_v2": 2 + }, + "quantity": 1 + }, + "8ac5785c-7ae9-4bb1-9f8d-80c607cbe2ab": { + "templateId": "Quest:stonewoodquest_filler_2_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_kill_husk_taker_1_diff5": 5, + "completion_complete_pve01_diff5": 3 + }, + "quantity": 1 + }, + "8771a749-f05e-4b1a-81eb-60922f860ff4": { + "templateId": "Quest:stonewoodquest_treasuredfriends", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_interact_treasurechest_pve01_diff2": 1 + }, + "quantity": 1 + }, + "989d5d18-9b86-4094-a1c7-5e3cea4e1fe1": { + "templateId": "HomebaseNode:questreward_expedition_truck4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "912b45b8-8535-4b8a-b661-8ef1f44e7a6a": { + "templateId": "HomebaseNode:questreward_expedition_speedboat4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "61ce9d39-0757-4ae7-a524-cab520a528b6": { + "templateId": "HomebaseNode:questreward_expedition_helicopter3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1d49d658-0424-472a-8339-57d31197244e": { + "templateId": "HomebaseNode:questreward_expedition_truck5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "40529638-e895-4588-8672-828085c3846f": { + "templateId": "HomebaseNode:questreward_homebase_defender5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "77731529-beea-43a3-bc06-21fc314c5ff7": { + "templateId": "HomebaseNode:questreward_twinepeaks_squad_ssd5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "54e176f1-8a09-4101-bdbf-31d91b9cc4c8": { + "templateId": "HomebaseNode:questreward_expedition_helicopter4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "c610a3f4-c8e1-496c-b844-dab5bd0ad2b5": { + "templateId": "HomebaseNode:questreward_expedition_speedboat5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5fedcfc6-a28a-434b-8110-033d859b640f": { + "templateId": "HomebaseNode:questreward_twinepeaks_squad_ssd6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4f409636-b384-4932-ad5e-a066bde69c0c": { + "templateId": "HomebaseNode:questreward_buildingresourcecap3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "eae3f102-5c0c-4858-a84e-94cad3d9c238": { + "templateId": "HomebaseNode:questreward_expedition_helicopter2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "70dbebe1-47e2-4392-8bc4-8f95bf180c78": { + "templateId": "HomebaseNode:questreward_newheroloadout8_dummy", + "attributes": { + "item_seen": true + }, + "quantity": 1 + } + }, + "stats": { + "attributes": { + "node_costs": { + "research_node_default_page": { + "Token:collectionresource_nodegatetoken01": 3537002 + }, + "homebase_node_default_page": { + "Token:homebasepoints": 9435858 + } + }, + "use_random_loadout": false, + "mission_alert_redemption_record": { + "claimData": [] + }, + "rewards_claimed_post_max_level": 0, + "selected_hero_loadout": "CampaignHeroLoadout1", + "loadouts": [ + "CosmeticLocker:cosmeticlocker_stw", + "CosmeticLocker:cosmeticlocker_stw_1" + ], + "collection_book": { + "pages": [ + "CollectionBookPage:pageheroes_commando", + "CollectionBookPage:pageheroes_constructor", + "CollectionBookPage:pageheroes_ninja", + "CollectionBookPage:pageheroes_outlander", + "CollectionBookPage:pagepeople_defenders", + "CollectionBookPage:pagepeople_survivors", + "CollectionBookPage:pagepeople_leads", + "CollectionBookPage:pagepeople_uniqueleads", + "CollectionBookPage:pagespecial_winter2017_heroes", + "CollectionBookPage:pagespecial_halloween2017_heroes", + "CollectionBookPage:pagespecial_halloween2017_workers", + "CollectionBookPage:pagespecial_chinesenewyear2018_heroes", + "CollectionBookPage:pagespecial_springiton2018_people", + "CollectionBookPage:pagespecial_stormzonecyber_heroes", + "CollectionBookPage:pagespecial_blockbuster2018_heroes", + "CollectionBookPage:pagespecial_shadowops_heroes", + "CollectionBookPage:pagespecial_roadtrip2018_heroes", + "CollectionBookPage:pagespecial_wildwest_heroes", + "CollectionBookPage:pagespecial_stormzone_heroes", + "CollectionBookPage:pagespecial_scavenger_heroes", + "CollectionBookPage:pagemelee_axes_weapons", + "CollectionBookPage:pagemelee_axes_weapons_crystal", + "CollectionBookPage:pagemelee_clubs_weapons", + "CollectionBookPage:pagemelee_clubs_weapons_crystal", + "CollectionBookPage:pagemelee_scythes_weapons", + "CollectionBookPage:pagemelee_scythes_weapons_crystal", + "CollectionBookPage:pagemelee_spears_weapons", + "CollectionBookPage:pagemelee_spears_weapons_crystal", + "CollectionBookPage:pagemelee_swords_weapons", + "CollectionBookPage:pagemelee_swords_weapons_crystal", + "CollectionBookPage:pagemelee_tools_weapons", + "CollectionBookPage:pagemelee_tools_weapons_crystal", + "CollectionBookPage:pageranged_assault_weapons", + "CollectionBookPage:pageranged_assault_weapons_crystal", + "CollectionBookPage:pageranged_shotgun_weapons", + "CollectionBookPage:pageranged_shotgun_weapons_crystal", + "CollectionBookPage:page_ranged_pistols_weapons", + "CollectionBookPage:page_ranged_pistols_weapons_crystal", + "CollectionBookPage:pageranged_snipers_weapons", + "CollectionBookPage:pageranged_snipers_weapons_crystal", + "CollectionBookPage:pageranged_explosive_weapons", + "CollectionBookPage:pagetraps_wall", + "CollectionBookPage:pagetraps_ceiling", + "CollectionBookPage:pagetraps_floor", + "CollectionBookPage:pagespecial_weapons_ranged_medieval", + "CollectionBookPage:pagespecial_weapons_ranged_medieval_crystal", + "CollectionBookPage:pagespecial_weapons_melee_medieval", + "CollectionBookPage:pagespecial_weapons_melee_medieval_crystal", + "CollectionBookPage:pagespecial_winter2017_weapons", + "CollectionBookPage:pagespecial_winter2017_weapons_crystal", + "CollectionBookPage:pagespecial_ratrod_weapons", + "CollectionBookPage:pagespecial_ratrod_weapons_crystal", + "CollectionBookPage:pagespecial_weapons_ranged_winter2017", + "CollectionBookPage:pagespecial_weapons_ranged_winter2017_crystal", + "CollectionBookPage:pagespecial_weapons_melee_winter2017", + "CollectionBookPage:pagespecial_weapons_melee_winter2017_crystal", + "CollectionBookPage:pagespecial_weapons_chinesenewyear2018", + "CollectionBookPage:pagespecial_weapons_crystal_chinesenewyear2018", + "CollectionBookPage:pagespecial_stormzonecyber_ranged", + "CollectionBookPage:pagespecial_stormzonecyber_melee", + "CollectionBookPage:pagespecial_stormzonecyber_ranged_crystal", + "CollectionBookPage:pagespecial_stormzonecyber_melee_crystal", + "CollectionBookPage:pagespecial_blockbuster2018_ranged", + "CollectionBookPage:pagespecial_blockbuster2018_ranged_crystal", + "CollectionBookPage:pagespecial_roadtrip2018_weapons", + "CollectionBookPage:pagespecial_roadtrip2018_weapons_crystal", + "CollectionBookPage:pagespecial_weapons_ranged_stormzone2", + "CollectionBookPage:pagespecial_weapons_ranged_stormzone2_crystal", + "CollectionBookPage:pagespecial_weapons_melee_stormzone2", + "CollectionBookPage:pagespecial_weapons_melee_stormzone2_crystal", + "CollectionBookPage:pagespecial_hydraulic", + "CollectionBookPage:pagespecial_hydraulic_crystal", + "CollectionBookPage:pagespecial_scavenger", + "CollectionBookPage:pagespecial_scavenger_crystal" + ], + "maxBookXpLevelAchieved": 0 + }, + "mfa_reward_claimed": true, + "quest_manager": { + "dailyLoginInterval": "2020-02-05T19:05:26.904Z", + "dailyQuestRerolls": 1, + "questPoolStats": { + "poolStats": [ + { + "poolName": "weeklyquestroll_09", + "nextRefresh": "2020-01-16T00:00:00.000Z", + "rerollsRemaining": 1, + "questHistory": [ + "Quest:weeklyquest_tiered_completemissionalerts_t10" + ] + }, + { + "poolName": "maydaydailyquest_01", + "nextRefresh": "2020-01-19T16:10:14.532Z", + "rerollsRemaining": 1, + "questHistory": [ + "Quest:maydayquest_2019_daily_complete" + ] + }, + { + "poolName": "stormkingdailyquest_01", + "nextRefresh": "2020-02-06T19:05:26.904Z", + "rerollsRemaining": 1, + "questHistory": [] + }, + { + "poolName": "holdfastdaily_part2_01", + "nextRefresh": "2020-02-06T19:05:26.903Z", + "rerollsRemaining": 0, + "questHistory": [ + "Quest:s11_holdfastquest_d2_soldier", + "Quest:s11_holdfastquest_d2_outlander", + "Quest:s11_holdfastquest_d2_ninja", + "Quest:s11_holdfastquest_d2_ninja", + "Quest:s11_holdfastquest_d2_ninja", + "Quest:s11_holdfastquest_d2_outlander", + "Quest:s11_holdfastquest_d2_ninja", + "Quest:s11_holdfastquest_d2_constructor", + "Quest:s11_holdfastquest_d2_outlander" + ] + }, + { + "poolName": "dailywargamesstonewood_01", + "nextRefresh": "2020-02-06T19:05:26.902Z", + "rerollsRemaining": 1, + "questHistory": [] + }, + { + "poolName": "weeklyquestroll_10", + "nextRefresh": "2020-02-06T00:00:00.000Z", + "rerollsRemaining": 1, + "questHistory": [ + "Quest:weeklyquest_tiered_completemissionalerts_t12", + "Quest:weeklyquest_tiered_completemissionalerts_t12", + "Quest:weeklyquest_tiered_completemissionalerts_t11", + "Quest:weeklyquest_tiered_completemissionalerts_t12", + "Quest:weeklyquest_tiered_completemissionalerts_t11", + "Quest:weeklyquest_tiered_completemissionalerts_t12", + "Quest:weeklyquest_tiered_completemissionalerts_t11", + "Quest:weeklyquest_tiered_completemissionalerts_t11", + "Quest:weeklyquest_tiered_completemissionalerts_t11", + "Quest:weeklyquest_tiered_completemissionalerts_t11", + "Quest:weeklyquest_tiered_completemissionalerts_t11", + "Quest:weeklyquest_tiered_completemissionalerts_t12", + "Quest:weeklyquest_tiered_completemissionalerts_t12", + "Quest:weeklyquest_tiered_completemissionalerts_t12" + ] + }, + { + "poolName": "holdfastdaily_part1_01", + "nextRefresh": "2020-02-06T19:05:26.902Z", + "rerollsRemaining": 0, + "questHistory": [ + "Quest:s11_holdfastquest_d1_construct", + "Quest:s11_holdfastquest_d1_cramp", + "Quest:s11_holdfastquest_d1_burner", + "Quest:s11_holdfastquest_d1_burner", + "Quest:s11_holdfastquest_d1_ice", + "Quest:s11_holdfastquest_d1_burner", + "Quest:s11_holdfastquest_d1_construct", + "Quest:s11_holdfastquest_d1_construct", + "Quest:s11_holdfastquest_d1_cramp" + ] + }, + { + "poolName": "starlightdailyquest_01", + "nextRefresh": "2020-02-06T19:05:26.903Z", + "rerollsRemaining": 1, + "questHistory": [] + }, + { + "poolName": "dailywargamescanny_01", + "nextRefresh": "2020-02-06T19:05:26.901Z", + "rerollsRemaining": 1, + "questHistory": [] + }, + { + "poolName": "dailywargamesplankerton_01", + "nextRefresh": "2020-02-06T19:05:26.901Z", + "rerollsRemaining": 1, + "questHistory": [] + } + ], + "dailyLoginInterval": "2020-02-05T19:05:26.904Z", + "poolLockouts": { + "poolLockouts": [ + { + "lockoutName": "Weekly" + } + ] + } + } + }, + "legacy_research_points_spent": 0, + "gameplay_stats": [ + { + "statName": "zonescompleted", + "statValue": 1 + } + ], + "permissions": [], + "unslot_mtx_spend": 0, + "twitch": {}, + "client_settings": { + "pinnedQuestInstances": [] + }, + "research_levels": { + "technology": 120, + "fortitude": 120, + "offense": 120, + "resistance": 120 + }, + "level": 309, + "xp_overflow": 0, + "latent_xp_marker": "4977938", + "event_currency": { + "templateId": "AccountResource:eventcurrency_snowballs", + "cf": 9111182 + }, + "inventory_limit_bonus": 100000, + "matches_played": 0, + "xp_lost": 0, + "mode_loadouts": [], + "daily_rewards": { + "nextDefaultReward": 0, + "totalDaysLoggedIn": 0, + "lastClaimDate": "0001-01-01T00:00:00.000Z", + "additionalSchedules": { + "founderspackdailyrewardtoken": { + "rewardsClaimed": 0, + "claimedToday": true + } + } + }, + "last_applied_loadout": "CosmeticLocker:cosmeticlocker_stw_1", + "xp": 0, + "packs_granted": 1056, + "active_loadout_index": 0 + } + }, + "commandRevision": 0 +} \ No newline at end of file diff --git a/lawin/profiles/collection_book_people0.json b/lawin/profiles/collection_book_people0.json new file mode 100644 index 0000000..d195295 --- /dev/null +++ b/lawin/profiles/collection_book_people0.json @@ -0,0 +1,178 @@ +{ + "_id": "LawinServer", + "created": "0001-01-01T00:00:00.000Z", + "updated": "0001-01-01T00:00:00.000Z", + "rvn": 1, + "wipeNumber": 1, + "accountId": "LawinServer", + "profileId": "collection_book_people0", + "version": "no_version", + "items": { + "CollectionBookPage:pageHeroes_Commando": { + "templateId": "CollectionBookPage:pageHeroes_Commando", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageHeroes_Constructor": { + "templateId": "CollectionBookPage:pageHeroes_Constructor", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageHeroes_Ninja": { + "templateId": "CollectionBookPage:pageHeroes_Ninja", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageHeroes_Outlander": { + "templateId": "CollectionBookPage:pageHeroes_Outlander", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pagePeople_Defenders": { + "templateId": "CollectionBookPage:pagePeople_Defenders", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pagePeople_Survivors": { + "templateId": "CollectionBookPage:pagePeople_Survivors", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pagePeople_Leads": { + "templateId": "CollectionBookPage:pagePeople_Leads", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pagePeople_UniqueLeads": { + "templateId": "CollectionBookPage:pagePeople_UniqueLeads", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Winter2017_Heroes": { + "templateId": "CollectionBookPage:PageSpecial_Winter2017_Heroes", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Halloween2017_Heroes": { + "templateId": "CollectionBookPage:PageSpecial_Halloween2017_Heroes", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Halloween2017_Workers": { + "templateId": "CollectionBookPage:PageSpecial_Halloween2017_Workers", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_ChineseNewYear2018_Heroes": { + "templateId": "CollectionBookPage:PageSpecial_ChineseNewYear2018_Heroes", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_SpringItOn2018_People": { + "templateId": "CollectionBookPage:PageSpecial_SpringItOn2018_People", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_StormZoneCyber_Heroes": { + "templateId": "CollectionBookPage:PageSpecial_StormZoneCyber_Heroes", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Blockbuster2018_Heroes": { + "templateId": "CollectionBookPage:PageSpecial_Blockbuster2018_Heroes", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_ShadowOps_Heroes": { + "templateId": "CollectionBookPage:PageSpecial_ShadowOps_Heroes", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_RoadTrip2018_Heroes": { + "templateId": "CollectionBookPage:PageSpecial_RoadTrip2018_Heroes", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_WildWest_Heroes": { + "templateId": "CollectionBookPage:PageSpecial_WildWest_Heroes", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_StormZone_Heroes": { + "templateId": "CollectionBookPage:PageSpecial_StormZone_Heroes", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Scavenger_Heroes": { + "templateId": "CollectionBookPage:PageSpecial_Scavenger_Heroes", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + } + }, + "stats": { + "attributes": { + "inventory_limit_bonus": 0 + } + }, + "commandRevision": 0 +} \ No newline at end of file diff --git a/lawin/profiles/collection_book_schematics0.json b/lawin/profiles/collection_book_schematics0.json new file mode 100644 index 0000000..dd963e1 --- /dev/null +++ b/lawin/profiles/collection_book_schematics0.json @@ -0,0 +1,458 @@ +{ + "_id": "LawinServer", + "created": "0001-01-01T00:00:00.000Z", + "updated": "0001-01-01T00:00:00.000Z", + "rvn": 1, + "wipeNumber": 1, + "accountId": "LawinServer", + "profileId": "collection_book_schematics0", + "version": "no_version", + "items": { + "CollectionBookPage:pageMelee_Axes_Weapons": { + "templateId": "CollectionBookPage:pageMelee_Axes_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageMelee_Axes_Weapons_Crystal": { + "templateId": "CollectionBookPage:pageMelee_Axes_Weapons_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageMelee_Clubs_Weapons": { + "templateId": "CollectionBookPage:pageMelee_Clubs_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageMelee_Clubs_Weapons_Crystal": { + "templateId": "CollectionBookPage:pageMelee_Clubs_Weapons_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageMelee_Scythes_Weapons": { + "templateId": "CollectionBookPage:pageMelee_Scythes_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageMelee_Scythes_Weapons_Crystal": { + "templateId": "CollectionBookPage:pageMelee_Scythes_Weapons_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageMelee_Spears_Weapons": { + "templateId": "CollectionBookPage:pageMelee_Spears_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageMelee_Spears_Weapons_Crystal": { + "templateId": "CollectionBookPage:pageMelee_Spears_Weapons_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageMelee_Swords_Weapons": { + "templateId": "CollectionBookPage:pageMelee_Swords_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageMelee_Swords_Weapons_Crystal": { + "templateId": "CollectionBookPage:pageMelee_Swords_Weapons_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageMelee_Tools_Weapons": { + "templateId": "CollectionBookPage:pageMelee_Tools_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageMelee_Tools_Weapons_Crystal": { + "templateId": "CollectionBookPage:pageMelee_Tools_Weapons_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageRanged_Assault_Weapons": { + "templateId": "CollectionBookPage:pageRanged_Assault_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageRanged_Assault_Weapons_Crystal": { + "templateId": "CollectionBookPage:pageRanged_Assault_Weapons_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageRanged_Shotgun_Weapons": { + "templateId": "CollectionBookPage:pageRanged_Shotgun_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageRanged_Shotgun_Weapons_Crystal": { + "templateId": "CollectionBookPage:pageRanged_Shotgun_Weapons_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:page_Ranged_Pistols_Weapons": { + "templateId": "CollectionBookPage:page_Ranged_Pistols_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:page_Ranged_Pistols_Weapons_Crystal": { + "templateId": "CollectionBookPage:page_Ranged_Pistols_Weapons_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageRanged_Snipers_Weapons": { + "templateId": "CollectionBookPage:pageRanged_Snipers_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageRanged_Snipers_Weapons_Crystal": { + "templateId": "CollectionBookPage:pageRanged_Snipers_Weapons_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageRanged_Explosive_Weapons": { + "templateId": "CollectionBookPage:pageRanged_Explosive_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageTraps_Wall": { + "templateId": "CollectionBookPage:pageTraps_Wall", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageTraps_Ceiling": { + "templateId": "CollectionBookPage:pageTraps_Ceiling", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:pageTraps_Floor": { + "templateId": "CollectionBookPage:pageTraps_Floor", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_Ranged_Medieval": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_Ranged_Medieval", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_Ranged_Medieval_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_Ranged_Medieval_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_Melee_Medieval": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_Melee_Medieval", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_Melee_Medieval_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_Melee_Medieval_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Winter2017_Weapons": { + "templateId": "CollectionBookPage:PageSpecial_Winter2017_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Winter2017_Weapons_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_Winter2017_Weapons_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_RatRod_Weapons": { + "templateId": "CollectionBookPage:PageSpecial_RatRod_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_RatRod_Weapons_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_RatRod_Weapons_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_Ranged_Winter2017": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_Ranged_Winter2017", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_Ranged_Winter2017_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_Ranged_Winter2017_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_Melee_Winter2017": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_Melee_Winter2017", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_Melee_Winter2017_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_Melee_Winter2017_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_ChineseNewYear2018": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_ChineseNewYear2018", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_Crystal_ChineseNewYear2018": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_Crystal_ChineseNewYear2018", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_StormZoneCyber_Ranged": { + "templateId": "CollectionBookPage:PageSpecial_StormZoneCyber_Ranged", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_StormZoneCyber_Melee": { + "templateId": "CollectionBookPage:PageSpecial_StormZoneCyber_Melee", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_StormZoneCyber_Ranged_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_StormZoneCyber_Ranged_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_StormZoneCyber_Melee_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_StormZoneCyber_Melee_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Blockbuster2018_Ranged": { + "templateId": "CollectionBookPage:PageSpecial_Blockbuster2018_Ranged", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Blockbuster2018_Ranged_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_Blockbuster2018_Ranged_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_RoadTrip2018_Weapons": { + "templateId": "CollectionBookPage:PageSpecial_RoadTrip2018_Weapons", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_RoadTrip2018_Weapons_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_RoadTrip2018_Weapons_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_Ranged_StormZone2": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_Ranged_StormZone2", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_Ranged_StormZone2_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_Ranged_StormZone2_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_Melee_StormZone2": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_Melee_StormZone2", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Weapons_Melee_StormZone2_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_Weapons_Melee_StormZone2_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Hydraulic": { + "templateId": "CollectionBookPage:PageSpecial_Hydraulic", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Hydraulic_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_Hydraulic_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Scavenger": { + "templateId": "CollectionBookPage:PageSpecial_Scavenger", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:PageSpecial_Scavenger_Crystal": { + "templateId": "CollectionBookPage:PageSpecial_Scavenger_Crystal", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + }, + "CollectionBookPage:test_TestPage": { + "templateId": "CollectionBookPage:test_TestPage", + "attributes": { + "sectionStates": [], + "state": "Active" + }, + "quantity": 1 + } + }, + "stats": { + "attributes": { + "inventory_limit_bonus": 0 + } + }, + "commandRevision": 0 +} \ No newline at end of file diff --git a/lawin/profiles/collections.json b/lawin/profiles/collections.json new file mode 100644 index 0000000..469c22f --- /dev/null +++ b/lawin/profiles/collections.json @@ -0,0 +1,15 @@ +{ + "_id": "LawinServer", + "created": "0001-01-01T00:00:00.000Z", + "updated": "0001-01-01T00:00:00.000Z", + "rvn": 1, + "wipeNumber": 1, + "accountId": "LawinServer", + "profileId": "collections", + "version": "no_version", + "items": {}, + "stats": { + "attributes": {} + }, + "commandRevision": 0 +} \ No newline at end of file diff --git a/lawin/profiles/common_core.json b/lawin/profiles/common_core.json new file mode 100644 index 0000000..414957c --- /dev/null +++ b/lawin/profiles/common_core.json @@ -0,0 +1,2205 @@ +{ + "_id": "LawinServer", + "created": "0001-01-01T00:00:00.000Z", + "updated": "0001-01-01T00:00:00.000Z", + "rvn": 1, + "wipeNumber": 1, + "accountId": "LawinServer", + "profileId": "common_core", + "version": "no_version", + "items": { + "Campaign": { + "templateId": "Token:campaignaccess", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "CampaignFoundersPack1": { + "templateId": "Token:founderspack_1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Currency": { + "templateId": "Currency:MtxPurchased", + "attributes": { + "platform": "EpicPC" + }, + "quantity": 10000000 + }, + "Token:FounderChatUnlock": { + "templateId": "Token:FounderChatUnlock", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor1": { + "templateId": "HomebaseBannerColor:DefaultColor1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor2": { + "templateId": "HomebaseBannerColor:DefaultColor2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor3": { + "templateId": "HomebaseBannerColor:DefaultColor3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor4": { + "templateId": "HomebaseBannerColor:DefaultColor4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor5": { + "templateId": "HomebaseBannerColor:DefaultColor5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor6": { + "templateId": "HomebaseBannerColor:DefaultColor6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor7": { + "templateId": "HomebaseBannerColor:DefaultColor7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor8": { + "templateId": "HomebaseBannerColor:DefaultColor8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor9": { + "templateId": "HomebaseBannerColor:DefaultColor9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor10": { + "templateId": "HomebaseBannerColor:DefaultColor10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor11": { + "templateId": "HomebaseBannerColor:DefaultColor11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor12": { + "templateId": "HomebaseBannerColor:DefaultColor12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor13": { + "templateId": "HomebaseBannerColor:DefaultColor13", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor14": { + "templateId": "HomebaseBannerColor:DefaultColor14", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor15": { + "templateId": "HomebaseBannerColor:DefaultColor15", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor16": { + "templateId": "HomebaseBannerColor:DefaultColor16", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor17": { + "templateId": "HomebaseBannerColor:DefaultColor17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor18": { + "templateId": "HomebaseBannerColor:DefaultColor18", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor19": { + "templateId": "HomebaseBannerColor:DefaultColor19", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor20": { + "templateId": "HomebaseBannerColor:DefaultColor20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor21": { + "templateId": "HomebaseBannerColor:DefaultColor21", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner1": { + "templateId": "HomebaseBannerIcon:StandardBanner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner2": { + "templateId": "HomebaseBannerIcon:StandardBanner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner3": { + "templateId": "HomebaseBannerIcon:StandardBanner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner4": { + "templateId": "HomebaseBannerIcon:StandardBanner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner5": { + "templateId": "HomebaseBannerIcon:StandardBanner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner6": { + "templateId": "HomebaseBannerIcon:StandardBanner6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner7": { + "templateId": "HomebaseBannerIcon:StandardBanner7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner8": { + "templateId": "HomebaseBannerIcon:StandardBanner8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner9": { + "templateId": "HomebaseBannerIcon:StandardBanner9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner10": { + "templateId": "HomebaseBannerIcon:StandardBanner10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner11": { + "templateId": "HomebaseBannerIcon:StandardBanner11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner12": { + "templateId": "HomebaseBannerIcon:StandardBanner12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner13": { + "templateId": "HomebaseBannerIcon:StandardBanner13", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner14": { + "templateId": "HomebaseBannerIcon:StandardBanner14", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner15": { + "templateId": "HomebaseBannerIcon:StandardBanner15", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner16": { + "templateId": "HomebaseBannerIcon:StandardBanner16", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner17": { + "templateId": "HomebaseBannerIcon:StandardBanner17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner18": { + "templateId": "HomebaseBannerIcon:StandardBanner18", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner19": { + "templateId": "HomebaseBannerIcon:StandardBanner19", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner20": { + "templateId": "HomebaseBannerIcon:StandardBanner20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner21": { + "templateId": "HomebaseBannerIcon:StandardBanner21", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner22": { + "templateId": "HomebaseBannerIcon:StandardBanner22", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner23": { + "templateId": "HomebaseBannerIcon:StandardBanner23", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner24": { + "templateId": "HomebaseBannerIcon:StandardBanner24", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner25": { + "templateId": "HomebaseBannerIcon:StandardBanner25", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner26": { + "templateId": "HomebaseBannerIcon:StandardBanner26", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner27": { + "templateId": "HomebaseBannerIcon:StandardBanner27", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner28": { + "templateId": "HomebaseBannerIcon:StandardBanner28", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner29": { + "templateId": "HomebaseBannerIcon:StandardBanner29", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner30": { + "templateId": "HomebaseBannerIcon:StandardBanner30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner31": { + "templateId": "HomebaseBannerIcon:StandardBanner31", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier1Banner1": { + "templateId": "HomebaseBannerIcon:FounderTier1Banner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier1Banner2": { + "templateId": "HomebaseBannerIcon:FounderTier1Banner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier1Banner3": { + "templateId": "HomebaseBannerIcon:FounderTier1Banner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier1Banner4": { + "templateId": "HomebaseBannerIcon:FounderTier1Banner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier2Banner1": { + "templateId": "HomebaseBannerIcon:FounderTier2Banner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier2Banner2": { + "templateId": "HomebaseBannerIcon:FounderTier2Banner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier2Banner3": { + "templateId": "HomebaseBannerIcon:FounderTier2Banner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier2Banner4": { + "templateId": "HomebaseBannerIcon:FounderTier2Banner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier2Banner5": { + "templateId": "HomebaseBannerIcon:FounderTier2Banner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier2Banner6": { + "templateId": "HomebaseBannerIcon:FounderTier2Banner6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier3Banner1": { + "templateId": "HomebaseBannerIcon:FounderTier3Banner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier3Banner2": { + "templateId": "HomebaseBannerIcon:FounderTier3Banner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier3Banner3": { + "templateId": "HomebaseBannerIcon:FounderTier3Banner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier3Banner4": { + "templateId": "HomebaseBannerIcon:FounderTier3Banner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier3Banner5": { + "templateId": "HomebaseBannerIcon:FounderTier3Banner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier4Banner1": { + "templateId": "HomebaseBannerIcon:FounderTier4Banner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier4Banner2": { + "templateId": "HomebaseBannerIcon:FounderTier4Banner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier4Banner3": { + "templateId": "HomebaseBannerIcon:FounderTier4Banner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier4Banner4": { + "templateId": "HomebaseBannerIcon:FounderTier4Banner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier4Banner5": { + "templateId": "HomebaseBannerIcon:FounderTier4Banner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier5Banner1": { + "templateId": "HomebaseBannerIcon:FounderTier5Banner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier5Banner2": { + "templateId": "HomebaseBannerIcon:FounderTier5Banner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier5Banner3": { + "templateId": "HomebaseBannerIcon:FounderTier5Banner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier5Banner4": { + "templateId": "HomebaseBannerIcon:FounderTier5Banner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier5Banner5": { + "templateId": "HomebaseBannerIcon:FounderTier5Banner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:NewsletterBanner": { + "templateId": "HomebaseBannerIcon:NewsletterBanner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner1": { + "templateId": "HomebaseBannerIcon:InfluencerBanner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner2": { + "templateId": "HomebaseBannerIcon:InfluencerBanner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner3": { + "templateId": "HomebaseBannerIcon:InfluencerBanner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner4": { + "templateId": "HomebaseBannerIcon:InfluencerBanner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner5": { + "templateId": "HomebaseBannerIcon:InfluencerBanner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner6": { + "templateId": "HomebaseBannerIcon:InfluencerBanner6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner7": { + "templateId": "HomebaseBannerIcon:InfluencerBanner7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner8": { + "templateId": "HomebaseBannerIcon:InfluencerBanner8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner9": { + "templateId": "HomebaseBannerIcon:InfluencerBanner9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner10": { + "templateId": "HomebaseBannerIcon:InfluencerBanner10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner11": { + "templateId": "HomebaseBannerIcon:InfluencerBanner11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner12": { + "templateId": "HomebaseBannerIcon:InfluencerBanner12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner13": { + "templateId": "HomebaseBannerIcon:InfluencerBanner13", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner14": { + "templateId": "HomebaseBannerIcon:InfluencerBanner14", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner15": { + "templateId": "HomebaseBannerIcon:InfluencerBanner15", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner16": { + "templateId": "HomebaseBannerIcon:InfluencerBanner16", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner17": { + "templateId": "HomebaseBannerIcon:InfluencerBanner17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner18": { + "templateId": "HomebaseBannerIcon:InfluencerBanner18", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner19": { + "templateId": "HomebaseBannerIcon:InfluencerBanner19", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner20": { + "templateId": "HomebaseBannerIcon:InfluencerBanner20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner21": { + "templateId": "HomebaseBannerIcon:InfluencerBanner21", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner22": { + "templateId": "HomebaseBannerIcon:InfluencerBanner22", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner23": { + "templateId": "HomebaseBannerIcon:InfluencerBanner23", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner24": { + "templateId": "HomebaseBannerIcon:InfluencerBanner24", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner25": { + "templateId": "HomebaseBannerIcon:InfluencerBanner25", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner26": { + "templateId": "HomebaseBannerIcon:InfluencerBanner26", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner27": { + "templateId": "HomebaseBannerIcon:InfluencerBanner27", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner28": { + "templateId": "HomebaseBannerIcon:InfluencerBanner28", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner29": { + "templateId": "HomebaseBannerIcon:InfluencerBanner29", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner30": { + "templateId": "HomebaseBannerIcon:InfluencerBanner30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner31": { + "templateId": "HomebaseBannerIcon:InfluencerBanner31", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner32": { + "templateId": "HomebaseBannerIcon:InfluencerBanner32", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner33": { + "templateId": "HomebaseBannerIcon:InfluencerBanner33", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner34": { + "templateId": "HomebaseBannerIcon:InfluencerBanner34", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner35": { + "templateId": "HomebaseBannerIcon:InfluencerBanner35", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner36": { + "templateId": "HomebaseBannerIcon:InfluencerBanner36", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner37": { + "templateId": "HomebaseBannerIcon:InfluencerBanner37", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner38": { + "templateId": "HomebaseBannerIcon:InfluencerBanner38", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner39": { + "templateId": "HomebaseBannerIcon:InfluencerBanner39", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner40": { + "templateId": "HomebaseBannerIcon:InfluencerBanner40", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner41": { + "templateId": "HomebaseBannerIcon:InfluencerBanner41", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner42": { + "templateId": "HomebaseBannerIcon:InfluencerBanner42", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner43": { + "templateId": "HomebaseBannerIcon:InfluencerBanner43", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner44": { + "templateId": "HomebaseBannerIcon:InfluencerBanner44", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner45": { + "templateId": "HomebaseBannerIcon:InfluencerBanner45", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner46": { + "templateId": "HomebaseBannerIcon:InfluencerBanner46", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner47": { + "templateId": "HomebaseBannerIcon:InfluencerBanner47", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner48": { + "templateId": "HomebaseBannerIcon:InfluencerBanner48", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner49": { + "templateId": "HomebaseBannerIcon:InfluencerBanner49", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner50": { + "templateId": "HomebaseBannerIcon:InfluencerBanner50", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner51": { + "templateId": "HomebaseBannerIcon:InfluencerBanner51", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner52": { + "templateId": "HomebaseBannerIcon:InfluencerBanner52", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner53": { + "templateId": "HomebaseBannerIcon:InfluencerBanner53", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT1Banner": { + "templateId": "HomebaseBannerIcon:OT1Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT2Banner": { + "templateId": "HomebaseBannerIcon:OT2Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT3Banner": { + "templateId": "HomebaseBannerIcon:OT3Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT4Banner": { + "templateId": "HomebaseBannerIcon:OT4Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT5Banner": { + "templateId": "HomebaseBannerIcon:OT5Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT6Banner": { + "templateId": "HomebaseBannerIcon:OT6Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT7Banner": { + "templateId": "HomebaseBannerIcon:OT7Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT8Banner": { + "templateId": "HomebaseBannerIcon:OT8Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT9Banner": { + "templateId": "HomebaseBannerIcon:OT9Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT10Banner": { + "templateId": "HomebaseBannerIcon:OT10Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT11Banner": { + "templateId": "HomebaseBannerIcon:OT11Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner1": { + "templateId": "HomebaseBannerIcon:OtherBanner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner2": { + "templateId": "HomebaseBannerIcon:OtherBanner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner3": { + "templateId": "HomebaseBannerIcon:OtherBanner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner4": { + "templateId": "HomebaseBannerIcon:OtherBanner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner5": { + "templateId": "HomebaseBannerIcon:OtherBanner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner6": { + "templateId": "HomebaseBannerIcon:OtherBanner6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner7": { + "templateId": "HomebaseBannerIcon:OtherBanner7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner8": { + "templateId": "HomebaseBannerIcon:OtherBanner8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner9": { + "templateId": "HomebaseBannerIcon:OtherBanner9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner10": { + "templateId": "HomebaseBannerIcon:OtherBanner10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner11": { + "templateId": "HomebaseBannerIcon:OtherBanner11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner12": { + "templateId": "HomebaseBannerIcon:OtherBanner12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner13": { + "templateId": "HomebaseBannerIcon:OtherBanner13", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner14": { + "templateId": "HomebaseBannerIcon:OtherBanner14", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner15": { + "templateId": "HomebaseBannerIcon:OtherBanner15", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner16": { + "templateId": "HomebaseBannerIcon:OtherBanner16", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner17": { + "templateId": "HomebaseBannerIcon:OtherBanner17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner18": { + "templateId": "HomebaseBannerIcon:OtherBanner18", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner19": { + "templateId": "HomebaseBannerIcon:OtherBanner19", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner20": { + "templateId": "HomebaseBannerIcon:OtherBanner20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner21": { + "templateId": "HomebaseBannerIcon:OtherBanner21", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner22": { + "templateId": "HomebaseBannerIcon:OtherBanner22", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner23": { + "templateId": "HomebaseBannerIcon:OtherBanner23", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner24": { + "templateId": "HomebaseBannerIcon:OtherBanner24", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner25": { + "templateId": "HomebaseBannerIcon:OtherBanner25", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner26": { + "templateId": "HomebaseBannerIcon:OtherBanner26", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner27": { + "templateId": "HomebaseBannerIcon:OtherBanner27", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner28": { + "templateId": "HomebaseBannerIcon:OtherBanner28", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner29": { + "templateId": "HomebaseBannerIcon:OtherBanner29", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner30": { + "templateId": "HomebaseBannerIcon:OtherBanner30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner31": { + "templateId": "HomebaseBannerIcon:OtherBanner31", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner32": { + "templateId": "HomebaseBannerIcon:OtherBanner32", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner33": { + "templateId": "HomebaseBannerIcon:OtherBanner33", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner34": { + "templateId": "HomebaseBannerIcon:OtherBanner34", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner35": { + "templateId": "HomebaseBannerIcon:OtherBanner35", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner36": { + "templateId": "HomebaseBannerIcon:OtherBanner36", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner37": { + "templateId": "HomebaseBannerIcon:OtherBanner37", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner38": { + "templateId": "HomebaseBannerIcon:OtherBanner38", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner39": { + "templateId": "HomebaseBannerIcon:OtherBanner39", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner40": { + "templateId": "HomebaseBannerIcon:OtherBanner40", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner41": { + "templateId": "HomebaseBannerIcon:OtherBanner41", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner42": { + "templateId": "HomebaseBannerIcon:OtherBanner42", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner43": { + "templateId": "HomebaseBannerIcon:OtherBanner43", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner44": { + "templateId": "HomebaseBannerIcon:OtherBanner44", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner45": { + "templateId": "HomebaseBannerIcon:OtherBanner45", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner46": { + "templateId": "HomebaseBannerIcon:OtherBanner46", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner47": { + "templateId": "HomebaseBannerIcon:OtherBanner47", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner48": { + "templateId": "HomebaseBannerIcon:OtherBanner48", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner49": { + "templateId": "HomebaseBannerIcon:OtherBanner49", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner50": { + "templateId": "HomebaseBannerIcon:OtherBanner50", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner51": { + "templateId": "HomebaseBannerIcon:OtherBanner51", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner52": { + "templateId": "HomebaseBannerIcon:OtherBanner52", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner53": { + "templateId": "HomebaseBannerIcon:OtherBanner53", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner54": { + "templateId": "HomebaseBannerIcon:OtherBanner54", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner55": { + "templateId": "HomebaseBannerIcon:OtherBanner55", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner56": { + "templateId": "HomebaseBannerIcon:OtherBanner56", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner57": { + "templateId": "HomebaseBannerIcon:OtherBanner57", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner58": { + "templateId": "HomebaseBannerIcon:OtherBanner58", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner59": { + "templateId": "HomebaseBannerIcon:OtherBanner59", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner60": { + "templateId": "HomebaseBannerIcon:OtherBanner60", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner61": { + "templateId": "HomebaseBannerIcon:OtherBanner61", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner62": { + "templateId": "HomebaseBannerIcon:OtherBanner62", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner63": { + "templateId": "HomebaseBannerIcon:OtherBanner63", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner64": { + "templateId": "HomebaseBannerIcon:OtherBanner64", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner65": { + "templateId": "HomebaseBannerIcon:OtherBanner65", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner66": { + "templateId": "HomebaseBannerIcon:OtherBanner66", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner67": { + "templateId": "HomebaseBannerIcon:OtherBanner67", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner68": { + "templateId": "HomebaseBannerIcon:OtherBanner68", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner69": { + "templateId": "HomebaseBannerIcon:OtherBanner69", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner70": { + "templateId": "HomebaseBannerIcon:OtherBanner70", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner71": { + "templateId": "HomebaseBannerIcon:OtherBanner71", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner72": { + "templateId": "HomebaseBannerIcon:OtherBanner72", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner73": { + "templateId": "HomebaseBannerIcon:OtherBanner73", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner74": { + "templateId": "HomebaseBannerIcon:OtherBanner74", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner75": { + "templateId": "HomebaseBannerIcon:OtherBanner75", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner76": { + "templateId": "HomebaseBannerIcon:OtherBanner76", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner77": { + "templateId": "HomebaseBannerIcon:OtherBanner77", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner78": { + "templateId": "HomebaseBannerIcon:OtherBanner78", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner54": { + "templateId": "HomebaseBannerIcon:InfluencerBanner54", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner55": { + "templateId": "HomebaseBannerIcon:InfluencerBanner55", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner56": { + "templateId": "HomebaseBannerIcon:InfluencerBanner56", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner57": { + "templateId": "HomebaseBannerIcon:InfluencerBanner57", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner58": { + "templateId": "HomebaseBannerIcon:InfluencerBanner58", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:SurvivalBannerStonewoodComplete": { + "templateId": "HomebaseBannerIcon:SurvivalBannerStonewoodComplete", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:SurvivalBannerPlankertonComplete": { + "templateId": "HomebaseBannerIcon:SurvivalBannerPlankertonComplete", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:SurvivalBannerCannyValleyComplete": { + "templateId": "HomebaseBannerIcon:SurvivalBannerCannyValleyComplete", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason01": { + "templateId": "HomebaseBannerIcon:BRSeason01", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:SurvivalBannerHolidayEasy": { + "templateId": "HomebaseBannerIcon:SurvivalBannerHolidayEasy", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:SurvivalBannerHolidayMed": { + "templateId": "HomebaseBannerIcon:SurvivalBannerHolidayMed", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:SurvivalBannerHolidayHard": { + "templateId": "HomebaseBannerIcon:SurvivalBannerHolidayHard", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02Bush": { + "templateId": "HomebaseBannerIcon:BRSeason02Bush", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02Salt": { + "templateId": "HomebaseBannerIcon:BRSeason02Salt", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02LionHerald": { + "templateId": "HomebaseBannerIcon:BRSeason02LionHerald", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02CatSoldier": { + "templateId": "HomebaseBannerIcon:BRSeason02CatSoldier", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02Dragon": { + "templateId": "HomebaseBannerIcon:BRSeason02Dragon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02Planet": { + "templateId": "HomebaseBannerIcon:BRSeason02Planet", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02Crosshair": { + "templateId": "HomebaseBannerIcon:BRSeason02Crosshair", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02Bowling": { + "templateId": "HomebaseBannerIcon:BRSeason02Bowling", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02MonsterTruck": { + "templateId": "HomebaseBannerIcon:BRSeason02MonsterTruck", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02Shark": { + "templateId": "HomebaseBannerIcon:BRSeason02Shark", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02IceCream": { + "templateId": "HomebaseBannerIcon:BRSeason02IceCream", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02Log": { + "templateId": "HomebaseBannerIcon:BRSeason02Log", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02Cake": { + "templateId": "HomebaseBannerIcon:BRSeason02Cake", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02Tank": { + "templateId": "HomebaseBannerIcon:BRSeason02Tank", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02GasMask": { + "templateId": "HomebaseBannerIcon:BRSeason02GasMask", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02Vulture": { + "templateId": "HomebaseBannerIcon:BRSeason02Vulture", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason02Sawhorse": { + "templateId": "HomebaseBannerIcon:BRSeason02Sawhorse", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Bee": { + "templateId": "HomebaseBannerIcon:BRSeason03Bee", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Chick": { + "templateId": "HomebaseBannerIcon:BRSeason03Chick", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Chicken": { + "templateId": "HomebaseBannerIcon:BRSeason03Chicken", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Crab": { + "templateId": "HomebaseBannerIcon:BRSeason03Crab", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03CrescentMoon": { + "templateId": "HomebaseBannerIcon:BRSeason03CrescentMoon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03DeadFish": { + "templateId": "HomebaseBannerIcon:BRSeason03DeadFish", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03DinosaurSkull": { + "templateId": "HomebaseBannerIcon:BRSeason03DinosaurSkull", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03DogCollar": { + "templateId": "HomebaseBannerIcon:BRSeason03DogCollar", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Donut": { + "templateId": "HomebaseBannerIcon:BRSeason03Donut", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Eagle": { + "templateId": "HomebaseBannerIcon:BRSeason03Eagle", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Egg": { + "templateId": "HomebaseBannerIcon:BRSeason03Egg", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Falcon": { + "templateId": "HomebaseBannerIcon:BRSeason03Falcon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Flail": { + "templateId": "HomebaseBannerIcon:BRSeason03Flail", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03HappyCloud": { + "templateId": "HomebaseBannerIcon:BRSeason03HappyCloud", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Lantern": { + "templateId": "HomebaseBannerIcon:BRSeason03Lantern", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Lightning": { + "templateId": "HomebaseBannerIcon:BRSeason03Lightning", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Paw": { + "templateId": "HomebaseBannerIcon:BRSeason03Paw", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Shark": { + "templateId": "HomebaseBannerIcon:BRSeason03Shark", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03ShootingStar": { + "templateId": "HomebaseBannerIcon:BRSeason03ShootingStar", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Snake": { + "templateId": "HomebaseBannerIcon:BRSeason03Snake", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Sun": { + "templateId": "HomebaseBannerIcon:BRSeason03Sun", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03TeddyBear": { + "templateId": "HomebaseBannerIcon:BRSeason03TeddyBear", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03TopHat": { + "templateId": "HomebaseBannerIcon:BRSeason03TopHat", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Whale": { + "templateId": "HomebaseBannerIcon:BRSeason03Whale", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Wing": { + "templateId": "HomebaseBannerIcon:BRSeason03Wing", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Wolf": { + "templateId": "HomebaseBannerIcon:BRSeason03Wolf", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:BRSeason03Worm": { + "templateId": "HomebaseBannerIcon:BRSeason03Worm", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:SurvivalBannerStorm2018Easy": { + "templateId": "HomebaseBannerIcon:SurvivalBannerStorm2018Easy", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:SurvivalBannerStorm2018Med": { + "templateId": "HomebaseBannerIcon:SurvivalBannerStorm2018Med", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:SurvivalBannerStorm2018Hard": { + "templateId": "HomebaseBannerIcon:SurvivalBannerStorm2018Hard", + "attributes": { + "item_seen": true + }, + "quantity": 1 + } + }, + "stats": { + "attributes": { + "survey_data": {}, + "personal_offers": {}, + "intro_game_played": true, + "import_friends_claimed": {}, + "mtx_purchase_history": { + "refundsUsed": 0, + "refundCredits": 3, + "purchases": [ + { + "purchaseId": "AthenaCharacter:CID_009_Athena_Commando_M", + "offerId": "v2:/AthenaCharacter:CID_009_Athena_Commando_M", + "purchaseDate": "9999-12-31T00:00:00.000Z", + "freeRefundEligible": false, + "fulfillments": [], + "lootResult": [ + { + "itemType": "AthenaCharacter:CID_009_Athena_Commando_M", + "itemGuid": "AthenaCharacter:CID_009_Athena_Commando_M", + "itemProfile": "athena", + "quantity": 1 + } + ], + "totalMtxPaid": 800, + "metadata": { + "mtx_affiliate": "Lawin", + "mtx_affiliate_id": "29063ead167541899959bbc9c439acc6" + }, + "gameContext": "" + }, + { + "purchaseId": "AthenaCharacter:CID_010_Athena_Commando_M", + "offerId": "v2:/AthenaCharacter:CID_010_Athena_Commando_M", + "purchaseDate": "9999-12-31T00:00:00.000Z", + "freeRefundEligible": false, + "fulfillments": [], + "lootResult": [ + { + "itemType": "AthenaCharacter:CID_010_Athena_Commando_M", + "itemGuid": "AthenaCharacter:CID_010_Athena_Commando_M", + "itemProfile": "athena", + "quantity": 1 + } + ], + "totalMtxPaid": 800, + "metadata": { + "mtx_affiliate": "PRO100KatYT", + "mtx_affiliate_id": "29063ead167541899959bbc9c439acc6" + }, + "gameContext": "" + }, + { + "purchaseId": "AthenaCharacter:CID_011_Athena_Commando_M", + "offerId": "v2:/AthenaCharacter:CID_011_Athena_Commando_M", + "purchaseDate": "9999-12-31T00:00:00.000Z", + "freeRefundEligible": false, + "fulfillments": [], + "lootResult": [ + { + "itemType": "AthenaCharacter:CID_011_Athena_Commando_M", + "itemGuid": "AthenaCharacter:CID_011_Athena_Commando_M", + "itemProfile": "athena", + "quantity": 1 + } + ], + "totalMtxPaid": 800, + "metadata": { + "mtx_affiliate": "Lawin", + "mtx_affiliate_id": "29063ead167541899959bbc9c439acc6" + }, + "gameContext": "" + }, + { + "purchaseId": "AthenaCharacter:CID_012_Athena_Commando_M", + "offerId": "v2:/AthenaCharacter:CID_012_Athena_Commando_M", + "purchaseDate": "9999-12-31T00:00:00.000Z", + "freeRefundEligible": false, + "fulfillments": [], + "lootResult": [ + { + "itemType": "AthenaCharacter:CID_012_Athena_Commando_M", + "itemGuid": "AthenaCharacter:CID_012_Athena_Commando_M", + "itemProfile": "athena", + "quantity": 1 + } + ], + "totalMtxPaid": 800, + "metadata": { + "mtx_affiliate": "TI93", + "mtx_affiliate_id": "29063ead167541899959bbc9c439acc6" + }, + "gameContext": "" + }, + { + "purchaseId": "AthenaCharacter:CID_013_Athena_Commando_F", + "offerId": "v2:/AthenaCharacter:CID_013_Athena_Commando_F", + "purchaseDate": "9999-12-31T00:00:00.000Z", + "freeRefundEligible": false, + "fulfillments": [], + "lootResult": [ + { + "itemType": "AthenaCharacter:CID_013_Athena_Commando_F", + "itemGuid": "AthenaCharacter:CID_013_Athena_Commando_F", + "itemProfile": "athena", + "quantity": 1 + } + ], + "totalMtxPaid": 800, + "metadata": { + "mtx_affiliate": "Lawin", + "mtx_affiliate_id": "29063ead167541899959bbc9c439acc6" + }, + "gameContext": "" + }, + { + "purchaseId": "AthenaCharacter:CID_014_Athena_Commando_F", + "offerId": "v2:/AthenaCharacter:CID_014_Athena_Commando_F", + "purchaseDate": "9999-12-31T00:00:00.000Z", + "freeRefundEligible": false, + "fulfillments": [], + "lootResult": [ + { + "itemType": "AthenaCharacter:CID_014_Athena_Commando_F", + "itemGuid": "AthenaCharacter:CID_014_Athena_Commando_F", + "itemProfile": "athena", + "quantity": 1 + } + ], + "totalMtxPaid": 800, + "metadata": { + "mtx_affiliate": "Playeereq", + "mtx_affiliate_id": "29063ead167541899959bbc9c439acc6" + }, + "gameContext": "" + }, + { + "purchaseId": "AthenaCharacter:CID_015_Athena_Commando_F", + "offerId": "v2:/AthenaCharacter:CID_015_Athena_Commando_F", + "purchaseDate": "9999-12-31T00:00:00.000Z", + "freeRefundEligible": false, + "fulfillments": [], + "lootResult": [ + { + "itemType": "AthenaCharacter:CID_015_Athena_Commando_F", + "itemGuid": "AthenaCharacter:CID_015_Athena_Commando_F", + "itemProfile": "athena", + "quantity": 1 + } + ], + "totalMtxPaid": 800, + "metadata": { + "mtx_affiliate": "Lawin", + "mtx_affiliate_id": "29063ead167541899959bbc9c439acc6" + }, + "gameContext": "" + }, + { + "purchaseId": "AthenaCharacter:CID_016_Athena_Commando_F", + "offerId": "v2:/AthenaCharacter:CID_016_Athena_Commando_F", + "purchaseDate": "9999-12-31T00:00:00.000Z", + "freeRefundEligible": false, + "fulfillments": [], + "lootResult": [ + { + "itemType": "AthenaCharacter:CID_016_Athena_Commando_F", + "itemGuid": "AthenaCharacter:CID_016_Athena_Commando_F", + "itemProfile": "athena", + "quantity": 1 + } + ], + "totalMtxPaid": 800, + "metadata": { + "mtx_affiliate": "Matteoki", + "mtx_affiliate_id": "29063ead167541899959bbc9c439acc6" + }, + "gameContext": "" + } + ] + }, + "undo_cooldowns": [], + "mtx_affiliate_set_time": "", + "inventory_limit_bonus": 0, + "current_mtx_platform": "EpicPC", + "mtx_affiliate": "", + "forced_intro_played": "Coconut", + "weekly_purchases": {}, + "daily_purchases": {}, + "ban_history": {}, + "in_app_purchases": {}, + "permissions": [], + "undo_timeout": "min", + "monthly_purchases": {}, + "allowed_to_send_gifts": true, + "mfa_enabled": true, + "allowed_to_receive_gifts": true, + "gift_history": {} + } + }, + "commandRevision": 0 +} diff --git a/lawin/profiles/common_public.json b/lawin/profiles/common_public.json new file mode 100644 index 0000000..aed756b --- /dev/null +++ b/lawin/profiles/common_public.json @@ -0,0 +1,19 @@ +{ + "_id": "LawinServer", + "created": "0001-01-01T00:00:00.000Z", + "updated": "0001-01-01T00:00:00.000Z", + "rvn": 1, + "wipeNumber": 1, + "accountId": "LawinServer", + "profileId": "common_public", + "version": "no_version", + "items": {}, + "stats": { + "attributes": { + "banner_color": "DefaultColor15", + "homebase_name": "", + "banner_icon": "SurvivalBannerStonewoodComplete" + } + }, + "commandRevision": 0 +} \ No newline at end of file diff --git a/lawin/profiles/creative.json b/lawin/profiles/creative.json new file mode 100644 index 0000000..47331a0 --- /dev/null +++ b/lawin/profiles/creative.json @@ -0,0 +1,15 @@ +{ + "_id": "LawinServer", + "created": "0001-01-01T00:00:00.000Z", + "updated": "0001-01-01T00:00:00.000Z", + "rvn": 1, + "wipeNumber": 1, + "accountId": "LawinServer", + "profileId": "creative", + "version": "no_version", + "items": {}, + "stats": { + "attributes": {} + }, + "commandRevision": 0 +} \ No newline at end of file diff --git a/lawin/profiles/metadata.json b/lawin/profiles/metadata.json new file mode 100644 index 0000000..39846e8 --- /dev/null +++ b/lawin/profiles/metadata.json @@ -0,0 +1,231 @@ +{ + "_id": "LawinServer", + "created": "0001-01-01T00:00:00.000Z", + "updated": "0001-01-01T00:00:00.000Z", + "rvn": 1, + "wipeNumber": 1, + "accountId": "LawinServer", + "profileId": "metadata", + "version": "no_version", + "items": { + "Outpost:outpostcore_pve_03": { + "templateId": "Outpost:outpostcore_pve_03", + "attributes": { + "cloud_save_info": { + "saveCount": 319, + "savedRecords": [ + { + "recordIndex": 0, + "archiveNumber": 1, + "recordFilename": "eb192023-7db8-4bc0-b3e4-bf060c7baf87_r0_a1.sav" + } + ] + }, + "level": 10, + "outpost_core_info": { + "placedBuildings": [ + { + "buildingTag": "Outpost.BuildingActor.Building.00", + "placedTag": "Outpost.PlacementActor.Placement.01" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.01", + "placedTag": "Outpost.PlacementActor.Placement.00" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.02", + "placedTag": "Outpost.PlacementActor.Placement.05" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.03", + "placedTag": "Outpost.PlacementActor.Placement.02" + } + ], + "accountsWithEditPermission": [], + "highestEnduranceWaveReached": 30 + } + }, + "quantity": 1 + }, + "Outpost:outpostcore_pve_02": { + "templateId": "Outpost:outpostcore_pve_02", + "attributes": { + "cloud_save_info": { + "saveCount": 603, + "savedRecords": [ + { + "recordIndex": 0, + "archiveNumber": 0, + "recordFilename": "76fe0295-aee2-463a-9229-d9933b4969b8_r0_a0.sav" + } + ] + }, + "level": 10, + "outpost_core_info": { + "placedBuildings": [ + { + "buildingTag": "Outpost.BuildingActor.Building.00", + "placedTag": "Outpost.PlacementActor.Placement.00" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.01", + "placedTag": "Outpost.PlacementActor.Placement.01" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.02", + "placedTag": "Outpost.PlacementActor.Placement.04" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.03", + "placedTag": "Outpost.PlacementActor.Placement.03" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.04", + "placedTag": "Outpost.PlacementActor.Placement.02" + } + ], + "accountsWithEditPermission": [], + "highestEnduranceWaveReached": 30 + } + }, + "quantity": 1 + }, + "Outpost:outpostcore_pve_04": { + "templateId": "Outpost:outpostcore_pve_04", + "attributes": { + "cloud_save_info": { + "saveCount": 77, + "savedRecords": [ + { + "recordIndex": 0, + "archiveNumber": 1, + "recordFilename": "940037e4-87d2-499e-8d00-cdb2dfa326b9_r0_a1.sav" + } + ] + }, + "level": 10, + "outpost_core_info": { + "placedBuildings": [ + { + "buildingTag": "Outpost.BuildingActor.Building.00", + "placedTag": "Outpost.PlacementActor.Placement.00" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.01", + "placedTag": "Outpost.PlacementActor.Placement.01" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.02", + "placedTag": "Outpost.PlacementActor.Placement.03" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.03", + "placedTag": "Outpost.PlacementActor.Placement.05" + } + ], + "accountsWithEditPermission": [], + "highestEnduranceWaveReached": 30 + } + }, + "quantity": 1 + }, + "Outpost:outpostcore_pve_01": { + "templateId": "Outpost:outpostcore_pve_01", + "attributes": { + "cloud_save_info": { + "saveCount": 851, + "savedRecords": [ + { + "recordIndex": 0, + "archiveNumber": 0, + "recordFilename": "a1d68ce6-63a5-499a-946f-9e0c825572d7_r0_a0.sav" + } + ] + }, + "level": 10, + "outpost_core_info": { + "placedBuildings": [ + { + "buildingTag": "Outpost.BuildingActor.Building.00", + "placedTag": "Outpost.PlacementActor.Placement.00" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.01", + "placedTag": "Outpost.PlacementActor.Placement.02" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.02", + "placedTag": "Outpost.PlacementActor.Placement.01" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.03", + "placedTag": "Outpost.PlacementActor.Placement.05" + } + ], + "accountsWithEditPermission": [], + "highestEnduranceWaveReached": 30 + } + }, + "quantity": 1 + }, + "DeployableBaseCloudSave:testdeployablebaseitemdef": { + "templateId": "DeployableBaseCloudSave:testdeployablebaseitemdef", + "attributes": { + "tier_progression": { + "progressionInfo": [ + { + "progressionLayoutGuid": "B70B5C69-437E-75C5-CB91-7E913F3B5294", + "highestDefeatedTier": 0 + }, + { + "progressionLayoutGuid": "04FD086F-4A99-823B-06C3-979A8F408960", + "highestDefeatedTier": 4 + }, + { + "progressionLayoutGuid": "D3D31F40-45D8-FD77-67E6-5FBAB0550417", + "highestDefeatedTier": 1 + }, + { + "progressionLayoutGuid": "92A17A43-4EDC-8F69-688F-24BB3A3D8AEF", + "highestDefeatedTier": 3 + }, + { + "progressionLayoutGuid": "A2D8DB3E-457E-279B-58F5-AA9BA2FDC547", + "highestDefeatedTier": 4 + }, + { + "progressionLayoutGuid": "5AAB9A15-49F5-0D74-0B22-BB9686396E8F", + "highestDefeatedTier": 1 + }, + { + "progressionLayoutGuid": "9077163A-4664-1993-5A20-D28170404FD6", + "highestDefeatedTier": 3 + }, + { + "progressionLayoutGuid": "FB679125-49BC-0025-48F3-22A1B8085189", + "highestDefeatedTier": 4 + } + ] + }, + "cloud_save_info": { + "saveCount": 11, + "savedRecords": [ + { + "recordIndex": 0, + "archiveNumber": 1, + "recordFilename": "2FA8CFBB-4973-CCF0-EEA8-BEBC37D99F52_r0_a1.sav" + } + ] + }, + "level": 0 + }, + "quantity": 1 + } + }, + "stats": { + "attributes": { + "inventory_limit_bonus": 0 + } + }, + "commandRevision": 0 +} \ No newline at end of file diff --git a/lawin/profiles/outpost0.json b/lawin/profiles/outpost0.json new file mode 100644 index 0000000..59da422 --- /dev/null +++ b/lawin/profiles/outpost0.json @@ -0,0 +1,17 @@ +{ + "_id": "LawinServer", + "created": "0001-01-01T00:00:00.000Z", + "updated": "0001-01-01T00:00:00.000Z", + "rvn": 1, + "wipeNumber": 1, + "accountId": "LawinServer", + "profileId": "outpost0", + "version": "no_version", + "items": {}, + "stats": { + "attributes": { + "inventory_limit_bonus": 0 + } + }, + "commandRevision": 0 +} \ No newline at end of file diff --git a/lawin/profiles/profile0.json b/lawin/profiles/profile0.json new file mode 100644 index 0000000..27be0f0 --- /dev/null +++ b/lawin/profiles/profile0.json @@ -0,0 +1,36288 @@ +{ + "_id": "LawinServer", + "created": "0001-01-01T00:00:00.000Z", + "updated": "0001-01-01T00:00:00.000Z", + "rvn": 10, + "wipeNumber": 1, + "accountId": "LawinServer", + "profileId": "profile0", + "version": "no_version", + "items": { + "32b0b965-f82f-4e0c-9494-357c7c2817bc": { + "templateId": "Quest:stonewoodquest_filler_1_d2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "completion_complete_pve01_diff2": 1, + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 3, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "32b0b965-f82f-4e0c-9494-3ffghc7c2817bc": { + "templateId": "Quest:stonewoodquest_filler_1_d3", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "completion_complete_pve01_diff2": 1, + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "completion_questcollect_survivoritemdata": 3, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_evacuate_1_diff3": 1 + }, + "quantity": 1 + }, + "295ca2c9-e177-4bf2-9907-a7a867e27bb8": { + "templateId": "Quest:homebasequest_researchpurchase", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-31T13:50:01.896Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "completion_unlock_skill_tree_researchfortitude": 1, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "31c715d7-a4e5-490f-9a4f-89eb97e98890": { + "templateId": "Quest:achievement_killmistmonsters", + "attributes": { + "quest_state": "Active", + "last_state_change_time": "2017-08-29T21:05:57.089Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "completion_kill_husk_smasher": 0, + "favorite": false + }, + "quantity": 1 + }, + "cc33ae01-f558-4613-ae30-c5c83ba1c9da": { + "templateId": "Quota:restxp", + "attributes": { + "max_quota": 2304909, + "max_level_bonus": 0, + "level": 1, + "units_per_minute_recharge": 1921, + "item_seen": false, + "recharge_delay_minutes": 360, + "xp": 0, + "last_mod_time": "2017-12-25T02:04:39.790Z", + "favorite": false, + "current_value": 1069997 + }, + "quantity": 1 + }, + "7bfbc8f3-83ac-4ec7-88a2-b293526e0536": { + "templateId": "Quest:homebaseonboarding", + "attributes": { + "quest_state": "Active", + "last_state_change_time": "2017-08-29T21:05:57.087Z", + "max_level_bonus": 0, + "completion_hbonboarding_namehomebase": 0, + "level": -1, + "completion_hbonboarding_completezone": 1, + "item_seen": false, + "completion_hbonboarding_watchsatellitecine": 1, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "7ag-gerdfge-gre-ge22342432432-2aaaaa": { + "templateId": "Quest:protoenablequest", + "attributes": { + "quest_state": "Active", + "last_state_change_time": "2017-08-29T21:05:57.087Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "7ag-gegggfgfgfgfgfgfgfgesgv": { + "templateId": "Weapon:wid_assault_auto_sr_crystal_t05", + "attributes": { + "last_state_change_time": "2017-08-29T21:05:57.087Z", + "max_level_bonus": 0, + "level": 50, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "agresdarti48ut387t8bgggaa": { + "templateId": "Quest:TestQuest_Narrative", + "attributes": { + "quest_state": "Active", + "last_state_change_time": "2017-08-29T21:05:57.087Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "1fakfgrughfaitcudghudhgdughdughudhgug": { + "templateId": "gadget:g_commando_goincommando", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "3e4b6dd6-452c-42a7-a37a-0e5bae90b259": { + "templateId": "Token:accountinventorybonus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 25 + }, + "e46ec8e1-c17f-4756-ae62-179f144ce64a": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": false, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-F01.IconDef-WorkerPortrait-Dreamer-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "e46ec8e1-gsrrrf-4756-ae62-179f144ce64a": { + "templateId": "Worker:managersoldier_sr_ramsie_t05", + "attributes": { + "gender": "0", + "level": 50, + "item_seen": false, + "squad_slot_idx": 0, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Soldier-ramsie.IconDef-ManagerPortrait-SR-Soldier-ramsie", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "managerSynergy": "Homebase.Manager.IsSoldier", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "e46ec8e1-gsrgfgfaaf-47fgfgfdggdgd-ae62-179f144ce64a": { + "templateId": "Worker:managerquestdoctor_r_t05", + "attributes": { + "gender": "2", + "level": 50, + "item_seen": false, + "squad_slot_idx": 0, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Doctor-F01.IconDef-ManagerPortrait-Doctor-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "managerSynergy": "Homebase.Manager.IsDoctor", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsShieldRegenHigh" + }, + "quantity": 1 + }, + "9128922a-7998-4ea9-b6e7-04a5aacc18d5": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": 2, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-M02.IconDef-WorkerPortrait-Dependable-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsFortitudeLow" + }, + "quantity": 1 + }, + "ef7bf36c-67d7-49bc-8731-1dce04fc5865": { + "templateId": "EventPurchaseTracker:generic_instance", + "attributes": { + "event_purchases": {}, + "_private": false, + "devName": "", + "event_instance_id": "2uf66jaojc9ln271aah5pfsujg[0]0" + }, + "quantity": 1 + }, + "d075ab2339-9fae-44f0-a348-62d7d30d03bf": { + "templateId": "Quest:StonewoodQuest_TreasuredFriends", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-29T21:52:34.691Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_interact_treasurechest_pve01_diff2": 1 + }, + "quantity": 1 + }, + "d0759719-9fae-44f0-a348-62d7d30d03bf": { + "templateId": "Quest:stonewoodquest_closegate_d1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-29T21:52:34.691Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "completion_complete_gate_1": 1, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "d317e3d3-6260-4c6f-9587-52e6a1e3838d": { + "templateId": "Worker:managersoldier_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Marksman-F01.IconDef-ManagerPortrait-Marksman-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsSoldier", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "5e3f0933-ff56-4ce3-a693-0251fc37a296": { + "templateId": "Quest:heroquest_constructorleadership", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-29T21:21:44.721Z", + "completion_unlock_skill_tree_constructor_leadership": 1, + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "e48c1773-c751-4684-91fe-d942609d3632": { + "templateId": "Quest:stonewoodquest_launchballoon_d1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-31T14:44:12.466Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "completion_complete_launchweatherballoon_1": 1, + "favorite": false + }, + "quantity": 1 + }, + "3c1493d9-edac-4f89-b423-cd14e371596a": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": 1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-F01.IconDef-WorkerPortrait-Pragmatic-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsShieldRegenLow" + }, + "quantity": 1 + }, + "08852823-8d2c-4429-a621-e97ebb237abb": { + "templateId": "Quest:achievement_savesurvivors", + "attributes": { + "quest_state": "Active", + "last_state_change_time": "2017-08-29T21:05:57.089Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "completion_questcollect_survivoritemdata": 9, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "ac7c555e-83bd-4884-b628-f4e2421fd8aa": { + "templateId": "Quest:homebasequest_weakpointvision", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-31T13:47:23.012Z", + "completion_unlock_skill_tree_weakpointvision": 1, + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "55c0f27d-d172-49d6-9ec5-66ba1ed3ae8e": { + "templateId": "EventPurchaseTracker:generic_instance", + "attributes": { + "event_purchases": {}, + "_private": false, + "devName": "", + "event_instance_id": "2uf66jaojc9ln271aah5pfsujg[1]0" + }, + "quantity": 1 + }, + "41ae399a-6b53-465a-81ed-58eb50890f77": { + "templateId": "Quest:challenge_herotraining_1", + "attributes": { + "completion_upgrade_any_hero": 1, + "quest_state": "Claimed", + "last_state_change_time": "2017-08-31T15:03:20.323Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "55007fd2-edcc-487d-9e7b-df9044abacb3": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-F02.IconDef-WorkerPortrait-Dreamer-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsMeleeDamageLow" + }, + "quantity": 1 + }, + "66aae8ae-9385-4ad4-8ef5-6f4101eda97d": { + "templateId": "Token:homebasepoints", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 7 + }, + "95f0b025-cdb0-4db7-bfe1-15f3b83c0914": { + "templateId": "Quest:achievement_protectthesurvivors", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-29T21:04:55.773Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "completion_custom_protectthesurvivors": 1, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "79f15de0-e59e-4526-af03-0b52fa926a9a": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": 2, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-M01.IconDef-WorkerPortrait-Cooperative-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCooperative", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDamageLow" + }, + "quantity": 1 + }, + "dc35569d-db9e-4978-8d66-6c90b35a33d1": { + "templateId": "Worker:workerbasic_c_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-M02.IconDef-WorkerPortrait-Dependable-M02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDamageLow" + }, + "quantity": 1 + }, + "96a6f6c0-9e1d-43e3-8bd3-46547b731db8": { + "templateId": "Quest:achievement_destroygnomes", + "attributes": { + "quest_state": "Active", + "last_state_change_time": "2017-08-29T21:05:57.089Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "completion_destroy_gnome": 2, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "92d46ee6-fc3c-4ee6-80c6-54059aabefce": { + "templateId": "Quest:heroquest_ninjaleadership", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-29T21:05:57.089Z", + "max_level_bonus": 0, + "level": -1, + "completion_unlock_skill_tree_ninja_leadership": 1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "5d0d6b9f-e4e7-4f69-94c5-b373455e8f0a": { + "templateId": "Quest:homebasequest_unlockresearch", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-31T13:50:01.895Z", + "completion_unlock_skill_tree_research": 1, + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "83f598e7-ce64-4502-8201-6144fbc7e120": { + "templateId": "Token:founderspack_1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "9e51c6fd-2826-4dc5-b50c-18882e21a0d6": { + "templateId": "Quest:homebasequest_unlockexpeditions", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-29T21:05:57.089Z", + "max_level_bonus": 0, + "level": -1, + "completion_unlock_skill_tree_expeditions": 1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "535de809-daa9-4afd-a5ad-ad4c9d342e59": { + "templateId": "Quest:homebasequest_slotemtworker", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-31T13:50:32.302Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_assign_worker_to_emt_squadone": 1 + }, + "quantity": 1 + }, + "851c947b-cdd9-45ef-bd75-8c5228f3004e": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": 1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-F02.IconDef-WorkerPortrait-Dreamer-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDreamer", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsRangedDamageLow" + }, + "quantity": 1 + }, + "daea2ba9-bda3-4cdb-aee9-07de94ed361f": { + "templateId": "Quest:heroquest_outlanderleadership", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-29T21:05:57.089Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "completion_unlock_skill_tree_outlander_leadership": 1, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "71344f5e-5d23-47e9-a952-847952b4d9b5": { + "templateId": "Quest:challenge_weaponupgrade_1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-31T15:04:39.253Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "completion_upgrade_any_weapon": 1, + "favorite": false + }, + "quantity": 1 + }, + "a1ca7ab5-dd7e-4131-bf8a-819c32b3ac46": { + "templateId": "Quest:achievement_explorezones", + "attributes": { + "quest_state": "Active", + "completion_complete_exploration_1": 0, + "last_state_change_time": "2017-08-29T21:05:57.089Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "d3fa9aa6-df5f-406d-ac40-e884e6b832f3": { + "templateId": "Worker:managertrainer_uc_t01", + "attributes": { + "gender": "1", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-PersonalTrainer-M01.IconDef-ManagerPortrait-PersonalTrainer-M01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsDependable", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "785f6f85-04c6-4025-acda-b6e9dd078afa": { + "templateId": "Quest:achievement_playwithothers", + "attributes": { + "quest_state": "Active", + "last_state_change_time": "2017-08-29T21:05:57.089Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "completion_quick_complete": 0, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "9aafecdc-c09f-4741-add3-41f3e521d955": { + "templateId": "Quest:homebaseonboardinggrantschematics", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-29T21:18:00.437Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "completion_questcomplete_outpostquest_t1_l1": 1, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "141f75cd-6fa6-481a-be29-25742f4f98ff": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-F01.IconDef-WorkerPortrait-Competitive-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "6b4f7407-bf62-4122-962d-fb5099a97c33": { + "templateId": "DailyRewardScheduleToken:founderspackdailyrewardtoken", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 5 + }, + "eafa0d89-e9ad-42ce-a7a3-e5801d53f20c": { + "templateId": "Token:worldinventorybonus", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 10000 + }, + "bb5e6cc5-8083-412e-a391-3b434462f4a6": { + "templateId": "Token:campaignaccess", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "901080b6-4457-419f-99c2-f70f1b1153de": { + "templateId": "Quest:stonewoodquest_retrievedata_d1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "completion_complete_retrievedata_1": 1, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "6a1080bfa457-419f-99c2-f70f1b1153de": { + "templateId": "Quest:HomebaseQuest_SlotOutpostDefender", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "completion_complete_retrievedata_1": 1, + "sent_new_notification": true, + "favorite": false, + "completion_assign_defender": 1 + }, + "quantity": 1 + }, + "67edaaaab0bfa4f7-419f-99c2-f70gs153ag": { + "templateId": "Quest:HomebaseQuest_UnlockOutpostDefender", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "completion_complete_retrievedata_1": 1, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_outpostdefender": 1 + }, + "quantity": 1 + }, + "1abfaab0bfa4f7-419f-99c2-f70gs153ag": { + "templateId": "Quest:HomebaseQuest_UnlockMissionDefender", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "completion_complete_retrievedata_1": 1, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_missiondefender": 1 + }, + "quantity": 1 + }, + "1abfaab0bfa4f7-419f-99c2-f70gsfag": { + "templateId": "Quest:HomebaseQuest_SlotMissionDefender", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "completion_complete_retrievedata_1": 1, + "sent_new_notification": true, + "favorite": false, + "completion_assign_defender_to_adventure_squadone": 1 + }, + "quantity": 1 + }, + "28a3a983-16ee-4243-a71e-7f5f3b0953e4": { + "templateId": "Worker:managerexplorer_c_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Explorer-F01.IconDef-ManagerPortrait-Explorer-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsExplorer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "82c46baf-9e03-4314-a2fd-3c461ffc1a0e": { + "templateId": "Quest:monthrewardquest_getrewards", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-31T13:45:04.366Z", + "max_level_bonus": 0, + "completion_questcomplete_homebaseonboardingafteroutpost": 1, + "level": -1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "b1917ede-564a-4545-bccc-64c1f81fca2f": { + "templateId": "Worker:workerbasic_r_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-F01.IconDef-WorkerPortrait-Pragmatic-F01", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsPragmatic", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsAbilityDamageLow" + }, + "quantity": 1 + }, + "1a8af2f5-7a71-4445-9a73-451c97fe2d1d": { + "templateId": "Worker:workerbasic_uc_t01", + "attributes": { + "gender": "2", + "level": 1, + "item_seen": false, + "squad_slot_idx": -1, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-F02.IconDef-WorkerPortrait-Competitive-F02", + "max_level_bonus": 0, + "personality": "Homebase.Worker.Personality.IsCompetitive", + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsResistanceLow" + }, + "quantity": 1 + }, + "4219bbef-3dd0-431a-80f7-3da6a572e6ff": { + "templateId": "Quest:achievement_loottreasurechests", + "attributes": { + "completion_interact_treasurechest": 4, + "quest_state": "Active", + "last_state_change_time": "2017-08-29T21:05:57.089Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "dd288f85-f3a0-40c2-bf22-f3b20d884144": { + "templateId": "Quest:reactivequest_copperore", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-31T14:43:55.247Z", + "max_level_bonus": 0, + "completion_quest_reactive_copperore": 1, + "level": -1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "de06b39f-0819-40e5-8c3b-fec5e417758c": { + "templateId": "Quest:homebasequest_unlocksquads", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-31T13:49:51.801Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_squads": 1 + }, + "quantity": 1 + }, + "8b5df8b9-7a90-4417-aadc-b36344ed8335": { + "templateId": "Quest:achievement_craftfirstweapon", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-29T21:04:55.773Z", + "completion_custom_craftfirstweapon": 1, + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "faca07b8-8fbe-4cb5-800f-6de994c1f500": { + "templateId": "Quest:homebaseonboardingafteroutpost", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-08-29T21:19:36.536Z", + "max_level_bonus": 0, + "completion_open_card_pack": 1, + "level": -1, + "item_seen": true, + "xp": 0, + "completion_purchase_card_pack": 1, + "sent_new_notification": true, + "completion_hbonboarding_watchoutpostunlock": 1, + "favorite": false + }, + "quantity": 1 + }, + "b9251e65-6c2e-473d-9dab-5f1a78df59b8": { + "templateId": "Token:collectionresource_nodegatetoken01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 27690 + }, + "f3bda5ee-3521-40b8-b5d9-4262726458b5": { + "templateId": "Quest:achievement_buildstructures", + "attributes": { + "quest_state": "Active", + "last_state_change_time": "2017-08-29T21:05:57.089Z", + "completion_build_any_structure": 246, + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "c5e97bfa-d599-42d0-a07e-735507956ba9": { + "templateId": "Currency:MtxPurchased", + "attributes": { + "platform": "Shared" + }, + "quantity": 10000000 + }, + "f9e2e4b6-58f7-4b31-829d-f5c6c620ffe7": { + "templateId": "Quest:challenge_collectionbook_1", + "attributes": { + "quest_state": "Active", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_collectionbook_levelup": 1 + }, + "quantity": 1 + }, + "75538f27-26f3-4c54-9eda-764fa5a5e839": { + "templateId": "HomebaseNode:t1_main_ba01a2361", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f47db304-71ad-40f9-b871-98d59d34fcf8": { + "templateId": "HomebaseNode:startnode_commandcenter", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7cc171a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:t1_main_38e8a5bf4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7efc171a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:T1_Main_AD1499E010", + "attributes": { + "item_seen": true, + "refundable": " L" + }, + "quantity": 1 + }, + "7ef1b71a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:T1_Main_27C02FC60", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7egsac171a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:T1_Main_0011CCD10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7egnnb71a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:T1_Main_904080840", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7eghaab171a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:T1_Main_609C8A9A8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7agnhghaab171a1-eed0-411c-994d-0e61aa345206": { + "templateId": "HomebaseNode:T1_Main_9FDB916E6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "barghgnhghaab171a1-eed0-411c-994d-asdgtaa35532": { + "templateId": "HomebaseNode:T1_Main_3FFC8E9D7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "c437b5b9-b0a6-4c0b-ba70-b660cdf20fe9": { + "templateId": "HomebaseNode:t1_main_8d2c3c4d0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5036da7c-c2be-4974-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:t1_main_fabc7c290", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5036gayc-c2be-4974-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_B1AEF23D10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5036flipflopc-c2be-4974-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_498AB88F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5036da7c-faggfgfg-4974-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_E05F04D75", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5036da7c-faggfgfdfgdfgfdgdffdg74-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_849930D55", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5036da7c-faggfgfdfgddgdffdg74-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_B1A3A3771", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sdfdsfsdsdaiwa387r87a8fgfdfgddgdffdg74-9895-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_77F7B7826", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sdfdsfsdsdaiwa387r87a8fgfdfgdgsdeeetfdg74-98v5-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_0336AC827", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sdfdsfsdsdaiwa387r87a8fgfdfgddgdfggbaaag-98v5-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_0ABACB4E2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sdfdsfaaiwa387r87a8fgfdfgddgdfggbaaag-98v5-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_702F364C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sdfdsfaaiwa387r87a8fgfdfgddgdfggbaaag-9gg-4127ecb2ae23": { + "templateId": "HomebaseNode:T1_Main_243215D30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "as384-ep4f-gd6857-qwwg": { + "templateId": "HomebaseNode:T1_Main_0CBF7FEC0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9xq94-7p11-f2a3e2-ax7q": { + "templateId": "HomebaseNode:T1_Main_38EAD7850", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "csdh7-euqd-58rs9l-oyc3": { + "templateId": "HomebaseNode:T1_Main_BD2B45B61", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8z6nh-9pq9-ph1770-e8af": { + "templateId": "HomebaseNode:T1_Main_A16A56111", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m4gby-2teq-43w2g5-ilms": { + "templateId": "HomebaseNode:T1_Main_7A5E40920", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9rpvc-iy5d-971a7r-zks2": { + "templateId": "HomebaseNode:T1_Main_195C3EF52", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "12ggc-x1n6-yimqgz-oef9": { + "templateId": "HomebaseNode:T1_Main_92E3E2179", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "oy4ei-0um7-zowu3n-sxf2": { + "templateId": "HomebaseNode:T1_Main_254CFA5515", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k09xd-ew7a-8fgbv8-ksra": { + "templateId": "HomebaseNode:T1_Main_C06961E711", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5t2g2-stk9-v0h5nf-9f9u": { + "templateId": "HomebaseNode:T1_Main_266068670", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bx0ls-csxr-ovbqr0-wmqa": { + "templateId": "HomebaseNode:T1_Main_59607C6F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1l6o0-fquw-v69k99-d3ro": { + "templateId": "HomebaseNode:T1_Main_2546ECFC0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hh5in-qiyk-ywv7o2-n7ak": { + "templateId": "HomebaseNode:T1_Main_A7E71BED0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2iky3-9swf-ykrxur-h1t1": { + "templateId": "HomebaseNode:T1_Research_0B612C970", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gzixo-83fl-w62hqb-xk3y": { + "templateId": "HomebaseNode:T1_Research_A157C8E30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vn3d1-287m-swxus6-6a0a": { + "templateId": "HomebaseNode:T1_Research_A4F269D10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nws5v-l3q9-wd7ts8-rfan": { + "templateId": "HomebaseNode:T1_Research_248FC3870", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "i8tb8-q4cv-hqsrkf-349w": { + "templateId": "HomebaseNode:T1_Research_3E28BB331", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xo0ie-z30w-ug8q90-r0x7": { + "templateId": "HomebaseNode:T1_Research_D2CE27910", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vb2bn-eg0l-o8d9kt-7rzn": { + "templateId": "HomebaseNode:T1_Research_8707AF440", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7iolb-mfyv-wmq73w-k8t7": { + "templateId": "HomebaseNode:T1_Research_C3D05C4B2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dozrf-yw3e-m8ai5x-1thf": { + "templateId": "HomebaseNode:T1_Research_1BC2BE641", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ux0h1-bcfh-lbg0gu-wadw": { + "templateId": "HomebaseNode:T1_Research_6114FC651", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nk9g2-ciz0-qkdqi2-ld6k": { + "templateId": "HomebaseNode:T1_Research_AD50DB9E1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ku562-zf0m-da0qfg-3f4g": { + "templateId": "HomebaseNode:T1_Research_B543610A1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "q2rm4-fh03-ldh47d-v66w": { + "templateId": "HomebaseNode:T1_Research_EECD426C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yncqh-xlrv-2yadch-5gvx": { + "templateId": "HomebaseNode:T1_Research_700F196A3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "e50uq-wyqn-yvqzgo-2kbt": { + "templateId": "HomebaseNode:T1_Research_A8DB35494", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qamzx-mo4h-5azza8-csd8": { + "templateId": "HomebaseNode:T1_Research_11C82B1D0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bx7m5-xtc5-ocq7ec-n4q2": { + "templateId": "HomebaseNode:T1_Research_F01D00360", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "0mewm-kzrd-slyvgl-x4s8": { + "templateId": "HomebaseNode:T1_Research_B5B8EB7C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "exl8k-3otw-9te82s-8gl2": { + "templateId": "HomebaseNode:T1_Research_E9F394960", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f596l-yv16-idoo0y-0nar": { + "templateId": "HomebaseNode:T1_Research_43A8F68C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tyk5q-5o7p-6mlibx-clyd": { + "templateId": "HomebaseNode:T1_Research_7382D2480", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1i24d-dxe1-db8zol-s01m": { + "templateId": "HomebaseNode:T1_Research_B0D9537A1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1tq57-cziz-q05nzv-3onc": { + "templateId": "HomebaseNode:T1_Research_A5CF39400", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "27hzw-uwcl-i5yqvk-o6s6": { + "templateId": "HomebaseNode:T1_Research_5201143F2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l2fff-p4ee-n29iqg-aiz2": { + "templateId": "HomebaseNode:T1_Research_369E5EAC1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1elbm-1lex-9u4ebf-5y33": { + "templateId": "HomebaseNode:T1_Research_790BDD533", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lsexf-ompq-2ncsvl-0uqz": { + "templateId": "HomebaseNode:T1_Research_307838811", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "62noq-u7qe-uhdcw1-6r1e": { + "templateId": "HomebaseNode:T1_Research_2D0F29AB1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "swk18-yl4b-12lr82-n86x": { + "templateId": "HomebaseNode:T1_Research_1538CA901", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k71dw-lnb2-k3i7ca-ym88": { + "templateId": "HomebaseNode:T1_Research_ED5B34D91", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "517r1-qqtf-h6qrpb-koe7": { + "templateId": "HomebaseNode:T1_Research_04B2A68A4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ozs6c-tguf-p31dsn-m12f213": { + "templateId": "HomebaseNode:TRTrunk_1_0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ozs6c-tguf-p31dsn-m12f": { + "templateId": "HomebaseNode:TRTrunk_1_1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "llfcn-op8h-sg28h7-f8sa": { + "templateId": "HomebaseNode:TRTrunk_2_0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "abn83-q9fw-ozh0b6-wpmi": { + "templateId": "HomebaseNode:T1_Main_B4F394680", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7tzof-t1v5-qahzxt-es6g": { + "templateId": "HomebaseNode:T1_Main_3E84C12D0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "s6h8k-i91p-zwu6vh-ixx2": { + "templateId": "HomebaseNode:T1_Main_0D681A741", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l64os-01ir-x6giy2-egel": { + "templateId": "HomebaseNode:T1_Main_E9C41E050", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dew0y-rxsy-5z5e8l-oc9g": { + "templateId": "HomebaseNode:T1_Main_88F02D792", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "t5y06-uq74-tvvq7z-62qt": { + "templateId": "HomebaseNode:T1_Main_FD10816B3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gzmc5-opdt-uznucy-lrpw": { + "templateId": "HomebaseNode:T1_Main_DCB242B70", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6ygll-u5yk-ndzs9a-mkn7": { + "templateId": "HomebaseNode:T1_Main_D0B070910", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dgec8-5ufp-ircyzt-q8w6": { + "templateId": "HomebaseNode:T1_Main_BF8F555F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5hb20-1tka-mc0blt-xinh": { + "templateId": "HomebaseNode:T1_Main_2E3589B80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "koamq-5f1a-80emkd-kihd": { + "templateId": "HomebaseNode:T1_Main_8991222D1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pp93v-qwwb-d1x28t-dfd1": { + "templateId": "HomebaseNode:T1_Main_911D30562", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "go41u-cs2t-kc2xo8-vb26": { + "templateId": "HomebaseNode:T1_Main_D1C9E5993", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6mxyh-3typ-fybdoe-u3uh": { + "templateId": "HomebaseNode:T1_Main_826346530", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ll40o-7tab-9rhbn2-w8pg": { + "templateId": "HomebaseNode:T1_Main_F681AB1F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f37k2-yvb7-2i5yku-ql7r": { + "templateId": "HomebaseNode:T1_Main_1637F10C4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ed3og-vkms-cyhi50-pvw6": { + "templateId": "HomebaseNode:T1_Main_2996F5C10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k8sbl-4ug3-70apyd-n0le": { + "templateId": "HomebaseNode:T1_Main_58591E630", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "km3tx-lngu-w478vl-6oxw": { + "templateId": "HomebaseNode:T1_Main_8A41E9920", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "uw7k9-cxos-90dek8-op1p": { + "templateId": "HomebaseNode:T1_Main_0828407D3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lovb8-vrx7-n59778-gik6": { + "templateId": "HomebaseNode:T1_Main_566BFEA11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ikgkq-3nhw-pvrkdt-ygih": { + "templateId": "HomebaseNode:T1_Main_F1EB76072", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7lmmz-9pnc-rwr6r8-0wb2": { + "templateId": "HomebaseNode:T1_Main_448295574", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hgz4k-517m-x1bto6-54vg": { + "templateId": "HomebaseNode:T1_Main_FF2595300", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1v72p-uahx-awnzqd-csum": { + "templateId": "HomebaseNode:T1_Main_1B6486FC0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p9bxu-45ed-6ov583-h1vc": { + "templateId": "HomebaseNode:T1_Main_4BDCB2465", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "31wg4-6ca5-hsu2m4-1pe4": { + "templateId": "HomebaseNode:T1_Main_986B7D201", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pp2m3-moi0-1bm516-yv6d": { + "templateId": "HomebaseNode:T1_Main_AD1D66991", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "r4y8v-2d9p-u1awpm-ttuy": { + "templateId": "HomebaseNode:T1_Main_F6FA8ECB3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fvhof-5vx7-22qevm-lb5d": { + "templateId": "HomebaseNode:T1_Main_8B125D0F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9a99l-infp-ldlq4t-km1x": { + "templateId": "HomebaseNode:T1_Main_D4ED4A3C4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1hfk2-uirw-1l1gl4-6dkf": { + "templateId": "HomebaseNode:T1_Main_FAEE79B10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o108e-l7rq-i0c4xd-5iqp": { + "templateId": "HomebaseNode:T1_Main_5FAA4C765", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "64z9k-o4rw-hkvu0d-w1f1": { + "templateId": "HomebaseNode:T1_Main_82EFDDB312", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T1Defender2": { + "templateId": "HomebaseNode:T1_Main_2051EFB31", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T1Defender3": { + "templateId": "HomebaseNode:T1_Main_6E6F74400", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T1_Main_7064C2440": { + "templateId": "HomebaseNode:T1_Main_7064C2440", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T1_Main_4658A42D3": { + "templateId": "HomebaseNode:T1_Main_4658A42D3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T1_Main_20D6FB134": { + "templateId": "HomebaseNode:T1_Main_20D6FB134", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T1_Main_640195112": { + "templateId": "HomebaseNode:T1_Main_640195112", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6b4kq-p5ye-u67vry-ninb": { + "templateId": "HomebaseNode:T2_Main_A3A5DA870", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vxnom-zxsx-pya6k3-d3yu": { + "templateId": "HomebaseNode:T2_Main_FB4378A61", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rqlpu-7kcm-3ttxgm-869d": { + "templateId": "HomebaseNode:T2_Main_25EFB8C70", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pbyln-xmvh-h6v4wp-0zqc": { + "templateId": "HomebaseNode:T2_Main_B8E0A6A91", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p5wae-f4vl-9f2u5z-88na": { + "templateId": "HomebaseNode:T2_Main_41217F7D2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "02g3i-g3ht-33b6k3-7982": { + "templateId": "HomebaseNode:T2_Main_FE2869370", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5kcou-c4wi-cd07f6-1xfm": { + "templateId": "HomebaseNode:T2_Main_19A17BDE3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2tqp7-tqum-05ap0x-6w7s": { + "templateId": "HomebaseNode:T2_Main_D20A597A4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "krcg7-17lp-v0dbzh-5sec": { + "templateId": "HomebaseNode:T2_Main_6BEDE9B65", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nez6r-qyat-8k872v-7e94": { + "templateId": "HomebaseNode:T2_Main_A0995FCB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ucbp8-80tg-rhyfwy-bizg": { + "templateId": "HomebaseNode:T2_Main_2367C82F1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ml5ms-v17q-ozhisn-hkce": { + "templateId": "HomebaseNode:T2_Main_B8A9E7CC2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "13n4h-vdpk-r6t9qe-kong": { + "templateId": "HomebaseNode:T2_Main_F782A9CF3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wdmt8-d7o1-e77bl3-dqq3": { + "templateId": "HomebaseNode:T2_Main_BAAA5FA10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p52z6-d7su-ldt9g5-hpyt": { + "templateId": "HomebaseNode:T2_Main_DFA624051", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zf7q5-z7fs-ypghu9-pi4b": { + "templateId": "HomebaseNode:T2_Main_B99A48BE2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ndpn4-0efr-1nlo9h-g3nv": { + "templateId": "HomebaseNode:T2_Main_9BBF38680", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "33c5t-nemf-vpy838-6ii3": { + "templateId": "HomebaseNode:T2_Main_26F4FB891", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3p0o3-t3pk-y8i3hn-6f6d": { + "templateId": "HomebaseNode:T2_Main_4C95A7D12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g0w00-2l4n-o23uta-ysoa": { + "templateId": "HomebaseNode:T2_Main_F4E138243", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cx1p3-7iss-ku5ams-rind": { + "templateId": "HomebaseNode:T2_Main_88D0C6DE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4bb1a-gyai-2aeopc-lqp8": { + "templateId": "HomebaseNode:T2_Main_B75EFFC64", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "n4b7m-dpkp-ll596i-clsr": { + "templateId": "HomebaseNode:T2_Main_221229060", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "snief-9uq3-nhybyf-8t46": { + "templateId": "HomebaseNode:T2_Main_FA6884911", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8b9zq-d5u9-41yfw3-ha29": { + "templateId": "HomebaseNode:T2_Main_AEEEF5183", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "x8hwr-53si-wo55xq-x9ru": { + "templateId": "HomebaseNode:T2_Main_180921FB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cd9w3-z6cu-xzuapi-lc2d": { + "templateId": "HomebaseNode:T2_Main_63F751711", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6mxp2-rsng-bmpvcc-r13g": { + "templateId": "HomebaseNode:T2_Main_6A6764682", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cmppp-3uiq-wwzyc7-tvp1": { + "templateId": "HomebaseNode:T2_Main_AEBC27E24", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mzcby-lvqp-x3uqpw-b8g7": { + "templateId": "HomebaseNode:T2_Main_079EDD2C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cqpda-okaz-wift43-7p95": { + "templateId": "HomebaseNode:T2_Main_9D7FA9270", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "36sxf-p5rs-00qiq7-hqk9": { + "templateId": "HomebaseNode:T2_Main_BF1AE4C87", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7inlh-pdmv-l2ii1l-6csm": { + "templateId": "HomebaseNode:T2_Main_75F1308C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3mx8v-r44k-oyembm-rpxd": { + "templateId": "HomebaseNode:T2_Main_A454A2615", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4rvp7-dakl-3zar3y-tpar": { + "templateId": "HomebaseNode:T2_Main_636F167A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bpm0t-yp5l-14txt9-c33f": { + "templateId": "HomebaseNode:T2_Main_21CE15E51", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rr4ug-y9zf-tvkq8a-g2d6": { + "templateId": "HomebaseNode:T2_Main_3D00CB840", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rlypr-qagk-vebuun-ib62": { + "templateId": "HomebaseNode:T2_Main_FC5809C05", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "17a9c-152x-zhineg-nqkk": { + "templateId": "HomebaseNode:T2_Main_D52B4F3E0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "0g59q-661o-5lytx8-edxk": { + "templateId": "HomebaseNode:T2_Main_BE95EBE17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "krzg6-qlcb-i10rrr-1wud": { + "templateId": "HomebaseNode:T2_Main_2006052B6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T2_Main_E1D78B190": { + "templateId": "HomebaseNode:T2_Main_E1D78B190", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T2_Main_A9644DDD1": { + "templateId": "HomebaseNode:T2_Main_A9644DDD1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T2_Main_117540212": { + "templateId": "HomebaseNode:T2_Main_117540212", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gspd7-zx1d-9wdlpa-r1co": { + "templateId": "HomebaseNode:T2_Main_EC26C41D0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lqqaq-snbz-sse1s8-g5xw": { + "templateId": "HomebaseNode:T2_Main_3C068CFB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "aueda-2595-2rg1yv-nkmx": { + "templateId": "HomebaseNode:T2_Main_4E74E6F91", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "a ": { + "templateId": "HomebaseNode:T2_Main_B2E063FC1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2clwe-vfa6-2u6g7s-mm23": { + "templateId": "HomebaseNode:T2_Main_D192EEC22", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "59izr-kd6c-imms6g-3utk": { + "templateId": "HomebaseNode:T2_Main_D2FB71B12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "em3m9-qh54-m0pzbi-9ebu": { + "templateId": "HomebaseNode:T2_Main_9FC3978C3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "39buv-yn12-3qznht-p1fq": { + "templateId": "HomebaseNode:T2_Main_CF6FD83E3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "0q9qc-xdum-y6ww5r-wuf5": { + "templateId": "HomebaseNode:T2_Main_5B37C9358", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6s21r-hwof-kg3757-ro4v": { + "templateId": "HomebaseNode:T2_Main_F70BA14A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b90qt-ihq9-h9xdcv-olgi": { + "templateId": "HomebaseNode:T2_Main_D26651800", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "41rb3-sfm4-domblf-xqg3": { + "templateId": "HomebaseNode:T2_Main_4C8171671", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9rksw-u9sk-5tmus7-hzai": { + "templateId": "HomebaseNode:T2_Main_74699C1B1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5mqpz-lv9o-9z2ddh-rfbc": { + "templateId": "HomebaseNode:T2_Main_01F9D82A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k221v-it4z-h5anpf-el12": { + "templateId": "HomebaseNode:T2_Main_4D442C140", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "e30fa-c0pt-fst2nn-z6zn": { + "templateId": "HomebaseNode:T2_Main_07D55D6A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3uvev-0but-vexes5-9eov": { + "templateId": "HomebaseNode:T2_Main_2D6993922", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vc8pp-rnkd-yws3a3-wdnu": { + "templateId": "HomebaseNode:T2_Main_E321E3463", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bgq38-7vbs-10whc3-8udu": { + "templateId": "HomebaseNode:T2_Main_5346207C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yu351-wdiv-o01ol8-xl73": { + "templateId": "HomebaseNode:T2_Main_04D5C4430", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rftyb-fic7-07rww7-a6nk": { + "templateId": "HomebaseNode:T2_Main_A50295643", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pmhhl-ndda-v6hdax-l1d0": { + "templateId": "HomebaseNode:T2_Main_B2A944EC4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1uofz-pcsq-o59x9l-vqwx": { + "templateId": "HomebaseNode:T2_Main_D80BA2E80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "i9m0h-5gk7-mdyzwe-l57e": { + "templateId": "HomebaseNode:T2_Main_BA14281E0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9sea9-tsm6-yysusk-ee85": { + "templateId": "HomebaseNode:T2_Main_07E641121", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gt79y-o8ii-384y91-widm": { + "templateId": "HomebaseNode:T2_Main_FA6F27881", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "iact1-w2iv-coexhv-pqvu": { + "templateId": "HomebaseNode:T2_Main_BF56C52E2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wxo98-de3z-8809pi-gmum": { + "templateId": "HomebaseNode:T2_Main_1FDF39DB5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yy1ck-vfow-vczihy-0nva": { + "templateId": "HomebaseNode:T2_Main_93D6486A6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8btvi-hwrn-w5gtcd-23cm": { + "templateId": "HomebaseNode:T2_Main_166C29DC2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5gucz-bz1x-by9w26-tx1p": { + "templateId": "HomebaseNode:T2_Main_A84A13C07", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "36p9f-vw1l-ubt0ss-5yst": { + "templateId": "HomebaseNode:T2_Main_CF49A9C40", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "838c5-14zs-w1y5cq-cbmw": { + "templateId": "HomebaseNode:T2_Main_A225639B4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8baf0-7mc7-tkryka-9fgl": { + "templateId": "HomebaseNode:T2_Main_D289C7C75", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1lcmt-8xdc-v2hdt3-x3lh": { + "templateId": "HomebaseNode:T2_Main_F625D4F20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "21da6-pcln-0u68qw-bg0f": { + "templateId": "HomebaseNode:T2_Main_2A17D7306", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "395dh-16fy-sxrcpy-fhf1": { + "templateId": "HomebaseNode:T2_Main_E0E4352B0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lvrcx-9rci-0p37cm-tkse": { + "templateId": "HomebaseNode:T2_Main_9670DF2A7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "89ztv-uisr-xyi9ms-l6zr": { + "templateId": "HomebaseNode:T2_Main_FBC34AA68", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rfw8h-m0w8-ntpfm8-dl27": { + "templateId": "HomebaseNode:T2_Main_F657B25C9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "r1wty-6rvt-0cgb36-02nf": { + "templateId": "HomebaseNode:T2_Main_C4BBDFF80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zeaaa-uueo-8klcxh-zbhr": { + "templateId": "HomebaseNode:T2_Main_A1487C230", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ru1o8-9xaf-xiq19o-ckpu": { + "templateId": "HomebaseNode:T2_Main_69A5836F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "78yw7-7er7-3bggos-8v8g": { + "templateId": "HomebaseNode:T2_Main_CC1A24D76", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wkswg-fh3a-odrndg-hlay": { + "templateId": "HomebaseNode:T2_Main_B98656430", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "exemk-7wa1-tgx1ml-d2ax": { + "templateId": "HomebaseNode:T2_Main_CBBB2FF11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pzs6u-dr5g-gaiot5-4b1z": { + "templateId": "HomebaseNode:T2_Main_134007C27", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dwg6g-1acz-7rlllm-mrbu": { + "templateId": "HomebaseNode:T2_Main_D76888E98", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k6osr-q5o1-x8saga-dtwg": { + "templateId": "HomebaseNode:T2_Main_9FE51ADF0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gizmb-0lti-v6twif-ns3b": { + "templateId": "HomebaseNode:T2_Main_71B7C8AA0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "a11bi-dshs-d32xqw-b9ah": { + "templateId": "HomebaseNode:T2_Main_9FD8CEE49", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sszr5-6qkf-eyrbc1-8y0u": { + "templateId": "HomebaseNode:T2_Main_AC3B8CE810", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bbvrm-dggw-1ucqvh-g0f2": { + "templateId": "HomebaseNode:T2_Main_C677C3AF0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wkb36-mm5e-fqtf0z-nahr": { + "templateId": "HomebaseNode:T2_Main_9D4C8CD511", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fzpl8-x169-pym24t-1b55": { + "templateId": "HomebaseNode:T2_Main_1F8F85AE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ry905-3pql-51cfyb-3azv": { + "templateId": "HomebaseNode:T2_Main_D8D12ECF8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7kwdq-o9bq-kcl4ou-dy0o": { + "templateId": "HomebaseNode:T3_Main_3F0E7B000", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rzo9h-ygyn-2iuu3a-qnik": { + "templateId": "HomebaseNode:T3_Main_D111A2EE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vb4l9-5lpp-214hv5-d8uk": { + "templateId": "HomebaseNode:T3_Main_A4C742E90", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m997s-7y46-gq8mno-l5uq": { + "templateId": "HomebaseNode:T3_Main_DC39D9A60", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wtqwg-f579-yn79yv-m413": { + "templateId": "HomebaseNode:T3_Main_5147BFC91", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4onuv-b9xf-c4ktoh-afs4": { + "templateId": "HomebaseNode:T3_Main_642745262", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "0t5iw-gbn7-ntsi5a-ec2t": { + "templateId": "HomebaseNode:T3_Main_1D1190E83", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6bfty-z0rq-xt67m3-m2lt": { + "templateId": "HomebaseNode:T3_Main_223DB7781", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5gw7m-8ore-vogfd4-cvog": { + "templateId": "HomebaseNode:T3_Main_BB28968A1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zdsgz-u8w1-6q4q9t-ctkv": { + "templateId": "HomebaseNode:T3_Main_22DB38500", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o597b-uo1d-pb8lhg-o5fl": { + "templateId": "HomebaseNode:T3_Main_924E29D91", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xg2go-m5on-l2l3q8-wnow": { + "templateId": "HomebaseNode:T3_Main_70C759670", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7krzi-ff98-owphti-qkff": { + "templateId": "HomebaseNode:T3_Main_05EE62252", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rcngf-rkvt-m9ncm6-uue5": { + "templateId": "HomebaseNode:T3_Main_68DB04EE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bxfk8-phhy-xwgd5x-7lr0": { + "templateId": "HomebaseNode:T3_Main_5203AC5A1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "shbft-cu1y-lxnigr-nh1m": { + "templateId": "HomebaseNode:T3_Main_78CB0B021", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "10zz1-yt4g-hgxrbz-zewz": { + "templateId": "HomebaseNode:T3_Main_7B6AD6772", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "v021d-kuik-ha4y2l-7qv0": { + "templateId": "HomebaseNode:T3_Main_F9620A490", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p0vfm-0g0e-69pksc-qxab": { + "templateId": "HomebaseNode:T3_Main_12DEAE460", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "eshqz-gzlc-sqzc1i-fb1l": { + "templateId": "HomebaseNode:T3_Main_CDD911FA1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tomf1-ge6h-whf6xf-r44n": { + "templateId": "HomebaseNode:T3_Main_3A06BC390", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gnyst-zmva-0wfict-qhk2": { + "templateId": "HomebaseNode:T3_Main_E591A24B0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "x0as4-ltpz-d47chr-mo1a": { + "templateId": "HomebaseNode:T3_Main_E3C7C83C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xx8pn-ynuo-1yanfg-lmp7": { + "templateId": "HomebaseNode:T3_Main_B98F78C61", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fyvrb-wlm0-guam7b-a27o": { + "templateId": "HomebaseNode:T3_Main_9341DEF82", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rbdtk-alz9-71n36p-9zfb": { + "templateId": "HomebaseNode:T3_Main_54016F663", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "udlbp-ni9f-mneu91-n9qf": { + "templateId": "HomebaseNode:T3_Main_BB09D9260", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "y8a63-sn51-6spzrw-sv37": { + "templateId": "HomebaseNode:T3_Main_D259FE9E0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "u9dat-7wdy-vxr040-7t76": { + "templateId": "HomebaseNode:T3_Main_4363B46C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "852zf-y4rb-8zlwpg-ytbd": { + "templateId": "HomebaseNode:T3_Main_3DCEC5D44", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2scdk-fu5x-rb4ex0-hay3": { + "templateId": "HomebaseNode:T3_Main_211972050", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4r3ag-b2dv-scbc7g-b7i2": { + "templateId": "HomebaseNode:T3_Main_51FBB5B30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yex3g-l6a5-vb8mw1-ye21": { + "templateId": "HomebaseNode:T3_Main_1D3614B63", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "op1vb-mx06-mussmm-xhrn": { + "templateId": "HomebaseNode:T3_Main_5973F0934", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sx4dx-utbm-ptw4lv-nz0m": { + "templateId": "HomebaseNode:T3_Main_CC393D8C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "af38f-2cad-6h3rps-ideb": { + "templateId": "HomebaseNode:T3_Main_93B01CC71", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h51fn-zrna-5otpoh-iqfw": { + "templateId": "HomebaseNode:T3_Main_1650B98B5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gnbpp-mydl-x61anq-ebao": { + "templateId": "HomebaseNode:T3_Main_A2EB05DE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8svib-k0vb-0s5g6l-ssvo": { + "templateId": "HomebaseNode:T3_Main_931CDF301", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cuxxe-lnva-31hzq0-wb85": { + "templateId": "HomebaseNode:T3_Main_0F646E3E2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "btkt5-8xil-86i0mz-u0hf": { + "templateId": "HomebaseNode:T3_Main_7CD55E053", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "24l4p-l1px-llb9eb-935m": { + "templateId": "HomebaseNode:T3_Main_0CEA80C20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l1iai-tkxo-n2m201-cw2z": { + "templateId": "HomebaseNode:T3_Main_AD53DF901", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ia5a8-lm7o-aktnsk-7d1i": { + "templateId": "HomebaseNode:T3_Main_C0C07FD02", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k53ow-zxw8-p563ek-tqaa": { + "templateId": "HomebaseNode:T3_Main_BBE9C2383", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zs591-308o-q9yrqt-6uat": { + "templateId": "HomebaseNode:T3_Main_41C374291", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vl8xp-904q-bt00kt-gt23": { + "templateId": "HomebaseNode:T3_Main_5272EBF85", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "oe4iu-3rhe-06z30g-yr9c": { + "templateId": "HomebaseNode:T3_Main_3EA832246", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dzgfp-szpu-imcm9o-9lh6": { + "templateId": "HomebaseNode:T3_Main_38ADE9320", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4we7f-o89p-grhstf-5zkf": { + "templateId": "HomebaseNode:T3_Main_62511CB01", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "am45q-h07l-35fxlg-uw7e": { + "templateId": "HomebaseNode:T3_Main_392B5C050", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tgru8-yzhd-rflvd3-zpr4": { + "templateId": "HomebaseNode:T3_Main_AE0417420", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8q4a2-sodh-s9ucc1-oto6": { + "templateId": "HomebaseNode:T3_Main_5F1FF8F01", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nchog-bdgc-6ccvku-reme": { + "templateId": "HomebaseNode:T3_Main_B22284A80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k4pyq-lhzk-gvo52y-e8u7": { + "templateId": "HomebaseNode:T3_Main_FDEA96100", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2fxuu-iyq3-217bp4-fsbh": { + "templateId": "HomebaseNode:T3_Main_67DAD5FE1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T3_Main_3E101B6A5": { + "templateId": "HomebaseNode:T3_Main_3E101B6A5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T3_Main_E5013A630": { + "templateId": "HomebaseNode:T3_Main_E5013A630", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T3_Main_114D8AD91": { + "templateId": "HomebaseNode:T3_Main_114D8AD91", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ywn7f-7bwk-4m599g-r1iq": { + "templateId": "HomebaseNode:T3_Main_2E9E28772", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3iegd-df7p-s5empa-yf82": { + "templateId": "HomebaseNode:T3_Main_8AEC0C687", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hywaa-9r21-bbkyx9-404d": { + "templateId": "HomebaseNode:T3_Main_21BAEBB70", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k3ie2-ok4w-ac36rs-z41u": { + "templateId": "HomebaseNode:T3_Main_16213C9D1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kbms9-l2rq-13cv8l-qswi": { + "templateId": "HomebaseNode:T3_Main_7AAE50F90", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m5m5m-6ott-0fu37n-d47t": { + "templateId": "HomebaseNode:T3_Main_A9FEE26B3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rbip2-uvod-cr6lti-afg8": { + "templateId": "HomebaseNode:T3_Main_D9B9C4A80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "aw1vv-4erk-u8tvyo-3mxq": { + "templateId": "HomebaseNode:T3_Main_DA33A8740", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5t3tk-ddmw-iuxv82-dbl2": { + "templateId": "HomebaseNode:T3_Main_AAF369514", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3ie70-osby-lt46vv-zek8": { + "templateId": "HomebaseNode:T3_Main_B3EC767E5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fy52b-6mz1-9lvzar-8g5w": { + "templateId": "HomebaseNode:T3_Main_95A061850", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "owus0-2w8w-cn048u-hllg": { + "templateId": "HomebaseNode:T3_Main_A9CD47110", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2mqo9-mvfe-ei3p2d-25hd": { + "templateId": "HomebaseNode:T3_Main_F6BCC2AC0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f84cu-hqzd-eo77ie-9kki": { + "templateId": "HomebaseNode:T3_Main_5BBDCA774", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "oamo5-0dbn-8t5lt9-43dn": { + "templateId": "HomebaseNode:T3_Main_4BB06AC83", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "eaaig-hw72-ccytl0-16p1": { + "templateId": "HomebaseNode:T3_Main_8A85E0460", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "iytla-z8yu-gme45c-b2o4": { + "templateId": "HomebaseNode:T3_Main_B2F8126F4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "oh6ml-m7gf-qx6tll-c0hf": { + "templateId": "HomebaseNode:T3_Main_AA2BD6745", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vz5t0-n87q-s4xghv-7nap": { + "templateId": "HomebaseNode:T3_Main_D17065500", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "aylan-zq09-gp4h4p-xhm5": { + "templateId": "HomebaseNode:T3_Main_47FDEBF30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "y2ut9-eili-91hoce-hnqf": { + "templateId": "HomebaseNode:T3_Main_0F7CDF126", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "anda7-bvn9-ovrcml-fkft": { + "templateId": "HomebaseNode:T3_Main_C55707977", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xvkzg-sqh5-h00k66-xn2w": { + "templateId": "HomebaseNode:T3_Main_9CFF8ACB8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8k7ci-15ei-3i14mg-nwmb": { + "templateId": "HomebaseNode:T3_Main_A9BDF1C40", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "q7b5r-13da-vn3tam-qdv4": { + "templateId": "HomebaseNode:T3_Main_94BEADE00", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6k0ca-bnvv-6oa5hx-skye": { + "templateId": "HomebaseNode:T3_Main_81657C2A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b268t-elx7-hwwy8v-pwyk": { + "templateId": "HomebaseNode:T3_Main_FF1800780", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h41g4-do4x-h7ckb5-p4el": { + "templateId": "HomebaseNode:T3_Main_4ECA66830", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dkghs-9997-nl5f6u-zhq1": { + "templateId": "HomebaseNode:T3_Main_AA546FD04", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f0hov-207u-fxvre1-tqdb": { + "templateId": "HomebaseNode:T3_Main_F6B1C09C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l56st-5qh4-e1ok4b-av9x": { + "templateId": "HomebaseNode:T3_Main_FA382D2A2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ie768-0rdc-wkxc3q-7nlb": { + "templateId": "HomebaseNode:T3_Main_0830E2535", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "11d2x-mydh-oytsur-h0ed": { + "templateId": "HomebaseNode:T3_Main_B31485F76", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qu2b8-n3d8-o3xig9-nwuk": { + "templateId": "HomebaseNode:T3_Main_4900856E7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7m5fs-m922-79vu6g-gxr8": { + "templateId": "HomebaseNode:T3_Main_BA0F64D00", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "84nrl-ftnq-ayy0p3-he27": { + "templateId": "HomebaseNode:T3_Main_B9E79E910", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pzcgm-b142-ace9sp-w34t": { + "templateId": "HomebaseNode:T3_Main_844582E68", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rfzxv-wu5n-if9u9e-6trh": { + "templateId": "HomebaseNode:T3_Main_C583B74E0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "knza8-mzfn-m2gmdo-2cbt": { + "templateId": "HomebaseNode:T3_Main_DF62B4190", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9z3bv-z4m2-61euym-a2ok": { + "templateId": "HomebaseNode:T3_Main_8C8C10DE9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ct8x7-8g0x-8v12dx-qclt": { + "templateId": "HomebaseNode:T3_Main_C1C21E346", + "attributes": { + "item_seen": true + }, + "variants": " w", + "quantity": 1 + }, + "1xtet-h3nh-ufs6gm-sfwq": { + "templateId": "HomebaseNode:T4_Main_223600910", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8yfml-tfa7-1idyxq-vfxp": { + "templateId": "HomebaseNode:T4_Main_8014D8830", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nzyg7-9nn9-qzgovz-8efa": { + "templateId": "HomebaseNode:T4_Main_234E42F51", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k3nzs-cafs-umblln-56xb": { + "templateId": "HomebaseNode:T4_Main_2FB647A80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "klvx1-yga8-5bdqo8-n034": { + "templateId": "HomebaseNode:T4_Main_BD23D0AF0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1n93o-liiw-yw81uo-tbyq": { + "templateId": "HomebaseNode:T4_Main_C76C04C11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7733l-kn0s-hb7hqd-0o1w": { + "templateId": "HomebaseNode:T4_Main_631DBFA62", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vo64y-qend-k6ka5t-f0c8": { + "templateId": "HomebaseNode:T4_Main_A1CFB4AB3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cf9yn-c9c7-0q8gbp-qegu": { + "templateId": "HomebaseNode:T4_Main_294C621C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lz7rq-55mr-y76234-cm1h": { + "templateId": "HomebaseNode:T4_Main_E410950A2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kbqqn-37ty-o84bxq-w32i": { + "templateId": "HomebaseNode:T4_Main_B2B288DB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kyars-yqes-z67ng3-i4ai": { + "templateId": "HomebaseNode:T4_Main_A30E056A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "78awq-a7b2-7hevrl-o8df": { + "templateId": "HomebaseNode:T4_Main_FCA70A2B1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gl99y-y2ah-2vnyff-lh1d": { + "templateId": "HomebaseNode:T4_Main_EECD0C941", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kwcg9-tpu8-49071i-dtne": { + "templateId": "HomebaseNode:T4_Main_F8A251AE2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "06nba-qrru-v4kvre-y4un": { + "templateId": "HomebaseNode:T4_Main_476E9F060", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "a5hqs-urnc-agvzku-aynd": { + "templateId": "HomebaseNode:T4_Main_8D4F9BED1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tvxqn-gs53-tgzd0t-hbh0": { + "templateId": "HomebaseNode:T4_Main_477EABF92", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "r2mb0-b5c6-53mhnm-hpny": { + "templateId": "HomebaseNode:T4_Main_08545F6C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7vkbv-ovfg-vxg8f5-afyk": { + "templateId": "HomebaseNode:T4_Main_A23E778A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6na3t-3aeg-n168f3-gwh9": { + "templateId": "HomebaseNode:T4_Main_3D8125FA3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "farvp-13tq-chpoy1-zsrd": { + "templateId": "HomebaseNode:T4_Main_70213E0D4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kb86k-fxrq-hmevhr-um03": { + "templateId": "HomebaseNode:T4_Main_9AFB1FD60", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ksp5c-ciet-8o63qq-gp0g": { + "templateId": "HomebaseNode:T4_Main_2A05CE670", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "alrp6-7m0u-k2lu84-1ovx": { + "templateId": "HomebaseNode:T4_Main_0B169C105", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "67bx0-vmya-aod32c-apmz": { + "templateId": "HomebaseNode:T4_Main_08666D8D6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xz55i-7qfw-rb1oro-xic7": { + "templateId": "HomebaseNode:T4_Main_888A664C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6v148-if26-9z6txh-ovru": { + "templateId": "HomebaseNode:T4_Main_E6F4B67E0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l6i6o-c0eo-0dclr4-84q3": { + "templateId": "HomebaseNode:T4_Main_6E14C9711", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vuddv-506b-3ela3a-f1i9": { + "templateId": "HomebaseNode:T4_Main_11D1BB631", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hzyad-zzcd-2tda80-ixpv": { + "templateId": "HomebaseNode:T4_Main_751262F92", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cq27c-9e2h-hbuu4u-t3oh": { + "templateId": "HomebaseNode:T4_Main_5968FE123", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6tzxo-fgw8-mt3y1n-44ba": { + "templateId": "HomebaseNode:T4_Main_6DAC1DFD4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1b0rz-ilup-te3lkw-mnxg": { + "templateId": "HomebaseNode:T4_Main_9B36B5171", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "olyvr-n943-6idwg3-o3zm": { + "templateId": "HomebaseNode:T4_Main_8B174C410", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bqd48-kazk-q51mw8-89ba": { + "templateId": "HomebaseNode:T4_Main_2210EDD55", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g4gre-eg8p-uq0c5z-pzg8": { + "templateId": "HomebaseNode:T4_Main_96C918A20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2mi8b-e2dg-26tgz2-rbr7": { + "templateId": "HomebaseNode:T4_Main_5406B8760", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "va7vo-4gma-gmayd0-21ht": { + "templateId": "HomebaseNode:T4_Main_9F152D8C6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fz0z0-nxbu-5666ob-yi5r": { + "templateId": "HomebaseNode:T4_Main_20F255B61", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xi56h-6hi4-zp9yg0-b0vp": { + "templateId": "HomebaseNode:T4_Main_384F84F57", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8yteg-3bea-obz8fb-afxq": { + "templateId": "HomebaseNode:T4_Main_362079E30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "x37dq-xavl-bahgnk-wnum": { + "templateId": "HomebaseNode:T4_Main_111C734D0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mfgnm-zmoc-q0bd92-1kg6": { + "templateId": "HomebaseNode:T4_Main_22983E241", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "71ift-2tgb-g7fno0-9p6g": { + "templateId": "HomebaseNode:T4_Main_CD327EAA1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "elr1s-vk3u-sqss9s-kf0l": { + "templateId": "HomebaseNode:T4_Main_62BCC9A02", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wzex3-z0ga-2ldu1b-z6rv": { + "templateId": "HomebaseNode:T4_Main_B854D25D2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "60c80-blo2-tmzyue-xi01": { + "templateId": "HomebaseNode:T4_Main_D94772630", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kewar-tidx-o3g05n-qcs5": { + "templateId": "HomebaseNode:T4_Main_D1DA41AB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fml2l-qbkz-rfa4ch-83z3": { + "templateId": "HomebaseNode:T4_Main_49DF3CFD1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g2ng4-65zt-0suka4-n04h": { + "templateId": "HomebaseNode:T4_Main_65B1BCF51", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b0rcl-geif-u90g61-fu5l": { + "templateId": "HomebaseNode:T4_Main_72793BD96", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bpnib-hs6y-hmxdkf-70eq": { + "templateId": "HomebaseNode:T4_Main_94A92D3E7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4pl34-zak8-bs534q-dm70": { + "templateId": "HomebaseNode:T4_Main_7CD9FDA30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "e7wts-gy1r-lfyq2q-c8n1": { + "templateId": "HomebaseNode:T4_Main_908DD2BE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8yblz-k4iw-kzgdkb-mbrg": { + "templateId": "HomebaseNode:T4_Main_155A29BA1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5msip-6dh4-3gfla2-q10r": { + "templateId": "HomebaseNode:T4_Main_1FC4328C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ztxy9-ab62-q0iefg-r48p": { + "templateId": "HomebaseNode:T4_Main_13F4802B0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wx3b9-h9cw-3991tb-oqt2": { + "templateId": "HomebaseNode:T4_Main_A29F04970", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m5cnd-94fu-rc1gbu-e634": { + "templateId": "HomebaseNode:T4_Main_FFA3B8D60", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5nt76-2ibf-peqrhc-gvs8": { + "templateId": "HomebaseNode:T4_Main_C8A839111", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "imiyv-sklm-7lay5n-muus": { + "templateId": "HomebaseNode:T4_Main_BC0E6F120", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m4fmn-pld0-2uh2za-ui8e": { + "templateId": "HomebaseNode:T4_Main_FB88FBD52", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "y7sgl-nflh-91dd4u-t1lg": { + "templateId": "HomebaseNode:T4_Main_65A3A1DE2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "uefup-gzre-88e1k7-vivf": { + "templateId": "HomebaseNode:T4_Main_0C7672723", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gsdcv-r30b-ulh8px-iqav": { + "templateId": "HomebaseNode:T4_Main_02652EDE4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "optn8-zrxa-3w8iwc-zr0p": { + "templateId": "HomebaseNode:T4_Main_44036CC70", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "v3nmv-xo1h-0kexoz-tany": { + "templateId": "HomebaseNode:T4_Main_6572170A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "06yeo-l6sz-fphkp4-gni9": { + "templateId": "HomebaseNode:T4_Main_CED279315", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "y88qg-9dk1-uo7q4m-gg1b": { + "templateId": "HomebaseNode:T4_Main_152DB9C30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T4_Main_64CEDC561": { + "templateId": "HomebaseNode:T4_Main_64CEDC561", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T4_Main_EE2BC2321": { + "templateId": "HomebaseNode:T4_Main_EE2BC2321", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "T4_Main_BE19D3D22": { + "templateId": "HomebaseNode:T4_Main_BE19D3D22", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5tpek-4b8k-34vwd6-34m4": { + "templateId": "HomebaseNode:T4_Main_4B1D51060", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "05xxf-l5cr-5x5l3k-lsmr": { + "templateId": "HomebaseNode:T4_Main_0A5D56161", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hof3l-eqvk-3xnfbn-c21b": { + "templateId": "HomebaseNode:T4_Main_DC7E2B381", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vb4y9-t3w6-nb2vpz-kwfo": { + "templateId": "HomebaseNode:T4_Main_4EED13AE1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ydqic-ptyy-5xkd98-1o3o": { + "templateId": "HomebaseNode:T4_Main_170F375F1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ner2l-ehm8-qdkmir-k3on": { + "templateId": "HomebaseNode:T4_Main_140B284C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tup2v-58lh-fhpcee-v8xy": { + "templateId": "HomebaseNode:T4_Main_6CE978810", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h9igf-5k8s-t6zfpw-bs3k": { + "templateId": "HomebaseNode:T4_Main_6C92B3622", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ithl4-qzmn-wyxnl2-n2wg": { + "templateId": "HomebaseNode:T4_Main_FE1404BF2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b640o-zg4k-45ey9b-s0sf": { + "templateId": "HomebaseNode:T4_Main_33A623670", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kf3ln-rapc-h3oc3e-nosx": { + "templateId": "HomebaseNode:T4_Main_2C576F893", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "01txo-xw7y-ulhrw5-0cuc": { + "templateId": "HomebaseNode:T4_Main_9D72E3E50", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "imllp-x511-ea3e0s-blb3": { + "templateId": "HomebaseNode:T4_Main_A1A4F7617", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "w8ph2-cm1d-001fqc-hpoz": { + "templateId": "HomebaseNode:T4_Main_DA1126E08", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hx3t6-63ug-8542f2-w5k0": { + "templateId": "HomebaseNode:T4_Main_03BC55D00", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7w2dh-1m79-38luxd-p1do": { + "templateId": "HomebaseNode:T4_Main_6AD9A53A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2y73a-0f96-nux0kf-sio8": { + "templateId": "HomebaseNode:T4_Main_D9295A610", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "i683b-l9bu-kd40vk-royf": { + "templateId": "HomebaseNode:T4_Main_A07CCEFA0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "w03so-u2ip-nsevnz-r0o4": { + "templateId": "HomebaseNode:T4_Main_7003C8704", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "86gyc-1vn3-vzyos5-wud4": { + "templateId": "HomebaseNode:T4_Main_C1E85D7B4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8ggue-nibu-7nfuxw-6ara": { + "templateId": "HomebaseNode:T4_Main_66ADEDF16", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fym22-627n-w25acf-s2uq": { + "templateId": "HomebaseNode:T4_Main_146871B30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k580d-h7ht-zh0bk5-a41l": { + "templateId": "HomebaseNode:T4_Main_F0F851670", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h1hgb-gb0e-h0hhkg-a9m2": { + "templateId": "HomebaseNode:T4_Main_C6AE84EB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "oh3qv-1egf-u4oqo0-4hz6": { + "templateId": "HomebaseNode:T4_Main_2270189F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tte2w-ga19-gx5wsq-ons4": { + "templateId": "HomebaseNode:T4_Main_5DA04F861", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "v4kg0-zqr6-tc0yob-7c1g": { + "templateId": "HomebaseNode:T4_Main_7C7F5F5B1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pmdzb-5neh-z8vbbx-3zdk": { + "templateId": "HomebaseNode:T4_Main_95489EF50", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "clive-3vl0-i5qqzy-4k9x": { + "templateId": "HomebaseNode:T1_Research_7C7638680", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2rug8-te45-yg0svr-29aw": { + "templateId": "HomebaseNode:T2_Research_EA43FDB41", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "86cf9-q843-egatya-ws26": { + "templateId": "HomebaseNode:T2_Research_45306C490", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qksrx-79ft-cux2ie-it4d": { + "templateId": "HomebaseNode:T2_Research_794309E80", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dvvhk-ez47-ducc4d-quq5": { + "templateId": "HomebaseNode:T2_Research_8D3A925A1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9r24y-86wy-prxnqg-gu9o": { + "templateId": "HomebaseNode:T2_Research_DE7035662", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hnzeo-wh2b-ypgcvc-dbdh": { + "templateId": "HomebaseNode:T2_Research_BC4833EE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "svqmx-d4vx-k0zfob-inxs": { + "templateId": "HomebaseNode:T2_Research_CDC67FA60", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kfqvi-szlf-sf1f5v-1zaw": { + "templateId": "HomebaseNode:T2_Research_C90F99E71", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p9lvx-zxd2-s3mvgc-yk8p": { + "templateId": "HomebaseNode:T2_Research_EC48272D2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gvorf-4yyn-hem8gr-wb7s": { + "templateId": "HomebaseNode:T2_Research_EB75BBD01", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7g0as-flqq-ciqi5h-yqs4": { + "templateId": "HomebaseNode:T2_Research_49280C800", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m54qg-sq8s-47b5z1-nvyw": { + "templateId": "HomebaseNode:T2_Research_BA7B225B0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "74k7c-m1i5-txtgpk-gtv8": { + "templateId": "HomebaseNode:T2_Research_5F21793E0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g8wir-pkxd-me8hxq-5lo8": { + "templateId": "HomebaseNode:T2_Research_861D8EE12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8kzsx-303f-cqp89r-ekxc": { + "templateId": "HomebaseNode:T2_Research_4384865E3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tyrcb-i6ev-774so0-vb3c": { + "templateId": "HomebaseNode:T2_Research_69D354CA3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "50zl2-fnqc-w6i6xv-i44z": { + "templateId": "HomebaseNode:T2_Research_E31381504", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o5a12-uva8-yhu9r0-zyim": { + "templateId": "HomebaseNode:T2_Research_F583EED84", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "x8tbr-rl8q-vlh64r-phvm": { + "templateId": "HomebaseNode:T2_Research_676EA9075", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "odtng-0mo9-r1ekfb-yidl": { + "templateId": "HomebaseNode:T2_Research_EE4D092F5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g12cx-yikv-up1e6e-izd2": { + "templateId": "HomebaseNode:T2_Research_E29CC2D33", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4m58i-e9t0-xalhsq-d4se": { + "templateId": "HomebaseNode:T2_Research_8C57445F1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "340a9-dgh4-4qtc3x-pzmu": { + "templateId": "HomebaseNode:T2_Research_1986CE6E1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fidyt-97ch-r097c5-s0l7": { + "templateId": "HomebaseNode:T2_Research_DC6F1EE52", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mp4fy-ngef-qf7m23-s5nk": { + "templateId": "HomebaseNode:T2_Research_371F90623", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "41epp-7xeg-zhbmu7-hgl6": { + "templateId": "HomebaseNode:T2_Research_816377AF1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wtx25-sdsa-qco09b-0u0f": { + "templateId": "HomebaseNode:T2_Research_04F33FDD2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9o8sa-wqvp-ldek2w-3t1m": { + "templateId": "HomebaseNode:T2_Research_C4DCB3993", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sctvc-py7g-tcwyvs-g40z": { + "templateId": "HomebaseNode:T2_Research_ACF00FD11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rkdzx-r9e3-1ws82y-0x2o": { + "templateId": "HomebaseNode:T2_Research_D71CC3522", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "swzs2-zxre-g760mt-bows": { + "templateId": "HomebaseNode:T2_Research_15F1DC0B3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bs267-n4u2-it3m37-6gof": { + "templateId": "HomebaseNode:T2_Research_6C56AEA04", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "02uhb-7emr-k9h9ei-x5pu": { + "templateId": "HomebaseNode:T2_Research_00E5B7763", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h9ff3-9bz9-5ryl7b-5e6i": { + "templateId": "HomebaseNode:T2_Research_11FC257C5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3gx4x-mgo1-svvb2y-gptx": { + "templateId": "HomebaseNode:T2_Research_6C377C7B6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p58cv-xepo-e9q52b-94pc": { + "templateId": "HomebaseNode:T2_Research_941ABAAC5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xibbk-zmm6-m6de31-ism1": { + "templateId": "HomebaseNode:T2_Research_A0AF3E194", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vfilp-opqg-y18xsq-l39i": { + "templateId": "HomebaseNode:T2_Research_3AFD81BA3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1t22w-59z0-8x59sd-gy9n": { + "templateId": "HomebaseNode:T2_Research_5FB50D871", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "akdm8-pf2u-qed21w-veku": { + "templateId": "HomebaseNode:T2_Research_B3F93C620", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vf39r-h6po-s2gz8o-7cid": { + "templateId": "HomebaseNode:T2_Research_5D47FE190", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mkh8g-0rlc-xtsmbl-auq6": { + "templateId": "HomebaseNode:T2_Research_F8BDEEBB0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l7o1k-fxk9-1877m0-anso": { + "templateId": "HomebaseNode:T2_Research_C682FDD51", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mxr7a-7w8n-knpdgi-4706": { + "templateId": "HomebaseNode:T2_Research_81C6B0432", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "69erh-tef4-1t9lbi-080g": { + "templateId": "HomebaseNode:T2_Research_D74CAB422", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "946ov-56o9-awou2q-pauk": { + "templateId": "HomebaseNode:T2_Research_163260621", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "116p5-2qp7-gfuemq-xefr": { + "templateId": "HomebaseNode:T2_Research_72F6C6DE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "u4z4m-emuh-ofpf29-nzxv": { + "templateId": "HomebaseNode:T2_Research_EB4AF8030", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dhwbi-locq-cyihnt-8cmc": { + "templateId": "HomebaseNode:TRTrunk_2_1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "uou44-xk9n-efw7da-6yf4": { + "templateId": "HomebaseNode:TRTrunk_3_0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "54746-llpo-y7i9dw-kf8b": { + "result": "i ", + "attributes": { + "item_seen": true + }, + "templateId": "HomebaseNode:T3_Research_66AD113A1", + "quantity": 1 + }, + "rkswt-kx4o-7zwq8a-b89m": { + "templateId": "HomebaseNode:T3_Research_FE0BC1210", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "94czi-0x8q-fv2tfh-4o9a": { + "templateId": "HomebaseNode:T3_Research_AA1DA8210", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rbpra-8ngi-4illls-dkrv": { + "templateId": "HomebaseNode:T3_Research_A39241861", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "r3lb1-yi18-x8ucbi-wd8d": { + "templateId": "HomebaseNode:T3_Research_BF9440313", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "u1q4t-ou2g-f14n1h-80dt": { + "templateId": "HomebaseNode:T3_Research_B43852611", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vgt1h-1dgo-wqn0h8-umd2": { + "templateId": "HomebaseNode:T3_Research_2A7F438C2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wo01w-38q3-fsu6tz-h607": { + "templateId": "HomebaseNode:T3_Research_E8CB49191", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p3xra-u64t-y63eqx-cwv2": { + "templateId": "HomebaseNode:T3_Research_AEB9B0780", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "00l1d-fusb-lxdlqu-01bm": { + "templateId": "HomebaseNode:T3_Research_296889EA0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "grhl2-q9ss-fles03-vmab": { + "templateId": "HomebaseNode:T3_Research_C82820E21", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "eg1cp-p0zz-u6p6no-h22l": { + "templateId": "HomebaseNode:T3_Research_5D0CB6CF0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "147fg-szks-zpk86c-scvv": { + "templateId": "HomebaseNode:T3_Research_87634D530", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7wcri-l66m-1kbvwa-6vbn": { + "templateId": "HomebaseNode:T3_Research_9DAC24CC1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qna1g-m1sy-m9d6v5-95ol": { + "templateId": "HomebaseNode:T3_Research_9A55874D0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9ddaz-laqy-focout-00bh": { + "templateId": "HomebaseNode:T3_Research_A1E8D6A12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wud6g-dw14-3yca5z-y9at": { + "templateId": "HomebaseNode:T3_Research_62E106C43", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7dhbi-cb3a-0oh95u-guig": { + "templateId": "HomebaseNode:T3_Research_F48DE6842", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lpnxp-ptnw-psy029-t30m": { + "templateId": "HomebaseNode:T3_Research_3A1909AB4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3koy4-ib32-7s7wog-vcfe": { + "templateId": "HomebaseNode:T3_Research_CB48078A1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "y3kxs-ymun-2sor7e-nu67": { + "templateId": "HomebaseNode:T3_Research_6F0EF6CA5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "li09p-1id5-y9svgf-5p0a": { + "templateId": "HomebaseNode:T3_Research_57056E764", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k47dg-iwqu-3o9x08-68yz": { + "templateId": "HomebaseNode:T3_Research_9B20CC2A3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8ri3g-ne5m-ras0o7-3d8g": { + "templateId": "HomebaseNode:T3_Research_A7D38AEA4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9kcyr-0pek-0uvdzr-3b3y": { + "templateId": "HomebaseNode:T3_Research_8BCCB9037", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "s1p6f-7249-7n6p0g-lqu9": { + "templateId": "HomebaseNode:T3_Research_4ED9F84A6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "owgur-xd0o-rh2hd7-i26q": { + "templateId": "HomebaseNode:T3_Research_202D50112", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kx813-1b5s-3dbwq9-ab6p": { + "templateId": "HomebaseNode:T3_Research_0095DC2C3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "69he0-9fex-p4n1u2-kd4w": { + "templateId": "HomebaseNode:T3_Research_BA83CA3A3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "61qk8-0cn8-mmuduy-lni2": { + "templateId": "HomebaseNode:T3_Research_60B83C472", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4246a-oen3-4tqxde-40gt": { + "templateId": "HomebaseNode:T3_Research_CEBB3B219", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9h76u-503h-znwy90-pswn": { + "templateId": "HomebaseNode:T3_Research_EC3512538", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ms9zm-2mw1-vckr0f-imnl": { + "templateId": "HomebaseNode:T3_Research_DB4C9CF95", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xlbm6-i5ua-uereid-32hl": { + "templateId": "HomebaseNode:T3_Research_9DBEF7D52", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zhqyo-opno-oq5dtf-q2p5": { + "templateId": "HomebaseNode:T3_Research_72A6A9015", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dr6k7-z5mr-wv02vb-6xgy": { + "templateId": "HomebaseNode:T3_Research_A78DD3873", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vwst9-s3qq-6icalr-w4f3": { + "templateId": "HomebaseNode:T3_Research_4877E8553", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b1fi8-24t3-zh7q8g-3ucz": { + "templateId": "HomebaseNode:T3_Research_E920B5567", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "tuw79-a8t9-8v583q-9tmm": { + "templateId": "HomebaseNode:T3_Research_0AC5CCFD6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cqcem-ixyz-3s1795-kx87": { + "templateId": "HomebaseNode:T3_Research_97EE240B1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kxgdy-lto5-8gikxi-7k55": { + "templateId": "HomebaseNode:T3_Research_4898C79D3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "woyx7-w1qk-fh09pd-2o6b": { + "templateId": "HomebaseNode:T3_Research_DDCAA1041", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "eul2t-21i4-0klyqf-izmp": { + "templateId": "HomebaseNode:T3_Research_A3701B970", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xk3ne-fkky-cidfvw-ldnd": { + "templateId": "HomebaseNode:T3_Research_EF9604C70", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b9czy-9fw0-pdmy1h-5f50": { + "templateId": "HomebaseNode:T3_Research_868B67A00", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dynvm-i1pe-kb5652-nqua": { + "templateId": "HomebaseNode:T3_Research_2E0654DB1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yimv7-797k-fyd7hy-zmvi": { + "templateId": "HomebaseNode:T3_Research_3BBA74012", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "u9xr0-eczp-e5wh8y-lls5": { + "templateId": "HomebaseNode:T3_Research_244E0BAE1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wsc0l-nz9o-f1rp1i-yyzn": { + "templateId": "HomebaseNode:T3_Research_E63953BC2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nak49-hxmr-iqc908-id7p": { + "templateId": "HomebaseNode:T3_Research_CF78A5F20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g1gc5-1qzu-yeeh6g-sw99": { + "templateId": "HomebaseNode:T3_Research_2989E24E1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "q9mo8-olku-aubv0m-ueri": { + "templateId": "HomebaseNode:T3_Research_99D650340", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h7ixv-i6zi-morqdw-g5qh": { + "templateId": "HomebaseNode:T3_Research_877423D00", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3e0gb-gt1c-nrw952-9uoa": { + "templateId": "HomebaseNode:T3_Research_9B544A970", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "q8lyw-3dc4-q2avkf-vno5": { + "templateId": "HomebaseNode:T3_Research_E558C1F41", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9bkrz-ipqw-6x7mmy-hc9f": { + "templateId": "HomebaseNode:T3_Research_CF908A9F2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "n6fdf-xnr4-c7b0o1-1in7": { + "templateId": "HomebaseNode:T3_Research_86C896DF3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bq536-ywxu-i4sr1b-ppbt": { + "templateId": "HomebaseNode:T3_Research_24CDE2F34", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zgmln-f2ok-2yrzz5-2sf8": { + "templateId": "HomebaseNode:T3_Research_40DCA0BC1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vih3m-kdwz-s537wl-xd5h": { + "templateId": "HomebaseNode:T3_Research_88DDAFB05", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hg1f6-dq54-8a3z5x-z2wz": { + "templateId": "HomebaseNode:T3_Research_B708B4253", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "fz7ms-9bog-lhwlhm-8ipq": { + "templateId": "HomebaseNode:T3_Research_AF4DC7FB4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4ov4s-bez2-8qf2eu-fgdl": { + "templateId": "HomebaseNode:T3_Research_C60271AF5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "87636-6q7n-29sh3a-2882": { + "templateId": "HomebaseNode:T3_Research_BEB49E403", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "78gry-swl3-xghh75-qf5r": { + "templateId": "HomebaseNode:T3_Research_2066C9CE7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "em5xu-v7sg-qhia9l-t2c3": { + "templateId": "HomebaseNode:T3_Research_E1A249502", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "oghep-dpa9-56lbb4-ttzu": { + "templateId": "HomebaseNode:T3_Research_1EF0F9B86", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "a2tii-o4de-cigd55-biwk": { + "templateId": "HomebaseNode:T3_Research_18366F893", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3c99e-2kkn-pdopvn-d8gb": { + "templateId": "HomebaseNode:T3_Research_0356C8B05", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "q1z1a-axh5-i6hfas-ypok": { + "templateId": "HomebaseNode:T3_Research_8E5BF50B8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o6oq4-5lc9-7sk5q1-5x97": { + "templateId": "HomebaseNode:T3_Research_A2C489547", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "unglz-7r8d-ts4fvc-v5q9": { + "templateId": "HomebaseNode:T3_Research_6EF8FB684", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ukqp2-zh9d-5yh40a-wmp0": { + "templateId": "HomebaseNode:T3_Research_330E09826", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pzqix-word-lvt9t3-zq5h": { + "templateId": "HomebaseNode:T3_Research_F49975212", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dauyt-yg0f-1kx9gp-qbo6": { + "templateId": "HomebaseNode:T3_Research_EB7B4E453", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wtcbf-8u44-3c6g4g-hfa6": { + "templateId": "HomebaseNode:T3_Research_D3CC6C383", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "n1foq-y826-1woo1v-9p1x": { + "templateId": "HomebaseNode:T3_Research_9CDE36052", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4fcd2-iacq-on1lq8-lgkw": { + "templateId": "HomebaseNode:T3_Research_FCCD6F5F9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gsev0-y7q5-z5td63-n3ku": { + "templateId": "HomebaseNode:TRTrunk_3_1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "i3efy-v4ze-yz9llv-87q3": { + "templateId": "HomebaseNode:TRTrunk_4_0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "z6c79-oygc-5qqyah-589p": { + "templateId": "HomebaseNode:T4_Research_5D5DA3875", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dhy9m-e7gf-9oceuh-zu8s": { + "templateId": "HomebaseNode:T4_Research_3465FE4C4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "z0g02-rzb4-wqo2k1-4r3n": { + "templateId": "HomebaseNode:T4_Research_0DA1313B4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yiuhy-3t5r-lmd0vt-fcbw": { + "templateId": "HomebaseNode:T4_Research_F6FA2A943", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g075q-gmcv-3i0ilo-8psp": { + "templateId": "HomebaseNode:T4_Research_2C5E6CA32", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h3rt9-3sgw-wyxzit-iec8": { + "templateId": "HomebaseNode:T4_Research_05F0E3251", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4ei7s-uzis-y0rovb-w6o7": { + "templateId": "HomebaseNode:T4_Research_4ED905580", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "47f1f-wibs-a8uio0-19v8": { + "templateId": "HomebaseNode:T4_Research_806A452A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bm1on-chke-a7qzhc-k6uf": { + "templateId": "HomebaseNode:T4_Research_990FA7030", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6vodn-r8yi-hqb7dk-bnzh": { + "templateId": "HomebaseNode:T4_Research_FD6399601", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nd67g-blyz-tugy8b-5u4a": { + "templateId": "HomebaseNode:T4_Research_BEDE637C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "d6mz3-a5qp-q653tf-wnf0": { + "templateId": "HomebaseNode:T4_Research_6085AB582", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "s1bn5-7pvw-e1htnv-0xdq": { + "templateId": "HomebaseNode:T4_Research_1782F61F2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "94ku6-mxul-qyi5b5-2ofr": { + "templateId": "HomebaseNode:T4_Research_87BC668A3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7so7h-5g3r-s5logd-dllu": { + "templateId": "HomebaseNode:T4_Research_7C66E51A3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "092sr-f82m-rv18rv-y67i": { + "templateId": "HomebaseNode:T4_Research_0AF63DBB1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "r4l9z-s50z-01upzb-oqui": { + "templateId": "HomebaseNode:T4_Research_7A19BC553", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1um3a-pthq-hpo42t-oroc": { + "templateId": "HomebaseNode:T4_Research_D8DF26F42", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "6v37o-ot7y-3ui9qz-v55n": { + "templateId": "HomebaseNode:T4_Research_DF4C1EB61", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "z40eh-nsp8-7gn2ia-xxyh": { + "templateId": "HomebaseNode:T4_Research_1F3130D74", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qnvp1-vdv5-q33deq-i2uu": { + "templateId": "HomebaseNode:T4_Research_24ECB6ED0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mh3qn-s9bc-whwdyq-g4ff": { + "templateId": "HomebaseNode:T4_Research_6970CA911", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9iruz-vl3y-lh212w-06cp": { + "templateId": "HomebaseNode:T4_Research_6950520A0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ng35z-kf35-2f257m-7uwg": { + "templateId": "HomebaseNode:T4_Research_0002FFCE0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ihp15-bzq1-0fvcmr-cpe8": { + "templateId": "HomebaseNode:T4_Research_ADE43EB42", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lgtn3-xyf8-boznxt-hw79": { + "templateId": "HomebaseNode:T4_Research_CF5201C53", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9fnla-e5tu-rpkxv5-ms38": { + "templateId": "HomebaseNode:T4_Research_A442E02E5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "b8i5u-lnhz-f34mcu-8vct": { + "templateId": "HomebaseNode:T4_Research_C498D7916", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m2n7o-s0qa-q9pwv7-io9z": { + "templateId": "HomebaseNode:T4_Research_949685757", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qapra-m8ym-bamh2w-dnq2": { + "templateId": "HomebaseNode:T4_Research_5B2432E08", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pmt1z-zk1m-l4ucs9-3ihx": { + "templateId": "HomebaseNode:T4_Research_C03156729", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wd726-5nlr-fk25dk-z9kx": { + "templateId": "HomebaseNode:T4_Research_86EA19CB10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zx9mn-urcx-blheml-navy": { + "templateId": "HomebaseNode:T4_Research_8A5CB4BD4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "p3uo6-2acs-uh11ls-q3bw": { + "templateId": "HomebaseNode:T4_Research_2AC5DFFE2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8sbi7-91xi-sh65bi-39xq": { + "templateId": "HomebaseNode:T4_Research_96FCF31F4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "81yiq-s9n3-cq07ot-6ppv": { + "templateId": "HomebaseNode:T4_Research_62F4D4C75", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xkm9y-xvok-tlnrmu-qpbw": { + "templateId": "HomebaseNode:T4_Research_E4F5B7D33", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4zoi0-t6b5-yhwel5-fdro": { + "templateId": "HomebaseNode:T4_Research_6E74626D6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k66ys-xbte-mtwmlp-ux3r": { + "templateId": "HomebaseNode:T4_Research_EE28E1455", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dxusm-rcvm-3cyk48-rzkn": { + "templateId": "HomebaseNode:T4_Research_D9B9ACC97", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nktpn-m3s8-yxbxv0-gd9l": { + "templateId": "HomebaseNode:T4_Research_85834F016", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "v9ibo-4vci-f1gzct-ez1n": { + "templateId": "HomebaseNode:T4_Research_2D3408466", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ronzt-0vib-9l4efw-eufa": { + "templateId": "HomebaseNode:T4_Research_D39889354", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bc7vp-wv3i-wgx9yi-8kyg": { + "templateId": "HomebaseNode:T4_Research_CB52ED2E6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "x4563-kcu3-bwc7xv-r73u": { + "templateId": "HomebaseNode:T4_Research_B794A99C7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o2rho-oq7y-g8kfef-w9qz": { + "templateId": "HomebaseNode:T4_Research_E68B273F8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cgw3b-ndct-whttob-zdif": { + "templateId": "HomebaseNode:T4_Research_E122D94B8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f1ai8-zdta-3u9d7d-h0uk": { + "templateId": "HomebaseNode:T4_Research_92602BB17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5etki-zp7u-u91p24-6kk4": { + "templateId": "HomebaseNode:T4_Research_D59F481A7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "pzp2l-620k-atxfan-sw2d": { + "templateId": "HomebaseNode:T4_Research_08E6699F8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sav9u-wcm7-1whruo-dl2s": { + "templateId": "HomebaseNode:T4_Research_57F9B1498", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "t4ias-35ks-nxbdf5-svyd": { + "templateId": "HomebaseNode:T4_Research_866E34969", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "eem4p-edu7-iq65vn-5fp9": { + "templateId": "HomebaseNode:T4_Research_FBC54B5110", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "uogpd-tebu-910xxs-4e9x": { + "templateId": "HomebaseNode:T4_Research_C2263DD311", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ibaro-gly9-4eartn-do9v": { + "templateId": "HomebaseNode:T4_Research_85880B7A9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "l0n07-aqpt-wo2p4b-f5nt": { + "templateId": "HomebaseNode:T4_Research_29AB3FAD9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "77g0q-gapp-3p2fl0-6gmv": { + "templateId": "HomebaseNode:T4_Research_C510196D5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3kzcx-yzfx-l4nbab-3dbo": { + "templateId": "HomebaseNode:T4_Research_77B7B7E021", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9159y-wcz7-kvybad-w9wl": { + "templateId": "HomebaseNode:T4_Research_FBD13E0B20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "31v8p-l35d-vrb2yk-80w2": { + "templateId": "HomebaseNode:T4_Research_8C4FF2FF9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4bxvr-u3t1-dvlsic-n978": { + "templateId": "HomebaseNode:T4_Research_9041558119", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "co0bw-p2i4-gt7ioa-fdmm": { + "templateId": "HomebaseNode:T4_Research_50AD3C3A18", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "sf959-7t5e-kev2nb-rm3x": { + "templateId": "HomebaseNode:T4_Research_BD65896217", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "rl6c0-wfzn-3myuey-6twr": { + "templateId": "HomebaseNode:T4_Research_6DE82BE116", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dmbie-f3fo-8u76as-2hrr": { + "templateId": "HomebaseNode:T4_Research_1A3360F815", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "am5ml-mzs6-dyqmp3-qg4c": { + "templateId": "HomebaseNode:T4_Research_5B05F0CD14", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "g2lpm-zqcf-qoe0b8-q74m": { + "templateId": "HomebaseNode:T4_Research_143D055A13", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ntx70-406h-nb657i-ii91": { + "templateId": "HomebaseNode:T4_Research_4B2B314212", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "n4669-w7ka-qauyko-g9yw": { + "templateId": "HomebaseNode:T4_Research_60BECF5C11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "qghw4-bilg-nzhqlk-p2zu": { + "templateId": "HomebaseNode:T4_Research_FFBEB25A5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "7u5as-ay06-w6d886-t353": { + "templateId": "HomebaseNode:T4_Research_9F67DB025", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kd9oz-rid1-ldky8v-p6mg": { + "templateId": "HomebaseNode:T4_Research_DCF7D2104", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hga4r-ky0d-ufy4th-e8qv": { + "templateId": "HomebaseNode:T4_Research_D469F49D4", + "attributes": { + "item_seen": true + }, + "sequence": " n", + "quantity": 1 + }, + "2oybe-0uym-vtvtao-1czc": { + "templateId": "HomebaseNode:T4_Research_0B4E2EB53", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bsf0w-uxcr-mtvsyd-apz7": { + "templateId": "HomebaseNode:T4_Research_B0CBC67F2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k5mxg-oc2l-mgif8p-yzyl": { + "templateId": "HomebaseNode:T4_Research_297CF12B1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9nc1i-0cwx-n3frpn-u2mh": { + "templateId": "HomebaseNode:T4_Research_D178232F0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "a9avo-md0y-fwc1sw-1qr0": { + "templateId": "HomebaseNode:T4_Research_143A1B010", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "5a2g0-5g2q-o9ffkf-63cl": { + "templateId": "HomebaseNode:T4_Research_4CB258320", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lx0ut-6vly-dk4d1o-0smy": { + "templateId": "HomebaseNode:T4_Research_4D72E54C1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gea56-xs4q-zl3lhi-upfz": { + "templateId": "HomebaseNode:T4_Research_6D8F7DAB2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "64q3z-hm55-cqthd7-c1z8": { + "templateId": "HomebaseNode:T4_Research_800C36E52", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ibnef-m4qq-1mo8a1-08u4": { + "templateId": "HomebaseNode:T4_Research_7DE649371", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vnas6-k6kz-h6k9bv-ftwa": { + "templateId": "HomebaseNode:T4_Research_6C012B1E3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "m7cfr-5piw-nk7i6d-ifli": { + "templateId": "HomebaseNode:T4_Research_66A77BD23", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "vgfuc-shn1-h3akd4-pw1z": { + "templateId": "HomebaseNode:T4_Research_42B6496F1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "821ha-g1ky-taoe0h-9law": { + "templateId": "HomebaseNode:T4_Research_F1D475263", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "onw7y-u2ka-405kyo-35k3": { + "templateId": "HomebaseNode:T4_Research_A901DFFE2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h2q36-hdvm-7kdmlb-38p0": { + "templateId": "HomebaseNode:T4_Research_37206D211", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "lzgxu-mv55-czo4b8-e86q": { + "templateId": "HomebaseNode:T4_Research_478935174", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2asii-i3fr-54scpa-5is9": { + "templateId": "HomebaseNode:T4_Research_FD9A30F10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o93gh-fhra-9apnpn-r1yg": { + "templateId": "HomebaseNode:T4_Research_B01AE71C0", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ir5w7-thak-srxfp8-qqkg": { + "templateId": "HomebaseNode:T4_Research_8C0D8B320", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "f13fz-lftm-ohatu1-r9c2": { + "templateId": "HomebaseNode:T4_Research_5D2134621", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dxchd-mwsb-3u429p-69xn": { + "templateId": "HomebaseNode:T4_Research_7C9260F62", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "derik-y6ex-ehcm6r-lgli": { + "templateId": "HomebaseNode:T4_Research_424AF64A3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "uav52-ilz9-bd3502-bl8e": { + "templateId": "HomebaseNode:T4_Research_7ADDBB805", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "r55ha-3e8c-smch3f-ff8m": { + "templateId": "HomebaseNode:T4_Research_FBBD71C96", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "moyop-fosv-c696tu-9025": { + "templateId": "HomebaseNode:T4_Research_30C626C17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "v2pbg-b2br-qfmdlu-t6s0": { + "templateId": "HomebaseNode:T4_Research_6421FCAF8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "uudcl-yxll-580rni-9ot2": { + "templateId": "HomebaseNode:T4_Research_E5101A759", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1twyx-cp8b-5yvrvy-4tdp": { + "templateId": "HomebaseNode:T4_Research_41ED22CE10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "0hsw6-i62h-v3kaku-8bt1": { + "templateId": "HomebaseNode:T4_Research_4C1080774", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "wcp41-8q0l-g7hg83-tl9d": { + "templateId": "HomebaseNode:T4_Research_108DCEC92", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "x8taa-fv3t-1i7ufb-bzkg": { + "templateId": "HomebaseNode:T4_Research_F31044D14", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8wqut-0vs7-2bq5df-e4vt": { + "templateId": "HomebaseNode:T4_Research_C858E35A5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "zsehb-5hy0-59a8tn-a2qr": { + "templateId": "HomebaseNode:T4_Research_468E857A6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2tkd9-7uxh-vuvefi-x6y0": { + "templateId": "HomebaseNode:T4_Research_0BEE01B35", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "1ucl0-6cww-is3cwa-m85m": { + "templateId": "HomebaseNode:T4_Research_040079B07", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "3x9un-e3au-8wi3lb-4aat": { + "templateId": "HomebaseNode:T4_Research_1ACFC7918", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "kbxff-5yym-pgmryo-opdz": { + "templateId": "HomebaseNode:T4_Research_8EBF80409", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "4xcgg-lbsw-46v083-9568": { + "templateId": "HomebaseNode:T4_Research_303E53CC10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "d9167-wxnn-xzuuqt-eyp1": { + "templateId": "HomebaseNode:T4_Research_BDE783F111", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "s1wx6-oqpu-stcsve-yxg5": { + "templateId": "HomebaseNode:T4_Research_36CF54759", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "k4u5x-1t6e-p859in-1aia": { + "templateId": "HomebaseNode:T4_Research_E4CA598F8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "w8upv-ne1r-pa1hns-l0i3": { + "templateId": "HomebaseNode:T4_Research_34B078C57", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ne5w6-mx52-pt4d22-dnf6": { + "templateId": "HomebaseNode:T4_Research_EA348B7E6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dpfx8-caf6-m9sryo-xw7r": { + "templateId": "HomebaseNode:T4_Research_4857FFC06", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hqf03-z1d8-6ukopt-b9lh": { + "templateId": "HomebaseNode:T4_Research_8006526C4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "n6x7w-4k6m-19bi46-9and": { + "templateId": "HomebaseNode:T4_Research_9509CDBC7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "nhoel-yce5-3ucnh7-nmrd": { + "templateId": "HomebaseNode:T4_Research_CED5C91E8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "2tb57-obmz-0hpewm-p2o0": { + "templateId": "HomebaseNode:T4_Research_7A4057E95", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "i920v-tdhu-cm2nug-m7rc": { + "templateId": "HomebaseNode:T4_Research_E5B708AC9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "h5ans-ehe7-grv8q9-1po4": { + "templateId": "HomebaseNode:T4_Research_A22C720C9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "yf351-9762-uxiiwl-1st9": { + "templateId": "HomebaseNode:T4_Research_B406B19221", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bzmda-cz3g-nevisl-1i99": { + "templateId": "HomebaseNode:T4_Research_93FB640920", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "o17ey-t4wu-m3rg40-eg5d": { + "templateId": "HomebaseNode:T4_Research_C6AC6DCD19", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "i2gao-ltvh-de80st-qwzp": { + "templateId": "HomebaseNode:T4_Research_BD62253618", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "liu84-mci5-tub8nv-uvr7": { + "templateId": "HomebaseNode:T4_Research_4F0BF50F17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "mmocw-79qq-1ik958-izqp": { + "templateId": "HomebaseNode:T4_Research_E5F6B93D8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "8muc2-ym4b-syn85d-930n": { + "templateId": "HomebaseNode:T4_Research_51BA89697", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "cthsl-12gd-ygc9nh-46ip": { + "templateId": "HomebaseNode:T4_Research_7BE60D1F6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "9bncx-olpv-wx3hc2-94uk": { + "templateId": "HomebaseNode:T4_Research_E05201F55", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "gnr7r-mh46-h0qr86-s2i2": { + "templateId": "HomebaseNode:T4_Research_67582B143", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "0a20t-4eu1-fcazfi-07un": { + "templateId": "HomebaseNode:T4_Research_EC61C87B11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "dfivx-01ri-4m9h2o-dk6s": { + "templateId": "HomebaseNode:T4_Research_A10A422F12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "xah4p-rcwx-0yciok-nxup": { + "templateId": "HomebaseNode:T4_Research_F956124D13", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "s1key-irlr-ubdtex-odmb": { + "templateId": "HomebaseNode:T4_Research_4E145E6814", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "du7b8-dof9-wuzb8r-z455": { + "templateId": "HomebaseNode:T4_Research_0E591BA215", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "hm7o8-za5p-23tbbr-d70v": { + "templateId": "HomebaseNode:T4_Research_822B8CA716", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "EMTSquad-ManagerDoctor_SR_kingsly_T05": { + "templateId": "Worker:ManagerDoctor_SR_kingsly_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Doctor-kingsly.IconDef-ManagerPortrait-SR-Doctor-kingsly", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "EMTSquad1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "EMTSquad2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "EMTSquad3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "EMTSquad4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "EMTSquad5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "EMTSquad6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "EMTSquad7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_EMTSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha-ManagerSoldier_SR_malcolm_T05": { + "templateId": "Worker:ManagerSoldier_SR_malcolm_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Soldier-malcolm.IconDef-ManagerPortrait-SR-Soldier-malcolm", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "FireTeamAlpha1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "FireTeamAlpha7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_FireTeamAlpha", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers-ManagerGadgeteer_SR_fixer_T05": { + "templateId": "Worker:ManagerGadgeteer_SR_fixer_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Gadgeteer-fixer.IconDef-ManagerPortrait-SR-Gadgeteer-fixer", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Gadgeteers1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Gadgeteers7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_Gadgeteers", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering-ManagerEngineer_SR_countess_T05": { + "templateId": "Worker:ManagerEngineer_SR_countess_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Engineer-countess.IconDef-ManagerPortrait-SR-Engineer-countess", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "CorpsOfEngineering1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CorpsOfEngineering7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "slotted_building_id": "S ", + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_CorpsofEngineering", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam-ManagerTrainer_SR_raider_T05": { + "templateId": "Worker:ManagerTrainer_SR_raider_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-PersonalTrainer-raider.IconDef-ManagerPortrait-SR-PersonalTrainer-raider", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "TrainingTeam1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TrainingTeam7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Medicine_TrainingTeam", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad-ManagerMartialArtist_SR_dragon_T05": { + "templateId": "Worker:ManagerMartialArtist_SR_dragon_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-MartialArtist-dragon.IconDef-ManagerPortrait-SR-MartialArtist-dragon", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "CloseAssaultSquad1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "CloseAssaultSquad7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Arms_CloseAssaultSquad", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty-ManagerExplorer_SR_birdie_T05": { + "templateId": "Worker:ManagerExplorer_SR_birdie_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Explorer-birdie.IconDef-ManagerPortrait-SR-Explorer-birdie", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "ScoutingParty1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "ScoutingParty7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Scavenging_ScoutingParty", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank-ManagerInventor_SR_frequency_T05": { + "templateId": "Worker:ManagerInventor_SR_frequency_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 0, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Inventor-frequency.IconDef-ManagerPortrait-SR-Inventor-frequency", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "managerSynergy": "Homebase.Manager.IsTrainer", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "TheThinkTank1-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank2-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 2, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank3-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 3, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank4-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 4, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank5-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 5, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank6-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 6, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "TheThinkTank7-WorkerBasic_SR_T05": { + "templateId": "Worker:WorkerBasic_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 7, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "max_level_bonus": 0, + "squad_id": "Squad_Attribute_Synthesis_TheThinkTank", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Hero:HID_Commando_XBOX_VR_T05": { + "templateId": "Hero:HID_Commando_XBOX_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_XBOX_SR_T05": { + "templateId": "Hero:HID_Commando_XBOX_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_XBOX_R_T04": { + "templateId": "Hero:HID_Commando_XBOX_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_Sony_VR_T05": { + "templateId": "Hero:HID_Commando_Sony_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_Sony_SR_T05": { + "templateId": "Hero:HID_Commando_Sony_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_Sony_R_T04": { + "templateId": "Hero:HID_Commando_Sony_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_ShockDamage_VR_T05": { + "templateId": "Hero:HID_Commando_ShockDamage_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_ShockDamage_SR_T05": { + "templateId": "Hero:HID_Commando_ShockDamage_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_ShockDamage_R_T04": { + "templateId": "Hero:HID_Commando_ShockDamage_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunTough_VR_T05": { + "templateId": "Hero:HID_Commando_GunTough_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunTough_UC_T03": { + "templateId": "Hero:HID_Commando_GunTough_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunTough_SR_T05": { + "templateId": "Hero:HID_Commando_GunTough_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunTough_R_T04": { + "templateId": "Hero:HID_Commando_GunTough_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunHeadshotHW_VR_T05": { + "templateId": "Hero:HID_Commando_GunHeadshotHW_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunHeadshotHW_SR_T05": { + "templateId": "Hero:HID_Commando_GunHeadshotHW_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunHeadshot_VR_T05": { + "templateId": "Hero:HID_Commando_GunHeadshot_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "squad_id": " e", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunHeadshot_SR_T05": { + "templateId": "Hero:HID_Commando_GunHeadshot_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GrenadeMaster_SR_T05": { + "templateId": "Hero:HID_Commando_GrenadeMaster_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GrenadeGun_VR_T05": { + "templateId": "Hero:HID_Commando_GrenadeGun_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GrenadeGun_SR_T05": { + "templateId": "Hero:HID_Commando_GrenadeGun_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": 0, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "Squad_Combat_AdventureSquadOne", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GrenadeGun_UC_T03": { + "templateId": "Hero:HID_Commando_GrenadeGun_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GrenadeGun_R_T04": { + "templateId": "Hero:HID_Commando_GrenadeGun_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GCGrenade_VR_T05": { + "templateId": "Hero:HID_Commando_GCGrenade_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GCGrenade_SR_T05": { + "templateId": "Hero:HID_Commando_GCGrenade_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GCGrenade_R_T04": { + "templateId": "Hero:HID_Commando_GCGrenade_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_013_VR_T05": { + "templateId": "Hero:HID_Commando_013_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_013_SR_T05": { + "templateId": "Hero:HID_Commando_013_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_013_R_T04": { + "templateId": "Hero:HID_Commando_013_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_012_SR_T05": { + "templateId": "Hero:HID_Commando_012_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_011_VR_T05": { + "templateId": "Hero:HID_Commando_011_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_011_UC_T03": { + "templateId": "Hero:HID_Commando_011_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_011_SR_T05": { + "templateId": "Hero:HID_Commando_011_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_011_R_T04": { + "templateId": "Hero:HID_Commando_011_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_011_M_SR_T05": { + "templateId": "Hero:HID_Commando_011_M_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_010_VR_T05": { + "templateId": "Hero:HID_Commando_010_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_010_SR_T05": { + "templateId": "Hero:HID_Commando_010_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_009_VR_T05": { + "templateId": "Hero:HID_Commando_009_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_009_SR_T05": { + "templateId": "Hero:HID_Commando_009_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_009_R_T04": { + "templateId": "Hero:HID_Commando_009_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_009_M_VR_T05": { + "templateId": "Hero:HID_Commando_009_M_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_009_M_SR_T05": { + "templateId": "Hero:HID_Commando_009_M_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_009_M_R_T04": { + "templateId": "Hero:HID_Commando_009_M_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_008_VR_T05": { + "templateId": "Hero:HID_Commando_008_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_008_SR_T05": { + "templateId": "Hero:HID_Commando_008_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_008_R_T04": { + "templateId": "Hero:HID_Commando_008_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_008_FoundersF_SR_T05": { + "templateId": "Hero:HID_Commando_008_FoundersF_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_008_FoundersM_SR_T05": { + "templateId": "Hero:HID_Commando_008_FoundersM_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_007HW_VR_T05": { + "templateId": "Hero:HID_Commando_007HW_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_007HW_SR_T05": { + "templateId": "Hero:HID_Commando_007HW_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_007_VR_T05": { + "templateId": "Hero:HID_Commando_007_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_007_UC_T03": { + "templateId": "Hero:HID_Commando_007_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "mode_loadouts": [], + "xp": 0, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_007_SR_T05": { + "templateId": "Hero:HID_Commando_007_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_007_R_T04": { + "templateId": "Hero:HID_Commando_007_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "refund_legacy_item": "r ", + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_013_StPatricks_F_V1_SR_T05": { + "templateId": "Hero:HID_Commando_013_StPatricks_F_V1_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_013_StPatricks_F_V2_SR_T05": { + "templateId": "Hero:HID_Commando_013_StPatricks_F_V2_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_013_StPatricks_M_SR_T05": { + "templateId": "Hero:HID_Commando_013_StPatricks_M_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_014_M_SR_T05": { + "templateId": "Hero:HID_Commando_014_M_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_014_R_T04": { + "templateId": "Hero:HID_Commando_014_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_014_SR_T05": { + "templateId": "Hero:HID_Commando_014_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_014_VR_T05": { + "templateId": "Hero:HID_Commando_014_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_014_Wukong_SR_T05": { + "templateId": "Hero:HID_Commando_014_Wukong_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GCGrenade_T_SR_T05": { + "templateId": "Hero:HID_Commando_GCGrenade_T_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GCGrenade_T_VR_T05": { + "templateId": "Hero:HID_Commando_GCGrenade_T_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GrenadeGun_M_T_SR_T05": { + "templateId": "Hero:HID_Commando_GrenadeGun_M_T_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunHeadShot_Starter_M_SR_T05": { + "templateId": "Hero:HID_Commando_GunHeadShot_Starter_M_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_GunTough_Valentine_SR_T05": { + "templateId": "Hero:HID_Commando_GunTough_Valentine_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_XBOX_VR_T05": { + "templateId": "Hero:HID_Constructor_XBOX_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_XBOX_SR_T05": { + "templateId": "Hero:HID_Constructor_XBOX_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_XBOX_R_T04": { + "templateId": "Hero:HID_Constructor_XBOX_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_Sony_VR_T05": { + "templateId": "Hero:HID_Constructor_Sony_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_Sony_SR_T05": { + "templateId": "Hero:HID_Constructor_Sony_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_Sony_R_T04": { + "templateId": "Hero:HID_Constructor_Sony_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_RushBASE_VR_T05": { + "templateId": "Hero:HID_Constructor_RushBASE_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_RushBASE_UC_T03": { + "templateId": "Hero:HID_Constructor_RushBASE_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_RushBASE_SR_T05": { + "templateId": "Hero:HID_Constructor_RushBASE_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_RushBASE_R_T04": { + "templateId": "Hero:HID_Constructor_RushBASE_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_RushBASE_F_VR_T05": { + "templateId": "Hero:HID_Constructor_RushBASE_F_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_RushBASE_F_SR_T05": { + "templateId": "Hero:HID_Constructor_RushBASE_F_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_PlasmaDamage_VR_T05": { + "templateId": "Hero:HID_Constructor_PlasmaDamage_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_PlasmaDamage_SR_T05": { + "templateId": "Hero:HID_Constructor_PlasmaDamage_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_PlasmaDamage_R_T04": { + "templateId": "Hero:HID_Constructor_PlasmaDamage_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_HammerTank_VR_T05": { + "templateId": "Hero:HID_Constructor_HammerTank_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_HammerTank_UC_T03": { + "templateId": "Hero:HID_Constructor_HammerTank_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_HammerTank_SR_T05": { + "templateId": "Hero:HID_Constructor_HammerTank_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_HammerTank_R_T04": { + "templateId": "Hero:HID_Constructor_HammerTank_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_HammerPlasma_VR_T05": { + "templateId": "Hero:HID_Constructor_HammerPlasma_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_HammerPlasma_SR_T05": { + "templateId": "Hero:HID_Constructor_HammerPlasma_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_BaseHyperHW_VR_T05": { + "templateId": "Hero:HID_Constructor_BaseHyperHW_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_BaseHyperHW_SR_T05": { + "templateId": "Hero:HID_Constructor_BaseHyperHW_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_BaseHyper_VR_T05": { + "templateId": "Hero:HID_Constructor_BaseHyper_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "clipSizeScale": " v", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_BaseHyper_SR_T05": { + "templateId": "Hero:HID_Constructor_BaseHyper_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_BaseHyper_R_T04": { + "templateId": "Hero:HID_Constructor_BaseHyper_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_BASEBig_SR_T05": { + "templateId": "Hero:HID_Constructor_BASEBig_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_013_VR_T05": { + "templateId": "Hero:HID_Constructor_013_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_013_UC_T03": { + "templateId": "Hero:HID_Constructor_013_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_013_SR_T05": { + "templateId": "Hero:HID_Constructor_013_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_013_R_T04": { + "templateId": "Hero:HID_Constructor_013_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_011_VR_T05": { + "templateId": "Hero:HID_Constructor_011_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_011_SR_T05": { + "templateId": "Hero:HID_Constructor_011_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_011_R_T04": { + "templateId": "Hero:HID_Constructor_011_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_010_VR_T05": { + "templateId": "Hero:HID_Constructor_010_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_010_SR_T05": { + "templateId": "Hero:HID_Constructor_010_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_009_VR_T05": { + "templateId": "Hero:HID_Constructor_009_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_009_SR_T05": { + "templateId": "Hero:HID_Constructor_009_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_009_R_T04": { + "templateId": "Hero:HID_Constructor_009_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_008_VR_T05": { + "templateId": "Hero:HID_Constructor_008_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_008_SR_T05": { + "templateId": "Hero:HID_Constructor_008_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_008_R_T04": { + "templateId": "Hero:HID_Constructor_008_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_008_FoundersM_SR_T05": { + "templateId": "Hero:HID_Constructor_008_FoundersM_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_008_FoundersF_SR_T05": { + "templateId": "Hero:HID_Constructor_008_FoundersF_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_007HW_VR_T05": { + "templateId": "Hero:HID_Constructor_007HW_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_007HW_SR_T05": { + "templateId": "Hero:HID_Constructor_007HW_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_007_VR_T05": { + "templateId": "Hero:HID_Constructor_007_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_007_UC_T03": { + "templateId": "Hero:HID_Constructor_007_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_007_SR_T05": { + "templateId": "Hero:HID_Constructor_007_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_007_R_T04": { + "templateId": "Hero:HID_Constructor_007_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_014_F_SR_T05": { + "templateId": "Hero:HID_Constructor_014_F_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_014_R_T04": { + "templateId": "Hero:HID_Constructor_014_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_014_SR_T05": { + "templateId": "Hero:HID_Constructor_014_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_014_VR_T05": { + "templateId": "Hero:HID_Constructor_014_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_PlasmaDamage_Easter_SR_T05": { + "templateId": "Hero:HID_Constructor_PlasmaDamage_Easter_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_XBOX_VR_T05": { + "templateId": "Hero:HID_Ninja_XBOX_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_XBOX_SR_T05": { + "templateId": "Hero:HID_Ninja_XBOX_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_XBOX_R_T04": { + "templateId": "Hero:HID_Ninja_XBOX_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_Swordmaster_SR_T05": { + "templateId": "Hero:HID_Ninja_Swordmaster_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsRainHW_VR_T05": { + "templateId": "Hero:HID_Ninja_StarsRainHW_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsRainHW_SR_T05": { + "templateId": "Hero:HID_Ninja_StarsRainHW_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "instance_id": "e ", + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsRain_VR_T05": { + "templateId": "Hero:HID_Ninja_StarsRain_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsRain_SR_T05": { + "templateId": "Hero:HID_Ninja_StarsRain_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsAssassin_VR_T05": { + "templateId": "Hero:HID_Ninja_StarsAssassin_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsAssassin_UC_T03": { + "templateId": "Hero:HID_Ninja_StarsAssassin_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsAssassin_SR_T05": { + "templateId": "Hero:HID_Ninja_StarsAssassin_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsAssassin_R_T04": { + "templateId": "Hero:HID_Ninja_StarsAssassin_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsAssassin_FoundersM_SR_T05": { + "templateId": "Hero:HID_Ninja_StarsAssassin_FoundersM_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_StarsAssassin_FoundersF_SR_T05": { + "templateId": "Hero:HID_Ninja_StarsAssassin_FoundersF_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_Sony_VR_T05": { + "templateId": "Hero:HID_Ninja_Sony_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_Sony_SR_T05": { + "templateId": "Hero:HID_Ninja_Sony_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_Sony_R_T04": { + "templateId": "Hero:HID_Ninja_Sony_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SmokeDimMak_VR_T05": { + "templateId": "Hero:HID_Ninja_SmokeDimMak_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SmokeDimMak_SR_T05": { + "templateId": "Hero:HID_Ninja_SmokeDimMak_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SmokeDimMak_R_T04": { + "templateId": "Hero:HID_Ninja_SmokeDimMak_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashTail_VR_T05": { + "templateId": "Hero:HID_Ninja_SlashTail_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashTail_UC_T03": { + "templateId": "Hero:HID_Ninja_SlashTail_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashTail_SR_T05": { + "templateId": "Hero:HID_Ninja_SlashTail_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashTail_R_T04": { + "templateId": "Hero:HID_Ninja_SlashTail_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashBreathHW_VR_T05": { + "templateId": "Hero:HID_Ninja_SlashBreathHW_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashBreathHW_SR_T05": { + "templateId": "Hero:HID_Ninja_SlashBreathHW_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashBreath_VR_T05": { + "templateId": "Hero:HID_Ninja_SlashBreath_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashBreath_SR_T05": { + "templateId": "Hero:HID_Ninja_SlashBreath_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_SlashBreath_R_T04": { + "templateId": "Hero:HID_Ninja_SlashBreath_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_013_VR_T05": { + "templateId": "Hero:HID_Ninja_013_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_013_SR_T05": { + "templateId": "Hero:HID_Ninja_013_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_013_R_T04": { + "templateId": "Hero:HID_Ninja_013_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_011_VR_T05": { + "templateId": "Hero:HID_Ninja_011_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_011_SR_T05": { + "templateId": "Hero:HID_Ninja_011_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_011_R_T04": { + "templateId": "Hero:HID_Ninja_011_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_010_VR_T05": { + "templateId": "Hero:HID_Ninja_010_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_010_SR_T05": { + "templateId": "Hero:HID_Ninja_010_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_010_F_VR_T05": { + "templateId": "Hero:HID_Ninja_010_F_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_010_F_SR_T05": { + "templateId": "Hero:HID_Ninja_010_F_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_009_VR_T05": { + "templateId": "Hero:HID_Ninja_009_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_009_SR_T05": { + "templateId": "Hero:HID_Ninja_009_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_009_R_T04": { + "templateId": "Hero:HID_Ninja_009_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_008_VR_T05": { + "templateId": "Hero:HID_Ninja_008_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "rnd_sel_cnt": " r", + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_008_SR_T05": { + "templateId": "Hero:HID_Ninja_008_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_008_R_T04": { + "templateId": "Hero:HID_Ninja_008_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_007_VR_T05": { + "templateId": "Hero:HID_Ninja_007_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_007_UC_T03": { + "templateId": "Hero:HID_Ninja_007_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_007_SR_T05": { + "templateId": "Hero:HID_Ninja_007_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_007_R_T04": { + "templateId": "Hero:HID_Ninja_007_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_009_F_Valentine_SR_T05": { + "templateId": "Hero:HID_Ninja_009_F_Valentine_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_014_F_SR_T05": { + "templateId": "Hero:HID_Ninja_014_F_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_014_R_T04": { + "templateId": "Hero:HID_Ninja_014_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_014_SR_T05": { + "templateId": "Hero:HID_Ninja_014_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_014_UC_T03": { + "templateId": "Hero:HID_Ninja_014_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_014_VR_T05": { + "templateId": "Hero:HID_Ninja_014_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_TEST": { + "templateId": "Hero:HID_Ninja_TEST", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZonePistolHW_VR_T05": { + "templateId": "Hero:HID_Outlander_ZonePistolHW_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZonePistolHW_SR_T05": { + "templateId": "Hero:HID_Outlander_ZonePistolHW_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZonePistol_VR_T05": { + "templateId": "Hero:HID_Outlander_ZonePistol_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZonePistol_SR_T05": { + "templateId": "Hero:HID_Outlander_ZonePistol_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZonePistol_R_T04": { + "templateId": "Hero:HID_Outlander_ZonePistol_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZoneHarvestHW_SR_T05": { + "templateId": "Hero:HID_Outlander_ZoneHarvestHW_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZoneHarvest_VR_T05": { + "templateId": "Hero:HID_Outlander_ZoneHarvest_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZoneHarvest_UC_T03": { + "templateId": "Hero:HID_Outlander_ZoneHarvest_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZoneHarvest_SR_T05": { + "templateId": "Hero:HID_Outlander_ZoneHarvest_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZoneHarvest_R_T04": { + "templateId": "Hero:HID_Outlander_ZoneHarvest_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_ZoneFragment_SR_T05": { + "templateId": "Hero:HID_Outlander_ZoneFragment_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_XBOX_VR_T05": { + "templateId": "Hero:HID_Outlander_XBOX_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_XBOX_SR_T05": { + "templateId": "Hero:HID_Outlander_XBOX_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_XBOX_R_T04": { + "templateId": "Hero:HID_Outlander_XBOX_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_SphereFragment_VR_T05": { + "templateId": "Hero:HID_Outlander_SphereFragment_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_SphereFragment_SR_T05": { + "templateId": "Hero:HID_Outlander_SphereFragment_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_SphereFragment_R_T04": { + "templateId": "Hero:HID_Outlander_SphereFragment_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_Sony_VR_T05": { + "templateId": "Hero:HID_Outlander_Sony_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_Sony_SR_T05": { + "templateId": "Hero:HID_Outlander_Sony_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_Sony_R_T04": { + "templateId": "Hero:HID_Outlander_Sony_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_PunchPhase_VR_T05": { + "templateId": "Hero:HID_Outlander_PunchPhase_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_PunchPhase_UC_T03": { + "templateId": "Hero:HID_Outlander_PunchPhase_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_PunchPhase_SR_T05": { + "templateId": "Hero:HID_Outlander_PunchPhase_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_PunchPhase_R_T04": { + "templateId": "Hero:HID_Outlander_PunchPhase_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": " ", + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_PunchDamage_VR_T05": { + "templateId": "Hero:HID_Outlander_PunchDamage_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_PunchDamage_SR_T05": { + "templateId": "Hero:HID_Outlander_PunchDamage_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_013_VR_T05": { + "templateId": "Hero:HID_Outlander_013_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_013_SR_T05": { + "templateId": "Hero:HID_Outlander_013_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_011_VR_T05": { + "templateId": "Hero:HID_Outlander_011_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_011_SR_T05": { + "templateId": "Hero:HID_Outlander_011_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_010_VR_T05": { + "templateId": "Hero:HID_Outlander_010_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_010_SR_T05": { + "templateId": "Hero:HID_Outlander_010_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_010_M_VR_T05": { + "templateId": "Hero:HID_Outlander_010_M_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_010_M_SR_T05": { + "templateId": "Hero:HID_Outlander_010_M_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_009_VR_T05": { + "templateId": "Hero:HID_Outlander_009_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_009_SR_T05": { + "templateId": "Hero:HID_Outlander_009_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_009_R_T04": { + "templateId": "Hero:HID_Outlander_009_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_008_VR_T05": { + "templateId": "Hero:HID_Outlander_008_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_008_SR_T05": { + "templateId": "Hero:HID_Outlander_008_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_008_R_T04": { + "templateId": "Hero:HID_Outlander_008_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_008_FoundersM_SR_T05": { + "templateId": "Hero:HID_Outlander_008_FoundersM_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_008_FoundersF_SR_T05": { + "templateId": "Hero:HID_Outlander_008_FoundersF_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_007_VR_T05": { + "templateId": "Hero:HID_Outlander_007_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_007_UC_T03": { + "templateId": "Hero:HID_Outlander_007_UC_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_007_SR_T05": { + "templateId": "Hero:HID_Outlander_007_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_007_R_T04": { + "templateId": "Hero:HID_Outlander_007_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_013_StPatricks_SR_T05": { + "templateId": "Hero:HID_Outlander_013_StPatricks_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_014_M_SR_T05": { + "templateId": "Hero:HID_Outlander_014_M_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_014_R_T04": { + "templateId": "Hero:HID_Outlander_014_R_T04", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_014_SR_T05": { + "templateId": "Hero:HID_Outlander_014_SR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_014_VR_T05": { + "templateId": "Hero:HID_Outlander_014_VR_T05", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Commando_Cinematic_TEST_R_T03": { + "templateId": "Hero:HID_Commando_Cinematic_TEST_R_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Constructor_Cinematic_TEST_R_T03": { + "templateId": "Hero:HID_Constructor_Cinematic_TEST_R_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Ninja_Cinematic_TEST_R_T03": { + "templateId": "Hero:HID_Ninja_Cinematic_TEST_R_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Hero:HID_Outlander_Cinematic_TEST_R_T03": { + "templateId": "Hero:HID_Outlander_Cinematic_TEST_R_T03", + "attributes": { + "equipped_cosmetics": [ + "", + "", + "", + "", + "", + "", + "", + "" + ], + "gender": 0, + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "portrait": "", + "hero_name": "DefaultHeroName", + "max_level_bonus": 0, + "squad_id": "", + "mode_loadouts": [], + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Wood_Spikes_VR_T05": { + "templateId": "Schematic:SID_Wall_Wood_Spikes_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Wood_Spikes_UC_T03": { + "templateId": "Schematic:SID_Wall_Wood_Spikes_UC_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Wood_Spikes_SR_T05": { + "templateId": "Schematic:SID_Wall_Wood_Spikes_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Wood_Spikes_R_T04": { + "templateId": "Schematic:SID_Wall_Wood_Spikes_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Wood_Spikes_C_T02": { + "templateId": "Schematic:SID_Wall_Wood_Spikes_C_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Light_VR_T05": { + "templateId": "Schematic:SID_Wall_Light_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Light_SR_T05": { + "templateId": "Schematic:SID_Wall_Light_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Light_R_T04": { + "templateId": "Schematic:SID_Wall_Light_R_T04", + "attributes": { + "alteration_slots": [], + "max_level_bonus": 0, + "level": 40, + "devName": "P ", + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Launcher_VR_T05": { + "templateId": "Schematic:SID_Wall_Launcher_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Launcher_UC_T03": { + "templateId": "Schematic:SID_Wall_Launcher_UC_T03", + "attributes": { + "alteration_slots": [], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Launcher_SR_T05": { + "templateId": "Schematic:SID_Wall_Launcher_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Launcher_R_T04": { + "templateId": "Schematic:SID_Wall_Launcher_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Electric_VR_T05": { + "templateId": "Schematic:SID_Wall_Electric_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Electric_UC_T03": { + "templateId": "Schematic:SID_Wall_Electric_UC_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Electric_SR_T05": { + "templateId": "Schematic:SID_Wall_Electric_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Electric_R_T04": { + "templateId": "Schematic:SID_Wall_Electric_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Darts_VR_T05": { + "templateId": "Schematic:SID_Wall_Darts_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Darts_UC_T03": { + "templateId": "Schematic:SID_Wall_Darts_UC_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Darts_SR_T05": { + "templateId": "Schematic:SID_Wall_Darts_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Wall_Darts_R_T04": { + "templateId": "Schematic:SID_Wall_Darts_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Ward_VR_T05": { + "templateId": "Schematic:SID_Floor_Ward_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Ward_UC_T03": { + "templateId": "Schematic:SID_Floor_Ward_UC_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Ward_SR_T05": { + "templateId": "Schematic:SID_Floor_Ward_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Ward_R_T04": { + "templateId": "Schematic:SID_Floor_Ward_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Track": { + "templateId": "Schematic:SID_Floor_Track", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_Wood_VR_T05": { + "templateId": "Schematic:SID_Floor_Spikes_Wood_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_Wood_UC_T03": { + "templateId": "Schematic:SID_Floor_Spikes_Wood_UC_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_Wood_SR_T05": { + "templateId": "Schematic:SID_Floor_Spikes_Wood_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_Wood_R_T04": { + "templateId": "Schematic:SID_Floor_Spikes_Wood_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_Wood_C_T02": { + "templateId": "Schematic:SID_Floor_Spikes_Wood_C_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_VR_T05": { + "templateId": "Schematic:SID_Floor_Spikes_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_UC_T03": { + "templateId": "Schematic:SID_Floor_Spikes_UC_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_SR_T05": { + "templateId": "Schematic:SID_Floor_Spikes_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Spikes_R_T04": { + "templateId": "Schematic:SID_Floor_Spikes_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Player_Jump_Pad_Free_Direction": { + "templateId": "Schematic:SID_Floor_Player_Jump_Pad_Free_Direction", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Player_Jump_Pad": { + "templateId": "Schematic:SID_Floor_Player_Jump_Pad", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Launcher_VR_T05": { + "templateId": "Schematic:SID_Floor_Launcher_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Launcher_UC_T03": { + "templateId": "Schematic:SID_Floor_Launcher_UC_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Launcher_SR_T05": { + "templateId": "Schematic:SID_Floor_Launcher_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Launcher_R_T04": { + "templateId": "Schematic:SID_Floor_Launcher_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Health_VR_T05": { + "templateId": "Schematic:SID_Floor_Health_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Health_UC_T03": { + "templateId": "Schematic:SID_Floor_Health_UC_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Health_SR_T05": { + "templateId": "Schematic:SID_Floor_Health_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Health_R_T04": { + "templateId": "Schematic:SID_Floor_Health_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Health_C_T00": { + "templateId": "Schematic:SID_Floor_Health_C_T00", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Freeze_VR_T05": { + "templateId": "Schematic:SID_Floor_Freeze_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Freeze_SR_T05": { + "templateId": "Schematic:SID_Floor_Freeze_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Freeze_R_T04": { + "templateId": "Schematic:SID_Floor_Freeze_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Defender": { + "templateId": "Schematic:SID_Floor_Defender", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Campfire_R_T04": { + "templateId": "Schematic:SID_Floor_Campfire_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Campfire_SR_T05": { + "templateId": "Schematic:SID_Floor_Campfire_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_Campfire_VR_T05": { + "templateId": "Schematic:SID_Floor_Campfire_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_FlameGrill_R_T04": { + "templateId": "Schematic:SID_Floor_FlameGrill_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_FlameGrill_SR_T05": { + "templateId": "Schematic:SID_Floor_FlameGrill_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Floor_FlameGrill_VR_T05": { + "templateId": "Schematic:SID_Floor_FlameGrill_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Gas_VR_T05": { + "templateId": "Schematic:SID_Ceiling_Gas_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Gas_UC_T03": { + "templateId": "Schematic:SID_Ceiling_Gas_UC_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "rarity": " R", + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Gas_SR_T05": { + "templateId": "Schematic:SID_Ceiling_Gas_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Gas_R_T04": { + "templateId": "Schematic:SID_Ceiling_Gas_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Falling_VR_T05": { + "templateId": "Schematic:SID_Ceiling_Falling_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Falling_SR_T05": { + "templateId": "Schematic:SID_Ceiling_Falling_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Falling_R_T04": { + "templateId": "Schematic:SID_Ceiling_Falling_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_Single_VR_T05": { + "templateId": "Schematic:SID_Ceiling_Electric_Single_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_Single_UC_T03": { + "templateId": "Schematic:SID_Ceiling_Electric_Single_UC_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_Single_SR_T05": { + "templateId": "Schematic:SID_Ceiling_Electric_Single_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_Single_R_T04": { + "templateId": "Schematic:SID_Ceiling_Electric_Single_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_Single_C_T02": { + "templateId": "Schematic:SID_Ceiling_Electric_Single_C_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_AOE_VR_T05": { + "templateId": "Schematic:SID_Ceiling_Electric_AOE_VR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_AOE_SR_T05": { + "templateId": "Schematic:SID_Ceiling_Electric_AOE_SR_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Ceiling_Electric_AOE_R_T04": { + "templateId": "Schematic:SID_Ceiling_Electric_AOE_R_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Winter_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Winter_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Winter_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Winter_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_VacuumTube_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_VacuumTube_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_VacuumTube_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_VacuumTube_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_VacuumTube_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_VacuumTube_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_TripleShot_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_TripleShot_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_TripleShot_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_TripleShot_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_TripleShot_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_TripleShot_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_TripleShot_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_TripleShot_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_VT_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_VT_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_VT_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_VT_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Scope_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Scope_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Standard_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_UC_Ore_T03": { + "templateId": "Schematic:SID_Sniper_Standard_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_R_Ore_T04": { + "templateId": "Schematic:SID_Sniper_Standard_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_R_Crystal_T04": { + "templateId": "Schematic:SID_Sniper_Standard_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Standard_C_Ore_T02": { + "templateId": "Schematic:SID_Sniper_Standard_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Shredder_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Shredder_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Shredder_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Shredder_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Shredder_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Shredder_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Shredder_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Shredder_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Scavenger_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Scavenger_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Scavenger_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Scavenger_SR_Crystal_T05", + "attributes": { + "legacy_alterations": " O", + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Hydraulic_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Hydraulic_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Hydraulic_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Hydraulic_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_Scope_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_BoltAction_Scope_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_Scope_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_BoltAction_Scope_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_Scope_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_BoltAction_Scope_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_Scope_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_BoltAction_Scope_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_Scope_R_Ore_T04": { + "templateId": "Schematic:SID_Sniper_BoltAction_Scope_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_Scope_R_Crystal_T04": { + "templateId": "Schematic:SID_Sniper_BoltAction_Scope_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_UC_Ore_T03": { + "templateId": "Schematic:SID_Sniper_BoltAction_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_R_Ore_T04": { + "templateId": "Schematic:SID_Sniper_BoltAction_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_R_Crystal_T04": { + "templateId": "Schematic:SID_Sniper_BoltAction_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BoltAction_C_Ore_T02": { + "templateId": "Schematic:SID_Sniper_BoltAction_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BBGun_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_BBGun_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_BBGun_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_BBGun_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Auto_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Auto_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Auto_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Auto_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Auto_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Auto_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_UC_Ore_T03": { + "templateId": "Schematic:SID_Sniper_Auto_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_R_Ore_T04": { + "templateId": "Schematic:SID_Sniper_Auto_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Auto_R_Crystal_T04": { + "templateId": "Schematic:SID_Sniper_Auto_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_AMR_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_AMR_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_AMR_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_AMR_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_AMR_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_AMR_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_AMR_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_AMR_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_AMR_R_Ore_T04": { + "templateId": "Schematic:SID_Sniper_AMR_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_AMR_R_Crystal_T04": { + "templateId": "Schematic:SID_Sniper_AMR_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Crossbow_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Crossbow_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Crossbow_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Crossbow_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Dragon_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Dragon_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Dragon_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Dragon_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_Scope_SR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_Scope_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_Scope_SR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_Scope_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_Scope_VR_Crystal_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_Scope_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Sniper_Flintlock_Scope_VR_Ore_T05": { + "templateId": "Schematic:SID_Sniper_Flintlock_Scope_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_VacuumTube_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_VacuumTube_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_VacuumTube_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_VacuumTube_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "item_seen": true, + "max_level_bonus": 1, + "level": 50, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_VacuumTube_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_VacuumTube_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Precision_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Precision_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Precision_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Precision_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Precision_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Precision_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Precision_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Precision_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Precision_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Tactical_Precision_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Precision_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Tactical_Precision_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_UC_Ore_T03": { + "templateId": "Schematic:SID_Shotgun_Tactical_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Tactical_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Tactical_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Founders_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Founders_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Founders_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Tactical_Founders_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Founders_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Tactical_Founders_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_Founders_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Tactical_Founders_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Tactical_C_Ore_T02": { + "templateId": "Schematic:SID_Shotgun_Tactical_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_VT_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_VT_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_VT_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_VT_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Standard_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_UC_Ore_T03": { + "templateId": "Schematic:SID_Shotgun_Standard_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Standard_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Standard_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Standard_C_Ore_T02": { + "templateId": "Schematic:SID_Shotgun_Standard_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_UC_Ore_T03": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_Scavenger_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_Scavenger_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_Scavenger_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_Scavenger_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_Scavenger_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_Scavenger_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_Scavenger_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_SemiAuto_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_SemiAuto_Scavenger_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Minigun_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Minigun_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Minigun_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Minigun_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Longarm_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Longarm_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Longarm_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Longarm_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Longarm_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Longarm_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 0 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Longarm_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Longarm_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Hydraulic_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Hydraulic_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Hydraulic_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Hydraulic_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Heavy_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Heavy_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Heavy_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Heavy_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_OU_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_OU_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_OU_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_OU_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_UC_Ore_T03": { + "templateId": "Schematic:SID_Shotgun_Break_OU_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Break_OU_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_OU_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Break_OU_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Break_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Break_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_UC_Ore_T03": { + "templateId": "Schematic:SID_Shotgun_Break_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Break_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Break_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Break_C_Ore_T02": { + "templateId": "Schematic:SID_Shotgun_Break_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Auto_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Auto_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Auto_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Auto_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Auto_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Auto_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_UC_Ore_T03": { + "templateId": "Schematic:SID_Shotgun_Auto_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_R_Ore_T04": { + "templateId": "Schematic:SID_Shotgun_Auto_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Auto_R_Crystal_T04": { + "templateId": "Schematic:SID_Shotgun_Auto_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_Drum_SR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_Drum_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_Drum_SR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_Drum_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_Drum_VR_Crystal_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_Drum_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Shotgun_Dragon_Drum_VR_Ore_T05": { + "templateId": "Schematic:SID_Shotgun_Dragon_Drum_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Zapper_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Zapper_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Zapper_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Zapper_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Zapper_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Zapper_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Zapper_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Zapper_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Revolver_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Revolver_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Revolver_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Revolver_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Revolver_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Revolver_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Revolver_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Revolver_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Auto_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Auto_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "favorite": false, + "xp": 0 + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Auto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Auto_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Auto_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Auto_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_VacuumTube_Auto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_VacuumTube_Auto_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Space_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Space_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Space_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Space_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Space_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Space_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Space_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Space_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SixShooter_UC_Ore_T03": { + "templateId": "Schematic:SID_Pistol_SixShooter_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SixShooter_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_SixShooter_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SixShooter_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_SixShooter_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SixShooter_C_Ore_T02": { + "templateId": "Schematic:SID_Pistol_SixShooter_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_SemiAuto_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_SemiAuto_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_SemiAuto_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_SemiAuto_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_SemiAuto_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_SemiAuto_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_UC_Ore_T03": { + "templateId": "Schematic:SID_Pistol_SemiAuto_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_SemiAuto_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_SemiAuto_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_C_Ore_T02": { + "templateId": "Schematic:SID_Pistol_SemiAuto_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_SemiAuto_C_Ore_T00": { + "templateId": "Schematic:SID_Pistol_SemiAuto_C_Ore_T00", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Scavenger_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Scavenger_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Scavenger_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Scavenger_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rocket_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Rocket_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rocket_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Rocket_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Rapid_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Rapid_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Rapid_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Rapid_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_Rapid_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_Rapid_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Rapid_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Rapid_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Rapid_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Hydraulic_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Hydraulic_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Hydraulic_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Hydraulic_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_VT_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_VT_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_VT_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_VT_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_VR_Ore_T05", + "attributes": { + "alteration_slots": [], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_DE_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_DE_SR_Crystal_T05", + "attributes": { + "alteration_slots": [], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_DE_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_DE_SR_Ore_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "alteration_slots": "K ", + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Semi_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_Handcannon_Semi_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_VT_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_VT_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_Handcannon_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_Handcannon_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Handcannon_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Handcannon_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Gatling_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Gatling_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Gatling_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Gatling_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Gatling_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Gatling_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Gatling_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Gatling_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_FireCracker_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_FireCracker_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_FireCracker_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_FireCracker_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_FireCracker_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_FireCracker_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_FireCracker_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_FireCracker_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_FireCracker_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_FireCracker_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_FireCracker_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_FireCracker_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Dragon_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Dragon_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Dragon_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Dragon_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_BoltRevolver_UC_Ore_T03": { + "templateId": "Schematic:SID_Pistol_BoltRevolver_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_BoltRevolver_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_BoltRevolver_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_BoltRevolver_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_BoltRevolver_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_BoltRevolver_C_Ore_T02": { + "templateId": "Schematic:SID_Pistol_BoltRevolver_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Bolt_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Bolt_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Bolt_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Bolt_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Bolt_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Bolt_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Bolt_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Bolt_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_VT_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_VT_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_VT_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_VT_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_Founders_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_Founders_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_Founders_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_Founders_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_Founders_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_Founders_R_Ore_T04", + "attributes": { + "alteration_slots": [], + "earned_tag": " a", + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_AutoHeavy_Founders_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_AutoHeavy_Founders_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_VR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Auto_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Auto_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_SR_Ore_T05": { + "templateId": "Schematic:SID_Pistol_Auto_SR_Ore_T05", + "attributes": { + "alteration_slots": [], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Pistol_Auto_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_UC_Ore_T03": { + "templateId": "Schematic:SID_Pistol_Auto_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_R_Ore_T04": { + "templateId": "Schematic:SID_Pistol_Auto_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_R_Crystal_T04": { + "templateId": "Schematic:SID_Pistol_Auto_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Pistol_Auto_C_Ore_T02": { + "templateId": "Schematic:SID_Pistol_Auto_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Grenade_Winter_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Grenade_Winter_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Rocket_VR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Rocket_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Rocket_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Rocket_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Rocket_R_Ore_T04": { + "templateId": "Schematic:SID_Launcher_Rocket_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Pumpkin_RPG_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Pumpkin_RPG_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_VacuumTube_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_VacuumTube_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Scavenger_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Scavenger_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Hydraulic_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Launcher_Hydraulic_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Hydraulic_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Launcher_Hydraulic_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Grenade_VR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Grenade_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Grenade_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Grenade_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Grenade_R_Ore_T04": { + "templateId": "Schematic:SID_Launcher_Grenade_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Grenade_Easter_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Grenade_Easter_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Rocket_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Rocket_Dragon_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Launcher_Rocket_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Launcher_Rocket_Dragon_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_VacuumTube_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_VacuumTube_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_VacuumTube_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_VacuumTube_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_VacuumTube_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_VacuumTube_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Surgical_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Surgical_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Surgical_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Surgical_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Surgical_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Surgical_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Surgical_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Surgical_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SingleShot_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SingleShot_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SingleShot_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SingleShot_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_SingleShot_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SingleShot_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_SingleShot_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_SemiAuto_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_UC_Ore_T03": { + "templateId": "Schematic:SID_Assault_SemiAuto_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "reward_scalar": "t ", + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_SemiAuto_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_SemiAuto_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_C_Ore_T02": { + "templateId": "Schematic:SID_Assault_SemiAuto_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_SemiAuto_C_Ore_T00": { + "templateId": "Schematic:SID_Assault_SemiAuto_C_Ore_T00", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Scavenger_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Scavenger_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Scavenger_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Scavenger_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Raygun_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Raygun_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Raygun_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Raygun_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Raygun_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Raygun_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Raygun_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Raygun_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Surgical_Drum_Founders_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_Surgical_Drum_Founders_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Surgical_Drum_Founders_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_Surgical_Drum_Founders_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_LMG_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_LMG_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_LMG_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_LMG_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_LMG_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_LMG_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Drum_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_LMG_Drum_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Drum_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_LMG_Drum_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Drum_Founders_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_LMG_Drum_Founders_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_LMG_Drum_Founders_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_LMG_Drum_Founders_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Hydraulic_Drum_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Hydraulic_Drum_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Hydraulic_Drum_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Hydraulic_Drum_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Hydraulic_Drum_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Hydraulic_Drum_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Hydraulic_Drum_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Hydraulic_Drum_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Hydra_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Hydra_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Hydra_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Hydra_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Doubleshot_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Doubleshot_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Doubleshot_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Doubleshot_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Doubleshot_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Doubleshot_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Doubleshot_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Doubleshot_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Burst_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Burst_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Burst_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Burst_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_UC_Ore_T03": { + "templateId": "Schematic:SID_Assault_Burst_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_Burst_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_Burst_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Burst_C_Ore_T02": { + "templateId": "Schematic:SID_Assault_Burst_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Auto_VT_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Auto_VT_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Auto_VT_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Auto_VT_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Auto_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Auto_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Auto_SR_Ore_T05", + "slot_used": " Y", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Auto_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_Halloween_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Auto_Halloween_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_Halloween_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Auto_Halloween_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_Founders_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Auto_Founders_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_Founders_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Auto_Founders_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_OB_Assault_Auto_T03": { + "templateId": "Schematic:SID_OB_Assault_Auto_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_UC_Ore_T03": { + "templateId": "Schematic:SID_Assault_Auto_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_R_Ore_T04": { + "templateId": "Schematic:SID_Assault_Auto_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_R_Crystal_T04": { + "templateId": "Schematic:SID_Assault_Auto_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_C_Ore_T02": { + "templateId": "Schematic:SID_Assault_Auto_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Auto_C_Ore_T00": { + "templateId": "Schematic:SID_Assault_Auto_C_Ore_T00", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Dragon_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Dragon_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Dragon_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Dragon_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Flintlock_SR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Flintlock_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Flintlock_SR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Flintlock_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Flintlock_VR_Crystal_T05": { + "templateId": "Schematic:SID_Assault_Flintlock_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Assault_Flintlock_VR_Ore_T05": { + "templateId": "Schematic:SID_Assault_Flintlock_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ingredient_Duct_Tape": { + "templateId": "Schematic:Ingredient_Duct_Tape", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ingredient_Blastpowder": { + "templateId": "Schematic:Ingredient_Blastpowder", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_VacuumTube_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_VacuumTube_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_VacuumTube_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_VacuumTube_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_VacuumTube_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_VacuumTube_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Scavenger_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Scavenger_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Scavenger_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Scavenger_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Military_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Military_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Military_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Military_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Military_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Military_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Military_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Military_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Military_R_Ore_T04": { + "templateId": "Schematic:SID_Piercing_Spear_Military_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Military_R_Crystal_T04": { + "templateId": "Schematic:SID_Piercing_Spear_Military_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_C_Ore_T02": { + "templateId": "Schematic:SID_Piercing_Spear_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Laser_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Laser_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Laser_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Laser_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Laser_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Laser_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Laser_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Laser_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Hydraulic_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Hydraulic_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Hydraulic_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Hydraulic_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "crafting_tag": "T ", + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_UC_Ore_T03": { + "templateId": "Schematic:SID_Piercing_Spear_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_R_Ore_T04": { + "templateId": "Schematic:SID_Piercing_Spear_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_R_Crystal_T04": { + "templateId": "Schematic:SID_Piercing_Spear_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Dragon_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Dragon_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Dragon_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Piercing_Spear_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Piercing_Spear_Dragon_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VacuumTube_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VacuumTube_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VacuumTube_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VacuumTube_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VacuumTube_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VacuumTube_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Sword_Medium_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_C_Ore_T00": { + "templateId": "Schematic:SID_Edged_Sword_Medium_C_Ore_T00", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_Founders_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_Founders_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_Founders_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_Founders_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_Founders_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_Founders_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_Laser_Founders_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Sword_Medium_Laser_Founders_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VT_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VT_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VT_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VT_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Medium_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Sword_Medium_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Sword_Medium_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Medium_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Sword_Medium_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Light_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Light_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Sword_Light_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Light_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Light_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Sword_Light_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Sword_Light_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Light_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Light_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Light_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Sword_Light_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Hydraulic_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Hydraulic_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Hydraulic_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Hydraulic_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_VR_Ore_T05", + "attributes": { + "alteration_slots": " ", + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Heavy_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Sword_Heavy_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Scythe_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Laser_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Laser_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Laser_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Laser_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Laser_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Laser_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_Laser_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_Laser_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Scythe_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Scythe_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Scythe_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Scythe_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Scythe_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Scythe_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_VT_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_VT_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_VT_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_VT_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Scavenger_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Scavenger_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Scavenger_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Scavenger_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Axe_Medium_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_Laser_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_Laser_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_Laser_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_Laser_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_Laser_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_Laser_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_Laser_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_Laser_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Medium_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Axe_Medium_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Axe_Medium_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Medium_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Axe_Medium_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Light_VR_Ore_T05", + "attributes": { + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Light_VR_Crystal_T05", + "attributes": { + "alteration_slots": [], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Light_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Light_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Axe_Light_UC_Ore_T03", + "attributes": { + "alteration_slots": [], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Axe_Light_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Axe_Light_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "platform": " L", + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Light_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Axe_Light_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_VacuumTube_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_VacuumTube_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_VacuumTube_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_VacuumTube_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_VacuumTube_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_VacuumTube_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_VacuumTube_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_VacuumTube_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_C_Ore_T02": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_UC_Ore_T03": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_R_Ore_T04": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Axe_Heavy_R_Crystal_T04": { + "templateId": "Schematic:SID_Edged_Axe_Heavy_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Dragon_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Dragon_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Edged_Sword_Dragon_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Edged_Sword_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Edged_Sword_Dragon_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Scavenger_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Scavenger_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Scavenger_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Scavenger_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Scavenger_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Scavenger_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Scavenger_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Scavenger_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_C_Ore_T02": { + "templateId": "Schematic:SID_Blunt_Medium_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Medium_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Medium_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Medium_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Medium_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_UC_Ore_T03": { + "templateId": "Schematic:SID_Blunt_Medium_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Medium_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Medium_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Medium_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Light_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Light_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Light_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Light_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Tool_Light_UC_Ore_T03": { + "templateId": "Schematic:SID_Blunt_Tool_Light_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Tool_Light_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Tool_Light_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Tool_Light_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Tool_Light_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_VT_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_VT_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_VT_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_VT_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_VT_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_VT_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_VT_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_VT_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_VR_Ore_T05", + "attributes": { + "alteration_slots": [], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Rocket_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Rocket_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Hydraulic_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Hydraulic_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Hydraulic_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Hydraulic_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Hydraulic_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Hydraulic_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Hydraulic_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Hydraulic_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_C_Ore_T02": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "item_guid": "a ", + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_Founders_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_Founders_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_Founders_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_Founders_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_UC_Ore_T03": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_Dragon_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_Dragon_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_Dragon_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_Dragon_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_Dragon_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_Dragon_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Hammer_Heavy_Dragon_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Hammer_Heavy_Dragon_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Rocketbat_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Light_Rocketbat_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Rocketbat_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Light_Rocketbat_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Rocketbat_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Light_Rocketbat_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Rocketbat_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Light_Rocketbat_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_C_Ore_T02": { + "templateId": "Schematic:SID_Blunt_Light_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Bat_UC_Ore_T03": { + "templateId": "Schematic:SID_Blunt_Light_Bat_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Bat_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Light_Bat_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_Bat_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Light_Bat_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Club_Light_VR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Club_Light_VR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Club_Light_VR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Club_Light_VR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Club_Light_SR_Ore_T05": { + "templateId": "Schematic:SID_Blunt_Club_Light_SR_Ore_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Club_Light_SR_Crystal_T05": { + "templateId": "Schematic:SID_Blunt_Club_Light_SR_Crystal_T05", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 50, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_UC_Ore_T03": { + "templateId": "Schematic:SID_Blunt_Light_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Light_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Light_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Light_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Paddle_UC_Ore_T03": { + "templateId": "Schematic:SID_Blunt_Heavy_Paddle_UC_Ore_T03", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 30, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Paddle_R_Ore_T04": { + "templateId": "Schematic:SID_Blunt_Heavy_Paddle_R_Ore_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Paddle_R_Crystal_T04": { + "templateId": "Schematic:SID_Blunt_Heavy_Paddle_R_Crystal_T04", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 40, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:SID_Blunt_Heavy_Paddle_C_Ore_T02": { + "templateId": "Schematic:SID_Blunt_Heavy_Paddle_C_Ore_T02", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 20, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Gadget_Generic_Turret": { + "templateId": "Schematic:Gadget_Generic_Turret", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ammo_EnergyCell": { + "templateId": "Schematic:Ammo_EnergyCell", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ammo_BulletsHeavy": { + "templateId": "Schematic:Ammo_BulletsHeavy", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ammo_Shells": { + "templateId": "Schematic:Ammo_Shells", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ammo_BulletsLight": { + "templateId": "Schematic:Ammo_BulletsLight", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Schematic:Ammo_BulletsMedium": { + "templateId": "Schematic:Ammo_BulletsMedium", + "attributes": { + "alteration_slots": [ + { + "Type": "GameplaySlot", + "NumSlots": 1 + }, + { + "Type": "AttributeSlot", + "NumSlots": 1 + } + ], + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_VR_T05": { + "templateId": "Defender:DID_DefenderSniper_Basic_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_UC_T03": { + "templateId": "Defender:DID_DefenderSniper_Basic_UC_T03", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_SR_T05": { + "templateId": "Defender:DID_DefenderSniper_Basic_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_R_T04": { + "templateId": "Defender:DID_DefenderSniper_Basic_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_M_VR_T05": { + "templateId": "Defender:DID_DefenderSniper_Basic_M_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_M_SR_T05": { + "templateId": "Defender:DID_DefenderSniper_Basic_M_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_M_R_T04": { + "templateId": "Defender:DID_DefenderSniper_Basic_M_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderSniper_Basic_C_T02": { + "templateId": "Defender:DID_DefenderSniper_Basic_C_T02", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 20, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_VR_T05": { + "templateId": "Defender:DID_DefenderShotgun_Basic_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_UC_T03": { + "templateId": "Defender:DID_DefenderShotgun_Basic_UC_T03", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_SR_T05": { + "templateId": "Defender:DID_DefenderShotgun_Basic_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_R_T04": { + "templateId": "Defender:DID_DefenderShotgun_Basic_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_F_VR_T05": { + "templateId": "Defender:DID_DefenderShotgun_Basic_F_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_F_SR_T05": { + "templateId": "Defender:DID_DefenderShotgun_Basic_F_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_F_R_T04": { + "templateId": "Defender:DID_DefenderShotgun_Basic_F_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderShotgun_Basic_C_T02": { + "templateId": "Defender:DID_DefenderShotgun_Basic_C_T02", + "attributes": { + "squad_id": "", + "level": 20, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Founders_VR_T05": { + "templateId": "Defender:DID_DefenderPistol_Founders_VR_T05", + "attributes": { + "id_unlocked": " w", + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_VR_T05": { + "templateId": "Defender:DID_DefenderPistol_Basic_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_UC_T03": { + "templateId": "Defender:DID_DefenderPistol_Basic_UC_T03", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_SR_T05": { + "templateId": "Defender:DID_DefenderPistol_Basic_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_R_T04": { + "templateId": "Defender:DID_DefenderPistol_Basic_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_F_VR_T05": { + "templateId": "Defender:DID_DefenderPistol_Basic_F_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_F_SR_T05": { + "templateId": "Defender:DID_DefenderPistol_Basic_F_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_F_R_T04": { + "templateId": "Defender:DID_DefenderPistol_Basic_F_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderPistol_Basic_C_T02": { + "templateId": "Defender:DID_DefenderPistol_Basic_C_T02", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 20, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderMelee_Basic_VR_T05": { + "templateId": "Defender:DID_DefenderMelee_Basic_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderMelee_Basic_UC_T03": { + "templateId": "Defender:DID_DefenderMelee_Basic_UC_T03", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderMelee_Basic_SR_T05": { + "templateId": "Defender:DID_DefenderMelee_Basic_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderMelee_Basic_R_T04": { + "templateId": "Defender:DID_DefenderMelee_Basic_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderMelee_Basic_F_SR_T05": { + "templateId": "Defender:DID_DefenderMelee_Basic_F_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderMelee_Basic_C_T02": { + "templateId": "Defender:DID_DefenderMelee_Basic_C_T02", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 20, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Founders_VR_T05": { + "templateId": "Defender:DID_DefenderAssault_Founders_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_VR_T05": { + "templateId": "Defender:DID_DefenderAssault_Basic_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_UC_T03": { + "templateId": "Defender:DID_DefenderAssault_Basic_UC_T03", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 30, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_SR_T05": { + "templateId": "Defender:DID_DefenderAssault_Basic_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_R_T04": { + "templateId": "Defender:DID_DefenderAssault_Basic_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_M_VR_T05": { + "templateId": "Defender:DID_DefenderAssault_Basic_M_VR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_M_SR_T05": { + "templateId": "Defender:DID_DefenderAssault_Basic_M_SR_T05", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 50, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_M_R_T04": { + "templateId": "Defender:DID_DefenderAssault_Basic_M_R_T04", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 40, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_C_T02": { + "templateId": "Defender:DID_DefenderAssault_Basic_C_T02", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 20, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Defender:DID_DefenderAssault_Basic_C_T00": { + "templateId": "Defender:DID_DefenderAssault_Basic_C_T00", + "attributes": { + "max_level_bonus": 0, + "squad_id": "", + "level": 1, + "item_seen": true, + "squad_slot_idx": -1, + "alterations": [], + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "CodeToken:FounderFriendInvite": { + "templateId": "CodeToken:FounderFriendInvite", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Troll_VR_T05": { + "templateId": "Worker:Worker_Halloween_Troll_VR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Troll.IconDef-WorkerPortrait-Troll", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Troll_SR_T05": { + "templateId": "Worker:Worker_Halloween_Troll_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Troll.IconDef-WorkerPortrait-Troll", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Smasher_SR_T05": { + "templateId": "Worker:Worker_Halloween_Smasher_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Smasher.IconDef-WorkerPortrait-Smasher", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Pitcher_UC_T03": { + "templateId": "Worker:Worker_Halloween_Pitcher_UC_T03", + "attributes": { + "gender": 0, + "level": 30, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pitcher.IconDef-WorkerPortrait-Pitcher", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Pitcher_R_T04": { + "templateId": "Worker:Worker_Halloween_Pitcher_R_T04", + "attributes": { + "gender": 0, + "level": 40, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pitcher.IconDef-WorkerPortrait-Pitcher", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Pitcher_C_T02": { + "templateId": "Worker:Worker_Halloween_Pitcher_C_T02", + "attributes": { + "gender": 0, + "level": 20, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pitcher.IconDef-WorkerPortrait-Pitcher", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Lobber_VR_T05": { + "templateId": "Worker:Worker_Halloween_Lobber_VR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Lobber.IconDef-WorkerPortrait-Lobber", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Lobber_SR_T05": { + "templateId": "Worker:Worker_Halloween_Lobber_SR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Lobber.IconDef-WorkerPortrait-Lobber", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Lobber_R_T04": { + "templateId": "Worker:Worker_Halloween_Lobber_R_T04", + "attributes": { + "gender": 0, + "level": 40, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Lobber.IconDef-WorkerPortrait-Lobber", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Husky_VR_T05": { + "templateId": "Worker:Worker_Halloween_Husky_VR_T05", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husky.IconDef-WorkerPortrait-Husky", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Husky_UC_T03": { + "templateId": "Worker:Worker_Halloween_Husky_UC_T03", + "attributes": { + "gender": 0, + "level": 30, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husky.IconDef-WorkerPortrait-Husky", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Husky_R_T04": { + "templateId": "Worker:Worker_Halloween_Husky_R_T04", + "attributes": { + "gender": 0, + "level": 40, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husky.IconDef-WorkerPortrait-Husky", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Husky_C_T02": { + "templateId": "Worker:Worker_Halloween_Husky_C_T02", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husky.IconDef-WorkerPortrait-Husky", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Husk_UC_T03": { + "templateId": "Worker:Worker_Halloween_Husk_UC_T03", + "attributes": { + "gender": 0, + "level": 30, + "squad_slot_idx": 1, + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husk.IconDef-WorkerPortrait-Husk", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor1": { + "templateId": "HomebaseBannerColor:DefaultColor1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor2": { + "templateId": "HomebaseBannerColor:DefaultColor2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor3": { + "templateId": "HomebaseBannerColor:DefaultColor3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor4": { + "templateId": "HomebaseBannerColor:DefaultColor4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor5": { + "templateId": "HomebaseBannerColor:DefaultColor5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor6": { + "templateId": "HomebaseBannerColor:DefaultColor6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor7": { + "templateId": "HomebaseBannerColor:DefaultColor7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor8": { + "templateId": "HomebaseBannerColor:DefaultColor8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor9": { + "templateId": "HomebaseBannerColor:DefaultColor9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor10": { + "templateId": "HomebaseBannerColor:DefaultColor10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor11": { + "templateId": "HomebaseBannerColor:DefaultColor11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor12": { + "templateId": "HomebaseBannerColor:DefaultColor12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor13": { + "templateId": "HomebaseBannerColor:DefaultColor13", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor14": { + "templateId": "HomebaseBannerColor:DefaultColor14", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor15": { + "templateId": "HomebaseBannerColor:DefaultColor15", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor16": { + "templateId": "HomebaseBannerColor:DefaultColor16", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor17": { + "templateId": "HomebaseBannerColor:DefaultColor17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor18": { + "templateId": "HomebaseBannerColor:DefaultColor18", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor19": { + "templateId": "HomebaseBannerColor:DefaultColor19", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor20": { + "templateId": "HomebaseBannerColor:DefaultColor20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerColor:DefaultColor21": { + "templateId": "HomebaseBannerColor:DefaultColor21", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner1": { + "templateId": "HomebaseBannerIcon:StandardBanner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner2": { + "templateId": "HomebaseBannerIcon:StandardBanner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner3": { + "templateId": "HomebaseBannerIcon:StandardBanner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner4": { + "templateId": "HomebaseBannerIcon:StandardBanner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner5": { + "templateId": "HomebaseBannerIcon:StandardBanner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner6": { + "templateId": "HomebaseBannerIcon:StandardBanner6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner7": { + "templateId": "HomebaseBannerIcon:StandardBanner7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner8": { + "templateId": "HomebaseBannerIcon:StandardBanner8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner9": { + "templateId": "HomebaseBannerIcon:StandardBanner9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner10": { + "templateId": "HomebaseBannerIcon:StandardBanner10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner11": { + "templateId": "HomebaseBannerIcon:StandardBanner11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner12": { + "templateId": "HomebaseBannerIcon:StandardBanner12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner13": { + "templateId": "HomebaseBannerIcon:StandardBanner13", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner14": { + "templateId": "HomebaseBannerIcon:StandardBanner14", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner15": { + "templateId": "HomebaseBannerIcon:StandardBanner15", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner16": { + "templateId": "HomebaseBannerIcon:StandardBanner16", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner17": { + "templateId": "HomebaseBannerIcon:StandardBanner17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner18": { + "templateId": "HomebaseBannerIcon:StandardBanner18", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner19": { + "templateId": "HomebaseBannerIcon:StandardBanner19", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner20": { + "templateId": "HomebaseBannerIcon:StandardBanner20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner21": { + "templateId": "HomebaseBannerIcon:StandardBanner21", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner22": { + "templateId": "HomebaseBannerIcon:StandardBanner22", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner23": { + "templateId": "HomebaseBannerIcon:StandardBanner23", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner24": { + "templateId": "HomebaseBannerIcon:StandardBanner24", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner25": { + "templateId": "HomebaseBannerIcon:StandardBanner25", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner26": { + "templateId": "HomebaseBannerIcon:StandardBanner26", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner27": { + "templateId": "HomebaseBannerIcon:StandardBanner27", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner28": { + "templateId": "HomebaseBannerIcon:StandardBanner28", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner29": { + "templateId": "HomebaseBannerIcon:StandardBanner29", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner30": { + "templateId": "HomebaseBannerIcon:StandardBanner30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:StandardBanner31": { + "templateId": "HomebaseBannerIcon:StandardBanner31", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier1Banner1": { + "templateId": "HomebaseBannerIcon:FounderTier1Banner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier1Banner2": { + "templateId": "HomebaseBannerIcon:FounderTier1Banner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier1Banner3": { + "templateId": "HomebaseBannerIcon:FounderTier1Banner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier1Banner4": { + "templateId": "HomebaseBannerIcon:FounderTier1Banner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier2Banner1": { + "templateId": "HomebaseBannerIcon:FounderTier2Banner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier2Banner2": { + "templateId": "HomebaseBannerIcon:FounderTier2Banner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier2Banner3": { + "templateId": "HomebaseBannerIcon:FounderTier2Banner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier2Banner4": { + "templateId": "HomebaseBannerIcon:FounderTier2Banner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier2Banner5": { + "templateId": "HomebaseBannerIcon:FounderTier2Banner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "Worker:Worker_Halloween_Husk_C_T02": { + "templateId": "Worker:Worker_Halloween_Husk_C_T02", + "attributes": { + "gender": 0, + "level": 50, + "squad_slot_idx": "i ", + "item_seen": true, + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husk.IconDef-WorkerPortrait-Husk", + "max_level_bonus": 0, + "squad_id": "", + "personality": "Homebase.Worker.Personality.IsCurious", + "xp": 0, + "slotted_building_id": "", + "building_slot_used": -1, + "favorite": false, + "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier2Banner6": { + "templateId": "HomebaseBannerIcon:FounderTier2Banner6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier3Banner1": { + "templateId": "HomebaseBannerIcon:FounderTier3Banner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier3Banner2": { + "templateId": "HomebaseBannerIcon:FounderTier3Banner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier3Banner3": { + "templateId": "HomebaseBannerIcon:FounderTier3Banner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier3Banner4": { + "templateId": "HomebaseBannerIcon:FounderTier3Banner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier3Banner5": { + "templateId": "HomebaseBannerIcon:FounderTier3Banner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier4Banner1": { + "templateId": "HomebaseBannerIcon:FounderTier4Banner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier4Banner2": { + "templateId": "HomebaseBannerIcon:FounderTier4Banner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier4Banner3": { + "templateId": "HomebaseBannerIcon:FounderTier4Banner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier4Banner4": { + "templateId": "HomebaseBannerIcon:FounderTier4Banner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier4Banner5": { + "templateId": "HomebaseBannerIcon:FounderTier4Banner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier5Banner1": { + "templateId": "HomebaseBannerIcon:FounderTier5Banner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier5Banner2": { + "templateId": "HomebaseBannerIcon:FounderTier5Banner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier5Banner3": { + "templateId": "HomebaseBannerIcon:FounderTier5Banner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier5Banner4": { + "templateId": "HomebaseBannerIcon:FounderTier5Banner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:FounderTier5Banner5": { + "templateId": "HomebaseBannerIcon:FounderTier5Banner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:NewsletterBanner": { + "templateId": "HomebaseBannerIcon:NewsletterBanner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner1": { + "templateId": "HomebaseBannerIcon:InfluencerBanner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner2": { + "templateId": "HomebaseBannerIcon:InfluencerBanner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner3": { + "templateId": "HomebaseBannerIcon:InfluencerBanner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner4": { + "templateId": "HomebaseBannerIcon:InfluencerBanner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner5": { + "templateId": "HomebaseBannerIcon:InfluencerBanner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner6": { + "templateId": "HomebaseBannerIcon:InfluencerBanner6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner7": { + "templateId": "HomebaseBannerIcon:InfluencerBanner7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner8": { + "templateId": "HomebaseBannerIcon:InfluencerBanner8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner9": { + "templateId": "HomebaseBannerIcon:InfluencerBanner9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner10": { + "templateId": "HomebaseBannerIcon:InfluencerBanner10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner11": { + "templateId": "HomebaseBannerIcon:InfluencerBanner11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner12": { + "templateId": "HomebaseBannerIcon:InfluencerBanner12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner13": { + "templateId": "HomebaseBannerIcon:InfluencerBanner13", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner14": { + "templateId": "HomebaseBannerIcon:InfluencerBanner14", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner15": { + "templateId": "HomebaseBannerIcon:InfluencerBanner15", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner16": { + "templateId": "HomebaseBannerIcon:InfluencerBanner16", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner17": { + "templateId": "HomebaseBannerIcon:InfluencerBanner17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner18": { + "templateId": "HomebaseBannerIcon:InfluencerBanner18", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner19": { + "templateId": "HomebaseBannerIcon:InfluencerBanner19", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner20": { + "templateId": "HomebaseBannerIcon:InfluencerBanner20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner21": { + "templateId": "HomebaseBannerIcon:InfluencerBanner21", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner22": { + "templateId": "HomebaseBannerIcon:InfluencerBanner22", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner23": { + "templateId": "HomebaseBannerIcon:InfluencerBanner23", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner24": { + "templateId": "HomebaseBannerIcon:InfluencerBanner24", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner25": { + "templateId": "HomebaseBannerIcon:InfluencerBanner25", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner26": { + "templateId": "HomebaseBannerIcon:InfluencerBanner26", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner27": { + "templateId": "HomebaseBannerIcon:InfluencerBanner27", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner28": { + "templateId": "HomebaseBannerIcon:InfluencerBanner28", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner29": { + "templateId": "HomebaseBannerIcon:InfluencerBanner29", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner30": { + "templateId": "HomebaseBannerIcon:InfluencerBanner30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner31": { + "templateId": "HomebaseBannerIcon:InfluencerBanner31", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner32": { + "templateId": "HomebaseBannerIcon:InfluencerBanner32", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner33": { + "templateId": "HomebaseBannerIcon:InfluencerBanner33", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner34": { + "templateId": "HomebaseBannerIcon:InfluencerBanner34", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner35": { + "templateId": "HomebaseBannerIcon:InfluencerBanner35", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner36": { + "templateId": "HomebaseBannerIcon:InfluencerBanner36", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner37": { + "templateId": "HomebaseBannerIcon:InfluencerBanner37", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner38": { + "templateId": "HomebaseBannerIcon:InfluencerBanner38", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner39": { + "templateId": "HomebaseBannerIcon:InfluencerBanner39", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner40": { + "templateId": "HomebaseBannerIcon:InfluencerBanner40", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner41": { + "templateId": "HomebaseBannerIcon:InfluencerBanner41", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner42": { + "templateId": "HomebaseBannerIcon:InfluencerBanner42", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner43": { + "templateId": "HomebaseBannerIcon:InfluencerBanner43", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:InfluencerBanner44": { + "templateId": "HomebaseBannerIcon:InfluencerBanner44", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT1Banner": { + "templateId": "HomebaseBannerIcon:OT1Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT2Banner": { + "templateId": "HomebaseBannerIcon:OT2Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT3Banner": { + "templateId": "HomebaseBannerIcon:OT3Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT4Banner": { + "templateId": "HomebaseBannerIcon:OT4Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT5Banner": { + "templateId": "HomebaseBannerIcon:OT5Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT6Banner": { + "templateId": "HomebaseBannerIcon:OT6Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT7Banner": { + "templateId": "HomebaseBannerIcon:OT7Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT8Banner": { + "templateId": "HomebaseBannerIcon:OT8Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT9Banner": { + "templateId": "HomebaseBannerIcon:OT9Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT10Banner": { + "templateId": "HomebaseBannerIcon:OT10Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OT11Banner": { + "templateId": "HomebaseBannerIcon:OT11Banner", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner1": { + "templateId": "HomebaseBannerIcon:OtherBanner1", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner2": { + "templateId": "HomebaseBannerIcon:OtherBanner2", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner3": { + "templateId": "HomebaseBannerIcon:OtherBanner3", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner4": { + "templateId": "HomebaseBannerIcon:OtherBanner4", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner5": { + "templateId": "HomebaseBannerIcon:OtherBanner5", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner6": { + "templateId": "HomebaseBannerIcon:OtherBanner6", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner7": { + "templateId": "HomebaseBannerIcon:OtherBanner7", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner8": { + "templateId": "HomebaseBannerIcon:OtherBanner8", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner9": { + "templateId": "HomebaseBannerIcon:OtherBanner9", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner10": { + "templateId": "HomebaseBannerIcon:OtherBanner10", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner11": { + "templateId": "HomebaseBannerIcon:OtherBanner11", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner12": { + "templateId": "HomebaseBannerIcon:OtherBanner12", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner13": { + "templateId": "HomebaseBannerIcon:OtherBanner13", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner14": { + "templateId": "HomebaseBannerIcon:OtherBanner14", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner15": { + "templateId": "HomebaseBannerIcon:OtherBanner15", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner16": { + "templateId": "HomebaseBannerIcon:OtherBanner16", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner17": { + "templateId": "HomebaseBannerIcon:OtherBanner17", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner18": { + "templateId": "HomebaseBannerIcon:OtherBanner18", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner19": { + "templateId": "HomebaseBannerIcon:OtherBanner19", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner20": { + "templateId": "HomebaseBannerIcon:OtherBanner20", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner21": { + "templateId": "HomebaseBannerIcon:OtherBanner21", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner22": { + "templateId": "HomebaseBannerIcon:OtherBanner22", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner23": { + "templateId": "HomebaseBannerIcon:OtherBanner23", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner24": { + "templateId": "HomebaseBannerIcon:OtherBanner24", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner25": { + "templateId": "HomebaseBannerIcon:OtherBanner25", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner26": { + "templateId": "HomebaseBannerIcon:OtherBanner26", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner27": { + "templateId": "HomebaseBannerIcon:OtherBanner27", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner28": { + "templateId": "HomebaseBannerIcon:OtherBanner28", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner29": { + "templateId": "HomebaseBannerIcon:OtherBanner29", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner30": { + "templateId": "HomebaseBannerIcon:OtherBanner30", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner31": { + "templateId": "HomebaseBannerIcon:OtherBanner31", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner32": { + "templateId": "HomebaseBannerIcon:OtherBanner32", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner33": { + "templateId": "HomebaseBannerIcon:OtherBanner33", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner34": { + "templateId": "HomebaseBannerIcon:OtherBanner34", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner35": { + "templateId": "HomebaseBannerIcon:OtherBanner35", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner36": { + "templateId": "HomebaseBannerIcon:OtherBanner36", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner37": { + "templateId": "HomebaseBannerIcon:OtherBanner37", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner38": { + "templateId": "HomebaseBannerIcon:OtherBanner38", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner39": { + "templateId": "HomebaseBannerIcon:OtherBanner39", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner40": { + "templateId": "HomebaseBannerIcon:OtherBanner40", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner41": { + "templateId": "HomebaseBannerIcon:OtherBanner41", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner42": { + "templateId": "HomebaseBannerIcon:OtherBanner42", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner43": { + "templateId": "HomebaseBannerIcon:OtherBanner43", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner44": { + "templateId": "HomebaseBannerIcon:OtherBanner44", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner45": { + "templateId": "HomebaseBannerIcon:OtherBanner45", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner46": { + "templateId": "HomebaseBannerIcon:OtherBanner46", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner47": { + "templateId": "HomebaseBannerIcon:OtherBanner47", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner48": { + "templateId": "HomebaseBannerIcon:OtherBanner48", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner49": { + "templateId": "HomebaseBannerIcon:OtherBanner49", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner50": { + "templateId": "HomebaseBannerIcon:OtherBanner50", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner51": { + "templateId": "HomebaseBannerIcon:OtherBanner51", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner52": { + "templateId": "HomebaseBannerIcon:OtherBanner52", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner53": { + "templateId": "HomebaseBannerIcon:OtherBanner53", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner54": { + "templateId": "HomebaseBannerIcon:OtherBanner54", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner55": { + "templateId": "HomebaseBannerIcon:OtherBanner55", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner56": { + "templateId": "HomebaseBannerIcon:OtherBanner56", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner57": { + "templateId": "HomebaseBannerIcon:OtherBanner57", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner58": { + "templateId": "HomebaseBannerIcon:OtherBanner58", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner59": { + "templateId": "HomebaseBannerIcon:OtherBanner59", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner60": { + "templateId": "HomebaseBannerIcon:OtherBanner60", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner61": { + "templateId": "HomebaseBannerIcon:OtherBanner61", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner62": { + "templateId": "HomebaseBannerIcon:OtherBanner62", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner63": { + "templateId": "HomebaseBannerIcon:OtherBanner63", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner64": { + "templateId": "HomebaseBannerIcon:OtherBanner64", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner65": { + "templateId": "HomebaseBannerIcon:OtherBanner65", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner66": { + "templateId": "HomebaseBannerIcon:OtherBanner66", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner67": { + "templateId": "HomebaseBannerIcon:OtherBanner67", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner68": { + "templateId": "HomebaseBannerIcon:OtherBanner68", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner69": { + "templateId": "HomebaseBannerIcon:OtherBanner69", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner70": { + "templateId": "HomebaseBannerIcon:OtherBanner70", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner71": { + "templateId": "HomebaseBannerIcon:OtherBanner71", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner72": { + "templateId": "HomebaseBannerIcon:OtherBanner72", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner73": { + "templateId": "HomebaseBannerIcon:OtherBanner73", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner74": { + "templateId": "HomebaseBannerIcon:OtherBanner74", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner75": { + "templateId": "HomebaseBannerIcon:OtherBanner75", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner76": { + "templateId": "HomebaseBannerIcon:OtherBanner76", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner77": { + "templateId": "HomebaseBannerIcon:OtherBanner77", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "HomebaseBannerIcon:OtherBanner78": { + "templateId": "HomebaseBannerIcon:OtherBanner78", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l1": { + "templateId": "Quest:outpostquest_t1_l1", + "attributes": { + "creation_time": "min", + "level": -1, + "completion_custom_supplydropreceived": 1, + "completion_quest_outpost_1_1": " n", + "completion_complete_outpost_1_1": 1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "completion_custom_deployoutpost": 1, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-21T13:45:24.247Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l2": { + "templateId": "Quest:outpostquest_t1_l2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-21T15:37:01.947Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_1_2": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l3": { + "templateId": "Quest:outpostquest_t1_l3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-21T17:14:01.473Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_outpost_1_3": 1, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_custom_defendersupplyreceived": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l4": { + "templateId": "Quest:outpostquest_t1_l4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-23T13:41:57.009Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_1_4": 1, + "quest_rarity": "uncommon", + "completion_custom_defendersupplyreceived": 1, + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l5": { + "templateId": "Quest:outpostquest_t1_l5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-25T14:42:11.295Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_1_5": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l6": { + "templateId": "Quest:outpostquest_t1_l6", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T07:43:42.708Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "completion_complete_outpost_1_6": 1, + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l7": { + "templateId": "Quest:outpostquest_t1_l7", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T09:17:18.893Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_1_7": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l8": { + "templateId": "Quest:outpostquest_t1_l8", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T10:12:11.791Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_1_8": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l9": { + "templateId": "Quest:outpostquest_t1_l9", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T10:57:09.344Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_1_9": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_l10": { + "templateId": "Quest:outpostquest_t1_l10", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "completion_complete_outpost_1_10": 1, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T11:35:40.261Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t1_endless": { + "templateId": "Quest:outpostquest_t1_endless", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_complete_outpost_1_endless": 0, + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2019-10-26T11:35:40.264Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l1": { + "templateId": "Quest:outpostquest_t2_l1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "completion_custom_plankdeployoutpost": 1, + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T13:57:03.465Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_2_1": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l2": { + "templateId": "Quest:outpostquest_t2_l2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-10-26T20:07:12.034Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_outpost_2_2": 1, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l3": { + "templateId": "Quest:outpostquest_t2_l3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-09T15:47:26.883Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_2_3": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l4": { + "templateId": "Quest:outpostquest_t2_l4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-10T10:52:40.398Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_2_4": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l5": { + "templateId": "Quest:outpostquest_t2_l5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-10T19:05:12.712Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "completion_complete_outpost_2_5": 1, + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l6": { + "templateId": "Quest:outpostquest_t2_l6", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-10T20:46:26.147Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_2_6": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l7": { + "templateId": "Quest:outpostquest_t2_l7", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-16T14:10:07.281Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_2_7": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l8": { + "templateId": "Quest:outpostquest_t2_l8", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-25T16:01:16.591Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_2_8": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l9": { + "templateId": "Quest:outpostquest_t2_l9", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-01T15:42:38.342Z", + "completion_complete_outpost_2_9": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_l10": { + "templateId": "Quest:outpostquest_t2_l10", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "completion_complete_outpost_2_10": 1, + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-01T16:58:09.093Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t2_endless": { + "templateId": "Quest:outpostquest_t2_endless", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2019-12-01T16:58:09.095Z", + "completion_complete_outpost_2_endless": 0, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l1": { + "templateId": "Quest:outpostquest_t3_l1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-11-16T12:13:06.057Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "completion_complete_outpost_3_1": 1, + "xp": 0, + "completion_custom_cannydeployoutpost": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l2": { + "templateId": "Quest:outpostquest_t3_l2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-02T16:37:35.118Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_3_2": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l3": { + "templateId": "Quest:outpostquest_t3_l3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-07T08:13:33.307Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_3_3": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l4": { + "templateId": "Quest:outpostquest_t3_l4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-07T08:36:40.401Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "completion_complete_outpost_3_4": 1, + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l5": { + "templateId": "Quest:outpostquest_t3_l5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-07T08:56:28.282Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_3_5": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l6": { + "templateId": "Quest:outpostquest_t3_l6", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-08T13:17:58.981Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_3_6": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l7": { + "templateId": "Quest:outpostquest_t3_l7", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-15T12:01:00.118Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_3_7": 1 + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l8": { + "templateId": "Quest:outpostquest_t3_l8", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-15T12:36:50.544Z", + "completion_complete_outpost_3_8": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l9": { + "templateId": "Quest:outpostquest_t3_l9", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "completion_complete_outpost_3_9": 1, + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-15T13:06:06.512Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_l10": { + "templateId": "Quest:outpostquest_t3_l10", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-15T13:47:16.025Z", + "completion_complete_outpost_3_10": 1, + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t3_endless": { + "templateId": "Quest:outpostquest_t3_endless", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": "2019-12-15T13:47:16.030Z", + "challenge_linked_quest_parent": "", + "completion_complete_outpost_3_endless": 0, + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t4_l1": { + "templateId": "Quest:outpostquest_t4_l1", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-19T11:56:37.628Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_4_1": 1, + "completion_custom_twinedeployoutpost": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t4_l2": { + "templateId": "Quest:outpostquest_t4_l2", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-19T13:23:16.961Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_4_2": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t4_l3": { + "templateId": "Quest:outpostquest_t4_l3", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-19T13:58:12.505Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "completion_complete_outpost_4_3": 1, + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t4_l4": { + "templateId": "Quest:outpostquest_t4_l4", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-19T15:02:57.127Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "completion_complete_outpost_4_4": 1, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }, + "Quest:outpostquest_t4_l5": { + "templateId": "Quest:outpostquest_t4_l5", + "attributes": { + "creation_time": "min", + "level": -1, + "item_seen": true, + "playlists": [], + "sent_new_notification": true, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Claimed", + "bucket": "", + "last_state_change_time": "2019-12-19T16:17:04.872Z", + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false, + "completion_complete_outpost_4_5": 1 + }, + "quantity": 1 + }, + "AccountResource:Voucher_Generic_Worker_VR": { + "templateId": "AccountResource:Voucher_Generic_Worker_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Worker_SR": { + "templateId": "AccountResource:Voucher_Generic_Worker_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Worker_R": { + "templateId": "AccountResource:Voucher_Generic_Worker_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Weapon_VR": { + "templateId": "AccountResource:Voucher_Generic_Weapon_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Weapon_SR": { + "templateId": "AccountResource:Voucher_Generic_Weapon_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Weapon_R": { + "templateId": "AccountResource:Voucher_Generic_Weapon_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Trap_VR": { + "templateId": "AccountResource:Voucher_Generic_Trap_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Trap_SR": { + "templateId": "AccountResource:Voucher_Generic_Trap_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Trap_R": { + "templateId": "AccountResource:Voucher_Generic_Trap_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Schematic_VR": { + "templateId": "AccountResource:Voucher_Generic_Schematic_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Schematic_SR": { + "templateId": "AccountResource:Voucher_Generic_Schematic_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Schematic_R": { + "templateId": "AccountResource:Voucher_Generic_Schematic_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Ranged_VR": { + "templateId": "AccountResource:Voucher_Generic_Ranged_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Ranged_SR": { + "templateId": "AccountResource:Voucher_Generic_Ranged_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Ranged_R": { + "templateId": "AccountResource:Voucher_Generic_Ranged_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Melee_VR": { + "templateId": "AccountResource:Voucher_Generic_Melee_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Melee_SR": { + "templateId": "AccountResource:Voucher_Generic_Melee_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Melee_R": { + "templateId": "AccountResource:Voucher_Generic_Melee_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Manager_VR": { + "templateId": "AccountResource:Voucher_Generic_Manager_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Manager_SR": { + "templateId": "AccountResource:Voucher_Generic_Manager_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Manager_R": { + "templateId": "AccountResource:Voucher_Generic_Manager_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Hero_VR": { + "templateId": "AccountResource:Voucher_Generic_Hero_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Hero_SR": { + "templateId": "AccountResource:Voucher_Generic_Hero_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Hero_R": { + "templateId": "AccountResource:Voucher_Generic_Hero_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Defender_VR": { + "templateId": "AccountResource:Voucher_Generic_Defender_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Defender_SR": { + "templateId": "AccountResource:Voucher_Generic_Defender_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Generic_Defender_R": { + "templateId": "AccountResource:Voucher_Generic_Defender_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Founders_StarterWeapons_Bundle": { + "templateId": "AccountResource:Voucher_Founders_StarterWeapons_Bundle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Founders_Soldier_Weapon_VR": { + "templateId": "AccountResource:Voucher_Founders_Soldier_Weapon_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Founders_Soldier_Weapon_SR": { + "templateId": "AccountResource:Voucher_Founders_Soldier_Weapon_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Founders_Soldier_Bundle": { + "templateId": "AccountResource:Voucher_Founders_Soldier_Bundle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Founders_Outlander_Weapon_VR": { + "templateId": "AccountResource:Voucher_Founders_Outlander_Weapon_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Founders_Outlander_Weapon_SR": { + "templateId": "AccountResource:Voucher_Founders_Outlander_Weapon_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Founders_Outlander_Bundle": { + "templateId": "AccountResource:Voucher_Founders_Outlander_Bundle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Founders_Ninja_Weapon_VR": { + "templateId": "AccountResource:Voucher_Founders_Ninja_Weapon_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Founders_Ninja_Weapon_SR": { + "templateId": "AccountResource:Voucher_Founders_Ninja_Weapon_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Founders_Ninja_Bundle": { + "templateId": "AccountResource:Voucher_Founders_Ninja_Bundle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Founders_Constructor_Weapon_VR": { + "templateId": "AccountResource:Voucher_Founders_Constructor_Weapon_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Founders_Constructor_Weapon_SR": { + "templateId": "AccountResource:Voucher_Founders_Constructor_Weapon_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Founders_Constructor_Bundle": { + "templateId": "AccountResource:Voucher_Founders_Constructor_Bundle", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_Custom_Firecracker_R": { + "templateId": "AccountResource:Voucher_Custom_Firecracker_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_CardPack_Bronze": { + "templateId": "AccountResource:Voucher_CardPack_Bronze", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Voucher_BasicPack": { + "templateId": "AccountResource:Voucher_BasicPack", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:SpecialCurrency_Daily": { + "templateId": "AccountResource:SpecialCurrency_Daily", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:SchematicXP": { + "templateId": "AccountResource:SchematicXP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Reagent_Weapons": { + "templateId": "AccountResource:Reagent_Weapons", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Reagent_Traps": { + "templateId": "AccountResource:Reagent_Traps", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Reagent_People": { + "templateId": "AccountResource:Reagent_People", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Reagent_EvolveRarity_VR": { + "templateId": "AccountResource:Reagent_EvolveRarity_VR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Reagent_EvolveRarity_SR": { + "templateId": "AccountResource:Reagent_EvolveRarity_SR", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Reagent_EvolveRarity_R": { + "templateId": "AccountResource:Reagent_EvolveRarity_R", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Reagent_C_T04": { + "templateId": "AccountResource:Reagent_C_T04", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Reagent_C_T03": { + "templateId": "AccountResource:Reagent_C_T03", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Reagent_C_T02": { + "templateId": "AccountResource:Reagent_C_T02", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:Reagent_C_T01": { + "templateId": "AccountResource:Reagent_C_T01", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:PersonnelXP": { + "templateId": "AccountResource:PersonnelXP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:PeopleResource": { + "templateId": "AccountResource:PeopleResource", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:HeroXP": { + "templateId": "AccountResource:HeroXP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:EventCurrency_StormZone": { + "templateId": "AccountResource:EventCurrency_StormZone", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:EventCurrency_Snowballs": { + "templateId": "AccountResource:EventCurrency_Snowballs", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:EventCurrency_Scavenger": { + "templateId": "AccountResource:EventCurrency_Scavenger", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:EventCurrency_Scaling": { + "templateId": "AccountResource:EventCurrency_Scaling", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:EventCurrency_PumpkinWarhead": { + "templateId": "AccountResource:EventCurrency_PumpkinWarhead", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:EventCurrency_Founders": { + "templateId": "AccountResource:EventCurrency_Founders", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:EventCurrency_Candy": { + "templateId": "AccountResource:EventCurrency_Candy", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:CompendiumXP": { + "templateId": "AccountResource:CompendiumXP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:BattleBucks": { + "templateId": "AccountResource:BattleBucks", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:AthenaSeasonalXP": { + "templateId": "AccountResource:AthenaSeasonalXP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:AthenaSeasonalBP": { + "templateId": "AccountResource:AthenaSeasonalBP", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "AccountResource:EventCurrency_Spring": { + "templateId": "AccountResource:EventCurrency_Spring", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 1000000 + }, + "0e0ba06b-e2dc-4000-a105-d35d7573b49d": { + "templateId": "ConsumableAccountItem:smallxpboost_gift", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 9579248 + }, + "9f34b734-3851-430f-8b24-2a3c6871ca54": { + "templateId": "ConsumableAccountItem:smallxpboost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": true, + "xp": 0, + "favorite": false + }, + "quantity": 8339478 + }, + "xp-boost": { + "templateId": "Token:xpboost", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 0 + }, + "Outpost:outpostcore_pve_03": { + "templateId": "Outpost:outpostcore_pve_03", + "attributes": { + "cloud_save_info": { + "saveCount": 319, + "savedRecords": [ + { + "recordIndex": 0, + "archiveNumber": 1, + "recordFilename": "eb192023-7db8-4bc0-b3e4-bf060c7baf87_r0_a1.sav" + } + ] + }, + "level": 10, + "outpost_core_info": { + "placedBuildings": [ + { + "buildingTag": "Outpost.BuildingActor.Building.00", + "placedTag": "Outpost.PlacementActor.Placement.01" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.01", + "placedTag": "Outpost.PlacementActor.Placement.00" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.02", + "placedTag": "Outpost.PlacementActor.Placement.05" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.03", + "placedTag": "Outpost.PlacementActor.Placement.02" + } + ], + "accountsWithEditPermission": [], + "highestEnduranceWaveReached": 30 + } + }, + "quantity": 1 + }, + "Outpost:outpostcore_pve_02": { + "templateId": "Outpost:outpostcore_pve_02", + "attributes": { + "cloud_save_info": { + "saveCount": 603, + "savedRecords": [ + { + "recordIndex": 0, + "archiveNumber": 0, + "recordFilename": "76fe0295-aee2-463a-9229-d9933b4969b8_r0_a0.sav" + } + ] + }, + "level": 10, + "outpost_core_info": { + "placedBuildings": [ + { + "buildingTag": "Outpost.BuildingActor.Building.00", + "placedTag": "Outpost.PlacementActor.Placement.00" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.01", + "placedTag": "Outpost.PlacementActor.Placement.01" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.02", + "placedTag": "Outpost.PlacementActor.Placement.04" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.03", + "placedTag": "Outpost.PlacementActor.Placement.03" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.04", + "placedTag": "Outpost.PlacementActor.Placement.02" + } + ], + "accountsWithEditPermission": [], + "highestEnduranceWaveReached": 30 + } + }, + "quantity": 1 + }, + "Outpost:outpostcore_pve_04": { + "templateId": "Outpost:outpostcore_pve_04", + "attributes": { + "cloud_save_info": { + "saveCount": 77, + "savedRecords": [ + { + "recordIndex": 0, + "archiveNumber": 1, + "recordFilename": "940037e4-87d2-499e-8d00-cdb2dfa326b9_r0_a1.sav" + } + ] + }, + "level": 10, + "outpost_core_info": { + "placedBuildings": [ + { + "buildingTag": "Outpost.BuildingActor.Building.00", + "placedTag": "Outpost.PlacementActor.Placement.00" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.01", + "placedTag": "Outpost.PlacementActor.Placement.01" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.02", + "placedTag": "Outpost.PlacementActor.Placement.03" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.03", + "placedTag": "Outpost.PlacementActor.Placement.05" + } + ], + "accountsWithEditPermission": [], + "highestEnduranceWaveReached": 30 + } + }, + "quantity": 1 + }, + "Outpost:outpostcore_pve_01": { + "templateId": "Outpost:outpostcore_pve_01", + "attributes": { + "cloud_save_info": { + "saveCount": 851, + "savedRecords": [ + { + "recordIndex": 0, + "archiveNumber": 0, + "recordFilename": "a1d68ce6-63a5-499a-946f-9e0c825572d7_r0_a0.sav" + } + ] + }, + "level": 10, + "outpost_core_info": { + "placedBuildings": [ + { + "buildingTag": "Outpost.BuildingActor.Building.00", + "placedTag": "Outpost.PlacementActor.Placement.00" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.01", + "placedTag": "Outpost.PlacementActor.Placement.02" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.02", + "placedTag": "Outpost.PlacementActor.Placement.01" + }, + { + "buildingTag": "Outpost.BuildingActor.Building.03", + "placedTag": "Outpost.PlacementActor.Placement.05" + } + ], + "accountsWithEditPermission": [], + "highestEnduranceWaveReached": 30 + } + }, + "quantity": 1 + }, + "DeployableBaseCloudSave:testdeployablebaseitemdef": { + "templateId": "DeployableBaseCloudSave:testdeployablebaseitemdef", + "attributes": { + "tier_progression": { + "progressionInfo": [ + { + "progressionLayoutGuid": "B70B5C69-437E-75C5-CB91-7E913F3B5294", + "highestDefeatedTier": 0 + }, + { + "progressionLayoutGuid": "04FD086F-4A99-823B-06C3-979A8F408960", + "highestDefeatedTier": 4 + }, + { + "progressionLayoutGuid": "D3D31F40-45D8-FD77-67E6-5FBAB0550417", + "highestDefeatedTier": 1 + }, + { + "progressionLayoutGuid": "92A17A43-4EDC-8F69-688F-24BB3A3D8AEF", + "highestDefeatedTier": 3 + }, + { + "progressionLayoutGuid": "A2D8DB3E-457E-279B-58F5-AA9BA2FDC547", + "highestDefeatedTier": 4 + }, + { + "progressionLayoutGuid": "5AAB9A15-49F5-0D74-0B22-BB9686396E8F", + "highestDefeatedTier": 1 + }, + { + "progressionLayoutGuid": "9077163A-4664-1993-5A20-D28170404FD6", + "highestDefeatedTier": 3 + }, + { + "progressionLayoutGuid": "FB679125-49BC-0025-48F3-22A1B8085189", + "highestDefeatedTier": 4 + } + ] + }, + "cloud_save_info": { + "saveCount": 11, + "savedRecords": [ + { + "recordIndex": 0, + "archiveNumber": 1, + "recordFilename": "2FA8CFBB-4973-CCF0-EEA8-BEBC37D99F52_r0_a1.sav" + } + ] + }, + "level": 0 + }, + "quantity": 1 + }, + "Token:hordepointstier1": { + "templateId": "Token:hordepointstier1", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "Token:hordepointstier2": { + "templateId": "Token:hordepointstier2", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "Token:hordepointstier3": { + "templateId": "Token:hordepointstier3", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "Token:hordepointstier4": { + "templateId": "Token:hordepointstier4", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1000000000 + }, + "ConversionControl:cck_worker_core_unlimited": { + "templateId": "ConversionControl:cck_worker_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_unlimited_vr": { + "templateId": "ConversionControl:cck_worker_core_unlimited_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_consumable_vr": { + "templateId": "ConversionControl:cck_worker_core_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_consumable_uc": { + "templateId": "ConversionControl:cck_worker_core_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_consumable_sr": { + "templateId": "ConversionControl:cck_worker_core_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_consumable_r": { + "templateId": "ConversionControl:cck_worker_core_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_consumable_c": { + "templateId": "ConversionControl:cck_worker_core_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_worker_core_consumable": { + "templateId": "ConversionControl:cck_worker_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_weapon_core_unlimited": { + "templateId": "ConversionControl:cck_weapon_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_weapon_scavenger_consumable_sr": { + "templateId": "ConversionControl:cck_weapon_scavenger_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_weapon_core_consumable": { + "templateId": "ConversionControl:cck_weapon_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_unlimited": { + "templateId": "ConversionControl:cck_trap_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_consumable_vr": { + "templateId": "ConversionControl:cck_trap_core_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_consumable_uc": { + "templateId": "ConversionControl:cck_trap_core_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_consumable_sr": { + "templateId": "ConversionControl:cck_trap_core_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_consumable_r": { + "templateId": "ConversionControl:cck_trap_core_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_consumable_c": { + "templateId": "ConversionControl:cck_trap_core_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_trap_core_consumable": { + "templateId": "ConversionControl:cck_trap_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_unlimited": { + "templateId": "ConversionControl:cck_ranged_sniper_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_unlimited": { + "templateId": "ConversionControl:cck_ranged_shotgun_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_unlimited": { + "templateId": "ConversionControl:cck_ranged_pistol_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_core_unlimited_vr": { + "templateId": "ConversionControl:cck_ranged_core_unlimited_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_core_unlimited": { + "templateId": "ConversionControl:cck_ranged_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_unlimited": { + "templateId": "ConversionControl:cck_ranged_assault_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_consumable_vr": { + "templateId": "ConversionControl:cck_ranged_sniper_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_consumable_uc": { + "templateId": "ConversionControl:cck_ranged_sniper_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_sniper_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_consumable_r": { + "templateId": "ConversionControl:cck_ranged_sniper_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_consumable_c": { + "templateId": "ConversionControl:cck_ranged_sniper_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_sniper_consumable": { + "templateId": "ConversionControl:cck_ranged_sniper_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_consumable_vr": { + "templateId": "ConversionControl:cck_ranged_shotgun_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_consumable_uc": { + "templateId": "ConversionControl:cck_ranged_shotgun_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_shotgun_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_consumable_r": { + "templateId": "ConversionControl:cck_ranged_shotgun_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_consumable_c": { + "templateId": "ConversionControl:cck_ranged_shotgun_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_shotgun_consumable": { + "templateId": "ConversionControl:cck_ranged_shotgun_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_consumable_vr": { + "templateId": "ConversionControl:cck_ranged_pistol_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_consumable_uc": { + "templateId": "ConversionControl:cck_ranged_pistol_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_pistol_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_consumable_r": { + "templateId": "ConversionControl:cck_ranged_pistol_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_consumable_c": { + "templateId": "ConversionControl:cck_ranged_pistol_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_pistol_consumable": { + "templateId": "ConversionControl:cck_ranged_pistol_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_launcher_scavenger_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_launcher_scavenger_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_launcher_pumpkin_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_launcher_pumpkin_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_core_consumable": { + "templateId": "ConversionControl:cck_ranged_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_hydra_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_assault_hydra_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_consumable_vr": { + "templateId": "ConversionControl:cck_ranged_assault_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_consumable_uc": { + "templateId": "ConversionControl:cck_ranged_assault_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_assault_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_consumable_r": { + "templateId": "ConversionControl:cck_ranged_assault_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_consumable_c": { + "templateId": "ConversionControl:cck_ranged_assault_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_consumable": { + "templateId": "ConversionControl:cck_ranged_assault_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_assault_auto_halloween_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_assault_auto_halloween_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_material_event_pumpkinwarhead": { + "templateId": "ConversionControl:cck_material_event_pumpkinwarhead", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_consumable": { + "templateId": "ConversionControl:cck_ranged_smg_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_consumable_c": { + "templateId": "ConversionControl:cck_ranged_smg_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_consumable_r": { + "templateId": "ConversionControl:cck_ranged_smg_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_consumable_sr": { + "templateId": "ConversionControl:cck_ranged_smg_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_consumable_uc": { + "templateId": "ConversionControl:cck_ranged_smg_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_consumable_vr": { + "templateId": "ConversionControl:cck_ranged_smg_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_ranged_smg_unlimited": { + "templateId": "ConversionControl:cck_ranged_smg_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_unlimited": { + "templateId": "ConversionControl:cck_melee_tool_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_unlimited": { + "templateId": "ConversionControl:cck_melee_sword_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_unlimited": { + "templateId": "ConversionControl:cck_melee_spear_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_unlimited": { + "templateId": "ConversionControl:cck_melee_scythe_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_piercing_unlimited": { + "templateId": "ConversionControl:cck_melee_piercing_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_edged_unlimited": { + "templateId": "ConversionControl:cck_melee_edged_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_core_unlimited_vr": { + "templateId": "ConversionControl:cck_melee_core_unlimited_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_core_unlimited": { + "templateId": "ConversionControl:cck_melee_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_unlimited": { + "templateId": "ConversionControl:cck_melee_club_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_blunt_unlimited": { + "templateId": "ConversionControl:cck_melee_blunt_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_unlimited": { + "templateId": "ConversionControl:cck_melee_axe_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_consumable_vr": { + "templateId": "ConversionControl:cck_melee_tool_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_consumable_uc": { + "templateId": "ConversionControl:cck_melee_tool_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_consumable_sr": { + "templateId": "ConversionControl:cck_melee_tool_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_consumable_r": { + "templateId": "ConversionControl:cck_melee_tool_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_consumable_c": { + "templateId": "ConversionControl:cck_melee_tool_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_tool_consumable": { + "templateId": "ConversionControl:cck_melee_tool_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_consumable_vr": { + "templateId": "ConversionControl:cck_melee_sword_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_consumable_uc": { + "templateId": "ConversionControl:cck_melee_sword_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_consumable_sr": { + "templateId": "ConversionControl:cck_melee_sword_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_consumable_r": { + "templateId": "ConversionControl:cck_melee_sword_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_consumable_c": { + "templateId": "ConversionControl:cck_melee_sword_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_sword_consumable": { + "templateId": "ConversionControl:cck_melee_sword_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_consumable_vr": { + "templateId": "ConversionControl:cck_melee_spear_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_consumable_uc": { + "templateId": "ConversionControl:cck_melee_spear_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_consumable_sr": { + "templateId": "ConversionControl:cck_melee_spear_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_consumable_r": { + "templateId": "ConversionControl:cck_melee_spear_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_consumable_c": { + "templateId": "ConversionControl:cck_melee_spear_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_spear_consumable": { + "templateId": "ConversionControl:cck_melee_spear_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_consumable_vr": { + "templateId": "ConversionControl:cck_melee_scythe_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_consumable_uc": { + "templateId": "ConversionControl:cck_melee_scythe_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_consumable_sr": { + "templateId": "ConversionControl:cck_melee_scythe_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_consumable_r": { + "templateId": "ConversionControl:cck_melee_scythe_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_consumable_c": { + "templateId": "ConversionControl:cck_melee_scythe_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_scythe_consumable": { + "templateId": "ConversionControl:cck_melee_scythe_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_piercing_consumable": { + "templateId": "ConversionControl:cck_melee_piercing_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_edged_consumable": { + "templateId": "ConversionControl:cck_melee_edged_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_core_consumable": { + "templateId": "ConversionControl:cck_melee_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_consumable_vr": { + "templateId": "ConversionControl:cck_melee_club_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_consumable_uc": { + "templateId": "ConversionControl:cck_melee_club_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_consumable_sr": { + "templateId": "ConversionControl:cck_melee_club_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_consumable_r": { + "templateId": "ConversionControl:cck_melee_club_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_consumable_c": { + "templateId": "ConversionControl:cck_melee_club_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_club_consumable": { + "templateId": "ConversionControl:cck_melee_club_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_blunt_consumable": { + "templateId": "ConversionControl:cck_melee_blunt_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_consumable_vr": { + "templateId": "ConversionControl:cck_melee_axe_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_consumable_uc": { + "templateId": "ConversionControl:cck_melee_axe_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_consumable_sr": { + "templateId": "ConversionControl:cck_melee_axe_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_consumable_r": { + "templateId": "ConversionControl:cck_melee_axe_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_consumable_c": { + "templateId": "ConversionControl:cck_melee_axe_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_melee_axe_consumable": { + "templateId": "ConversionControl:cck_melee_axe_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_unlimited": { + "templateId": "ConversionControl:cck_manager_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_consumable_vr": { + "templateId": "ConversionControl:cck_manager_core_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_consumable_uc": { + "templateId": "ConversionControl:cck_manager_core_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_consumable_sr": { + "templateId": "ConversionControl:cck_manager_core_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_consumable_r": { + "templateId": "ConversionControl:cck_manager_core_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_consumable_c": { + "templateId": "ConversionControl:cck_manager_core_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_manager_core_consumable": { + "templateId": "ConversionControl:cck_manager_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_outlander_unlimited": { + "templateId": "ConversionControl:cck_hero_outlander_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_ninja_unlimited": { + "templateId": "ConversionControl:cck_hero_ninja_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_unlimited": { + "templateId": "ConversionControl:cck_hero_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_constructor_unlimited": { + "templateId": "ConversionControl:cck_hero_constructor_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_commando_unlimited": { + "templateId": "ConversionControl:cck_hero_commando_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_outlander_consumable": { + "templateId": "ConversionControl:cck_hero_outlander_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_ninja_consumable": { + "templateId": "ConversionControl:cck_hero_ninja_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_unlimited_vr": { + "templateId": "ConversionControl:cck_hero_core_unlimited_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_consumable_vr": { + "templateId": "ConversionControl:cck_hero_core_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_consumable_uc": { + "templateId": "ConversionControl:cck_hero_core_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_consumable_sr": { + "templateId": "ConversionControl:cck_hero_core_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_consumable_r": { + "templateId": "ConversionControl:cck_hero_core_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_core_consumable": { + "templateId": "ConversionControl:cck_hero_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_constructor_consumable": { + "templateId": "ConversionControl:cck_hero_constructor_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_hero_commando_consumable": { + "templateId": "ConversionControl:cck_hero_commando_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_worker_veryrare": { + "templateId": "ConversionControl:cck_expedition_worker_veryrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_worker_uncommon": { + "templateId": "ConversionControl:cck_expedition_worker_uncommon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_worker_superrare": { + "templateId": "ConversionControl:cck_expedition_worker_superrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_worker_rare": { + "templateId": "ConversionControl:cck_expedition_worker_rare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_worker_common": { + "templateId": "ConversionControl:cck_expedition_worker_common", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_weapon_veryrare": { + "templateId": "ConversionControl:cck_expedition_weapon_veryrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_weapon_uncommon": { + "templateId": "ConversionControl:cck_expedition_weapon_uncommon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_weapon_superrare": { + "templateId": "ConversionControl:cck_expedition_weapon_superrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_weapon_rare": { + "templateId": "ConversionControl:cck_expedition_weapon_rare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_weapon_common": { + "templateId": "ConversionControl:cck_expedition_weapon_common", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_trap_veryrare": { + "templateId": "ConversionControl:cck_expedition_trap_veryrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_trap_uncommon": { + "templateId": "ConversionControl:cck_expedition_trap_uncommon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_trap_superrare": { + "templateId": "ConversionControl:cck_expedition_trap_superrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_trap_rare": { + "templateId": "ConversionControl:cck_expedition_trap_rare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_trap_common": { + "templateId": "ConversionControl:cck_expedition_trap_common", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_manager_veryrare": { + "templateId": "ConversionControl:cck_expedition_manager_veryrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_manager_unique": { + "templateId": "ConversionControl:cck_expedition_manager_unique", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_manager_uncommon": { + "templateId": "ConversionControl:cck_expedition_manager_uncommon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_manager_superrare": { + "templateId": "ConversionControl:cck_expedition_manager_superrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_manager_rare": { + "templateId": "ConversionControl:cck_expedition_manager_rare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_hero_veryrare": { + "templateId": "ConversionControl:cck_expedition_hero_veryrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_hero_uncommon": { + "templateId": "ConversionControl:cck_expedition_hero_uncommon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_hero_superrare": { + "templateId": "ConversionControl:cck_expedition_hero_superrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_hero_rare": { + "templateId": "ConversionControl:cck_expedition_hero_rare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_defender_veryrare": { + "templateId": "ConversionControl:cck_expedition_defender_veryrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_defender_uncommon": { + "templateId": "ConversionControl:cck_expedition_defender_uncommon", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_defender_superrare": { + "templateId": "ConversionControl:cck_expedition_defender_superrare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_expedition_defender_rare": { + "templateId": "ConversionControl:cck_expedition_defender_rare", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_unlimited": { + "templateId": "ConversionControl:cck_defender_core_unlimited", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_consumable_vr": { + "templateId": "ConversionControl:cck_defender_core_consumable_vr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_consumable_uc": { + "templateId": "ConversionControl:cck_defender_core_consumable_uc", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_consumable_sr": { + "templateId": "ConversionControl:cck_defender_core_consumable_sr", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_consumable_r": { + "templateId": "ConversionControl:cck_defender_core_consumable_r", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_consumable_c": { + "templateId": "ConversionControl:cck_defender_core_consumable_c", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "ConversionControl:cck_defender_core_consumable": { + "templateId": "ConversionControl:cck_defender_core_consumable", + "attributes": { + "item_seen": true + }, + "quantity": 1 + }, + "bc937ad7-40e3-47fb-85a1-ddba5dc76fc8": { + "templateId": "Quest:heroquest_constructor_1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_assign_hero_constructor": 1, + "completion_upgrade_constructor": 1, + "completion_complete_pve01_diff2_constructor": 1 + }, + "quantity": 1 + }, + "7f5b6b54-832b-41eb-bc97-16100dc32fa7": { + "templateId": "Quest:heroquest_constructor_2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_ability_bullrush": 1, + "completion_build_any_floor_constructor": 1, + "completion_ability_base": 1, + "completion_complete_pve01_diff2_constructor": 1 + }, + "quantity": 1 + }, + "73034fc4-427b-42b4-9ac4-4dc9015016a3": { + "templateId": "Quest:heroquest_constructor_3", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_buildradar_1_diff2_con": 1 + }, + "quantity": 1 + }, + "1e8a3d87-5aaa-4bac-8860-86ae64c59875": { + "templateId": "Quest:heroquest_ninja_1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_kill_husk_melee": 20, + "completion_complete_pve01_diff2": 1 + }, + "quantity": 1 + }, + "c7116a13-c12c-4119-86b3-818cdf4fbe96": { + "templateId": "Quest:heroquest_ninja_2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_upgrade_ninja_lvl_3": 1, + "completion_ability_throwingstars": 3, + "completion_ability_mantisleap": 3, + "completion_complete_pve01_diff3_ninja": 3 + }, + "quantity": 1 + }, + "dcbec4e3-9d5a-411e-b6a2-a5b592b6290b": { + "templateId": "Quest:heroquest_outlander_1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_exploration_1_diff2": 1 + }, + "quantity": 1 + }, + "eda063b3-e861-4104-b6b8-505e6e69c3dd": { + "templateId": "Quest:heroquest_outlander_2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_upgrade_outlander_lvl_3": 1, + "completion_ability_outlander_fragment": 1, + "completion_complete_pve01_diff3_outlander": 3 + }, + "quantity": 1 + }, + "d5bc9878-23bc-4718-9bc9-959286acd7a2": { + "templateId": "Quest:heroquest_soldier_1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_upgrade_soldier": 1, + "completion_kill_husk_commando_assault": 100 + }, + "quantity": 1 + }, + "6c03922f-90ac-448e-a5f6-8f082d06e75e": { + "templateId": "Quest:heroquest_soldier_2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_kill_husk_commando_fraggrenade": 10 + }, + "quantity": 1 + }, + "6a11ec33-7ec1-4a41-b93f-83cd031f1c29": { + "templateId": "Quest:homebasequest_completeexpedition", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_collectexpedition": 1 + }, + "quantity": 1 + }, + "6039da8e-74ff-4813-acf0-9f32590479e0": { + "templateId": "Quest:homebasequest_slotfireteamalphaworker", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_assign_worker_to_fire_squadone": 1 + }, + "quantity": 1 + }, + "6774cc13-ab09-41f5-8fc5-91e5e3b8e304": { + "templateId": "Quest:homebasequest_unlockemtworker", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_emtworker": 1 + }, + "quantity": 1 + }, + "634e0a5c-5d17-4458-9de8-e78f07c94009": { + "templateId": "Quest:homebasequest_unlockfireteamalphaworker", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_unlock_skill_tree_fireteamalpha": 1 + }, + "quantity": 1 + }, + "4f3ef9c5-2027-4b76-9c57-c6b810d6f61f": { + "templateId": "Quest:outpostquest_t1_p1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "7444da5b-2e0d-460d-a2ac-857dfd7e74fe": { + "templateId": "Quest:outpostquest_t1_p2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "945ccba1-abb0-4cd6-af6f-8b4d5b3f3c81": { + "templateId": "Quest:outpostquest_t2_p1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "778df0d7-bfee-43ee-b3ee-88443a148acb": { + "templateId": "Quest:outpostquest_t2_p2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "7d85c5bb-65c1-423a-93a8-afdd86201dd8": { + "templateId": "Quest:outpostquest_t3_p1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "c040799a-160d-4612-8aec-5c39f975de6b": { + "templateId": "Quest:outpostquest_t3_p2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + }, + "2ea21563-1796-47c0-b90d-f23cd623fd8e": { + "templateId": "Quest:outpostquest_t4_l10", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_outpost_4_10": 1 + }, + "quantity": 1 + }, + "a6090e7d-3dea-4a56-8a18-eb5ac1bcf92e": { + "templateId": "Quest:outpostquest_t4_l6", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_outpost_4_6": 1 + }, + "quantity": 1 + }, + "039eb2e6-f9bc-4276-bbb4-a9cb3817aed1": { + "templateId": "Quest:outpostquest_t4_l7", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_outpost_4_7": 1 + }, + "quantity": 1 + }, + "d0c37cc2-d5b1-4fc8-8ef1-e609f50b8d9e": { + "templateId": "Quest:outpostquest_t4_l8", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_outpost_4_8": 1 + }, + "quantity": 1 + }, + "fd37fb42-ed30-4710-80e6-793640cac803": { + "templateId": "Quest:outpostquest_t4_l9", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_outpost_4_9": 1 + }, + "quantity": 1 + }, + "2b00e018-4232-458f-8caf-69ba8aeaa8f5": { + "templateId": "Quest:plankertonquest_filler_10_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_launchballoon_2_diff5": 1 + }, + "quantity": 1 + }, + "a1d785df-f204-43e0-9e89-5337ff7ccc17": { + "templateId": "Quest:plankertonquest_filler_1_d1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_gate_double_2": 1 + }, + "quantity": 1 + }, + "3d0b6c92-0992-477b-baf7-a0cbe7a72a57": { + "templateId": "Quest:plankertonquest_filler_1_d2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_powerreactor_2_diff2_v2": 1 + }, + "quantity": 1 + }, + "770b1b8a-c236-4e8f-ae5a-add0f02ff972": { + "templateId": "Quest:plankertonquest_filler_1_d3", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_stormchest_2_diff3": 1 + }, + "quantity": 1 + }, + "140fa991-81d3-41c1-a4d1-f7024dff4e0e": { + "templateId": "Quest:plankertonquest_filler_1_d4", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_evacuateshelter_2_diff4_v2": 1 + }, + "quantity": 1 + }, + "253bac92-00d3-4ba0-8650-6bd18b8a5759": { + "templateId": "Quest:plankertonquest_filler_1_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_gate_triple_2_diff5": 1 + }, + "quantity": 1 + }, + "b8c87ff8-bec4-489d-a004-da8ace83374b": { + "templateId": "Quest:plankertonquest_filler_2_d1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_evacuate_2": 1 + }, + "quantity": 1 + }, + "197eaa59-3412-4b39-9840-2d542b993991": { + "templateId": "Quest:plankertonquest_filler_2_d2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_destroyencamp_2_diff2": 1 + }, + "quantity": 1 + }, + "8029a3e1-c7f1-4fc2-ace6-def69dd1e2f9": { + "templateId": "Quest:plankertonquest_filler_2_d3", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_delivergoods_2_diff3_v2": 1 + }, + "quantity": 1 + }, + "f7b8825e-1d90-4b5c-85ac-8dc99cbedec5": { + "templateId": "Quest:plankertonquest_filler_2_d4", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_kill_husk_2_diff4_v2": 500 + }, + "quantity": 1 + }, + "3f16f63d-a3f2-453b-b99f-51c41b7833f9": { + "templateId": "Quest:plankertonquest_filler_2_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_questcollect_survivoritemdata": 25, + "completion_complete_evacuateshelter_2_diff5": 2 + }, + "quantity": 1 + }, + "dbc63d68-f0d7-4ec9-a1d4-9300f24b92c9": { + "templateId": "Quest:plankertonquest_filler_3_d1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_launchballoon_2": 1 + }, + "quantity": 1 + }, + "36ed0a3e-09c7-44cf-bebf-7c36beab4fd6": { + "templateId": "Quest:plankertonquest_filler_3_d2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_custom_bluglosyphon_full_v2": 3 + }, + "quantity": 1 + }, + "94ab5675-280b-4ac5-ab1a-acd871a5ca65": { + "templateId": "Quest:plankertonquest_filler_3_d3", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_anomaly_2_diff3_v2": 3 + }, + "quantity": 1 + }, + "14aca648-f5a5-479d-a4e7-a32bab62a67e": { + "templateId": "Quest:plankertonquest_filler_3_d4", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_custom_pylonused_build": 1, + "completion_custom_pylonused_health": 1, + "completion_custom_pylonused_movement": 1, + "completion_custom_pylonused_shield": 1, + "completion_custom_pylonused_stamina": 1 + }, + "quantity": 1 + }, + "2e58e703-2a33-42e5-897f-bb0e90f96c19": { + "templateId": "Quest:plankertonquest_filler_3_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_retrievedata_2_diff5": 1 + }, + "quantity": 1 + }, + "1afa7e0e-5b10-46c8-bfc8-306f454f9373": { + "templateId": "Quest:plankertonquest_filler_4_d1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_buildradargrid_2": 1 + }, + "quantity": 1 + }, + "7ffa60d0-9ffe-4b5d-8d0e-1b57261f54a5": { + "templateId": "Quest:plankertonquest_filler_4_d2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_destroyencamp_2_diff2": 2 + }, + "quantity": 1 + }, + "150683ce-efc1-47d4-a903-1e9a74a9f51b": { + "templateId": "Quest:plankertonquest_filler_4_d3", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_relaysurvivor_2_diff3": 6 + }, + "quantity": 1 + }, + "1b238c25-792d-44cd-9907-211e616626e0": { + "templateId": "Quest:plankertonquest_filler_4_d4", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_interact_treasurechest_pve02_diff4": 3, + "completion_complete_mimic_2_diff4": 1 + }, + "quantity": 1 + }, + "4905281a-e8ea-43ea-bba8-3f76513d34e5": { + "templateId": "Quest:plankertonquest_filler_4_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_buildradar_2_diff5": 3 + }, + "quantity": 1 + }, + "fc5b84a4-be68-469a-b795-257ab4b1ac89": { + "templateId": "Quest:plankertonquest_filler_5_d1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_exploration_2": 1 + }, + "quantity": 1 + }, + "97f61804-62e4-4b18-8d64-bd07e5769277": { + "templateId": "Quest:plankertonquest_filler_5_d2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_medbot_2_diff2": 3 + }, + "quantity": 1 + }, + "ee0cbd0b-f6f1-47ce-adf2-607090269d44": { + "templateId": "Quest:plankertonquest_filler_5_d3", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_questcollect_survivoritemdata": 15, + "completion_complete_powerreactor_2_diff3": 1 + }, + "quantity": 1 + }, + "cc5fe000-2aa1-4481-b4f5-12b3c363a748": { + "templateId": "Quest:plankertonquest_filler_5_d4", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_retrievedata_2_diff4": 2 + }, + "quantity": 1 + }, + "374dc592-3492-4ea5-b3c6-de4f583c25a1": { + "templateId": "Quest:plankertonquest_filler_5_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_launchballoon_2_diff5": 1 + }, + "quantity": 1 + }, + "b639b791-883d-4a57-9224-554dfba919ec": { + "templateId": "Quest:plankertonquest_filler_6_d3", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quick_complete_pve02": 3 + }, + "quantity": 1 + }, + "b30afff5-ba2e-4c1e-8d5a-fca50e44de2c": { + "templateId": "Quest:plankertonquest_filler_6_d4", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_gate_2_diff4": 1, + "completion_complete_gate_double_2_diff4": 1 + }, + "quantity": 1 + }, + "47362cb6-7193-489e-94b4-6fd6162daa57": { + "templateId": "Quest:plankertonquest_filler_6_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_relaysurvivor_2_diff5": 4 + }, + "quantity": 1 + }, + "13bc429d-a95c-4b73-a54c-b0a4dcaa19b4": { + "templateId": "Quest:plankertonquest_filler_7_d3", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_launchballoon_2_diff3": 2 + }, + "quantity": 1 + }, + "30d243e3-6414-4454-9b92-6021231dca68": { + "templateId": "Quest:plankertonquest_filler_7_d4", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_kill_husk_smasher_2_diff4_v2": 20 + }, + "quantity": 1 + }, + "c43a994b-b4d1-40db-9c78-37f2205c3c8b": { + "templateId": "Quest:plankertonquest_filler_7_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_exploration_2_diff5": 2 + }, + "quantity": 1 + }, + "f0b7656b-1122-4093-8916-11fe0fdd1a4e": { + "templateId": "Quest:plankertonquest_filler_8_d4", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_delivergoods_2_diff4": 1 + }, + "quantity": 1 + }, + "7665d228-6ed2-4acb-8095-c62c4470a111": { + "templateId": "Quest:plankertonquest_filler_8_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_buildradar_2_diff5": 5 + }, + "quantity": 1 + }, + "9f40bf4f-fb3a-4f74-9452-514a207a996e": { + "templateId": "Quest:plankertonquest_filler_9_d4", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_powerreactor_2_diff4": 2 + }, + "quantity": 1 + }, + "6e5a618b-186c-4f02-b64b-57758294bf1e": { + "templateId": "Quest:plankertonquest_filler_9_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_delivergoods_2_diff5": 3 + }, + "quantity": 1 + }, + "4b38dfae-b0a2-4dd8-90a4-9b900854e5aa": { + "templateId": "Quest:plankertonquest_launchrocket_d5", + "attributes": { + "quest_state": "Active", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_launchrocket_2": 0 + }, + "quantity": 1 + }, + "59a61bb3-18f2-45d1-b88e-1c916e4060cf": { + "templateId": "Quest:reactivequest_avoiceinthenight", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_avoiceinthenightv2": 4 + }, + "quantity": 1 + }, + "10d0a33c-082a-4355-adb3-c021228c55e0": { + "templateId": "Quest:reactivequest_blasters", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_blasters": 10 + }, + "quantity": 1 + }, + "fc02aa8c-f99b-4012-beea-6d61f992368f": { + "templateId": "Quest:reactivequest_destroyobject", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_destroyactor": 5 + }, + "quantity": 1 + }, + "eaa601dd-db11-4357-965b-206f338b16a3": { + "templateId": "Quest:reactivequest_distresscalls", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_distresscallv2": 5 + }, + "quantity": 1 + }, + "66040a7f-3e9f-4cc4-9922-474ffb59c045": { + "templateId": "Quest:reactivequest_elemhusky", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_elemhusky": 10 + }, + "quantity": 1 + }, + "a7b85267-f3a4-43ba-968e-8b462e764b04": { + "templateId": "Quest:reactivequest_finddj", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_finddj": 3 + }, + "quantity": 1 + }, + "b342d823-6026-4b4b-9c40-3cfff6a6f794": { + "templateId": "Quest:reactivequest_findmimic", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_findmimic": 1, + "completion_complete_mimic_1_diff5": 1 + }, + "quantity": 1 + }, + "49a5b3e9-e76e-48f9-9ab5-9b8dbeda795d": { + "templateId": "Quest:reactivequest_findpop", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_findpop": 3 + }, + "quantity": 1 + }, + "bfbc463c-975e-4fc1-adcd-c3e75ba19565": { + "templateId": "Quest:reactivequest_findsurvivor", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_findsurvivor": 50 + }, + "quantity": 1 + }, + "e05e0f18-3cad-4ad2-ab9b-75e711cab1fe": { + "templateId": "Quest:reactivequest_firehusks", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_firehusks": 10 + }, + "quantity": 1 + }, + "86626a05-5e70-49f4-93c6-56ab81f35a7f": { + "templateId": "Quest:reactivequest_flingers", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_flingers": 5 + }, + "quantity": 1 + }, + "14770096-aad6-478f-924d-3e95d442e701": { + "templateId": "Quest:reactivequest_gatherfood", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_gatherfood": 8 + }, + "quantity": 1 + }, + "9f9c2524-9668-4c7c-bf35-3b7eacd8ee4b": { + "templateId": "Quest:reactivequest_goodpop", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_goodpop": 4 + }, + "quantity": 1 + }, + "dbb567f1-fff3-40dd-a1f9-392a96c3f73a": { + "templateId": "Quest:reactivequest_itsatrap", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_trappartv2": 4, + "completion_complete_pve01_diff3": 2 + }, + "quantity": 1 + }, + "859c2f3d-caa7-4038-9729-e3561e2a802f": { + "templateId": "Quest:reactivequest_killsmasher", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_killsmasher": 50 + }, + "quantity": 1 + }, + "a3b2af7c-071a-476d-ad2d-35c8834f768f": { + "templateId": "Quest:reactivequest_knowyourenemy", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_knowyourenemy": 5 + }, + "quantity": 1 + }, + "1b75e5f5-1af2-4293-8f1a-6db3888a7256": { + "templateId": "Quest:reactivequest_lightninghusks", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_lightninghusks": 10 + }, + "quantity": 1 + }, + "8675c628-3479-487b-ad77-ddd9fcf0679d": { + "templateId": "Quest:reactivequest_masterservers", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_protecttheservers_2": 1 + }, + "quantity": 1 + }, + "7c984d3f-3fc6-4195-ada6-b97b2aff7587": { + "templateId": "Quest:reactivequest_medicaldata", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_medicaldata": 4, + "completion_complete_pve01_diff4": 2 + }, + "quantity": 1 + }, + "24b49eab-37c7-4136-a787-7565201eb7f0": { + "templateId": "Quest:reactivequest_medicalsupplies", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_medicalsupplies": 2 + }, + "quantity": 1 + }, + "81ca4dc2-3ca8-4e9f-ba6f-74fe44c82edc": { + "templateId": "Quest:reactivequest_poisonlobbers", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_poisonlobbers": 10 + }, + "quantity": 1 + }, + "f63b0d82-c762-45e4-92b6-1f4206a298ff": { + "templateId": "Quest:reactivequest_pumpkins", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_questcollect_quest_pumpkins": 3 + }, + "quantity": 1 + }, + "96e9daeb-1b1f-4573-a5e9-a59e5570c8b9": { + "templateId": "Quest:reactivequest_radiostation", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_radiostation": 5 + }, + "quantity": 1 + }, + "34a9feff-d2e6-460e-b62a-e8650bef8916": { + "templateId": "Quest:reactivequest_riftdata", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_riftdata": 3 + }, + "quantity": 1 + }, + "dcb28fe6-a450-460e-9e3e-e5ac011f7096": { + "templateId": "Quest:reactivequest_roadhome", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_roadhome": 4 + }, + "quantity": 1 + }, + "57448914-9d02-4052-9f57-1169c3c3a351": { + "templateId": "Quest:reactivequest_seebot", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_seebotv2": 5 + }, + "quantity": 1 + }, + "b00a3345-cdf0-4d89-ae29-e98b49929e0b": { + "templateId": "Quest:reactivequest_smasher", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_smasher": 5 + }, + "quantity": 1 + }, + "34896334-cdeb-41ca-936b-189dc982596b": { + "templateId": "Quest:reactivequest_supplyrun", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_larssupplies": 4, + "completion_complete_pve01_diff5": 2 + }, + "quantity": 1 + }, + "77c2a7b1-c495-414b-99cd-8f53700bad92": { + "templateId": "Quest:reactivequest_survivorradios", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_survivorradio": 50 + }, + "quantity": 1 + }, + "f418c8cd-c9b8-4a74-a311-82eba2af8b23": { + "templateId": "Quest:reactivequest_taker", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_taker": 5 + }, + "quantity": 1 + }, + "973c9da6-e4c2-4795-b055-8fbe2b1d20b1": { + "templateId": "Quest:reactivequest_transmitters", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_transmitters": 3 + }, + "quantity": 1 + }, + "c3aa3984-a668-42ff-a312-41e49275553e": { + "templateId": "Quest:reactivequest_trollstash_r1", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_trollstashinit": 1 + }, + "quantity": 1 + }, + "f6487066-538a-4964-b50e-5a17201a0054": { + "templateId": "Quest:reactivequest_trollstash_r2", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_trollstash": 1 + }, + "quantity": 1 + }, + "3f692d02-85e9-4fd8-b584-be97935b2fa7": { + "templateId": "Quest:reactivequest_waterhusks", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quest_reactive_waterhusks": 10 + }, + "quantity": 1 + }, + "4c2b284e-a766-4b6a-976d-5b40f2221d7e": { + "templateId": "Quest:stonewoodquest_filler_1_d4", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_encampment_1_diff4": 4, + "completion_complete_pve01_diff4": 2 + }, + "quantity": 1 + }, + "c2273d3a-f663-4ed6-ad46-12e5ce1fda38": { + "templateId": "Quest:stonewoodquest_filler_2_d4", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_craft_health_station": 5, + "completion_complete_pve01_diff3_v2": 2 + }, + "quantity": 1 + }, + "85e815c5-6ba5-431e-97b3-76e8a90a8945": { + "templateId": "Quest:stonewoodquest_filler_2_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_kill_husk_taker_1_diff5": 5, + "completion_complete_pve01_diff5": 3 + }, + "quantity": 1 + }, + "99d36ff6-10fa-4cd2-ae4d-0b2c39256a94": { + "templateId": "Quest:stonewoodquest_launchrocket_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_launchrocket_1": 1 + }, + "quantity": 1 + }, + "9af658d7-8949-47b9-8489-28d7b711c155": { + "templateId": "Quest:stonewoodquest_side_1_d3", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_complete_whackatroll_1_diff3": 2 + }, + "quantity": 1 + }, + "175f2b62-7a5c-43ed-baa9-ff14c8702ddc": { + "templateId": "Quest:stonewoodquest_side_1_d4", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_quick_complete_pve01": 2 + }, + "quantity": 1 + }, + "05b856ad-93dc-4fd9-9e0a-a91dc287c698": { + "templateId": "Quest:stonewoodquest_side_1_d5", + "attributes": { + "quest_state": "Claimed", + "last_state_change_time": "2017-12-25T02:06:00.508Z", + "max_level_bonus": 0, + "level": -1, + "item_seen": true, + "xp": 0, + "sent_new_notification": true, + "favorite": false, + "completion_questcollect_survivoritemdata": 15, + "completion_complete_pve01_diff5_v2": 3 + }, + "quantity": 1 + }, + "b196dfc1-2dd8-4a3e-b0a3-afd2bbc60d66": { + "templateId": "PersonalVehicle:vid_hoverboard", + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "favorite": false + }, + "quantity": 1 + }, + "507ac4fc-4c0e-412d-8f99-b7dee58e2f76": { + "templateId": "Expedition:expedition_sea_survivorscouting_short_t01", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresRareCommando" + ], + "level": 1, + "expedition_max_target_power": 120, + "expedition_min_target_power": 6, + "expedition_slot_id": "expedition.generation.sea.t01_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "a4b374c2-4e4a-4d1a-b549-6e979f20b415": { + "templateId": "Expedition:expedition_sea_survivorscouting_short_t01", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 120, + "expedition_min_target_power": 6, + "expedition_slot_id": "expedition.generation.sea.t01_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "d73a42be-10cc-4175-823a-b0330ebdac5e": { + "templateId": "Expedition:expedition_air_supplyrun_long_t02", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 330, + "expedition_min_target_power": 16, + "expedition_slot_id": "expedition.generation.air.t02_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "1eac710f-cf80-4de2-bc46-54426a2e3c90": { + "templateId": "Expedition:expedition_air_survivorscouting_long_t02", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresLegendaryConstructor" + ], + "level": 1, + "expedition_max_target_power": 385, + "expedition_min_target_power": 19, + "expedition_slot_id": "expedition.generation.air.t02_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "fabc7237-4d92-4692-8214-82b02aac8514": { + "templateId": "Expedition:expedition_resourcerun_stone_short", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 110, + "expedition_min_target_power": 5, + "expedition_slot_id": "expedition.generation.land.t02_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "1326df1e-fe4d-44d0-aaf9-a86107ff3b76": { + "templateId": "Expedition:expedition_survivorscouting_medium_t02", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresRareConstructor" + ], + "level": 1, + "expedition_max_target_power": 250, + "expedition_min_target_power": 12, + "expedition_slot_id": "expedition.generation.land.t02_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "7888975d-08d3-47c7-8c72-2adc91a0138e": { + "templateId": "Expedition:expedition_sea_supplyrun_medium_t02", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 215, + "expedition_min_target_power": 10, + "expedition_slot_id": "expedition.generation.sea.t02_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "d068b9f2-429d-4d5a-9c0b-5591f13ab22e": { + "templateId": "Expedition:expedition_sea_supplyrun_medium_t02", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresLegendaryNinja" + ], + "level": 1, + "expedition_max_target_power": 215, + "expedition_min_target_power": 10, + "expedition_slot_id": "expedition.generation.sea.t02_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "ae374104-d124-4f8d-8d9e-6a309efe4271": { + "templateId": "Expedition:expedition_sea_survivorscouting_medium_t03", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresEpicCommando" + ], + "level": 1, + "expedition_max_target_power": 370, + "expedition_min_target_power": 18, + "expedition_slot_id": "expedition.generation.sea.t03_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "ca25b234-b23f-4317-a54e-ff8492f6a18b": { + "templateId": "Expedition:expedition_sea_survivorscouting_medium_t03", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 370, + "expedition_min_target_power": 18, + "expedition_slot_id": "expedition.generation.sea.t03_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "35790c16-d6c8-4aac-b861-bfb6e9356f35": { + "templateId": "Expedition:expedition_air_supplyrun_long_t03", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresLegendaryConstructor" + ], + "level": 1, + "expedition_max_target_power": 520, + "expedition_min_target_power": 26, + "expedition_slot_id": "expedition.generation.air.t03_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "f4f13404-6185-4f2f-8987-f65d0522cae1": { + "templateId": "Expedition:expedition_air_supplyrun_long_t03", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresConstructor" + ], + "level": 1, + "expedition_max_target_power": 520, + "expedition_min_target_power": 26, + "expedition_slot_id": "expedition.generation.air.t03_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "1ddb6b83-1687-4f17-a7f0-580b9b4a6310": { + "templateId": "Expedition:expedition_supplyrun_medium_t03", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresEpicOutlander", + "RequiresRareConstructor" + ], + "level": 1, + "expedition_max_target_power": 275, + "expedition_min_target_power": 13, + "expedition_slot_id": "expedition.generation.land.t03_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "267988c1-de32-4cf5-9aeb-4270779953bc": { + "templateId": "Expedition:expedition_craftingrun_short_t03", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresRareOutlander" + ], + "level": 1, + "expedition_max_target_power": 225, + "expedition_min_target_power": 11, + "expedition_slot_id": "expedition.generation.land.t03_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "c7a44a2f-173c-4aed-b229-4f9a8297d4a8": { + "templateId": "Expedition:expedition_supplyrun_long_t04", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresEpicCommando" + ], + "level": 1, + "expedition_max_target_power": 685, + "expedition_min_target_power": 34, + "expedition_slot_id": "expedition.generation.land.t04_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "9bd9ec9a-2d79-451c-9b95-bfd6345c398c": { + "templateId": "Expedition:expedition_craftingrun_long_t04", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresLegendaryConstructor" + ], + "level": 1, + "expedition_max_target_power": 685, + "expedition_min_target_power": 34, + "expedition_slot_id": "expedition.generation.land.t04_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "e5cdf1d3-3bab-4ab8-9bea-e225b0fb60b3": { + "templateId": "Expedition:expedition_sea_survivorscouting_long_t04", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 825, + "expedition_min_target_power": 41, + "expedition_slot_id": "expedition.generation.sea.t04_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "663eb718-757b-4e86-bf0e-1002d4f11396": { + "templateId": "Expedition:expedition_sea_survivorscouting_long_t04", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 825, + "expedition_min_target_power": 41, + "expedition_slot_id": "expedition.generation.sea.t04_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "e948d68d-1c42-480c-ab10-102b16442982": { + "templateId": "Expedition:expedition_air_survivorscouting_long_t04", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresRareConstructor" + ], + "level": 1, + "expedition_max_target_power": 835, + "expedition_min_target_power": 41, + "expedition_slot_id": "expedition.generation.air.t04_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "ea24aa52-dc70-41b5-ba85-83fe81f44d86": { + "templateId": "Expedition:expedition_air_supplyrun_long_t04", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 735, + "expedition_min_target_power": 36, + "expedition_slot_id": "expedition.generation.air.t04_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "0748bf5d-f770-446b-bb14-5b784b399cdd": { + "templateId": "Expedition:expedition_choppingwood_t00", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 20, + "expedition_min_target_power": 1, + "expedition_slot_id": "expedition.generation.miningore", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "ad45e99c-0f8a-4b39-abdb-d2d10daeebcf": { + "templateId": "Expedition:expedition_miningore_t00", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [ + "RequiresRareConstructor" + ], + "level": 1, + "expedition_max_target_power": 25, + "expedition_min_target_power": 1, + "expedition_slot_id": "expedition.generation.choppingwood", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "60b692b1-eae8-4029-8fb0-f7ca5aa20dfa": { + "templateId": "Expedition:expedition_resourcerun_wood_medium", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 100, + "expedition_min_target_power": 5, + "expedition_slot_id": "expedition.generation.land.t01_0", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + }, + "4f7ffa01-e7d6-4d13-b8b9-f07e404d7128": { + "templateId": "Expedition:expedition_survivorscouting_short_t01", + "attributes": { + "expedition_expiration_end_time": "2024-05-23T15:33:33.934Z", + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": 130, + "expedition_min_target_power": 6, + "expedition_slot_id": "expedition.generation.land.t01_1", + "expedition_expiration_start_time": "2024-05-23T14:03:33.934Z" + }, + "quantity": 1 + } + }, + "stats": { + "templateId": "profile_v2", + "attributes": { + "node_costs": { + "t1_main_nodepage_layer1": { + "Token:homebasepoints": 5 + } + }, + "mission_alert_redemption_record": { + "lastClaimTimesMap": { + "General": { + "missionAlertGUIDs": [ + "", + "", + "" + ], + "lastClaimedTimes": [ + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z" + ] + }, + "StormLow": { + "missionAlertGUIDs": [ + "", + "", + "", + "" + ], + "lastClaimedTimes": [ + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z" + ] + }, + "Halloween": { + "missionAlertGUIDs": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "lastClaimedTimes": [ + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z" + ] + }, + "Horde": { + "missionAlertGUIDs": [ + "", + "", + "", + "", + "", + "" + ], + "lastClaimedTimes": [ + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z" + ] + }, + "Storm": { + "missionAlertGUIDs": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "lastClaimedTimes": [ + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z", + "2016-11-20T21:27:32.998Z" + ] + } + }, + "oldestClaimIndexForCategory": [ + 0, + 0, + 0, + 0, + 0 + ] + }, + "twitch": {}, + "client_settings": { + "pinnedQuestInstances": [] + }, + "level": 10, + "named_counters": { + "SubGameSelectCount_Campaign": { + "current_count": 1, + "last_incremented_time": "2024-05-23T14:03:33.864Z" + }, + "SubGameSelectCount_Athena": { + "current_count": 7, + "last_incremented_time": "2024-05-23T13:57:38.022Z" + } + }, + "default_hero_squad_id": "", + "collection_book": { + "pages": [ + "CollectionBookPage:pageheroes_commando", + "CollectionBookPage:pageheroes_constructor", + "CollectionBookPage:pageheroes_ninja", + "CollectionBookPage:pageheroes_outlander", + "CollectionBookPage:pagepeople_defenders", + "CollectionBookPage:pagepeople_survivors", + "CollectionBookPage:pagepeople_leads", + "CollectionBookPage:pagepeople_uniqueleads", + "CollectionBookPage:pagespecial_winter2017_heroes", + "CollectionBookPage:pagespecial_halloween2017_heroes", + "CollectionBookPage:pagespecial_halloween2017_workers", + "CollectionBookPage:pagespecial_chinesenewyear2018_heroes", + "CollectionBookPage:pagespecial_springiton2018_people", + "CollectionBookPage:pagespecial_stormzonecyber_heroes", + "CollectionBookPage:pagespecial_blockbuster2018_heroes", + "CollectionBookPage:pagespecial_shadowops_heroes", + "CollectionBookPage:pagespecial_roadtrip2018_heroes", + "CollectionBookPage:pagespecial_wildwest_heroes", + "CollectionBookPage:pagespecial_stormzone_heroes", + "CollectionBookPage:pagespecial_scavenger_heroes", + "CollectionBookPage:pagemelee_axes_weapons", + "CollectionBookPage:pagemelee_axes_weapons_crystal", + "CollectionBookPage:pagemelee_clubs_weapons", + "CollectionBookPage:pagemelee_clubs_weapons_crystal", + "CollectionBookPage:pagemelee_scythes_weapons", + "CollectionBookPage:pagemelee_scythes_weapons_crystal", + "CollectionBookPage:pagemelee_spears_weapons", + "CollectionBookPage:pagemelee_spears_weapons_crystal", + "CollectionBookPage:pagemelee_swords_weapons", + "CollectionBookPage:pagemelee_swords_weapons_crystal", + "CollectionBookPage:pagemelee_tools_weapons", + "CollectionBookPage:pagemelee_tools_weapons_crystal", + "CollectionBookPage:pageranged_assault_weapons", + "CollectionBookPage:pageranged_assault_weapons_crystal", + "CollectionBookPage:pageranged_shotgun_weapons", + "CollectionBookPage:pageranged_shotgun_weapons_crystal", + "CollectionBookPage:page_ranged_pistols_weapons", + "CollectionBookPage:page_ranged_pistols_weapons_crystal", + "CollectionBookPage:pageranged_snipers_weapons", + "CollectionBookPage:pageranged_snipers_weapons_crystal", + "CollectionBookPage:pageranged_explosive_weapons", + "CollectionBookPage:pagetraps_wall", + "CollectionBookPage:pagetraps_ceiling", + "CollectionBookPage:pagetraps_floor", + "CollectionBookPage:pagespecial_weapons_ranged_medieval", + "CollectionBookPage:pagespecial_weapons_ranged_medieval_crystal", + "CollectionBookPage:pagespecial_weapons_melee_medieval", + "CollectionBookPage:pagespecial_weapons_melee_medieval_crystal", + "CollectionBookPage:pagespecial_winter2017_weapons", + "CollectionBookPage:pagespecial_winter2017_weapons_crystal", + "CollectionBookPage:pagespecial_ratrod_weapons", + "CollectionBookPage:pagespecial_ratrod_weapons_crystal", + "CollectionBookPage:pagespecial_weapons_ranged_winter2017", + "CollectionBookPage:pagespecial_weapons_ranged_winter2017_crystal", + "CollectionBookPage:pagespecial_weapons_melee_winter2017", + "CollectionBookPage:pagespecial_weapons_melee_winter2017_crystal", + "CollectionBookPage:pagespecial_weapons_chinesenewyear2018", + "CollectionBookPage:pagespecial_weapons_crystal_chinesenewyear2018", + "CollectionBookPage:pagespecial_stormzonecyber_ranged", + "CollectionBookPage:pagespecial_stormzonecyber_melee", + "CollectionBookPage:pagespecial_stormzonecyber_ranged_crystal", + "CollectionBookPage:pagespecial_stormzonecyber_melee_crystal", + "CollectionBookPage:pagespecial_blockbuster2018_ranged", + "CollectionBookPage:pagespecial_blockbuster2018_ranged_crystal", + "CollectionBookPage:pagespecial_roadtrip2018_weapons", + "CollectionBookPage:pagespecial_roadtrip2018_weapons_crystal", + "CollectionBookPage:pagespecial_weapons_ranged_stormzone2", + "CollectionBookPage:pagespecial_weapons_ranged_stormzone2_crystal", + "CollectionBookPage:pagespecial_weapons_melee_stormzone2", + "CollectionBookPage:pagespecial_weapons_melee_stormzone2_crystal", + "CollectionBookPage:pagespecial_hydraulic", + "CollectionBookPage:pagespecial_hydraulic_crystal", + "CollectionBookPage:pagespecial_scavenger", + "CollectionBookPage:pagespecial_scavenger_crystal" + ], + "maxBookXpLevelAchieved": 0 + }, + "quest_manager": { + "dailyLoginInterval": "2017-12-25T01:44:10.602Z", + "dailyQuestRerolls": 1 + }, + "bans": {}, + "gameplay_stats": [ + { + "statName": "zonescompleted", + "statValue": 1 + } + ], + "inventory_limit_bonus": 100000, + "current_mtx_platform": "Epic", + "weekly_purchases": {}, + "daily_purchases": { + "lastInterval": "2017-08-29T00:00:00.000Z", + "purchaseList": { + "1F6B613D4B7BAD47D8A93CAEED2C4996": 1 + } + }, + "mode_loadouts": [ + { + "loadoutName": "Default", + "selectedGadgets": [ + "", + "" + ] + } + ], + "in_app_purchases": { + "receipts": [ + "EPIC:0aba47abf15143f18370dbc70b910b14", + "EPIC:ee397e98af0042159fec830aea1224d5" + ], + "fulfillmentCounts": { + "0A6CB5B346A149F31A4C3FBDF4BBC198": 3, + "DEF6D31D416227E7D73F65B27288ED6F": 1, + "82ADCC874CFC2D47927208BAE871CF2B": 1, + "F0033207441AC38CD704718B91B2C8EF": 1 + } + }, + "daily_rewards": { + "nextDefaultReward": 0, + "totalDaysLoggedIn": 0, + "lastClaimDate": "0001-01-01T00:00:00.000Z", + "additionalSchedules": { + "founderspackdailyrewardtoken": { + "rewardsClaimed": 0, + "claimedToday": true + } + } + }, + "monthly_purchases": {}, + "xp": 0, + "homebase": { + "townName": "", + "bannerIconId": "OT11Banner", + "bannerColorId": "DefaultColor15", + "flagPattern": -1, + "flagColor": -1 + }, + "packs_granted": 13 + } + }, + "commandRevision": 9 +} \ No newline at end of file diff --git a/lawin/profiles/theater0.json b/lawin/profiles/theater0.json new file mode 100644 index 0000000..1313333 --- /dev/null +++ b/lawin/profiles/theater0.json @@ -0,0 +1,694 @@ +{ + "_id": "LawinServer", + "created": "0001-01-01T00:00:00.000Z", + "updated": "0001-01-01T00:00:00.000Z", + "rvn": 1, + "wipeNumber": 1, + "accountId": "LawinServer", + "profileId": "theater0", + "version": "no_version", + "items": { + "3d81f6f3-1290-326e-dfee-e577af2e9fbb": { + "templateId": "Ingredient:ingredient_blastpowder", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "70ff3716-d732-c472-b1d8-0a20d48dd607": { + "templateId": "Ingredient:ingredient_ore_silver", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "48059439-88b0-a779-daae-36d9495f079e": { + "templateId": "Ingredient:ingredient_ore_alloy", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "7dd4a423-0b6f-3abb-757c-88077adcaacc": { + "templateId": "Ingredient:ingredient_crystal_sunbeam", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "694a4c8d-67b6-f903-85bf-f33d4e7a6859": { + "templateId": "Ingredient:ingredient_ore_obsidian", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "97feb4c9-2290-fd4b-c356-7f346ba67e39": { + "templateId": "Ingredient:ingredient_mechanical_parts_t05", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "25ff4168-8eb9-a5cc-4900-d06cdb8004ab": { + "templateId": "Ingredient:ingredient_mechanical_parts_t02", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "a63022b8-6467-a347-7c11-37d483d45d08": { + "templateId": "Ingredient:ingredient_rare_powercell", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "7e0d23d2-24dc-9579-4f32-507758107bd3": { + "templateId": "Ingredient:ingredient_resin", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "d44ad9ed-a5d3-0642-a865-083061aeb4e6": { + "templateId": "Ingredient:ingredient_powder_t05", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "2011030e-dbce-a02b-c086-ec8a99f16aeb": { + "templateId": "Ingredient:ingredient_crystal_quartz", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "7d43d569-e170-bd46-dfb2-92828ff0c98d": { + "templateId": "Ingredient:ingredient_rare_mechanism", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "1db23fbf-1ab5-72d9-2b20-50eacebda6d5": { + "templateId": "Ingredient:ingredient_nuts_bolts", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 0, + "itemSource": "" + }, + "quantity": 999 + }, + "024aa359-e313-168a-3738-31ae4f04cfb2": { + "templateId": "Ingredient:ingredient_ore_brightcore", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "da7680a3-072e-3e3f-3ed6-bf71159f6df0": { + "templateId": "Ingredient:ingredient_planks", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "10aec620-f4b9-aadd-da3e-5d4a8f87225b": { + "templateId": "Ingredient:ingredient_ore_malachite", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "161217ac-5b39-a93e-a1d8-7f7667646624": { + "templateId": "Ingredient:ingredient_crystal_shadowshard", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "f33663f5-bf16-9315-8df2-91800944b3e8": { + "templateId": "Ingredient:ingredient_twine_t05", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "aa4a3cce-9bb5-50ef-4c59-f959e89c3992": { + "templateId": "Ingredient:ingredient_twine_t01", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "e9eca1e1-7665-1315-de97-6583394e0af1": { + "templateId": "Ingredient:ingredient_batteries", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "d1fd9cb3-0d51-6d7c-e937-9b07406ba42e": { + "templateId": "Ingredient:ingredient_twine_t04", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "7d8f824d-cec2-01d5-0efc-c30073402de2": { + "templateId": "Ingredient:ingredient_herbs", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "bdb45648-18f6-fdc6-8252-b717043f0021": { + "templateId": "Ingredient:ingredient_mechanical_parts_t04", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "ddc2382e-faf9-14dd-c721-c659660540a8": { + "templateId": "Ingredient:ingredient_ore_copper", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "75582a66-bc3e-958a-1943-79a56150d0bb": { + "templateId": "Ingredient:ingredient_powder_t03", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "b4616de1-caf4-3652-a613-edb932df71e0": { + "templateId": "Ingredient:ingredient_mechanical_parts_t01", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "bdc338a8-3667-e7e4-280d-5d4e4255b3f1": { + "templateId": "Ingredient:ingredient_twine_t02", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "d17582f7-eb63-a4a6-cd4d-ff3d68e69757": { + "templateId": "Ingredient:ingredient_powder_t01", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "25e43cee-7dc7-348b-40bc-20b8850468ba": { + "templateId": "Ingredient:ingredient_duct_tape", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "720bc675-44e2-ff74-6e5c-eec23b493bd1": { + "templateId": "Ingredient:ingredient_twine_t03", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "0e2094f2-9c35-9e51-58ea-a87ec89fa758": { + "templateId": "Ingredient:ingredient_powder_t02", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "1cf850a0-1797-4fe8-dd94-34152756c80b": { + "templateId": "Ingredient:ingredient_bacon", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 0, + "itemSource": "" + }, + "quantity": 999 + }, + "7fe47331-1cbd-4606-c12e-6df2c1dc13a3": { + "templateId": "Ingredient:ingredient_mechanical_parts_t03", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "42d429fc-a4cf-974d-2bce-17c6b872c96e": { + "templateId": "Ingredient:ingredient_ore_coal", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "124d77cc-8cd4-fdcc-efe1-c18ee63587eb": { + "templateId": "Ingredient:ingredient_flowers", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "ea2a6495-4b9e-59df-0163-5e5e8f52467e": { + "templateId": "Ingredient:ingredient_powder_t04", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "6291ab77-ec9b-1b35-ccb0-063519415f6d": { + "templateId": "WorldItem:wooditemdata", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "2d7953c0-752f-c2a7-ebef-90b45cb30b5b": { + "templateId": "WorldItem:stoneitemdata", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "06f471d5-046b-50f6-3f07-9aa670b6fecb": { + "templateId": "WorldItem:metalitemdata", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "003e7a8c-92eb-13c1-6b0e-aafad8f3d81d": { + "templateId": "Weapon:edittool", + "attributes": { + "clipSizeScale": 0, + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "baseClipSize": 0, + "durability": 1, + "itemSource": "" + }, + "quantity": 1 + }, + "bcb13e35-c030-cf2a-a003-16377320beda": { + "templateId": "Weapon:buildingitemdata_wall", + "attributes": { + "clipSizeScale": 0, + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "baseClipSize": 0, + "durability": 1, + "itemSource": "" + }, + "quantity": 1 + }, + "97ba026b-a36c-6827-e9d7-21bc6a1f9c53": { + "templateId": "Weapon:buildingitemdata_floor", + "attributes": { + "clipSizeScale": 0, + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "baseClipSize": 0, + "durability": 1, + "itemSource": "" + }, + "quantity": 1 + }, + "15c02d16-11f6-ffd1-e8bb-4b5d56bd5bd9": { + "templateId": "Weapon:buildingitemdata_stair_w", + "attributes": { + "clipSizeScale": 0, + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "baseClipSize": 0, + "durability": 1, + "itemSource": "" + }, + "quantity": 1 + }, + "f603c8af-e326-202e-3b12-b5fd2517e5c2": { + "templateId": "Weapon:buildingitemdata_roofs", + "attributes": { + "clipSizeScale": 0, + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "baseClipSize": 0, + "durability": 1, + "itemSource": "" + }, + "quantity": 1 + }, + "baa4f86c-708c-7689-0859-fbfdb1bc623a": { + "templateId": "Ammo:ammodatabulletsmedium", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "240894a2-f99a-214d-ce50-2dac39394699": { + "templateId": "Ammo:ammodatashells", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "None" + }, + "quantity": 999 + }, + "1a0c69f4-2c23-a5c9-34a0-f48c45637171": { + "templateId": "Ammo:ammodataenergycell", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": 999 + }, + "a92b1e7e-5812-0bfd-0107-f7b97ed166fa": { + "templateId": "Ammo:ammodatabulletsheavy", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "None" + }, + "quantity": 999 + }, + "7516967c-e831-4c3a-1a24-03834756f532": { + "templateId": "Ammo:ammodatabulletslight", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "None" + }, + "quantity": 999 + }, + "23220ed0-29d4-3da1-6e0e-6df46a19752d": { + "templateId": "Ammo:ammodataexplosive", + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "None" + }, + "quantity": 999 + } + }, + "stats": { + "attributes": { + "player_loadout": { + "bPlayerIsNew": false, + "pinnedSchematicInstances": [], + "primaryQuickBarRecord": { + "slots": [ + { + "items": [] + }, + { + "items": [] + }, + { + "items": [] + }, + { + "items": [] + }, + { + "items": [] + }, + { + "items": [] + }, + { + "items": [] + }, + { + "items": [] + }, + { + "items": [] + } + ] + }, + "secondaryQuickBarRecord": { + "slots": [ + { + "items": [] + }, + { + "items": [] + }, + { + "items": [] + }, + { + "items": [] + }, + { + "items": [] + }, + { + "items": [] + }, + { + "items": [] + } + ] + }, + "zonesCompleted": 0 + }, + "theater_unique_id": "", + "past_lifetime_zones_completed": 0, + "last_event_instance_key": "", + "last_zones_completed": 0, + "inventory_limit_bonus": 0 + } + }, + "profileLockExpiration": "0001-01-01T00:00:00.000Z", + "commandRevision": 0 +} \ No newline at end of file diff --git a/lawin/public/images/discord-s.png b/lawin/public/images/discord-s.png new file mode 100644 index 0000000..df71d46 Binary files /dev/null and b/lawin/public/images/discord-s.png differ diff --git a/lawin/public/images/discord.png b/lawin/public/images/discord.png new file mode 100644 index 0000000..8934573 Binary files /dev/null and b/lawin/public/images/discord.png differ diff --git a/lawin/public/images/lawin-s.png b/lawin/public/images/lawin-s.png new file mode 100644 index 0000000..05c8009 Binary files /dev/null and b/lawin/public/images/lawin-s.png differ diff --git a/lawin/public/images/lawin.jpg b/lawin/public/images/lawin.jpg new file mode 100644 index 0000000..2f20b79 Binary files /dev/null and b/lawin/public/images/lawin.jpg differ diff --git a/lawin/public/images/motd-s.png b/lawin/public/images/motd-s.png new file mode 100644 index 0000000..2911415 Binary files /dev/null and b/lawin/public/images/motd-s.png differ diff --git a/lawin/public/images/motd.png b/lawin/public/images/motd.png new file mode 100644 index 0000000..041c9d8 Binary files /dev/null and b/lawin/public/images/motd.png differ diff --git a/lawin/public/images/seasonx.png b/lawin/public/images/seasonx.png new file mode 100644 index 0000000..0a863c8 Binary files /dev/null and b/lawin/public/images/seasonx.png differ diff --git a/lawin/responses/Athena/BattlePass/Season10.json b/lawin/responses/Athena/BattlePass/Season10.json new file mode 100644 index 0000000..f8d4049 --- /dev/null +++ b/lawin/responses/Athena/BattlePass/Season10.json @@ -0,0 +1,461 @@ +{ + "battleBundleOfferId": "259920BC42F0AAC7C8672D856C9B622C", + "battlePassOfferId": "2E43CCD24C3BE8F5ABBDF28E233B9350", + "tierOfferId": "AF1B7AC14A5F6A9ED255B88902120757", + "paidRewards": [ + { + "Token:athenaseasonxpboost": 50, + "Token:athenaseasonfriendxpboost": 60, + "AthenaCharacter:cid_486_athena_commando_f_streetracerdrift": 1, + "AthenaCharacter:cid_488_athena_commando_m_rustremix": 1, + "Token:athenaseasonmergedxpboosts": 1, + "ChallengeBundleSchedule:season10_seasonx_schedule": 1, + "ChallengeBundleSchedule:season10_blackknight_schedule": 1, + "ChallengeBundleSchedule:season10_djyonger_schedule": 1, + "ChallengeBundleSchedule:season10_drift_schedule": 1, + "ChallengeBundleSchedule:season10_rustlord_schedule": 1, + "ChallengeBundleSchedule:season10_sparkle_schedule": 1, + "ChallengeBundleSchedule:season10_teknique_schedule": 1, + "ChallengeBundleSchedule:season10_voyager_schedule": 1, + "ChallengeBundleSchedule:season10_mission_schedule": 1, + "ChallengeBundleSchedule:season10_seasonlevel_mission_schedule": 1 + }, + { + "Token:athenaseasonxpboost": 10, + "Token:athenanextseasonxpboost": 30 + }, + { + "AthenaDance:emoji_redknight": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_107_graffitiremix": 1 + }, + { + "HomebaseBannerIcon:brs10dragonegg": 1 + }, + { + "AthenaGlider:glider_id_166_rustlordremix": 1 + }, + { + "AthenaDance:spid_150_icedragon": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_161_h7outfitsa": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaMusicPack:musicpack_024_showdown": 1 + }, + { + "HomebaseBannerIcon:brs10medievalknight": 1 + }, + { + "AthenaDance:spid_140_moistymire": 1 + }, + { + "AthenaPickaxe:pickaxe_id_245_voyagerremix1h": 1 + }, + { + "AthenaLoadingScreen:lsid_155_akdrift": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaDance:emoji_crackshot": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:spid_149_fireice": 1 + }, + { + "AthenaSkyDiveContrail:trails_id_074_driftlightning": 1 + }, + { + "AthenaLoadingScreen:lsid_151_jmsparkle": 1 + }, + { + "AthenaCharacter:cid_483_athena_commando_f_graffitiremix": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaDance:emoji_popcorn": 1 + }, + { + "HomebaseBannerIcon:brs10kevincube": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaBackpack:petcarrier_012_drift_fox": 1 + }, + { + "AthenaLoadingScreen:lsid_154_ijcuddle": 1 + }, + { + "AthenaDance:emoji_lifepreserver": 1 + }, + { + "AthenaDance:eid_jaywalking": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brs10astronaut": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_106_djremix": 1 + }, + { + "AthenaLoadingScreen:lsid_158_ntdurrr": 1 + }, + { + "AthenaDance:toy_015_bottle": 1 + }, + { + "AthenaDance:spid_138_sparklespecialist": 1 + }, + { + "AthenaGlider:glider_id_163_djremix": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_175_jmtomato": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_065_djremix": 1 + }, + { + "AthenaDance:emoji_coolpepper": 1 + }, + { + "CosmeticVariantToken:vtid_286_petcarrier_driftfox_styleb": 1 + }, + { + "AthenaLoadingScreen:lsid_160_ktvendetta": 1 + }, + { + "AthenaCharacter:cid_487_athena_commando_m_djremix": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaDance:spid_135_riskyreels": 1 + }, + { + "HomebaseBannerIcon:brs10britebomber": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_156_akbrite": 1 + }, + { + "AthenaDance:toy_020_bottle_fancy": 1 + }, + { + "CosmeticVariantToken:vtid_288_djremix_headgearb": 1 + }, + { + "AthenaPickaxe:pickaxe_id_242_sparkleremix": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_162_h7outfitsb": 1 + }, + { + "AthenaDance:emoji_crossswords": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_105_cube": 1 + }, + { + "HomebaseBannerIcon:brs10grid": 1 + }, + { + "AthenaDance:spid_139_tiltedmap": 1 + }, + { + "AthenaDance:eid_treadmilldance": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "CosmeticVariantToken:vtid_287_petcarrier_driftfox_stylec": 1 + }, + { + "AthenaLoadingScreen:lsid_164_smcrackshot": 1 + }, + { + "AthenaSkyDiveContrail:trails_id_066_tacticalhud": 1 + }, + { + "HomebaseBannerIcon:brs10westernhats": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaCharacter:cid_485_athena_commando_f_sparkleremix": 1 + }, + { + "AthenaBackpack:bid_318_sparkleremix": 1 + }, + { + "AthenaDance:spid_134_dustydepot": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_159_ktfirewalker": 1 + }, + { + "CosmeticVariantToken:vtid_290_sparkleremix_hairstyleb": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaGlider:glider_id_169_voyagerremix": 1 + }, + { + "HomebaseBannerIcon:brs10boombox": 1 + }, + { + "AthenaDance:eid_breakdance2": 1 + }, + { + "AthenaLoadingScreen:lsid_177_ijllama": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaSkyDiveContrail:trails_id_075_celestial": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_109_rustremix": 1 + }, + { + "HomebaseBannerIcon:brs10doublepump": 1 + }, + { + "AthenaLoadingScreen:lsid_176_smvolcano": 1 + }, + { + "AthenaCharacter:cid_489_athena_commando_m_voyagerremix": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaDance:emoji_sweaty": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaMusicPack:musicpack_022_daydream": 1 + }, + { + "AthenaDance:spid_132_blackknight": 1 + }, + { + "CosmeticVariantToken:vtid_291_voyagerremix_stageb": 1 + }, + { + "AthenaLoadingScreen:lsid_152_jmluxe": 1 + }, + { + "AthenaGlider:glider_id_165_knightremix": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaItemWrap:wrap_110_streetracerdriftremix": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "CosmeticVariantToken:vtid_289_djremix_headgearc": 1 + }, + { + "AthenaCharacter:cid_484_athena_commando_m_knightremix": 1, + "AthenaBackpack:bid_317_knightremix": 1 + } + ], + "freeRewards": [ + {}, + { + "AthenaDance:spid_136_rocketlaunch": 1 + }, + {}, + { + "AthenaLoadingScreen:lsid_163_smrocketride": 1 + }, + {}, + { + "AthenaSkyDiveContrail:trails_id_068_popcorn": 1 + }, + {}, + { + "AthenaDance:emoji_boogiebomb": 1 + }, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + { + "AthenaDance:eid_happyskipping": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brs10rift": 1 + }, + {}, + {}, + {}, + { + "AthenaItemWrap:wrap_108_knightremix": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:spid_133_butterfly": 1 + }, + {}, + {}, + {}, + { + "AthenaGlider:glider_id_164_graffitiremix": 1 + }, + {}, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + {}, + { + "AthenaBackpack:bid_320_rustlordremix": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brs1080sllama": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:eid_blowingbubbles": 1 + }, + {}, + {}, + {}, + { + "AthenaMusicPack:musicpack_023_og": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brs10shades": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:spid_142_cuberune": 1 + }, + {}, + {}, + {}, + { + "AthenaLoadingScreen:lsid_153_ijdriftboard": 1 + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] +} \ No newline at end of file diff --git a/lawin/responses/Athena/BattlePass/Season2.json b/lawin/responses/Athena/BattlePass/Season2.json new file mode 100644 index 0000000..5d5c82c --- /dev/null +++ b/lawin/responses/Athena/BattlePass/Season2.json @@ -0,0 +1,318 @@ +{ + "battlePassOfferId": "C3BA14F04F4D56FC1D490F8011B56553", + "tierOfferId": "F86AC2ED4B3EA4B2D65EF1B2629572A0", + "paidRewards": [ + { + "Token:athenaseasonxpboost": 50, + "Token:athenaseasonfriendxpboost": 10, + "AthenaCharacter:cid_032_athena_commando_m_medieval": 1, + "AthenaBackpack:bid_001_bluesquire": 1 + }, + { + "Token:athenaseasonxpboost": 10, + "Token:athenanextseasontierboost": 5 + }, + { + "HomebaseBannerIcon:brseason02bush": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_clapping": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaPickaxe:pickaxe_id_012_district": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "HomebaseBannerIcon:brseason02lionherald": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_rip": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaGlider:glider_id_004_disco": 1 + }, + { + "HomebaseBannerIcon:brseason02catsoldier": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason02dragon": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_rage": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaCharacter:cid_033_athena_commando_f_medieval": 1, + "AthenaBackpack:bid_002_royaleknight": 1 + }, + { + "AthenaDance:emoji_peacesign": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "HomebaseBannerIcon:brseason02planet": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_disco": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:eid_worm": 1 + }, + { + "HomebaseBannerIcon:brseason02bowling": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason02monstertruck": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_exclamation": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaPickaxe:pickaxe_id_011_medieval": 1 + }, + { + "AthenaDance:emoji_armflex": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "HomebaseBannerIcon:brseason02icecream": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_mvp": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaGlider:glider_id_003_district": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason02log": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_baited": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:eid_floss": 1 + }, + { + "HomebaseBannerIcon:brseason02cake": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "HomebaseBannerIcon:brseason02tank": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_salty": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaCharacter:cid_039_athena_commando_f_disco": 1 + }, + { + "AthenaDance:emoji_stealthy": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason02gasmask": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_potatoaim": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaPickaxe:pickaxe_id_013_teslacoil": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason02vulture": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_onfire": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaCharacter:cid_035_athena_commando_m_medieval": 1, + "AthenaBackpack:bid_004_blackknight": 1 + } + ], + "freeRewards": [ + {}, + { + "AthenaDance:emoji_lol": 1 + }, + {}, + {}, + { + "AthenaDance:eid_wave": 1 + }, + {}, + {}, + { + "HomebaseBannerIcon:brseason02salt": 1 + }, + {}, + {}, + { + "AthenaDance:emoji_hearthands": 1 + }, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + { + "AthenaDance:emoji_bullseye": 1 + }, + {}, + {}, + { + "AthenaDance:eid_ridethepony_athena": 1 + }, + {}, + {}, + { + "AccountResource:athenaseasonalxp": 1000 + }, + {}, + {}, + { + "HomebaseBannerIcon:brseason02crosshair": 1 + }, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + { + "HomebaseBannerIcon:brseason02shark": 1 + }, + {}, + {}, + { + "AthenaGlider:glider_id_002_medieval": 1 + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] +} \ No newline at end of file diff --git a/lawin/responses/Athena/BattlePass/Season3.json b/lawin/responses/Athena/BattlePass/Season3.json new file mode 100644 index 0000000..1e88ea1 --- /dev/null +++ b/lawin/responses/Athena/BattlePass/Season3.json @@ -0,0 +1,442 @@ +{ + "battleBundleOfferId": "70487F4C4673CC98F2FEBEBB26505F44", + "battlePassOfferId": "2331626809474871A3A44C47C1D8742E", + "tierOfferId": "E2D7975EFEC54A45900D8D9A6D9D273C", + "paidRewards": [ + { + "Token:athenaseasonxpboost": 50, + "Token:athenaseasonfriendxpboost": 10, + "AthenaCharacter:cid_080_athena_commando_m_space": 1, + "ChallengeBundleSchedule:season3_challenge_schedule": 1 + }, + { + "Token:athenaseasonxpboost": 10, + "Token:athenanextseasontierboost": 5 + }, + { + "HomebaseBannerIcon:brseason03egg": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_wow": 1 + }, + { + "AthenaLoadingScreen:lsid_005_suppressedpistol": 1 + }, + { + "AthenaPickaxe:pickaxe_id_027_scavenger": 1 + }, + { + "AthenaDance:emoji_thief": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "HomebaseBannerIcon:brseason03bee": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_003_pickaxes": 1 + }, + { + "HomebaseBannerIcon:brseason03worm": 1 + }, + { + "AthenaDance:emoji_heartbroken": 1 + }, + { + "AthenaGlider:glider_id_015_brite": 1 + }, + { + "HomebaseBannerIcon:brseason03paw": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaDance:emoji_boombox": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_002_rainbow": 1 + }, + { + "HomebaseBannerIcon:brseason03sun": 1 + }, + { + "AthenaDance:emoji_rocketride": 1 + }, + { + "AthenaCharacter:cid_082_athena_commando_m_scavenger": 1 + }, + { + "HomebaseBannerIcon:brseason03falcon": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "HomebaseBannerIcon:brseason03chick": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_004_tacticalshotgun": 1 + }, + { + "HomebaseBannerIcon:brseason03dogcollar": 1 + }, + { + "AthenaDance:emoji_bush": 1 + }, + { + "AthenaDance:eid_takethel": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason03crescentmoon": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_004_bluestreak": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:emoji_awww": 1 + }, + { + "AthenaGlider:glider_id_016_tactical": 1 + }, + { + "HomebaseBannerIcon:brseason03crab": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "HomebaseBannerIcon:brseason03tophat": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_001_brite": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:emoji_thumbsup": 1 + }, + { + "AthenaBackpack:bid_024_space": 1 + }, + { + "AthenaDance:emoji_thumbsdown": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaSkyDiveContrail:trails_id_001_disco": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_1hp": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "HomebaseBannerIcon:brseason03wing": 1 + }, + { + "AthenaCharacter:cid_081_athena_commando_f_space": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaDance:emoji_hotdawg": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_006_minigun": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "HomebaseBannerIcon:brseason03snake": 1 + }, + { + "AthenaDance:eid_bestmates": 1 + }, + { + "AthenaDance:emoji_hoarder": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason03teddybear": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_005_bubbles": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaCharacter:cid_088_athena_commando_m_spaceblack": 1 + }, + { + "AthenaBackpack:bid_028_spaceblack": 1 + }, + { + "HomebaseBannerIcon:brseason03happycloud": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaDance:emoji_200iqplay": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_002_raptor": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "HomebaseBannerIcon:brseason03wolf": 1 + }, + { + "AthenaPickaxe:pickaxe_id_029_assassin": 1 + }, + { + "AthenaDance:emoji_flamingrage": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason03whale": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_003_fire": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:emoji_kaboom": 1 + }, + { + "AthenaCharacter:cid_083_athena_commando_f_tactical": 1 + }, + { + "HomebaseBannerIcon:brseason03lightning": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaDance:emoji_majestic": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_007_tacticalcommando": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "HomebaseBannerIcon:brseason03flail": 1 + }, + { + "AthenaDance:eid_robot": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaDance:emoji_number1": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "HomebaseBannerIcon:brseason03dinosaurskull": 1 + }, + { + "AthenaCharacter:cid_084_athena_commando_m_assassin": 1, + "ChallengeBundleSchedule:season3_tier_100_schedule": 1 + } + ], + "freeRewards": [ + {}, + { + "ChallengeBundleSchedule:season3_tier_2_schedule": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brseason03donut": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:eid_salute": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:emoji_inlove": 1 + }, + {}, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + {}, + { + "AthenaBackpack:bid_025_tactical": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:emoji_goodgame": 1 + }, + {}, + {}, + {}, + { + "AthenaLoadingScreen:lsid_008_keyart": 1 + }, + {}, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brseason03eagle": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:emoji_positivity": 1 + }, + {}, + {}, + {}, + { + "AthenaPickaxe:pickaxe_id_028_space": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brseason03shootingstar": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:emoji_aplus": 1 + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] +} \ No newline at end of file diff --git a/lawin/responses/Athena/BattlePass/Season4.json b/lawin/responses/Athena/BattlePass/Season4.json new file mode 100644 index 0000000..a5e7226 --- /dev/null +++ b/lawin/responses/Athena/BattlePass/Season4.json @@ -0,0 +1,444 @@ +{ + "battleBundleOfferId": "884CE68998C44AC58D85C5A9883DE1A6", + "battlePassOfferId": "76EA7FE9787744B09B79FF3FC5E39D0C", + "tierOfferId": "E9527AF46F4B4A9CAE98D91F2AA53CB6", + "paidRewards": [ + { + "Token:athenaseasonxpboost": 50, + "Token:athenaseasonfriendxpboost": 10, + "AthenaCharacter:cid_115_athena_commando_m_carbideblue": 1, + "AthenaCharacter:cid_125_athena_commando_m_tacticalwoodland": 1, + "ChallengeBundleSchedule:season4_challenge_schedule": 1, + "Token:athenaseasonmergedxpboosts": 1 + }, + { + "Token:athenaseasonxpboost": 10, + "Token:athenanextseasontierboost": 5 + }, + { + "AthenaDance:spid_002_xmark": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_dynamite": 1 + }, + { + "AthenaLoadingScreen:lsid_017_carbide": 1 + }, + { + "AthenaPickaxe:pickaxe_id_045_valor": 1 + }, + { + "AthenaDance:emoji_camera": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaDance:spid_006_rainbow": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_018_rex": 1 + }, + { + "HomebaseBannerIcon:brseason04heroemblem": 1 + }, + { + "AthenaDance:spid_007_smilegg": 1 + }, + { + "AthenaGlider:glider_id_035_candy": 1 + }, + { + "HomebaseBannerIcon:brseason04spraycan": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaDance:emoji_zzz": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_010_retroscifi": 1 + }, + { + "HomebaseBannerIcon:brseason04dogbowl": 1 + }, + { + "AthenaDance:spid_008_hearts": 1 + }, + { + "AthenaCharacter:cid_120_athena_commando_f_graffiti": 1 + }, + { + "AthenaDance:emoji_babyseal": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "HomebaseBannerIcon:brseason04duck": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_019_tacticaljungle": 1 + }, + { + "AthenaDance:spid_004_chalkoutline": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:eid_popcorn": 1 + }, + { + "HomebaseBannerIcon:brseason04fence": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaDance:spid_019_circle": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_012_spraypaint": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:spid_011_looted": 1 + }, + { + "AthenaGlider:glider_id_033_valor": 1 + }, + { + "HomebaseBannerIcon:brseason04only90skids": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaDance:spid_003_arrow": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_021_leviathan": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:emoji_plotting": 1 + }, + { + "AthenaCharacter:cid_119_athena_commando_f_candy": 1 + }, + { + "AthenaDance:spid_012_royalstroll": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaSkyDiveContrail:trails_id_008_lightning": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_chicken": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:spid_005_abstract": 1 + }, + { + "AthenaBackpack:bid_047_candy": 1 + }, + { + "AthenaDance:spid_021_doit": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "HomebaseBannerIcon:brseason04pencil": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_024_graffiti": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:spid_020_threellamas": 1 + }, + { + "AthenaDance:eid_hype": 1 + }, + { + "AthenaDance:emoji_crabby": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaDance:spid_009_window": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_009_hearts": 1 + }, + { + "HomebaseBannerIcon:brseason04blitz": 1 + }, + { + "AthenaDance:spid_013_trapwarning": 1 + }, + { + "AthenaCharacter:cid_118_athena_commando_f_valor": 1 + }, + { + "AthenaDance:spid_014_raven": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaDance:emoji_rabid": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_023_candy": 1 + }, + { + "HomebaseBannerIcon:brseason04filmcamera": 1 + }, + { + "AthenaDance:spid_015_lips": 1 + }, + { + "AthenaGlider:glider_id_034_carbideblue": 1 + }, + { + "AthenaDance:spid_016_ponytail": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason04bow": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_013_shootingstar": 1 + }, + { + "AthenaLoadingScreen:lsid_022_britegunner": 1 + }, + { + "AthenaDance:spid_017_splattershot": 1 + }, + { + "AthenaCharacter:cid_117_athena_commando_m_tacticaljungle": 1 + }, + { + "HomebaseBannerIcon:brseason04seaserpent": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaDance:emoji_banana": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_025_raven": 1 + }, + { + "HomebaseBannerIcon:brseason04villainemblem": 1 + }, + { + "AthenaDance:spid_010_tunnel": 1 + }, + { + "AthenaDance:eid_groovejam": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaDance:emoji_celebrate": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:spid_018_shadowops": 1 + }, + { + "AthenaCharacter:cid_116_athena_commando_m_carbideblack": 1, + "ChallengeBundleSchedule:season4_progressiveb_schedule": 1 + } + ], + "freeRewards": [ + {}, + { + "ChallengeBundleSchedule:season4_starterchallenge_schedule": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brseason04goo": 1 + }, + {}, + {}, + {}, + { + "AthenaBackpack:bid_045_tacticaljungle": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:emoji_angel": 1 + }, + {}, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + {}, + { + "AthenaDance:emoji_teamwork": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:eid_goodvibes": 1 + }, + {}, + {}, + {}, + { + "AthenaLoadingScreen:lsid_020_supplydrop": 1 + }, + {}, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brseason04chains": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:emoji_rainbow": 1 + }, + {}, + {}, + {}, + { + "AthenaPickaxe:pickaxe_id_046_candy": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brseason04teef": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:eid_kungfusalute": 1 + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] +} \ No newline at end of file diff --git a/lawin/responses/Athena/BattlePass/Season5.json b/lawin/responses/Athena/BattlePass/Season5.json new file mode 100644 index 0000000..3bf510b --- /dev/null +++ b/lawin/responses/Athena/BattlePass/Season5.json @@ -0,0 +1,453 @@ +{ + "battleBundleOfferId": "FF77356F424644529049280AFC8A795E", + "battlePassOfferId": "D51A2F28AAF843C0B208F14197FBFE91", + "tierOfferId": "4B2E310BC1AE40B292A16D5AAD747E0A", + "paidRewards": [ + { + "Token:athenaseasonxpboost": 50, + "Token:athenaseasonfriendxpboost": 10, + "AthenaCharacter:cid_163_athena_commando_f_viking": 1, + "AthenaCharacter:cid_161_athena_commando_m_drift": 1, + "ChallengeBundleSchedule:season5_paid_schedule": 1, + "Token:athenaseasonmergedxpboosts": 1, + "ChallengeBundleSchedule:season5_progressivea_schedule": 1 + }, + { + "Token:athenaseasonxpboost": 10, + "Token:athenanextseasontierboost": 5 + }, + { + "HomebaseBannerIcon:brseason05tictactoe": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_go": 1 + }, + { + "AthenaDance:spid_038_sushi": 1 + }, + { + "AthenaGlider:glider_id_050_streetracercobra": 1 + }, + { + "HomebaseBannerIcon:brseason05shoppingcart": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:toy_001_basketball": 1 + }, + { + "AthenaDance:spid_024_boogie": 1 + }, + { + "AthenaLoadingScreen:lsid_046_vikingpattern": 1 + }, + { + "HomebaseBannerIcon:brseason05dolphin": 1 + }, + { + "AthenaPickaxe:pickaxe_id_073_balloon": 1 + }, + { + "AthenaDance:emoji_poolparty": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_034_abstrakt": 1 + }, + { + "AthenaSkyDiveContrail:trails_id_017_lanterns": 1 + }, + { + "HomebaseBannerIcon:brseason05kitsune": 1 + }, + { + "AthenaDance:spid_036_strawberrypaws": 1 + }, + { + "AthenaCharacter:cid_162_athena_commando_f_streetracer": 1 + }, + { + "AthenaDance:emoji_prickly": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:toy_002_golfball": 1 + }, + { + "AthenaLoadingScreen:lsid_045_vikingfemale": 1 + }, + { + "AthenaDance:spid_030_luchador": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:eid_youreawesome": 1 + }, + { + "HomebaseBannerIcon:brseason05flowyhat": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_040_lifeguard": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_018_runes": 1 + }, + { + "AthenaDance:emoji_stop": 1 + }, + { + "AthenaDance:spid_034_goodvibes": 1 + }, + { + "AthenaGlider:glider_id_048_viking": 1 + }, + { + "AthenaDance:spid_028_durrr": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:toy_003_beachball": 1 + }, + { + "AthenaLoadingScreen:lsid_039_jailbirds": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:emoji_embarrassed": 1 + }, + { + "AthenaCharacter:cid_166_athena_commando_f_lifeguard": 1 + }, + { + "AthenaDance:spid_033_fakedoor": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason05golf": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_alarm": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:spid_037_drift": 1 + }, + { + "AthenaBackpack:bid_071_vikingfemale": 1 + }, + { + "HomebaseBannerIcon:brseason05icecreamtruck": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:toy_005_golfballelite": 1 + }, + { + "AthenaLoadingScreen:lsid_044_flytrap": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "HomebaseBannerIcon:brseason05palms": 1 + }, + { + "AthenaDance:eid_swipeit": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_042_omen": 1 + }, + { + "AthenaDance:emoji_tattered": 1 + }, + { + "AthenaSkyDiveContrail:trails_id_016_ice": 1 + }, + { + "HomebaseBannerIcon:brseason05spiderbadass": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaCharacter:cid_167_athena_commando_m_tacticalbadass": 1 + }, + { + "AthenaDance:spid_035_nordicllama": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:toy_006_beachballelite": 1 + }, + { + "HomebaseBannerIcon:brseason05racingcheckers": 1 + }, + { + "AthenaLoadingScreen:lsid_043_redknight": 1 + }, + { + "AthenaDance:emoji_tasty": 1 + }, + { + "AthenaGlider:glider_id_049_lifeguard": 1 + }, + { + "AthenaDance:spid_032_potatoaim": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason05scubagear": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_007_tp": 1 + }, + { + "AthenaDance:emoji_badapple": 1 + }, + { + "AthenaLoadingScreen:lsid_035_bandolier": 1 + }, + { + "AthenaCharacter:cid_173_athena_commando_f_starfishuniform": 1 + }, + { + "HomebaseBannerIcon:brseason05cobra": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:toy_004_basketballelite": 1 + }, + { + "AthenaDance:emoji_stinky": 1 + }, + { + "AthenaLoadingScreen:lsid_037_tomatohead": 1 + }, + { + "AthenaDance:spid_039_yummy": 1 + }, + { + "AthenaDance:eid_hiphops5": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaDance:emoji_potofgold": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:spid_026_darkviking": 1 + }, + { + "AthenaCharacter:cid_165_athena_commando_m_darkviking": 1, + "ChallengeBundleSchedule:season5_progressiveb_schedule": 1 + } + ], + "freeRewards": [ + {}, + { + "AthenaDance:spid_025_crazycastle": 1 + }, + {}, + { + "AthenaLoadingScreen:lsid_036_drift": 1 + }, + {}, + { + "AthenaDance:eid_stagebow": 1 + }, + {}, + { + "AthenaDance:emoji_rockon": 1 + }, + {}, + {}, + { + "HomebaseBannerIcon:brseason05vikingship": 1 + }, + {}, + {}, + { + "AthenaBackpack:bid_075_tacticalbadass": 1 + }, + {}, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + {}, + { + "AthenaGlider:glider_id_055_streetracerblack": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:spid_031_pixels": 1 + }, + {}, + {}, + {}, + { + "AthenaPickaxe:pickaxe_id_071_streetracer": 1 + }, + {}, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + {}, + { + "AthenaBackpack:bid_074_lifeguardfemale": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brseason05dinosaur": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:eid_calculated": 1 + }, + {}, + {}, + {}, + { + "AthenaLoadingScreen:lsid_038_highexplosives": 1 + }, + {}, + {}, + {}, + { + "AthenaSkyDiveContrail:trails_id_011_glitch": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:emoji_trap": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:spid_029_lasershark": 1 + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] +} \ No newline at end of file diff --git a/lawin/responses/Athena/BattlePass/Season6.json b/lawin/responses/Athena/BattlePass/Season6.json new file mode 100644 index 0000000..660d1d4 --- /dev/null +++ b/lawin/responses/Athena/BattlePass/Season6.json @@ -0,0 +1,453 @@ +{ + "battleBundleOfferId": "19D4A5ACC90B4CDF88766A0C8A6D13FB", + "battlePassOfferId": "9C8D0323775A4F59A1D4283E3FDB356C", + "tierOfferId": "A6FE59C497B844068E1B5D84396F19BA", + "paidRewards": [ + { + "Token:athenaseasonxpboost": 50, + "Token:athenaseasonfriendxpboost": 10, + "AthenaCharacter:cid_233_athena_commando_m_fortnitedj": 1, + "AthenaCharacter:cid_237_athena_commando_f_cowgirl": 1, + "ChallengeBundleSchedule:season6_paid_schedule": 1, + "Token:athenaseasonmergedxpboosts": 1, + "ChallengeBundleSchedule:season6_progressivea_schedule": 1 + }, + { + "Token:athenaseasonxpboost": 10, + "Token:athenanextseasontierboost": 5 + }, + { + "HomebaseBannerIcon:brseason06pickaxebr": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_bang": 1 + }, + { + "AthenaDance:spid_058_cowgirl": 1 + }, + { + "AthenaGlider:glider_id_079_redriding": 1 + }, + { + "HomebaseBannerIcon:brseason06campfire": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaLoadingScreen:lsid_052_emoticoncollage": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaBackpack:petcarrier_001_dog": 1 + }, + { + "AthenaMusicPack:musicpack_001_floss": 1 + }, + { + "HomebaseBannerIcon:brseason06phantom": 1 + }, + { + "AthenaPickaxe:pickaxe_id_103_fortnitedj": 1 + }, + { + "AthenaDance:emoji_witchsbrew": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_024_dieselsmoke": 1 + }, + { + "AthenaDance:spid_050_fullmoon": 1 + }, + { + "AthenaLoadingScreen:lsid_057_bunnies": 1 + }, + { + "HomebaseBannerIcon:brseason06zigzag": 1 + }, + { + "AthenaCharacter:cid_234_athena_commando_m_llamarider": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaLoadingScreen:lsid_058_djconcept": 1 + }, + { + "AthenaDance:emoji_plunger": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:toy_007_tomato": 1 + }, + { + "AthenaBackpack:petcarrier_002_chameleon": 1 + }, + { + "AthenaDance:spid_056_manholecover": 1 + }, + { + "AthenaDance:eid_runningman": 1 + }, + { + "HomebaseBannerIcon:brseason06dice": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_055_valkyrie": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_023_fireflies": 1 + }, + { + "AthenaDance:spid_060_dayofdead": 1 + }, + { + "AthenaDance:emoji_camper": 1 + }, + { + "AthenaGlider:glider_id_080_prairiepusher": 1 + }, + { + "AthenaDance:spid_059_dj": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaBackpack:petcarrier_003_dragon": 1 + }, + { + "AthenaLoadingScreen:lsid_056_fate": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:emoji_ghost": 1 + }, + { + "AthenaCharacter:cid_231_athena_commando_f_redriding": 1 + }, + { + "AthenaDance:spid_055_wallcrawler": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason06rift": 1 + }, + { + "AthenaDance:emoji_blackcat": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaMusicPack:musicpack_002_spooky": 1 + }, + { + "AthenaDance:spid_049_cactusmaze": 1 + }, + { + "AthenaBackpack:bid_119_vampirefemale": 1 + }, + { + "HomebaseBannerIcon:brseason06bat": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "CosmeticVariantToken:vtid_033_petcarrier_dog_styleb": 1 + }, + { + "AthenaLoadingScreen:lsid_050_tomatotemple": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "HomebaseBannerIcon:brseason06carbonfiber": 1 + }, + { + "AthenaDance:eid_octopus": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_054_scuba": 1 + }, + { + "AthenaDance:emoji_meet": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaSkyDiveContrail:trails_id_026_bats": 1 + }, + { + "HomebaseBannerIcon:brseason06polkadots": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaCharacter:cid_227_athena_commando_f_vampire": 1 + }, + { + "AthenaDance:spid_047_gremlins": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "CosmeticVariantToken:vtid_035_petcarrier_dragon_styleb": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:toy_008_tomatoelite": 1 + }, + { + "HomebaseBannerIcon:brseason06housefly": 1 + }, + { + "AthenaLoadingScreen:lsid_059_vampire": 1 + }, + { + "AthenaGlider:glider_id_078_vampire": 1 + }, + { + "AthenaDance:spid_045_oni": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason06skulltrooper": 1 + }, + { + "AthenaSkyDiveContrail:trails_id_022_greensmoke": 1 + }, + { + "AthenaLoadingScreen:lsid_051_ravage": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaCharacter:cid_232_athena_commando_f_halloweentomato": 1 + }, + { + "AthenaBackpack:bid_122_halloweentomato": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaDance:spid_046_pixelraven": 1 + }, + { + "CosmeticVariantToken:vtid_034_petcarrier_dog_stylec": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaMusicPack:musicpack_003_ogremix": 1 + }, + { + "AthenaLoadingScreen:lsid_061_werewolf": 1 + }, + { + "AthenaDance:emoji_clown": 1 + }, + { + "AthenaDance:eid_flamenco": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "CosmeticVariantToken:vtid_036_petcarrier_dragon_stylec": 1 + }, + { + "AthenaDance:spid_062_werewolf": 1 + }, + { + "AthenaCharacter:cid_230_athena_commando_m_werewolf": 1, + "ChallengeBundleSchedule:season6_progressiveb_schedule": 1 + } + ], + "freeRewards": [ + {}, + { + "AthenaDance:spid_061_spiderweb": 1 + }, + {}, + { + "AthenaLoadingScreen:lsid_060_cowgirl": 1 + }, + {}, + { + "AthenaDance:eid_regalwave": 1 + }, + {}, + { + "AthenaDance:emoji_battlebus": 1 + }, + {}, + {}, + { + "HomebaseBannerIcon:brseason06floatingisland": 1 + }, + {}, + {}, + { + "AthenaBackpack:bid_121_redriding": 1 + }, + {}, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + {}, + { + "AthenaGlider:glider_id_081_cowboygunslinger": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:spid_053_ggpotion": 1 + }, + {}, + {}, + {}, + { + "AthenaPickaxe:pickaxe_id_102_redriding": 1 + }, + {}, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + {}, + { + "AthenaBackpack:bid_123_fortnitedj": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brseason06handhorns": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:eid_needtogo": 1 + }, + {}, + {}, + {}, + { + "AthenaLoadingScreen:lsid_053_supplyllama": 1 + }, + {}, + {}, + {}, + { + "AthenaSkyDiveContrail:trails_id_025_jackolantern": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:emoji_tp": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:spid_051_gameover": 1 + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] +} \ No newline at end of file diff --git a/lawin/responses/Athena/BattlePass/Season7.json b/lawin/responses/Athena/BattlePass/Season7.json new file mode 100644 index 0000000..bb9750e --- /dev/null +++ b/lawin/responses/Athena/BattlePass/Season7.json @@ -0,0 +1,454 @@ +{ + "battleBundleOfferId": "347A90158C64424980E8C1B3DC088F37", + "battlePassOfferId": "3A3C99847F144AF3A030DB5690477F5A", + "tierOfferId": "64A3020B098841A7805EE257D68C554F", + "paidRewards": [ + { + "Token:athenaseasonxpboost": 50, + "Token:athenaseasonfriendxpboost": 10, + "AthenaCharacter:cid_287_athena_commando_m_arcticsniper": 1, + "AthenaCharacter:cid_286_athena_commando_f_neoncat": 1, + "ChallengeBundleSchedule:season7_paid_schedule": 1, + "Token:athenaseasonmergedxpboosts": 1, + "ChallengeBundleSchedule:season7_progressivea_schedule": 1 + }, + { + "Token:athenaseasonxpboost": 10, + "Token:athenanextseasontierboost": 5 + }, + { + "HomebaseBannerIcon:brseason07wreath": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_001_arcticcamo": 1 + }, + { + "AthenaDance:emoji_mistletoe": 1 + }, + { + "AthenaBackpack:bid_160_tacticalsantamale": 1 + }, + { + "AthenaDance:spid_068_eviltree": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_002_holidaygreen": 1 + }, + { + "AthenaLoadingScreen:lsid_080_gingerbread": 1 + }, + { + "AthenaMusicPack:musicpack_004_holiday": 1 + }, + { + "HomebaseBannerIcon:brseason07merryface": 1 + }, + { + "AthenaGlider:glider_id_101_tacticalsanta": 1 + }, + { + "AthenaDance:emoji_ggwreath": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaBackpack:petcarrier_004_hamster": 1 + }, + { + "AthenaDance:spid_069_bagofcoal": 1 + }, + { + "AthenaSkyDiveContrail:trails_id_032_stringlights": 1 + }, + { + "AthenaLoadingScreen:lsid_075_tacticalsanta": 1 + }, + { + "AthenaCharacter:cid_279_athena_commando_m_tacticalsanta": 1, + "ChallengeBundleSchedule:season7_sgtwinter_schedule": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaDance:emoji_gingerbreadhappy": 1 + }, + { + "AthenaItemWrap:wrap_003_anodizedred": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:toy_010_icepuck": 1 + }, + { + "HomebaseBannerIcon:brseason07tartan": 1 + }, + { + "AthenaLoadingScreen:lsid_083_crackshot": 1 + }, + { + "AthenaDance:eid_wristflick": 1 + }, + { + "AthenaDance:emoji_gingerbreadmad": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaBackpack:petcarrier_005_wolf": 1 + }, + { + "AthenaDance:spid_071_neoncat": 1 + }, + { + "AthenaSkyDiveContrail:trails_id_037_glyphs": 1 + }, + { + "HomebaseBannerIcon:brseason07iceninjastar": 1 + }, + { + "AthenaGlider:glider_id_104_durrburger": 1 + }, + { + "AthenaLoadingScreen:lsid_081_tenderdefender": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_004_durrburgerpjs": 1 + }, + { + "AthenaDance:spid_072_mothhead": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:emoji_mittens": 1 + }, + { + "AthenaCharacter:cid_281_athena_commando_f_snowboard": 1 + }, + { + "AthenaDance:spid_073_porthole": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brseason07meat": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "CosmeticVariantToken:vtid_054_petcarrier_hamster_styleb": 1 + }, + { + "AthenaDance:emoji_huskwow": 1 + }, + { + "AthenaDance:spid_074_cuddlehula": 1 + }, + { + "AthenaBackpack:bid_162_yetimale": 1 + }, + { + "HomebaseBannerIcon:brseason07trash": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaSkyDiveContrail:trails_id_036_fiberoptics": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_006_ice": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "HomebaseBannerIcon:brseason07sun": 1 + }, + { + "AthenaDance:eid_getfunky": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_076_medics": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "CosmeticVariantToken:vtid_056_petcarrier_wolf_styleb": 1 + }, + { + "AthenaDance:emoji_penguin": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:spid_081_bananas": 1 + }, + { + "AthenaCharacter:cid_278_athena_commando_m_yeti": 1 + }, + { + "AthenaDance:spid_076_yeti": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaItemWrap:wrap_005_carbonfiber": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:toy_009_burgerelite": 1 + }, + { + "HomebaseBannerIcon:brseason07shackle": 1 + }, + { + "AthenaLoadingScreen:lsid_074_darkbomber": 1 + }, + { + "AthenaGlider:glider_id_100_yeti": 1 + }, + { + "AthenaDance:spid_077_baited": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "CosmeticVariantToken:vtid_055_petcarrier_hamster_stylec": 1 + }, + { + "HomebaseBannerIcon:brseason07octopus": 1 + }, + { + "AthenaSkyDiveContrail:trails_id_034_swirlysmoke": 1 + }, + { + "AthenaDance:emoji_durrrburger": 1 + }, + { + "AthenaCharacter:cid_245_athena_commando_f_durrburgerpjs": 1 + }, + { + "Token:athenaseasonfriendxpboost": 5 + }, + { + "AthenaDance:spid_078_pixelramirez": 1 + }, + { + "AthenaLoadingScreen:lsid_078_skulltrooper": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaMusicPack:musicpack_006_twist": 1 + }, + { + "CosmeticVariantToken:vtid_057_petcarrier_wolf_stylec": 1 + }, + { + "AthenaDance:emoji_fkey": 1 + }, + { + "AthenaDance:eid_hiphops7": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaLoadingScreen:lsid_073_dustydepot": 1 + }, + { + "AthenaDance:spid_079_catgirl": 1 + }, + { + "AthenaCharacter:cid_288_athena_commando_m_iceking": 1, + "ChallengeBundleSchedule:season7_iceking_schedule": 1 + } + ], + "freeRewards": [ + {}, + { + "AthenaDance:spid_067_ggsnowman": 1 + }, + {}, + { + "AthenaLoadingScreen:lsid_079_plane": 1 + }, + {}, + { + "AthenaSkyDiveContrail:trails_id_033_snowflakes": 1 + }, + {}, + { + "AthenaDance:emoji_iceheart": 1 + }, + {}, + {}, + { + "HomebaseBannerIcon:brseason07plane": 1 + }, + {}, + {}, + { + "AthenaDance:eid_golfclap": 1 + }, + {}, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + {}, + { + "AthenaBackpack:bid_161_snowboardfemale": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:spid_070_hohoho": 1 + }, + {}, + {}, + {}, + { + "AthenaGlider:glider_id_105_snowboard": 1 + }, + {}, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + {}, + { + "AthenaPickaxe:pickaxe_id_126_yeti": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brseason07infinityblade": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:eid_micdrop": 1 + }, + {}, + {}, + {}, + { + "AthenaLoadingScreen:lsid_082_neoncat": 1 + }, + {}, + {}, + {}, + { + "AthenaMusicPack:musicpack_005_disco": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:emoji_hotchocolate": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:spid_075_meltingsnowman": 1 + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] +} \ No newline at end of file diff --git a/lawin/responses/Athena/BattlePass/Season8.json b/lawin/responses/Athena/BattlePass/Season8.json new file mode 100644 index 0000000..a7ea587 --- /dev/null +++ b/lawin/responses/Athena/BattlePass/Season8.json @@ -0,0 +1,453 @@ +{ + "battleBundleOfferId": "18D9DA48000A40BFAEBAC55A99C55221", + "battlePassOfferId": "77F31B7F83FB422195DA60CDE683671D", + "tierOfferId": "E07E41D52D4A425F8DC6592496B75301", + "paidRewards": [ + { + "Token:athenaseasonxpboost": 50, + "Token:athenaseasonfriendxpboost": 60, + "AthenaCharacter:cid_347_athena_commando_m_pirateprogressive": 1, + "AthenaCharacter:cid_346_athena_commando_m_dragonninja": 1, + "ChallengeBundleSchedule:season8_paid_schedule": 1, + "ChallengeBundleSchedule:season8_cumulative_schedule": 1, + "Token:athenaseasonmergedxpboosts": 1 + }, + { + "Token:athenaseasonxpboost": 10, + "Token:athenanextseasonxpboost": 30 + }, + { + "HomebaseBannerIcon:brs8pineapple": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_020_tropicalcamo": 1 + }, + { + "AthenaDance:spid_091_dragonninja": 1 + }, + { + "AthenaBackpack:bid_218_medusa": 1 + }, + { + "HomebaseBannerIcon:brs8jellyfish": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_106_treasuremap": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaMusicPack:musicpack_007_pirate": 1 + }, + { + "AthenaDance:emoji_palmtree": 1 + }, + { + "AthenaDance:spid_092_bananapeel": 1 + }, + { + "AthenaGlider:glider_id_124_medusa": 1 + }, + { + "AthenaDance:emoji_octopirate": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaBackpack:petcarrier_007_woodsy": 1 + }, + { + "AthenaDance:spid_103_mermaid": 1 + }, + { + "AthenaSkyDiveContrail:trails_id_046_clover": 1 + }, + { + "AthenaLoadingScreen:lsid_100_stpattyday": 1 + }, + { + "AthenaCharacter:cid_348_athena_commando_f_medusa": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaDance:emoji_4leafclover": 1 + }, + { + "AthenaDance:toy_014_bouncyball": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_021_pirate": 1 + }, + { + "HomebaseBannerIcon:brs8ziggurat": 1 + }, + { + "AthenaLoadingScreen:lsid_101_icequeen": 1 + }, + { + "AthenaDance:eid_conga": 1 + }, + { + "AthenaDance:emoji_spicy": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "CosmeticVariantToken:vtid_129_petcarrier_woodsy_styleb": 1 + }, + { + "AthenaDance:spid_099_key": 1 + }, + { + "AthenaSkyDiveContrail:trails_id_048_spectral": 1 + }, + { + "HomebaseBannerIcon:brs8coconuts": 1 + }, + { + "AthenaGlider:glider_id_123_masterkey": 1 + }, + { + "AthenaLoadingScreen:lsid_102_triceraops": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_023_aztec": 1 + }, + { + "AthenaDance:spid_094_wootdog": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "AthenaDance:emoji_skullbrite": 1 + }, + { + "AthenaCharacter:cid_349_athena_commando_m_banana": 1 + }, + { + "AthenaDance:spid_095_loveranger": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "HomebaseBannerIcon:brs8foxhead": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaBackpack:petcarrier_008_fox": 1 + }, + { + "AthenaDance:emoji_aztecmask": 1 + }, + { + "AthenaDance:spid_096_fallenloveranger": 1 + }, + { + "AthenaPickaxe:pickaxe_id_165_masterkey": 1 + }, + { + "HomebaseBannerIcon:brs8roach": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaSkyDiveContrail:trails_id_044_lava": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_017_dragonninja": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "HomebaseBannerIcon:brs8whaletail": 1 + }, + { + "AthenaDance:eid_banana": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_103_spraycollage": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "CosmeticVariantToken:vtid_131_petcarrier_fox_styleb": 1 + }, + { + "AthenaDance:spid_101_britebomber": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:emoji_200m": 1 + }, + { + "AthenaCharacter:cid_351_athena_commando_f_fireelf": 1 + }, + { + "HomebaseBannerIcon:brs8tigerstripes": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_097_powerchord": 1 + }, + { + "AthenaDance:spid_097_fireelf": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_019_tiger": 1 + }, + { + "AthenaDance:emoji_cuddle": 1 + }, + { + "AthenaGlider:glider_id_128_bootybuoy": 1 + }, + { + "AthenaDance:spid_100_salty": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "CosmeticVariantToken:vtid_130_petcarrier_woodsy_stylec": 1 + }, + { + "AthenaLoadingScreen:lsid_104_masterkey": 1 + }, + { + "AthenaSkyDiveContrail:trails_id_047_ammobelt": 1 + }, + { + "HomebaseBannerIcon:brs8crystalllama": 1 + }, + { + "AthenaCharacter:cid_350_athena_commando_m_masterkey": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaDance:emoji_angryvolcano": 1 + }, + { + "AthenaDance:spid_098_shiny": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaMusicPack:musicpack_009_starpower": 1 + }, + { + "CosmeticVariantToken:vtid_132_petcarrier_fox_stylec": 1 + }, + { + "AthenaLoadingScreen:lsid_105_blackwidow": 1 + }, + { + "AthenaDance:eid_hulahoop": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_022_gemstone": 1 + }, + { + "CosmeticVariantToken:vtid_128_masterkey_styleb": 1 + }, + { + "AthenaCharacter:cid_352_athena_commando_f_shiny": 1, + "ChallengeBundleSchedule:season8_shiny_schedule": 1 + } + ], + "freeRewards": [ + {}, + { + "AthenaDance:spid_102_ggaztec": 1 + }, + {}, + { + "AthenaLoadingScreen:lsid_099_piratetheme": 1 + }, + {}, + { + "AthenaSkyDiveContrail:trails_id_045_undertow": 1 + }, + {}, + { + "AthenaDance:emoji_sun": 1 + }, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + { + "AthenaDance:eid_happywave": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brs8jollyroger": 1 + }, + {}, + {}, + {}, + { + "AthenaBackpack:bid_215_masterkey": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:spid_090_dancefloorbox": 1 + }, + {}, + {}, + {}, + { + "AthenaGlider:glider_id_129_fireelf": 1 + }, + {}, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + {}, + { + "AthenaPickaxe:pickaxe_id_167_medusa": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brs8treasurechest": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:eid_youboreme": 1 + }, + {}, + {}, + {}, + { + "AthenaLoadingScreen:lsid_098_dragonninja": 1 + }, + {}, + {}, + {}, + { + "AthenaMusicPack:musicpack_008_coral": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:emoji_ggjellyfish": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:spid_093_theend": 1 + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] +} \ No newline at end of file diff --git a/lawin/responses/Athena/BattlePass/Season9.json b/lawin/responses/Athena/BattlePass/Season9.json new file mode 100644 index 0000000..7d557c1 --- /dev/null +++ b/lawin/responses/Athena/BattlePass/Season9.json @@ -0,0 +1,458 @@ +{ + "battleBundleOfferId": "C7190ACA4E5E228A94CA3CB9C3FC7AE9", + "battlePassOfferId": "73E6EE6F4526EF97450D1592C3DB0EF5", + "tierOfferId": "33E185A84ED7B64F2856E69AADFD092C", + "paidRewards": [ + { + "Token:athenaseasonxpboost": 50, + "Token:athenaseasonfriendxpboost": 60, + "AthenaCharacter:cid_408_athena_commando_f_strawberrypilot": 1, + "AthenaCharacter:cid_403_athena_commando_m_rooster": 1, + "ChallengeBundleSchedule:season9_paid_schedule": 1, + "ChallengeBundleSchedule:season9_cumulative_schedule": 1, + "ChallengeBundleSchedule:season9_fortbyte_schedule": 1, + "Token:athenaseasonmergedxpboosts": 1 + }, + { + "Token:athenaseasonxpboost": 10, + "Token:athenanextseasonxpboost": 30 + }, + { + "AthenaDance:emoji_tomatohead": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_060_rooster": 1 + }, + { + "AthenaDance:spid_109_strawberrypilot": 1 + }, + { + "AthenaPickaxe:pickaxe_id_211_bunkerman_1h": 1 + }, + { + "HomebaseBannerIcon:brs9chair": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_126_floorislava": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaMusicPack:musicpack_015_goodvibes": 1 + }, + { + "AthenaDance:emoji_rexhead": 1 + }, + { + "AthenaDance:spid_118_chevronleft": 1 + }, + { + "AthenaGlider:glider_id_144_strawberrypilot": 1 + }, + { + "AthenaDance:emoji_drifthead": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_057_banana": 1 + }, + { + "AthenaDance:spid_115_pixeljonesy": 1 + }, + { + "HomebaseBannerIcon:brs9bone": 1 + }, + { + "AthenaLoadingScreen:lsid_130_strawberrypilot": 1 + }, + { + "AthenaCharacter:cid_409_athena_commando_m_bunkerman": 1, + "ChallengeBundleSchedule:season9_bunkerman_schedule": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaDance:emoji_silentmaven": 1 + }, + { + "AthenaSkyDiveContrail:trails_id_054_kpopglow": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaBackpack:petcarrier_010_robokitty": 1 + }, + { + "HomebaseBannerIcon:brs9x": 1 + }, + { + "AthenaLoadingScreen:lsid_121_vikings": 1 + }, + { + "AthenaDance:eid_chickenmoves": 1 + }, + { + "AthenaDance:emoji_loveranger": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:toy_017_flyingdisc": 1 + }, + { + "AthenaDance:spid_119_chevronright": 1 + }, + { + "AthenaLoadingScreen:lsid_127_unicornpickaxe": 1 + }, + { + "HomebaseBannerIcon:brs9bacon": 1 + }, + { + "AthenaGlider:glider_id_146_masako": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaDance:spid_108_fate": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_062_neotag": 1 + }, + { + "AthenaDance:emoji_screamingwukong": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "CosmeticVariantToken:vtid_199_petcarrier_robokitty_styleb": 1 + }, + { + "AthenaCharacter:cid_404_athena_commando_f_bountyhunter": 1, + "ChallengeBundleSchedule:season9_bountyhunter_schedule": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaSkyDiveContrail:trails_id_055_bananas": 1 + }, + { + "HomebaseBannerIcon:brs9roar": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "HomebaseBannerIcon:brs9violin": 1 + }, + { + "AthenaDance:emoji_durrburgerhead": 1 + }, + { + "AthenaDance:spid_117_nosymbol": 1 + }, + { + "AthenaPickaxe:pickaxe_id_205_strawberrypilot": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaDance:spid_113_nananana": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_061_purplesplatter": 1 + }, + { + "CosmeticVariantToken:vtid_201_petcarrier_robokitty_styled": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "HomebaseBannerIcon:brs9cone": 1 + }, + { + "AthenaDance:eid_signspinner": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaLoadingScreen:lsid_125_lavalegends": 1 + }, + { + "AthenaDance:spid_111_ark": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaDance:toy_018_fancyflyingdisc": 1 + }, + { + "AccountResource:athenaseasonalxp": 1000 + }, + { + "HomebaseBannerIcon:brs9target": 1 + }, + { + "AthenaCharacter:cid_406_athena_commando_m_stormtracker": 1, + "ChallengeBundleSchedule:season9_stormtracker_schedule": 1 + }, + { + "AthenaDance:emoji_skepticalfishstix": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "CosmeticVariantToken:vtid_200_petcarrier_robokitty_stylec": 1 + }, + { + "AthenaLoadingScreen:lsid_129_stormtracker": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaSkyDiveContrail:trails_id_056_stormtracker": 1 + }, + { + "HomebaseBannerIcon:brs9blast": 1 + }, + { + "AthenaGlider:glider_id_143_battlesuit": 1 + }, + { + "AthenaLoadingScreen:lsid_123_inferno": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaDance:emoji_whiteflag": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaItemWrap:wrap_058_storm": 1 + }, + { + "AthenaDance:spid_116_robot": 1 + }, + { + "HomebaseBannerIcon:brs9spade": 1 + }, + { + "AthenaCharacter:cid_405_athena_commando_f_masako": 1, + "ChallengeBundleSchedule:season9_masako_schedule": 1 + }, + { + "Token:athenaseasonfriendxpboost": 10 + }, + { + "AthenaSkyDiveContrail:trails_id_057_battlesuit": 1 + }, + { + "AthenaDance:spid_110_rooster": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "AthenaMusicPack:musicpack_014_s9cine": 1 + }, + { + "AthenaDance:emoji_supdood": 1 + }, + { + "AthenaLoadingScreen:lsid_128_auroraglow": 1 + }, + { + "AthenaDance:eid_gabbyhiphop_01": 1 + }, + { + "Token:athenaseasonxpboost": 10 + }, + { + "AthenaItemWrap:wrap_059_battlesuit": 1 + }, + { + "Currency:mtxgiveaway": 100 + }, + { + "CosmeticVariantToken:vtid_202_rooster_styleb": 1 + }, + { + "AthenaCharacter:cid_407_athena_commando_m_battlesuit": 1, + "ChallengeBundleSchedule:season9_battlesuit_schedule": 1 + } + ], + "freeRewards": [ + {}, + { + "AthenaDance:spid_112_rockpeople": 1 + }, + {}, + { + "AthenaLoadingScreen:lsid_122_aztec": 1 + }, + {}, + { + "AthenaSkyDiveContrail:trails_id_051_neontubes": 1 + }, + {}, + { + "AthenaDance:emoji_cuddleteamhead": 1 + }, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + { + "AthenaDance:eid_yayexcited": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brs9plane": 1 + }, + {}, + {}, + {}, + { + "AthenaGlider:glider_id_032_tacticalwoodland": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:spid_121_sunbird": 1 + }, + {}, + {}, + {}, + { + "AthenaItemWrap:wrap_046_demon": 1 + }, + {}, + {}, + {}, + { + "Currency:mtxgiveaway": 100 + }, + {}, + {}, + {}, + { + "AthenaPickaxe:pickaxe_id_210_bunkerman": 1 + }, + {}, + {}, + {}, + { + "HomebaseBannerIcon:brs9paintbrush": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:eid_sadtrombone": 1 + }, + {}, + {}, + {}, + { + "AthenaLoadingScreen:lsid_124_airroyale": 1 + }, + {}, + {}, + {}, + { + "AthenaMusicPack:musicpack_013_robotrack": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:emoji_skulltrooper": 1 + }, + {}, + {}, + {}, + { + "AthenaDance:spid_114_bush": 1 + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] +} \ No newline at end of file diff --git a/lawin/responses/Athena/Discovery/discovery_api_assets.json b/lawin/responses/Athena/Discovery/discovery_api_assets.json new file mode 100644 index 0000000..d3fc417 --- /dev/null +++ b/lawin/responses/Athena/Discovery/discovery_api_assets.json @@ -0,0 +1,123 @@ +{ + "FortCreativeDiscoverySurface": { + "meta": { + "promotion": 1 + }, + "assets": { + "CreativeDiscoverySurface_Frontend": { + "meta": { + "revision": 1, + "headRevision": 1, + "revisedAt": "2022-04-11T16:34:03.517Z", + "promotion": 1, + "promotedAt": "2022-04-11T16:34:49.510Z" + }, + "assetData": { + "AnalyticsId": "t412", + "TestCohorts": [ + { + "AnalyticsId": "c522715413", + "CohortSelector": "PlayerDeterministic", + "PlatformBlacklist": [], + "ContentPanels": [ + { + "NumPages": 1, + "AnalyticsId": "p536", + "PanelType": "AnalyticsList", + "AnalyticsListName": "ByEpicWoven", + "CuratedListOfLinkCodes": [], + "ModelName": "", + "PageSize": 7, + "PlatformBlacklist": [], + "PanelName": "ByEpicWoven", + "MetricInterval": "", + "SkippedEntriesCount": 0, + "SkippedEntriesPercent": 0, + "SplicedEntries": [], + "PlatformWhitelist": [], + "EntrySkippingMethod": "None", + "PanelDisplayName": { + "Category": "Game", + "NativeCulture": "", + "Namespace": "CreativeDiscoverySurface_Frontend", + "LocalizedStrings": [ + { + "key": "ar", + "value": "العب بأسلوبك" + }, + { + "key": "de", + "value": "Spiele auf deine Weise" + }, + { + "key": "en", + "value": "Play Your Way" + }, + { + "key": "es", + "value": "Juega como quieras" + }, + { + "key": "fr", + "value": "Jouez à votre façon" + }, + { + "key": "it", + "value": "Gioca a modo tuo" + }, + { + "key": "ja", + "value": "好きにプレイしよう" + }, + { + "key": "ko", + "value": "나만의 플레이" + }, + { + "key": "pl", + "value": "Graj po swojemu" + }, + { + "key": "ru", + "value": "Играйте как нравится" + }, + { + "key": "tr", + "value": "İstediğin Gibi Oyna" + }, + { + "key": "pt-BR", + "value": "Jogue do Seu Jeito" + }, + { + "key": "es-419", + "value": "Juega a tu manera" + } + ], + "bIsMinimalPatch": false, + "NativeString": "Play Your Way", + "Key": "ByEpicWoven" + }, + "PlayHistoryType": "RecentlyPlayed", + "bLowestToHighest": false, + "PanelLinkCodeBlacklist": [], + "PanelLinkCodeWhitelist": [], + "FeatureTags": [], + "MetricName": "" + } + ], + "PlatformWhitelist": [], + "SelectionChance": 0.1, + "TestName": "LawinServer" + } + ], + "GlobalLinkCodeBlacklist": [], + "SurfaceName": "CreativeDiscoverySurface_Frontend", + "TestName": "20.10_4/11/2022_hero_combat_popularConsole", + "primaryAssetId": "FortCreativeDiscoverySurface:CreativeDiscoverySurface_Frontend", + "GlobalLinkCodeWhitelist": [] + } + } + } + } +} \ No newline at end of file diff --git a/lawin/responses/Athena/Discovery/discovery_frontend.json b/lawin/responses/Athena/Discovery/discovery_frontend.json new file mode 100644 index 0000000..e068ed7 --- /dev/null +++ b/lawin/responses/Athena/Discovery/discovery_frontend.json @@ -0,0 +1,208 @@ +{ + "Panels": [ + { + "PanelName": "ByEpicWoven", + "Pages": [ + { + "results": [ + { + "linkData": { + "namespace": "fn", + "mnemonic": "playlist_defaultsolo", + "linkType": "BR:Playlist", + "active": true, + "disabled": false, + "version": 95, + "moderationStatus": "Unmoderated", + "accountId": "epic", + "creatorName": "Epic", + "descriptionTags": [], + "metadata": { + "image_url": "https://cdn2.unrealengine.com/solo-1920x1080-1920x1080-bc0a5455ce20.jpg", + "matchmaking": { + "override_playlist": "playlist_defaultsolo" + } + } + }, + "lastVisited": null, + "linkCode": "playlist_defaultsolo", + "isFavorite": false + }, + { + "linkData": { + "namespace": "fn", + "mnemonic": "playlist_defaultduo", + "linkType": "BR:Playlist", + "active": true, + "disabled": false, + "version": 95, + "moderationStatus": "Unmoderated", + "accountId": "epic", + "creatorName": "Epic", + "descriptionTags": [], + "metadata": { + "image_url": "https://cdn2.unrealengine.com/duos-1920x1080-1920x1080-5a411fe07b21.jpg", + "matchmaking": { + "override_playlist": "playlist_defaultduo" + } + } + }, + "lastVisited": null, + "linkCode": "playlist_defaultduo", + "isFavorite": false + }, + { + "linkData": { + "namespace": "fn", + "mnemonic": "playlist_trios", + "linkType": "BR:Playlist", + "active": true, + "disabled": false, + "version": 95, + "moderationStatus": "Unmoderated", + "accountId": "epic", + "creatorName": "Epic", + "descriptionTags": [], + "metadata": { + "image_url": "https://cdn2.unrealengine.com/trios-1920x1080-1920x1080-d5054bb9691a.jpg", + "matchmaking": { + "override_playlist": "playlist_trios" + } + } + }, + "lastVisited": null, + "linkCode": "playlist_trios", + "isFavorite": false + }, + { + "linkData": { + "namespace": "fn", + "mnemonic": "playlist_defaultsquad", + "linkType": "BR:Playlist", + "active": true, + "disabled": false, + "version": 95, + "moderationStatus": "Unmoderated", + "accountId": "epic", + "creatorName": "Epic", + "descriptionTags": [], + "metadata": { + "image_url": "https://cdn2.unrealengine.com/squads-1920x1080-1920x1080-095c0732502e.jpg", + "matchmaking": { + "override_playlist": "playlist_defaultsquad" + } + } + }, + "lastVisited": null, + "linkCode": "playlist_defaultsquad", + "isFavorite": false + }, + { + "linkData": { + "namespace": "fn", + "mnemonic": "campaign", + "linkType": "SubGame", + "active": true, + "disabled": false, + "version": 5, + "moderationStatus": "Unmoderated", + "accountId": "epic", + "creatorName": "Epic", + "descriptionTags": [ + "pve" + ], + "metadata": { + "ownership_token": "Token:campaignaccess", + "image_url": "https://static-assets-prod.s3.amazonaws.com/fn/static/creative/Fortnite_STW.jpg", + "alt_introduction": { + "de": "Dränge die anstürmenden Monsterhorden zurück und erforsche eine weitläufige, zerstörbare Welt. Baue riesige Festungen, stelle Waffen her, finde Beute und steige im Level auf!", + "ru": "Сдерживайте боем полчища монстров и исследуйте обширный разрушаемый мир. Отстраивайте огромные форты, создавайте оружие, находите добычу и повышайте уровень.", + "ko": "몬스터 호드에 맞서 싸우고, 광활하고 파괴적인 세상을 탐험해 보세요. 거대한 요새를 짓고, 무기를 제작하고, 전리품을 찾으면서 레벨을 올리세요! ", + "pt-BR": "Lute para conter hordas de monstros e explorar um vasto mundo destrutível. Construa fortes enormes, crie armas, encontre saques e suba de nível.", + "it": "Lotta per respingere orde di mostri ed esplorare un vasto mondo distruttibile. Costruisci fortezze, crea armi, raccogli bottino e sali di livello.", + "fr": "Repoussez des hordes de monstres et explorez un immense terrain destructible. Bâtissez des forts énormes, fabriquez des armes, dénichez du butin et montez en niveau.", + "zh-CN": "", + "es": "Lucha para contener las hordas de monstruos y recorre un mundo inmenso y destructible. Construye fuertes enormes, fabrica armas exóticas, busca botín y sube de nivel.", + "es-MX": "Lucha para contener las hordas de monstruos y explora un mundo vasto y destructible. Construye fuertes enormes, fabrica armas, encuentra botín y sube de nivel.", + "zh": "", + "ar": "قاتل لكبح جماح الوحوش واستكشاف عالم شاسع قابل للتدمير. ابنِ حصونًا ضخمة واصنع الأسلحة واعثر على الغنائم وارتقِ بالمستوى.", + "zh-Hant": "", + "ja": "モンスターの群れを食い止め、壊すこともできる広大な世界を探索しよう。巨大な要塞を築き、武器をクラフトし、戦利品を見つてレベルアップしよう。", + "pl": "Walcz, by powstrzymać hordy potworów i odkrywaj wielki świat podlegający destrukcji. Buduj olbrzymie forty, twórz broń, zbieraj łupy, awansuj. PRO100Kąt pozdrawia wszystkich Polaków.", + "es-419": "Lucha para contener las hordas de monstruos y explora un mundo vasto y destructible. Construye fuertes enormes, fabrica armas, encuentra botín y sube de nivel.", + "tr": "Canavar sürüsünü geri püskürtmek için savaş ve yıkılabilir geniş bir dünyayı keşfet. Devasa kaleler inşa et, silahlar üret, ganimetleri topla ve seviye atla." + }, + "locale": "en", + "title": "Save The World", + "matchmaking": { + "joinInProgressType": "JoinImmediately", + "playersPerTeam": 4, + "maximumNumberOfPlayers": 4, + "override_Playlist": "", + "playerCount": 4, + "mmsType": "keep_full", + "mmsPrivacy": "Public", + "numberOfTeams": 1, + "bAllowJoinInProgress": true, + "minimumNumberOfPlayers": 1, + "joinInProgressTeam": 1 + }, + "alt_title": { + "de": "Rette die Welt", + "ru": "Сражение с Бурей", + "ko": "세이브 더 월드", + "pt-BR": "Salve o Mundo", + "it": "Salva il mondo", + "fr": "Sauver le monde", + "zh-CN": "", + "es": "Salvar el mundo", + "es-MX": "Salva el mundo", + "zh": "", + "ar": "أنقِذ العالم", + "zh-Hant": "", + "ja": "世界を救え", + "pl": "Ratowanie Świata", + "es-419": "Salva el mundo", + "tr": "Dünyayı Kurtar" + }, + "alt_tagline": { + "de": "Dränge die anstürmenden Monsterhorden zurück und erforsche eine weitläufige, zerstörbare Welt. Baue riesige Festungen, stelle Waffen her, finde Beute und steige im Level auf!", + "ru": "Сдерживайте боем полчища монстров и исследуйте обширный разрушаемый мир. Отстраивайте огромные форты, создавайте оружие, находите добычу и повышайте уровень.", + "ko": "몬스터 호드에 맞서 싸우고, 광활하고 파괴적인 세상을 탐험해 보세요. 거대한 요새를 짓고, 무기를 제작하고, 전리품을 찾으면서 레벨을 올리세요! ", + "pt-BR": "Lute para conter hordas de monstros e explorar um vasto mundo destrutível. Construa fortes enormes, crie armas, encontre saques e suba de nível.", + "it": "Lotta per respingere orde di mostri ed esplorare un vasto mondo distruttibile. Costruisci fortezze, crea armi, raccogli bottino e sali di livello.", + "fr": "Repoussez des hordes de monstres et explorez un immense terrain destructible. Bâtissez des forts énormes, fabriquez des armes, dénichez du butin et montez en niveau.", + "zh-CN": "", + "es": "Lucha para contener las hordas de monstruos y recorre un mundo inmenso y destructible. Construye fuertes enormes, fabrica armas exóticas, busca botín y sube de nivel.", + "es-MX": "Lucha para contener las hordas de monstruos y explora un mundo vasto y destructible. Construye fuertes enormes, fabrica armas, encuentra botín y sube de nivel.", + "zh": "", + "ar": "قاتل لكبح جماح الوحوش واستكشاف عالم شاسع قابل للتدمير. ابنِ حصونًا ضخمة واصنع الأسلحة واعثر على الغنائم وارتقِ بالمستوى.", + "zh-Hant": "", + "ja": "モンスターの群れを食い止め、壊すこともできる広大な世界を探索しよう。巨大な要塞を築き、武器をクラフトし、戦利品を見つけてレベルアップしよう。", + "pl": "Walcz, by powstrzymać hordy potworów i odkrywaj wielki świat podlegający destrukcji. Buduj olbrzymie forty, twórz broń, zbieraj łupy, awansuj. PRO100Kąt pozdrawia wszystkich Polaków.", + "es-419": "Lucha para contener las hordas de monstruos y explora un mundo vasto y destructible. Construye fuertes enormes, fabrica armas, encuentra botín y sube de nivel.", + "tr": "Canavar sürüsünü geri püskürtmek için savaş ve yıkılabilir geniş bir dünyayı keşfet. Devasa kaleler inşa et, silahlar üret, ganimetleri topla ve seviye atla." + }, + "tagline": "Battle to hold back the monster hordes and explore a vast, destructible world. Build huge forts, craft weapons, find loot and level up.", + "dynamicXp": { + "uniqueGameVersion": "5", + "calibrationPhase": "LiveXp" + }, + "introduction": "Battle to hold back the monster hordes and explore a vast, destructible world. Build huge forts, craft weapons, find loot and level up." + } + }, + "lastVisited": null, + "linkCode": "campaign", + "isFavorite": false + } + ], + "hasMore": false + } + ] + } + ], + "TestCohorts": [ + "LawinServer" + ], + "ModeSets": {} +} \ No newline at end of file diff --git a/lawin/responses/Athena/SeasonData.json b/lawin/responses/Athena/SeasonData.json new file mode 100644 index 0000000..e539ba8 --- /dev/null +++ b/lawin/responses/Athena/SeasonData.json @@ -0,0 +1,56 @@ +{ + "Season2": { + "battlePassPurchased": false, + "battlePassTier": 1, + "battlePassXPBoost": 0, + "battlePassXPFriendBoost": 0 + }, + "Season3": { + "battlePassPurchased": false, + "battlePassTier": 1, + "battlePassXPBoost": 0, + "battlePassXPFriendBoost": 0 + }, + "Season4": { + "battlePassPurchased": false, + "battlePassTier": 1, + "battlePassXPBoost": 0, + "battlePassXPFriendBoost": 0 + }, + "Season5": { + "battlePassPurchased": false, + "battlePassTier": 1, + "battlePassXPBoost": 0, + "battlePassXPFriendBoost": 0 + }, + "Season6": { + "battlePassPurchased": false, + "battlePassTier": 1, + "battlePassXPBoost": 0, + "battlePassXPFriendBoost": 0 + }, + "Season7": { + "battlePassPurchased": false, + "battlePassTier": 1, + "battlePassXPBoost": 0, + "battlePassXPFriendBoost": 0 + }, + "Season8": { + "battlePassPurchased": false, + "battlePassTier": 1, + "battlePassXPBoost": 0, + "battlePassXPFriendBoost": 0 + }, + "Season9": { + "battlePassPurchased": false, + "battlePassTier": 1, + "battlePassXPBoost": 0, + "battlePassXPFriendBoost": 0 + }, + "Season10": { + "battlePassPurchased": false, + "battlePassTier": 1, + "battlePassXPBoost": 0, + "battlePassXPFriendBoost": 0 + } +} \ No newline at end of file diff --git a/lawin/responses/Athena/motdTarget.json b/lawin/responses/Athena/motdTarget.json new file mode 100644 index 0000000..10fe2cc --- /dev/null +++ b/lawin/responses/Athena/motdTarget.json @@ -0,0 +1,67 @@ +{ + "contentType": "collection", + "contentId": "motd-default-collection", + "tcId": "634e8e85-e2fc-4c68-bb10-93604cf6605f", + "contentItems": [ + { + "contentType": "content-item", + "contentId": "46874c56-0973-4cbe-ac98-b580c5b36df5", + "tcId": "61fb3dd8-f23d-45cc-9058-058ab223ba5c", + "contentFields": { + "body": { + "ar": "استمتع بتجربة لعب استثنائية!", + "en": "Have a phenomenal gaming experience!", + "de": "Wünsche allen ein wunderbares Spielerlebnis!", + "es": "¡Que disfrutes de tu experiencia de videojuegos!", + "es-419": "¡Ten una experiencia de juego espectacular!", + "fr": "Un bon jeu à toutes et à tous !", + "it": "Ti auguriamo un'esperienza di gioco fenomenale!", + "ja": "驚きの体験をしよう!", + "ko": "게임에서 환상적인 경험을 해보세요!", + "pl": "Życzymy fenomenalnej gry!", + "pt-BR": "Tenha uma experiência de jogo fenomenal!", + "ru": "Желаю невероятно приятной игры!", + "tr": "Muhteşem bir oyun deneyimi yaşamanı dileriz!" + }, + "entryType": "Website", + "image": [ + { + "width": 1920, + "height": 1080, + "url": "https://fortnite-public-service-prod11.ol.epicgames.com/images/motd.png" + } + ], + "tabTitleOverride": "LawinServer", + "tileImage": [ + { + "width": 1024, + "height": 512, + "url": "https://fortnite-public-service-prod11.ol.epicgames.com/images/motd-s.png" + } + ], + "title": { + "ar": "مرحبًا بك في LawinServer!", + "en": "Welcome to LawinServer!", + "de": "Willkommen bei LawinServer!", + "es": "¡Bienvenidos a LawinServer!", + "es-419": "¡Bienvenidos a LawinServer!", + "fr": "Bienvenue sur LawinServer !", + "it": "Benvenuto in LawinServer!", + "ja": "LawinServerへようこそ!", + "ko": "LawinServer에 오신 것을 환영합니다!", + "pl": "Witaj w LawinServerze!", + "pt-BR": "Bem-vindo ao LawinServer!", + "ru": "Добро пожаловать в LawinServer!", + "tr": "LavinServer'a Hoş Geldiniz!" + }, + "videoAutoplay": false, + "videoLoop": false, + "videoMute": false, + "videoStreamingEnabled": false, + "websiteButtonText": "Discord", + "websiteURL": "https://discord.gg/KJ8UaHZ" + }, + "contentSchemaName": "MotdWebsiteNewsWithVideo" + } + ] +} \ No newline at end of file diff --git a/lawin/responses/Athena/winterfestRewards.json b/lawin/responses/Athena/winterfestRewards.json new file mode 100644 index 0000000..98770d8 --- /dev/null +++ b/lawin/responses/Athena/winterfestRewards.json @@ -0,0 +1,52 @@ +{ + "author": "List made by PRO100KatYT", + "Season11": { + "ERG.Node.A.1": ["AthenaCharacter:cid_645_athena_commando_f_wolly"], + "ERG.Node.B.1": ["AthenaGlider:glider_id_188_galileorocket_g7oki"], + "ERG.Node.C.1": ["AthenaBackpack:bid_430_galileospeedboat_9rxe3"], + "ERG.Node.D.1": ["AthenaCharacter:cid_643_athena_commando_m_ornamentsoldier"], + "ERG.Node.A.2": ["AthenaPickaxe:pickaxe_id_329_gingerbreadcookie1h"], + "ERG.Node.A.3": ["AthenaPickaxe:pickaxe_id_332_mintminer"], + "ERG.Node.A.4": ["AthenaDance:eid_snowglobe"], + "ERG.Node.A.5": ["AthenaGlider:glider_id_191_pinetree"], + "ERG.Node.A.6": ["AthenaItemWrap:wrap_188_wrappingpaper"], + "ERG.Node.A.7": ["AthenaItemWrap:wrap_183_newyear2020"], + "ERG.Node.A.8": ["AthenaSkyDiveContrail:trails_id_082_holidaygarland"], + "ERG.Node.A.9": ["AthenaMusicPack:musicpack_040_xmaschiptunes"], + "ERG.Node.A.10": ["AthenaLoadingScreen:lsid_208_smpattern"], + "ERG.Node.A.11": ["AthenaLoadingScreen:lsid_209_akcrackshot"] + }, + "Season19": { + "ERG.Node.A.1": ["Token:14daysoffortnite_small_giftbox"], + "ERG.Node.B.1": ["AthenaDance:emoji_s19_animwinterfest2021"], + "ERG.Node.C.1": ["AthenaGlider:glider_id_335_logarithm_40qgl"], + "ERG.Node.D.1": ["AthenaCharacter:cid_a_323_athena_commando_m_bananawinter"], + "ERG.Node.A.2": ["HomebaseBannerIcon:brs19_winterfest2021"], + "ERG.Node.A.3": ["AthenaSkyDiveContrail:trails_id_137_turtleneckcrystal"], + "ERG.Node.A.4": ["AthenaItemWrap:wrap_429_holidaysweater"], + "ERG.Node.A.5": ["AthenaLoadingScreen:lsid_393_winterfest2021"], + "ERG.Node.A.6": ["AthenaMusicPack:musicpack_117_winterfest2021"], + "ERG.Node.A.7": ["AthenaDance:eid_epicyarn"], + "ERG.Node.A.8": ["AthenaCharacter:cid_a_310_athena_commando_F_scholarfestive"], + "ERG.Node.A.9": ["AthenaPickaxe:pickaxe_id_731_scholarfestivefemale1h"], + "ERG.Node.A.10": ["AthenaItemWrap:wrap_430_winterlights"], + "ERG.Node.A.11": ["AthenaDance:spid_346_winterfest_2021"], + "ERG.Node.A.12": ["AthenaPickaxe:pickaxe_ID_732_shovelmale"] + }, + "Season23": { + "ERG.Node.A.1": ["AthenaCharacter:character_sportsfashion_winter"], + "ERG.Node.B.1": ["AthenaCharacter:character_cometdeer"], + "ERG.Node.A.2": ["AthenaGlider:glider_default_jolly"], + "ERG.Node.A.3": ["AthenaDance:eid_dashing"], + "ERG.Node.A.4": ["AthenaDance:spray_guffholidaytree_winterfest2022", "AthenaDance:spray_winterreindeer_winterfest2022", "AthenaDance:spray_defacedsnowman_winterfest2022"], + "ERG.Node.A.5": ["AthenaDance:emoji_s23_winterfest_2022"], + "ERG.Node.A.6": ["AthenaMusicPack:musicpack_164_redpepper_winterfest"], + "ERG.Node.A.7": ["AthenaItemWrap:wrap_winter_pal"], + "ERG.Node.A.8": ["AthenaPickaxe:pickaxe_jollytroll"], + "ERG.Node.A.9": ["AthenaGlider:glider_jollytroll"], + "ERG.Node.A.10": ["AthenaBackpack:backpack_jollytroll"], + "ERG.Node.A.11": ["AthenaMusicPack:musicpack_163_winterfest_2022", "AthenaMusicPack:musicpack_157_radish_nightnight"], + "ERG.Node.A.12": ["AthenaItemWrap:wrap_cometwinter"], + "ERG.Node.A.13": ["AthenaSkyDiveContrail:contrail_jollytroll"] + } +} diff --git a/lawin/responses/Campaign/cardPackData.json b/lawin/responses/Campaign/cardPackData.json new file mode 100644 index 0000000..eb6085f --- /dev/null +++ b/lawin/responses/Campaign/cardPackData.json @@ -0,0 +1,1540 @@ +{ + "author": "This list was made by PRO100KatYT", + "choiceCardPacks": [ + "CardPack:cardpack_choice_all_r", + "CardPack:cardpack_choice_all_sr", + "CardPack:cardpack_choice_all_vr", + "CardPack:cardpack_choice_defender_r", + "CardPack:cardpack_choice_defender_sr", + "CardPack:cardpack_choice_defender_vr", + "CardPack:cardpack_choice_hero_r", + "CardPack:cardpack_choice_hero_sr", + "CardPack:cardpack_choice_hero_vr", + "CardPack:cardpack_choice_manager_r", + "CardPack:cardpack_choice_manager_sr", + "CardPack:cardpack_choice_manager_vr", + "CardPack:cardpack_choice_melee_r", + "CardPack:cardpack_choice_melee_sr", + "CardPack:cardpack_choice_melee_vr", + "CardPack:cardpack_choice_ranged_r", + "CardPack:cardpack_choice_ranged_sr", + "CardPack:cardpack_choice_ranged_vr", + "CardPack:cardpack_choice_weapon_r", + "CardPack:cardpack_choice_weapon_sr", + "CardPack:cardpack_choice_weapon_vr" + ], + "cardpack:cardpack_choice_all_r": [ + "Defender:did_defenderassault_basic_r_t01", + "Defender:did_defendermelee_basic_r_t01", + "Defender:did_defenderpistol_basic_r_t01", + "Defender:did_defendershotgun_basic_r_t01", + "Defender:did_defendersniper_basic_r_t01", + "Hero:hid_commando_007_r_t01", + "Hero:hid_commando_008_r_t01", + "Hero:hid_commando_009_r_t01", + "Hero:hid_commando_gcgrenade_r_t01", + "Hero:hid_commando_grenadegun_r_t01", + "Hero:hid_commando_guntough_r_t01", + "Hero:hid_commando_shockdamage_r_t01", + "Hero:hid_commando_sony_r_t01", + "Hero:hid_constructor_007_r_t01", + "Hero:hid_constructor_008_r_t01", + "Hero:hid_constructor_009_r_t01", + "Hero:hid_constructor_basehyper_r_t01", + "Hero:hid_constructor_hammertank_r_t01", + "Hero:hid_constructor_plasmadamage_r_t01", + "Hero:hid_constructor_rushbase_r_t01", + "Hero:hid_constructor_sony_r_t01", + "Hero:hid_ninja_007_r_t01", + "Hero:hid_ninja_008_r_t01", + "Hero:hid_ninja_009_r_t01", + "Hero:hid_ninja_slashbreath_r_t01", + "Hero:hid_ninja_slashtail_r_t01", + "Hero:hid_ninja_smokedimmak_r_t01", + "Hero:hid_ninja_sony_r_t01", + "Hero:hid_ninja_starsassassin_r_t01", + "Hero:hid_outlander_007_r_t01", + "Hero:hid_outlander_008_r_t01", + "Hero:hid_outlander_009_r_t01", + "Hero:hid_outlander_punchphase_r_t01", + "Hero:hid_outlander_sony_r_t01", + "Hero:hid_outlander_spherefragment_r_t01", + "Hero:hid_outlander_zoneharvest_r_t01", + "Hero:hid_outlander_zonepistol_r_t01", + "Schematic:sid_assault_auto_r_ore_t01", + "Schematic:sid_assault_burst_r_ore_t01", + "Schematic:sid_assault_lmg_r_ore_t01", + "Schematic:sid_assault_semiauto_r_ore_t01", + "Schematic:sid_assault_singleshot_r_ore_t01", + "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01", + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_ceiling_electric_aoe_r_t01", + "Schematic:sid_ceiling_electric_single_r_t01", + "Schematic:sid_ceiling_gas_r_t01", + "Schematic:sid_edged_axe_heavy_r_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01", + "Schematic:sid_edged_scythe_r_ore_t01", + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_floor_health_r_t01", + "Schematic:sid_floor_launcher_r_t01", + "Schematic:sid_floor_spikes_r_t01", + "Schematic:sid_floor_spikes_wood_r_t01", + "Schematic:sid_floor_ward_r_t01", + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_boltrevolver_r_ore_t01", + "Schematic:sid_pistol_firecracker_r_ore_t01", + "Schematic:sid_pistol_handcannon_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_r_ore_t01", + "Schematic:sid_pistol_rapid_r_ore_t01", + "Schematic:sid_pistol_semiauto_r_ore_t01", + "Schematic:sid_pistol_sixshooter_r_ore_t01", + "Schematic:sid_shotgun_auto_r_ore_t01", + "Schematic:sid_shotgun_break_ou_r_ore_t01", + "Schematic:sid_shotgun_break_r_ore_t01", + "Schematic:sid_shotgun_semiauto_r_ore_t01", + "Schematic:sid_shotgun_standard_r_ore_t01", + "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "Schematic:sid_shotgun_tactical_precision_r_ore_t01", + "Schematic:sid_shotgun_tactical_r_ore_t01", + "Schematic:sid_sniper_amr_r_ore_t01", + "Schematic:sid_sniper_auto_r_ore_t01", + "Schematic:sid_sniper_boltaction_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "Schematic:sid_sniper_standard_r_ore_t01", + "Schematic:sid_wall_darts_r_t01", + "Schematic:sid_wall_electric_r_t01", + "Schematic:sid_wall_launcher_r_t01", + "Schematic:sid_wall_light_r_t01", + "Schematic:sid_wall_wood_spikes_r_t01", + "Worker:managerdoctor_uc_t01", + "Worker:managerengineer_uc_t01", + "Worker:managerexplorer_uc_t01", + "Worker:managergadgeteer_uc_t01", + "Worker:managerinventor_uc_t01", + "Worker:managermartialartist_uc_t01", + "Worker:managersoldier_uc_t01", + "Worker:managertrainer_uc_t01", + "Worker:workerbasic_r_t01" + ], + "cardpack:cardpack_choice_all_sr": [ + "Defender:did_defenderassault_basic_sr_t01", + "Defender:did_defendermelee_basic_sr_t01", + "Defender:did_defenderpistol_basic_sr_t01", + "Defender:did_defendershotgun_basic_sr_t01", + "Defender:did_defendersniper_basic_sr_t01", + "Hero:hid_commando_007_sr_t01", + "Hero:hid_commando_008_foundersf_sr_t01", + "Hero:hid_commando_008_foundersm_sr_t01", + "Hero:hid_commando_008_sr_t01", + "Hero:hid_commando_009_sr_t01", + "Hero:hid_commando_010_sr_t01", + "Hero:hid_commando_gcgrenade_sr_t01", + "Hero:hid_commando_grenadegun_sr_t01", + "Hero:hid_commando_grenademaster_sr_t01", + "Hero:hid_commando_gunheadshot_sr_t01", + "Hero:hid_commando_gunheadshothw_sr_t01", + "Hero:hid_commando_guntough_sr_t01", + "Hero:hid_commando_shockdamage_sr_t01", + "Hero:hid_constructor_007_sr_t01", + "Hero:hid_constructor_008_foundersf_sr_t01", + "Hero:hid_constructor_008_foundersm_sr_t01", + "Hero:hid_constructor_008_sr_t01", + "Hero:hid_constructor_009_sr_t01", + "Hero:hid_constructor_010_sr_t01", + "Hero:hid_constructor_basebig_sr_t01", + "Hero:hid_constructor_basehyper_sr_t01", + "Hero:hid_constructor_basehyperhw_sr_t01", + "Hero:hid_constructor_hammerplasma_sr_t01", + "Hero:hid_constructor_hammertank_sr_t01", + "Hero:hid_constructor_plasmadamage_sr_t01", + "Hero:hid_constructor_rushbase_sr_t01", + "Hero:hid_ninja_007_sr_t01", + "Hero:hid_ninja_008_sr_t01", + "Hero:hid_ninja_009_sr_t01", + "Hero:hid_ninja_010_sr_t01", + "Hero:hid_ninja_slashbreath_sr_t01", + "Hero:hid_ninja_slashtail_sr_t01", + "Hero:hid_ninja_smokedimmak_sr_t01", + "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "Hero:hid_ninja_starsassassin_sr_t01", + "Hero:hid_ninja_starsrain_sr_t01", + "Hero:hid_ninja_starsrainhw_sr_t01", + "Hero:hid_ninja_swordmaster_sr_t01", + "Hero:hid_outlander_007_sr_t01", + "Hero:hid_outlander_008_foundersf_sr_t01", + "Hero:hid_outlander_008_foundersm_sr_t01", + "Hero:hid_outlander_008_sr_t01", + "Hero:hid_outlander_009_sr_t01", + "Hero:hid_outlander_010_sr_t01", + "Hero:hid_outlander_punchdamage_sr_t01", + "Hero:hid_outlander_punchphase_sr_t01", + "Hero:hid_outlander_spherefragment_sr_t01", + "Hero:hid_outlander_zonefragment_sr_t01", + "Hero:hid_outlander_zoneharvest_sr_t01", + "Hero:hid_outlander_zonepistol_sr_t01", + "Hero:hid_outlander_zonepistolhw_sr_t01", + "Schematic:sid_assault_burst_sr_ore_t01", + "Schematic:sid_assault_doubleshot_sr_ore_t01", + "Schematic:sid_assault_hydra_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", + "Schematic:sid_assault_lmg_sr_ore_t01", + "Schematic:sid_assault_raygun_sr_ore_t01", + "Schematic:sid_assault_semiauto_sr_ore_t01", + "Schematic:sid_assault_singleshot_sr_ore_t01", + "Schematic:sid_assault_surgical_sr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_ceiling_electric_aoe_sr_t01", + "Schematic:sid_ceiling_electric_single_sr_t01", + "Schematic:sid_ceiling_gas_sr_t01", + "Schematic:sid_edged_axe_heavy_sr_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01", + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_floor_health_sr_t01", + "Schematic:sid_floor_launcher_sr_t01", + "Schematic:sid_floor_spikes_sr_t01", + "Schematic:sid_floor_spikes_wood_sr_t01", + "Schematic:sid_floor_ward_sr_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_bolt_sr_ore_t01", + "Schematic:sid_pistol_dragon_sr_ore_t01", + "Schematic:sid_pistol_firecracker_sr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", + "Schematic:sid_pistol_handcannon_sr_ore_t01", + "Schematic:sid_pistol_hydraulic_sr_ore_t01", + "Schematic:sid_pistol_rapid_sr_ore_t01", + "Schematic:sid_pistol_rocket_sr_ore_t01", + "Schematic:sid_pistol_semiauto_sr_ore_t01", + "Schematic:sid_pistol_space_sr_ore_t01", + "Schematic:sid_pistol_zapper_sr_ore_t01", + "Schematic:sid_shotgun_auto_sr_ore_t01", + "Schematic:sid_shotgun_break_ou_sr_ore_t01", + "Schematic:sid_shotgun_break_sr_ore_t01", + "Schematic:sid_shotgun_heavy_sr_ore_t01", + "Schematic:sid_shotgun_longarm_sr_ore_t01", + "Schematic:sid_shotgun_minigun_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_sr_ore_t01", + "Schematic:sid_shotgun_standard_sr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", + "Schematic:sid_sniper_amr_sr_ore_t01", + "Schematic:sid_sniper_auto_sr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", + "Schematic:sid_sniper_hydraulic_sr_ore_t01", + "Schematic:sid_sniper_shredder_sr_ore_t01", + "Schematic:sid_sniper_standard_scope_sr_ore_t01", + "Schematic:sid_sniper_standard_sr_ore_t01", + "Schematic:sid_sniper_tripleshot_sr_ore_t01", + "Schematic:sid_wall_darts_sr_t01", + "Schematic:sid_wall_electric_sr_t01", + "Schematic:sid_wall_launcher_sr_t01", + "Schematic:sid_wall_light_sr_t01", + "Schematic:sid_wall_wood_spikes_sr_t01", + "Worker:managerdoctor_vr_t01", + "Worker:managerengineer_vr_t01", + "Worker:managerexplorer_vr_t01", + "Worker:managergadgeteer_vr_t01", + "Worker:managerinventor_vr_t01", + "Worker:managermartialartist_vr_t01", + "Worker:managersoldier_vr_t01", + "Worker:managertrainer_vr_t01", + "Worker:workerbasic_sr_t01" + ], + "cardpack:cardpack_choice_all_vr": [ + "Defender:did_defenderassault_basic_vr_t01", + "Defender:did_defenderassault_founders_vr_t01", + "Defender:did_defendermelee_basic_vr_t01", + "Defender:did_defenderpistol_basic_vr_t01", + "Defender:did_defenderpistol_founders_vr_t01", + "Defender:did_defendershotgun_basic_vr_t01", + "Defender:did_defendersniper_basic_vr_t01", + "Hero:hid_commando_007_vr_t01", + "Hero:hid_commando_008_vr_t01", + "Hero:hid_commando_009_vr_t01", + "Hero:hid_commando_010_vr_t01", + "Hero:hid_commando_gcgrenade_vr_t01", + "Hero:hid_commando_grenadegun_vr_t01", + "Hero:hid_commando_gunheadshot_vr_t01", + "Hero:hid_commando_guntough_vr_t01", + "Hero:hid_commando_shockdamage_vr_t01", + "Hero:hid_constructor_007_vr_t01", + "Hero:hid_constructor_008_vr_t01", + "Hero:hid_constructor_009_vr_t01", + "Hero:hid_constructor_010_vr_t01", + "Hero:hid_constructor_basehyper_vr_t01", + "Hero:hid_constructor_hammerplasma_vr_t01", + "Hero:hid_constructor_hammertank_vr_t01", + "Hero:hid_constructor_plasmadamage_vr_t01", + "Hero:hid_constructor_rushbase_vr_t01", + "Hero:hid_ninja_007_vr_t01", + "Hero:hid_ninja_008_vr_t01", + "Hero:hid_ninja_009_vr_t01", + "Hero:hid_ninja_010_vr_t01", + "Hero:hid_ninja_slashbreath_vr_t01", + "Hero:hid_ninja_slashtail_vr_t01", + "Hero:hid_ninja_smokedimmak_vr_t01", + "Hero:hid_ninja_starsassassin_vr_t01", + "Hero:hid_ninja_starsrain_vr_t01", + "Hero:hid_outlander_007_vr_t01", + "Hero:hid_outlander_008_vr_t01", + "Hero:hid_outlander_009_vr_t01", + "Hero:hid_outlander_010_vr_t01", + "Hero:hid_outlander_punchdamage_vr_t01", + "Hero:hid_outlander_punchphase_vr_t01", + "Hero:hid_outlander_spherefragment_vr_t01", + "Hero:hid_outlander_zoneharvest_vr_t01", + "Hero:hid_outlander_zonepistol_vr_t01", + "Schematic:sid_assault_auto_vr_ore_t01", + "Schematic:sid_assault_burst_vr_ore_t01", + "Schematic:sid_assault_doubleshot_vr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_vr_ore_t01", + "Schematic:sid_assault_lmg_vr_ore_t01", + "Schematic:sid_assault_raygun_vr_ore_t01", + "Schematic:sid_assault_semiauto_founders_vr_ore_t01", + "Schematic:sid_assault_semiauto_vr_ore_t01", + "Schematic:sid_assault_singleshot_vr_ore_t01", + "Schematic:sid_assault_surgical_vr_ore_t01", + "Schematic:sid_blunt_club_light_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_founders_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_vr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_vr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_vr_ore_t01", + "Schematic:sid_blunt_light_vr_ore_t01", + "Schematic:sid_blunt_medium_vr_ore_t01", + "Schematic:sid_ceiling_electric_aoe_vr_t01", + "Schematic:sid_ceiling_electric_single_vr_t01", + "Schematic:sid_ceiling_gas_vr_t01", + "Schematic:sid_edged_axe_heavy_vr_ore_t01", + "Schematic:sid_edged_axe_light_vr_ore_t01", + "Schematic:sid_edged_axe_medium_founders_vr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_vr_ore_t01", + "Schematic:sid_edged_axe_medium_vr_ore_t01", + "Schematic:sid_edged_scythe_laser_vr_ore_t01", + "Schematic:sid_edged_scythe_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_founders_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_vr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_vr_ore_t01", + "Schematic:sid_edged_sword_light_founders_vr_ore_t01", + "Schematic:sid_edged_sword_light_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_vr_ore_t01", + "Schematic:sid_edged_sword_medium_vr_ore_t01", + "Schematic:sid_floor_health_vr_t01", + "Schematic:sid_floor_launcher_vr_t01", + "Schematic:sid_floor_spikes_vr_t01", + "Schematic:sid_floor_spikes_wood_vr_t01", + "Schematic:sid_floor_ward_vr_t01", + "Schematic:sid_launcher_grenade_vr_ore_t01", + "Schematic:sid_launcher_hydraulic_vr_ore_t01", + "Schematic:sid_launcher_rocket_vr_ore_t01", + "Schematic:sid_piercing_spear_laser_vr_ore_t01", + "Schematic:sid_piercing_spear_military_vr_ore_t01", + "Schematic:sid_piercing_spear_vr_ore_t01", + "Schematic:sid_pistol_auto_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_vr_ore_t01", + "Schematic:sid_pistol_bolt_vr_ore_t01", + "Schematic:sid_pistol_dragon_vr_ore_t01", + "Schematic:sid_pistol_firecracker_vr_ore_t01", + "Schematic:sid_pistol_gatling_vr_ore_t01", + "Schematic:sid_pistol_handcannon_founders_vr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_vr_ore_t01", + "Schematic:sid_pistol_handcannon_vr_ore_t01", + "Schematic:sid_pistol_hydraulic_vr_ore_t01", + "Schematic:sid_pistol_rapid_founders_vr_ore_t01", + "Schematic:sid_pistol_rapid_vr_ore_t01", + "Schematic:sid_pistol_semiauto_founders_vr_ore_t01", + "Schematic:sid_pistol_semiauto_vr_ore_t01", + "Schematic:sid_pistol_space_vr_ore_t01", + "Schematic:sid_pistol_zapper_vr_ore_t01", + "Schematic:sid_shotgun_auto_founders_vr_ore_t01", + "Schematic:sid_shotgun_auto_vr_ore_t01", + "Schematic:sid_shotgun_break_ou_vr_ore_t01", + "Schematic:sid_shotgun_break_vr_ore_t01", + "Schematic:sid_shotgun_longarm_vr_ore_t01", + "Schematic:sid_shotgun_semiauto_vr_ore_t01", + "Schematic:sid_shotgun_standard_vr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_vr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_vr_ore_t01", + "Schematic:sid_sniper_amr_vr_ore_t01", + "Schematic:sid_sniper_auto_founders_vr_ore_t01", + "Schematic:sid_sniper_auto_vr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_vr_ore_t01", + "Schematic:sid_sniper_hydraulic_vr_ore_t01", + "Schematic:sid_sniper_shredder_vr_ore_t01", + "Schematic:sid_sniper_standard_founders_vr_ore_t01", + "Schematic:sid_sniper_standard_scope_vr_ore_t01", + "Schematic:sid_sniper_standard_vr_ore_t01", + "Schematic:sid_sniper_tripleshot_vr_ore_t01", + "Schematic:sid_wall_darts_vr_t01", + "Schematic:sid_wall_electric_vr_t01", + "Schematic:sid_wall_launcher_vr_t01", + "Schematic:sid_wall_light_vr_t01", + "Schematic:sid_wall_wood_spikes_vr_t01", + "Worker:managerdoctor_r_t01", + "Worker:managerengineer_r_t01", + "Worker:managerexplorer_r_t01", + "Worker:managergadgeteer_r_t01", + "Worker:managerinventor_r_t01", + "Worker:managermartialartist_r_t01", + "Worker:managerquestdoctor_r_t01", + "Worker:managersoldier_r_t01", + "Worker:managertrainer_r_t01", + "Worker:workerbasic_vr_t01" + ], + "cardpack:cardpack_choice_defender_r": [ + "Defender:did_defenderassault_basic_r_t01", + "Defender:did_defendermelee_basic_r_t01", + "Defender:did_defenderpistol_basic_r_t01", + "Defender:did_defendershotgun_basic_r_t01", + "Defender:did_defendersniper_basic_r_t01" + ], + "cardpack:cardpack_choice_defender_sr": [ + "Defender:did_defenderassault_basic_sr_t01", + "Defender:did_defendermelee_basic_sr_t01", + "Defender:did_defenderpistol_basic_sr_t01", + "Defender:did_defendershotgun_basic_sr_t01", + "Defender:did_defendersniper_basic_sr_t01" + ], + "cardpack:cardpack_choice_defender_vr": [ + "Defender:did_defenderassault_basic_vr_t01", + "Defender:did_defenderassault_founders_vr_t01", + "Defender:did_defendermelee_basic_vr_t01", + "Defender:did_defenderpistol_basic_vr_t01", + "Defender:did_defenderpistol_founders_vr_t01", + "Defender:did_defendershotgun_basic_vr_t01", + "Defender:did_defendersniper_basic_vr_t01" + ], + "cardpack:cardpack_choice_hero_r": [ + "Hero:hid_outlander_zonepistol_r_t01", + "Hero:hid_outlander_zoneharvest_r_t01", + "Hero:hid_outlander_spherefragment_r_t01", + "Hero:hid_outlander_punchphase_r_t01", + "Hero:hid_outlander_009_r_t01", + "Hero:hid_outlander_008_r_t01", + "Hero:hid_outlander_007_r_t01", + "Hero:hid_outlander_sony_r_t01", + "Hero:hid_ninja_starsassassin_r_t01", + "Hero:hid_ninja_smokedimmak_r_t01", + "Hero:hid_ninja_slashtail_r_t01", + "Hero:hid_ninja_slashbreath_r_t01", + "Hero:hid_ninja_009_r_t01", + "Hero:hid_ninja_008_r_t01", + "Hero:hid_ninja_007_r_t01", + "Hero:hid_ninja_sony_r_t01", + "Hero:hid_constructor_rushbase_r_t01", + "Hero:hid_constructor_plasmadamage_r_t01", + "Hero:hid_constructor_hammertank_r_t01", + "Hero:hid_constructor_basehyper_r_t01", + "Hero:hid_constructor_009_r_t01", + "Hero:hid_constructor_008_r_t01", + "Hero:hid_constructor_007_r_t01", + "Hero:hid_constructor_sony_r_t01", + "Hero:hid_commando_shockdamage_r_t01", + "Hero:hid_commando_guntough_r_t01", + "Hero:hid_commando_grenadegun_r_t01", + "Hero:hid_commando_gcgrenade_r_t01", + "Hero:hid_commando_009_r_t01", + "Hero:hid_commando_008_r_t01", + "Hero:hid_commando_007_r_t01", + "Hero:hid_commando_sony_r_t01" + ], + "cardpack:cardpack_choice_hero_sr": [ + "Hero:hid_outlander_zonepistolhw_sr_t01", + "Hero:hid_outlander_zonepistol_sr_t01", + "Hero:hid_outlander_zoneharvest_sr_t01", + "Hero:hid_outlander_zonefragment_sr_t01", + "Hero:hid_outlander_spherefragment_sr_t01", + "Hero:hid_outlander_punchphase_sr_t01", + "Hero:hid_outlander_punchdamage_sr_t01", + "Hero:hid_outlander_010_sr_t01", + "Hero:hid_outlander_009_sr_t01", + "Hero:hid_outlander_008_sr_t01", + "Hero:hid_outlander_007_sr_t01", + "Hero:hid_outlander_008_foundersf_sr_t01", + "Hero:hid_outlander_008_foundersm_sr_t01", + "Hero:hid_ninja_swordmaster_sr_t01", + "Hero:hid_ninja_starsrainhw_sr_t01", + "Hero:hid_ninja_starsrain_sr_t01", + "Hero:hid_ninja_starsassassin_sr_t01", + "Hero:hid_ninja_smokedimmak_sr_t01", + "Hero:hid_ninja_slashtail_sr_t01", + "Hero:hid_ninja_slashbreath_sr_t01", + "Hero:hid_ninja_010_sr_t01", + "Hero:hid_ninja_009_sr_t01", + "Hero:hid_ninja_008_sr_t01", + "Hero:hid_ninja_007_sr_t01", + "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "Hero:hid_constructor_rushbase_sr_t01", + "Hero:hid_constructor_plasmadamage_sr_t01", + "Hero:hid_constructor_hammertank_sr_t01", + "Hero:hid_constructor_hammerplasma_sr_t01", + "Hero:hid_constructor_basehyperhw_sr_t01", + "Hero:hid_constructor_basehyper_sr_t01", + "Hero:hid_constructor_basebig_sr_t01", + "Hero:hid_constructor_010_sr_t01", + "Hero:hid_constructor_009_sr_t01", + "Hero:hid_constructor_008_sr_t01", + "Hero:hid_constructor_007_sr_t01", + "Hero:hid_constructor_008_foundersf_sr_t01", + "Hero:hid_constructor_008_foundersm_sr_t01", + "Hero:hid_commando_shockdamage_sr_t01", + "Hero:hid_commando_guntough_sr_t01", + "Hero:hid_commando_gunheadshothw_sr_t01", + "Hero:hid_commando_gunheadshot_sr_t01", + "Hero:hid_commando_grenademaster_sr_t01", + "Hero:hid_commando_grenadegun_sr_t01", + "Hero:hid_commando_gcgrenade_sr_t01", + "Hero:hid_commando_010_sr_t01", + "Hero:hid_commando_009_sr_t01", + "Hero:hid_commando_008_sr_t01", + "Hero:hid_commando_007_sr_t01", + "Hero:hid_commando_008_foundersf_sr_t01", + "Hero:hid_commando_008_foundersm_sr_t01" + ], + "cardpack:cardpack_choice_hero_vr": [ + "Hero:hid_outlander_zonepistol_vr_t01", + "Hero:hid_outlander_zoneharvest_vr_t01", + "Hero:hid_outlander_spherefragment_vr_t01", + "Hero:hid_outlander_punchphase_vr_t01", + "Hero:hid_outlander_punchdamage_vr_t01", + "Hero:hid_outlander_010_vr_t01", + "Hero:hid_outlander_009_vr_t01", + "Hero:hid_outlander_008_vr_t01", + "Hero:hid_outlander_007_vr_t01", + "Hero:hid_ninja_starsrain_vr_t01", + "Hero:hid_ninja_starsassassin_vr_t01", + "Hero:hid_ninja_smokedimmak_vr_t01", + "Hero:hid_ninja_slashtail_vr_t01", + "Hero:hid_ninja_slashbreath_vr_t01", + "Hero:hid_ninja_010_vr_t01", + "Hero:hid_ninja_009_vr_t01", + "Hero:hid_ninja_008_vr_t01", + "Hero:hid_ninja_007_vr_t01", + "Hero:hid_constructor_rushbase_vr_t01", + "Hero:hid_constructor_plasmadamage_vr_t01", + "Hero:hid_constructor_hammertank_vr_t01", + "Hero:hid_constructor_hammerplasma_vr_t01", + "Hero:hid_constructor_basehyper_vr_t01", + "Hero:hid_constructor_010_vr_t01", + "Hero:hid_constructor_009_vr_t01", + "Hero:hid_constructor_008_vr_t01", + "Hero:hid_constructor_007_vr_t01", + "Hero:hid_commando_shockdamage_vr_t01", + "Hero:hid_commando_guntough_vr_t01", + "Hero:hid_commando_gunheadshot_vr_t01", + "Hero:hid_commando_grenadegun_vr_t01", + "Hero:hid_commando_gcgrenade_vr_t01", + "Hero:hid_commando_010_vr_t01", + "Hero:hid_commando_009_vr_t01", + "Hero:hid_commando_008_vr_t01", + "Hero:hid_commando_007_vr_t01" + ], + "cardpack:cardpack_choice_manager_r": [ + "Worker:managerquestdoctor_r_t01", + "Worker:managertrainer_r_t01", + "Worker:managersoldier_r_t01", + "Worker:managermartialartist_r_t01", + "Worker:managerinventor_r_t01", + "Worker:managergadgeteer_r_t01", + "Worker:managerexplorer_r_t01", + "Worker:managerengineer_r_t01", + "Worker:managerdoctor_r_t01" + ], + "cardpack:cardpack_choice_manager_sr": [ + "Worker:managerdoctor_sr_kingsly_t01", + "Worker:managerdoctor_sr_noctor_t01", + "Worker:managerdoctor_sr_treky_t01", + "Worker:managerengineer_sr_countess_t01", + "Worker:managerengineer_sr_maths_t01", + "Worker:managerengineer_sr_sobs_t01", + "Worker:managerexplorer_sr_birdie_t01", + "Worker:managerexplorer_sr_eagle_t01", + "Worker:managerexplorer_sr_spacebound_t01", + "Worker:managergadgeteer_sr_fixer_t01", + "Worker:managergadgeteer_sr_flak_t01", + "Worker:managergadgeteer_sr_zapps_t01", + "Worker:managerinventor_sr_frequency_t01", + "Worker:managerinventor_sr_rad_t01", + "Worker:managerinventor_sr_square_t01", + "Worker:managermartialartist_sr_dragon_t01", + "Worker:managermartialartist_sr_samurai_t01", + "Worker:managermartialartist_sr_tiger_t01", + "Worker:managersoldier_sr_malcolm_t01", + "Worker:managersoldier_sr_princess_t01", + "Worker:managersoldier_sr_ramsie_t01", + "Worker:managertrainer_sr_jumpy_t01", + "Worker:managertrainer_sr_raider_t01", + "Worker:managertrainer_sr_yoglattes_t01" + ], + "cardpack:cardpack_choice_manager_vr": [ + "Worker:managertrainer_vr_t01", + "Worker:managersoldier_vr_t01", + "Worker:managermartialartist_vr_t01", + "Worker:managerinventor_vr_t01", + "Worker:managergadgeteer_vr_t01", + "Worker:managerexplorer_vr_t01", + "Worker:managerengineer_vr_t01", + "Worker:managerdoctor_vr_t01" + ], + "cardpack:cardpack_choice_melee_r": [ + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_scythe_r_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_heavy_r_ore_t01", + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01", + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01" + ], + "cardpack:cardpack_choice_melee_sr": [ + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01", + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_heavy_sr_ore_t01", + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01" + ], + "cardpack:cardpack_choice_melee_vr": [ + "Schematic:sid_piercing_spear_military_vr_ore_t01", + "Schematic:sid_piercing_spear_laser_vr_ore_t01", + "Schematic:sid_piercing_spear_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_vr_ore_t01", + "Schematic:sid_edged_sword_medium_vr_ore_t01", + "Schematic:sid_edged_sword_light_vr_ore_t01", + "Schematic:sid_edged_sword_light_founders_vr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_founders_vr_ore_t01", + "Schematic:sid_edged_scythe_laser_vr_ore_t01", + "Schematic:sid_edged_scythe_vr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_vr_ore_t01", + "Schematic:sid_edged_axe_medium_vr_ore_t01", + "Schematic:sid_edged_axe_medium_founders_vr_ore_t01", + "Schematic:sid_edged_axe_light_vr_ore_t01", + "Schematic:sid_edged_axe_heavy_vr_ore_t01", + "Schematic:sid_blunt_medium_vr_ore_t01", + "Schematic:sid_blunt_light_vr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_founders_vr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_vr_ore_t01", + "Schematic:sid_blunt_club_light_vr_ore_t01" + ], + "cardpack:cardpack_choice_ranged_r": [ + "Schematic:sid_assault_auto_r_ore_t01", + "Schematic:sid_assault_singleshot_r_ore_t01", + "Schematic:sid_assault_semiauto_r_ore_t01", + "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "Schematic:sid_assault_lmg_r_ore_t01", + "Schematic:sid_assault_burst_r_ore_t01", + "Schematic:sid_sniper_standard_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "Schematic:sid_sniper_boltaction_r_ore_t01", + "Schematic:sid_sniper_auto_r_ore_t01", + "Schematic:sid_sniper_amr_r_ore_t01", + "Schematic:sid_shotgun_tactical_precision_r_ore_t01", + "Schematic:sid_shotgun_tactical_r_ore_t01", + "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "Schematic:sid_shotgun_standard_r_ore_t01", + "Schematic:sid_shotgun_semiauto_r_ore_t01", + "Schematic:sid_shotgun_break_ou_r_ore_t01", + "Schematic:sid_shotgun_break_r_ore_t01", + "Schematic:sid_shotgun_auto_r_ore_t01", + "Schematic:sid_pistol_sixshooter_r_ore_t01", + "Schematic:sid_pistol_semiauto_r_ore_t01", + "Schematic:sid_pistol_rapid_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_r_ore_t01", + "Schematic:sid_pistol_handcannon_r_ore_t01", + "Schematic:sid_pistol_firecracker_r_ore_t01", + "Schematic:sid_pistol_boltrevolver_r_ore_t01", + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01", + "Schematic:sid_launcher_rocket_r_ore_t01", + "Schematic:sid_launcher_grenade_r_ore_t01" + ], + "cardpack:cardpack_choice_ranged_sr": [ + "Schematic:sid_assault_auto_sr_ore_t01", + "Schematic:sid_assault_auto_halloween_sr_ore_t01", + "Schematic:sid_assault_auto_founders_sr_ore_t01", + "Schematic:sid_assault_surgical_sr_ore_t01", + "Schematic:sid_assault_singleshot_sr_ore_t01", + "Schematic:sid_assault_semiauto_sr_ore_t01", + "Schematic:sid_assault_raygun_sr_ore_t01", + "Schematic:sid_assault_lmg_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", + "Schematic:sid_assault_hydra_sr_ore_t01", + "Schematic:sid_assault_doubleshot_sr_ore_t01", + "Schematic:sid_assault_burst_sr_ore_t01", + "Schematic:sid_sniper_tripleshot_sr_ore_t01", + "Schematic:sid_sniper_standard_scope_sr_ore_t01", + "Schematic:sid_sniper_standard_sr_ore_t01", + "Schematic:sid_sniper_shredder_sr_ore_t01", + "Schematic:sid_sniper_hydraulic_sr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", + "Schematic:sid_sniper_auto_sr_ore_t01", + "Schematic:sid_sniper_amr_sr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "Schematic:sid_shotgun_standard_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_sr_ore_t01", + "Schematic:sid_shotgun_minigun_sr_ore_t01", + "Schematic:sid_shotgun_longarm_sr_ore_t01", + "Schematic:sid_shotgun_heavy_sr_ore_t01", + "Schematic:sid_shotgun_break_ou_sr_ore_t01", + "Schematic:sid_shotgun_break_sr_ore_t01", + "Schematic:sid_shotgun_auto_sr_ore_t01", + "Schematic:sid_pistol_zapper_sr_ore_t01", + "Schematic:sid_pistol_space_sr_ore_t01", + "Schematic:sid_pistol_semiauto_sr_ore_t01", + "Schematic:sid_pistol_rocket_sr_ore_t01", + "Schematic:sid_pistol_rapid_sr_ore_t01", + "Schematic:sid_pistol_hydraulic_sr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", + "Schematic:sid_pistol_handcannon_sr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_firecracker_sr_ore_t01", + "Schematic:sid_pistol_dragon_sr_ore_t01", + "Schematic:sid_pistol_bolt_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01", + "Schematic:sid_launcher_rocket_sr_ore_t01", + "Schematic:sid_launcher_pumpkin_rpg_sr_ore_t01", + "Schematic:sid_launcher_hydraulic_sr_ore_t01", + "Schematic:sid_launcher_grenade_sr_ore_t01" + ], + "cardpack:cardpack_choice_ranged_vr": [ + "Schematic:sid_assault_auto_vr_ore_t01", + "Schematic:sid_assault_surgical_vr_ore_t01", + "Schematic:sid_assault_singleshot_vr_ore_t01", + "Schematic:sid_assault_semiauto_vr_ore_t01", + "Schematic:sid_assault_semiauto_founders_vr_ore_t01", + "Schematic:sid_assault_raygun_vr_ore_t01", + "Schematic:sid_assault_lmg_vr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_vr_ore_t01", + "Schematic:sid_assault_doubleshot_vr_ore_t01", + "Schematic:sid_assault_burst_vr_ore_t01", + "Schematic:sid_sniper_tripleshot_vr_ore_t01", + "Schematic:sid_sniper_standard_scope_vr_ore_t01", + "Schematic:sid_sniper_standard_vr_ore_t01", + "Schematic:sid_sniper_standard_founders_vr_ore_t01", + "Schematic:sid_sniper_shredder_vr_ore_t01", + "Schematic:sid_sniper_hydraulic_vr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_vr_ore_t01", + "Schematic:sid_sniper_auto_vr_ore_t01", + "Schematic:sid_sniper_auto_founders_vr_ore_t01", + "Schematic:sid_sniper_amr_vr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_vr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_vr_ore_t01", + "Schematic:sid_shotgun_standard_vr_ore_t01", + "Schematic:sid_shotgun_semiauto_vr_ore_t01", + "Schematic:sid_shotgun_longarm_vr_ore_t01", + "Schematic:sid_shotgun_break_ou_vr_ore_t01", + "Schematic:sid_shotgun_break_vr_ore_t01", + "Schematic:sid_shotgun_auto_vr_ore_t01", + "Schematic:sid_shotgun_auto_founders_vr_ore_t01", + "Schematic:sid_pistol_zapper_vr_ore_t01", + "Schematic:sid_pistol_space_vr_ore_t01", + "Schematic:sid_pistol_semiauto_vr_ore_t01", + "Schematic:sid_pistol_semiauto_founders_vr_ore_t01", + "Schematic:sid_pistol_rapid_vr_ore_t01", + "Schematic:sid_pistol_rapid_founders_vr_ore_t01", + "Schematic:sid_pistol_hydraulic_vr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_vr_ore_t01", + "Schematic:sid_pistol_handcannon_vr_ore_t01", + "Schematic:sid_pistol_handcannon_founders_vr_ore_t01", + "Schematic:sid_pistol_gatling_vr_ore_t01", + "Schematic:sid_pistol_firecracker_vr_ore_t01", + "Schematic:sid_pistol_dragon_vr_ore_t01", + "Schematic:sid_pistol_bolt_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_vr_ore_t01", + "Schematic:sid_pistol_auto_vr_ore_t01", + "Schematic:sid_launcher_rocket_vr_ore_t01", + "Schematic:sid_launcher_hydraulic_vr_ore_t01", + "Schematic:sid_launcher_grenade_vr_ore_t01" + ], + "cardpack:cardpack_choice_weapon_r": [ + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_scythe_r_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_heavy_r_ore_t01", + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01", + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01", + "Schematic:sid_assault_auto_r_ore_t01", + "Schematic:sid_assault_singleshot_r_ore_t01", + "Schematic:sid_assault_semiauto_r_ore_t01", + "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "Schematic:sid_assault_lmg_r_ore_t01", + "Schematic:sid_assault_burst_r_ore_t01", + "Schematic:sid_sniper_standard_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "Schematic:sid_sniper_boltaction_r_ore_t01", + "Schematic:sid_sniper_auto_r_ore_t01", + "Schematic:sid_sniper_amr_r_ore_t01", + "Schematic:sid_shotgun_tactical_precision_r_ore_t01", + "Schematic:sid_shotgun_tactical_r_ore_t01", + "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "Schematic:sid_shotgun_standard_r_ore_t01", + "Schematic:sid_shotgun_semiauto_r_ore_t01", + "Schematic:sid_shotgun_break_ou_r_ore_t01", + "Schematic:sid_shotgun_break_r_ore_t01", + "Schematic:sid_shotgun_auto_r_ore_t01", + "Schematic:sid_pistol_sixshooter_r_ore_t01", + "Schematic:sid_pistol_semiauto_r_ore_t01", + "Schematic:sid_pistol_rapid_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_r_ore_t01", + "Schematic:sid_pistol_handcannon_r_ore_t01", + "Schematic:sid_pistol_firecracker_r_ore_t01", + "Schematic:sid_pistol_boltrevolver_r_ore_t01", + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01", + "Schematic:sid_launcher_rocket_r_ore_t01", + "Schematic:sid_launcher_grenade_r_ore_t01" + ], + "cardpack:cardpack_choice_weapon_sr": [ + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01", + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_heavy_sr_ore_t01", + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01", + "Schematic:sid_assault_auto_sr_ore_t01", + "Schematic:sid_assault_auto_halloween_sr_ore_t01", + "Schematic:sid_assault_auto_founders_sr_ore_t01", + "Schematic:sid_assault_surgical_sr_ore_t01", + "Schematic:sid_assault_singleshot_sr_ore_t01", + "Schematic:sid_assault_semiauto_sr_ore_t01", + "Schematic:sid_assault_raygun_sr_ore_t01", + "Schematic:sid_assault_lmg_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", + "Schematic:sid_assault_hydra_sr_ore_t01", + "Schematic:sid_assault_doubleshot_sr_ore_t01", + "Schematic:sid_assault_burst_sr_ore_t01", + "Schematic:sid_sniper_tripleshot_sr_ore_t01", + "Schematic:sid_sniper_standard_scope_sr_ore_t01", + "Schematic:sid_sniper_standard_sr_ore_t01", + "Schematic:sid_sniper_shredder_sr_ore_t01", + "Schematic:sid_sniper_hydraulic_sr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", + "Schematic:sid_sniper_auto_sr_ore_t01", + "Schematic:sid_sniper_amr_sr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "Schematic:sid_shotgun_standard_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_sr_ore_t01", + "Schematic:sid_shotgun_minigun_sr_ore_t01", + "Schematic:sid_shotgun_longarm_sr_ore_t01", + "Schematic:sid_shotgun_heavy_sr_ore_t01", + "Schematic:sid_shotgun_break_ou_sr_ore_t01", + "Schematic:sid_shotgun_break_sr_ore_t01", + "Schematic:sid_shotgun_auto_sr_ore_t01", + "Schematic:sid_pistol_zapper_sr_ore_t01", + "Schematic:sid_pistol_space_sr_ore_t01", + "Schematic:sid_pistol_semiauto_sr_ore_t01", + "Schematic:sid_pistol_rocket_sr_ore_t01", + "Schematic:sid_pistol_rapid_sr_ore_t01", + "Schematic:sid_pistol_hydraulic_sr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", + "Schematic:sid_pistol_handcannon_sr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_firecracker_sr_ore_t01", + "Schematic:sid_pistol_dragon_sr_ore_t01", + "Schematic:sid_pistol_bolt_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01", + "Schematic:sid_launcher_rocket_sr_ore_t01", + "Schematic:sid_launcher_pumpkin_rpg_sr_ore_t01", + "Schematic:sid_launcher_hydraulic_sr_ore_t01", + "Schematic:sid_launcher_grenade_sr_ore_t01" + ], + "cardpack:cardpack_choice_weapon_vr": [ + "Schematic:sid_assault_auto_vr_ore_t01", + "Schematic:sid_assault_surgical_vr_ore_t01", + "Schematic:sid_assault_singleshot_vr_ore_t01", + "Schematic:sid_assault_semiauto_vr_ore_t01", + "Schematic:sid_assault_semiauto_founders_vr_ore_t01", + "Schematic:sid_assault_raygun_vr_ore_t01", + "Schematic:sid_assault_lmg_vr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_vr_ore_t01", + "Schematic:sid_assault_doubleshot_vr_ore_t01", + "Schematic:sid_assault_burst_vr_ore_t01", + "Schematic:sid_sniper_tripleshot_vr_ore_t01", + "Schematic:sid_sniper_standard_scope_vr_ore_t01", + "Schematic:sid_sniper_standard_vr_ore_t01", + "Schematic:sid_sniper_standard_founders_vr_ore_t01", + "Schematic:sid_sniper_shredder_vr_ore_t01", + "Schematic:sid_sniper_hydraulic_vr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_vr_ore_t01", + "Schematic:sid_sniper_auto_vr_ore_t01", + "Schematic:sid_sniper_auto_founders_vr_ore_t01", + "Schematic:sid_sniper_amr_vr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_vr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_vr_ore_t01", + "Schematic:sid_shotgun_standard_vr_ore_t01", + "Schematic:sid_shotgun_semiauto_vr_ore_t01", + "Schematic:sid_shotgun_longarm_vr_ore_t01", + "Schematic:sid_shotgun_break_ou_vr_ore_t01", + "Schematic:sid_shotgun_break_vr_ore_t01", + "Schematic:sid_shotgun_auto_vr_ore_t01", + "Schematic:sid_shotgun_auto_founders_vr_ore_t01", + "Schematic:sid_pistol_zapper_vr_ore_t01", + "Schematic:sid_pistol_space_vr_ore_t01", + "Schematic:sid_pistol_semiauto_vr_ore_t01", + "Schematic:sid_pistol_semiauto_founders_vr_ore_t01", + "Schematic:sid_pistol_rapid_vr_ore_t01", + "Schematic:sid_pistol_rapid_founders_vr_ore_t01", + "Schematic:sid_pistol_hydraulic_vr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_vr_ore_t01", + "Schematic:sid_pistol_handcannon_vr_ore_t01", + "Schematic:sid_pistol_handcannon_founders_vr_ore_t01", + "Schematic:sid_pistol_gatling_vr_ore_t01", + "Schematic:sid_pistol_firecracker_vr_ore_t01", + "Schematic:sid_pistol_dragon_vr_ore_t01", + "Schematic:sid_pistol_bolt_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_vr_ore_t01", + "Schematic:sid_pistol_auto_vr_ore_t01", + "Schematic:sid_launcher_rocket_vr_ore_t01", + "Schematic:sid_launcher_hydraulic_vr_ore_t01", + "Schematic:sid_launcher_grenade_vr_ore_t01", + "Schematic:sid_piercing_spear_military_vr_ore_t01", + "Schematic:sid_piercing_spear_laser_vr_ore_t01", + "Schematic:sid_piercing_spear_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_vr_ore_t01", + "Schematic:sid_edged_sword_medium_vr_ore_t01", + "Schematic:sid_edged_sword_light_vr_ore_t01", + "Schematic:sid_edged_sword_light_founders_vr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_founders_vr_ore_t01", + "Schematic:sid_edged_scythe_laser_vr_ore_t01", + "Schematic:sid_edged_scythe_vr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_vr_ore_t01", + "Schematic:sid_edged_axe_medium_vr_ore_t01", + "Schematic:sid_edged_axe_medium_founders_vr_ore_t01", + "Schematic:sid_edged_axe_light_vr_ore_t01", + "Schematic:sid_edged_axe_heavy_vr_ore_t01", + "Schematic:sid_blunt_medium_vr_ore_t01", + "Schematic:sid_blunt_light_vr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_founders_vr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_vr_ore_t01", + "Schematic:sid_blunt_club_light_vr_ore_t01" + ], + "default": [ + "Defender:did_defenderassault_basic_c_t01", + "Defender:did_defenderassault_basic_r_t01", + "Defender:did_defenderassault_basic_sr_t01", + "Defender:did_defenderassault_basic_uc_t01", + "Defender:did_defenderassault_basic_vr_t01", + "Defender:did_defenderassault_founders_vr_t01", + "Defender:did_defendermelee_basic_c_t01", + "Defender:did_defendermelee_basic_r_t01", + "Defender:did_defendermelee_basic_sr_t01", + "Defender:did_defendermelee_basic_uc_t01", + "Defender:did_defendermelee_basic_vr_t01", + "Defender:did_defenderpistol_basic_c_t01", + "Defender:did_defenderpistol_basic_r_t01", + "Defender:did_defenderpistol_basic_sr_t01", + "Defender:did_defenderpistol_basic_uc_t01", + "Defender:did_defenderpistol_basic_vr_t01", + "Defender:did_defenderpistol_founders_vr_t01", + "Defender:did_defendershotgun_basic_c_t01", + "Defender:did_defendershotgun_basic_r_t01", + "Defender:did_defendershotgun_basic_sr_t01", + "Defender:did_defendershotgun_basic_uc_t01", + "Defender:did_defendershotgun_basic_vr_t01", + "Defender:did_defendersniper_basic_c_t01", + "Defender:did_defendersniper_basic_r_t01", + "Defender:did_defendersniper_basic_sr_t01", + "Defender:did_defendersniper_basic_uc_t01", + "Defender:did_defendersniper_basic_vr_t01", + "Hero:hid_commando_007_r_t01", + "Hero:hid_commando_007_sr_t01", + "Hero:hid_commando_007_uc_t01", + "Hero:hid_commando_007_vr_t01", + "Hero:hid_commando_008_foundersf_sr_t01", + "Hero:hid_commando_008_foundersm_sr_t01", + "Hero:hid_commando_008_r_t01", + "Hero:hid_commando_008_sr_t01", + "Hero:hid_commando_008_vr_t01", + "Hero:hid_commando_009_r_t01", + "Hero:hid_commando_009_sr_t01", + "Hero:hid_commando_009_vr_t01", + "Hero:hid_commando_010_sr_t01", + "Hero:hid_commando_010_vr_t01", + "Hero:hid_commando_gcgrenade_r_t01", + "Hero:hid_commando_gcgrenade_sr_t01", + "Hero:hid_commando_gcgrenade_vr_t01", + "Hero:hid_commando_grenadegun_r_t01", + "Hero:hid_commando_grenadegun_sr_t01", + "Hero:hid_commando_grenadegun_uc_t01", + "Hero:hid_commando_grenadegun_vr_t01", + "Hero:hid_commando_grenademaster_sr_t01", + "Hero:hid_commando_gunheadshot_sr_t01", + "Hero:hid_commando_gunheadshot_vr_t01", + "Hero:hid_commando_gunheadshothw_sr_t01", + "Hero:hid_commando_guntough_r_t01", + "Hero:hid_commando_guntough_sr_t01", + "Hero:hid_commando_guntough_uc_t01", + "Hero:hid_commando_guntough_vr_t01", + "Hero:hid_commando_shockdamage_r_t01", + "Hero:hid_commando_shockdamage_sr_t01", + "Hero:hid_commando_shockdamage_vr_t01", + "Hero:hid_commando_sony_r_t01", + "Hero:hid_constructor_007_r_t01", + "Hero:hid_constructor_007_sr_t01", + "Hero:hid_constructor_007_uc_t01", + "Hero:hid_constructor_007_vr_t01", + "Hero:hid_constructor_008_foundersf_sr_t01", + "Hero:hid_constructor_008_foundersm_sr_t01", + "Hero:hid_constructor_008_r_t01", + "Hero:hid_constructor_008_sr_t01", + "Hero:hid_constructor_008_vr_t01", + "Hero:hid_constructor_009_r_t01", + "Hero:hid_constructor_009_sr_t01", + "Hero:hid_constructor_009_vr_t01", + "Hero:hid_constructor_010_sr_t01", + "Hero:hid_constructor_010_vr_t01", + "Hero:hid_constructor_basebig_sr_t01", + "Hero:hid_constructor_basehyper_r_t01", + "Hero:hid_constructor_basehyper_sr_t01", + "Hero:hid_constructor_basehyper_vr_t01", + "Hero:hid_constructor_basehyperhw_sr_t01", + "Hero:hid_constructor_hammerplasma_sr_t01", + "Hero:hid_constructor_hammerplasma_vr_t01", + "Hero:hid_constructor_hammertank_r_t01", + "Hero:hid_constructor_hammertank_sr_t01", + "Hero:hid_constructor_hammertank_uc_t01", + "Hero:hid_constructor_hammertank_vr_t01", + "Hero:hid_constructor_plasmadamage_r_t01", + "Hero:hid_constructor_plasmadamage_sr_t01", + "Hero:hid_constructor_plasmadamage_vr_t01", + "Hero:hid_constructor_rushbase_r_t01", + "Hero:hid_constructor_rushbase_sr_t01", + "Hero:hid_constructor_rushbase_uc_t01", + "Hero:hid_constructor_rushbase_vr_t01", + "Hero:hid_constructor_sony_r_t01", + "Hero:hid_ninja_007_r_t01", + "Hero:hid_ninja_007_sr_t01", + "Hero:hid_ninja_007_uc_t01", + "Hero:hid_ninja_007_vr_t01", + "Hero:hid_ninja_008_r_t01", + "Hero:hid_ninja_008_sr_t01", + "Hero:hid_ninja_008_vr_t01", + "Hero:hid_ninja_009_r_t01", + "Hero:hid_ninja_009_sr_t01", + "Hero:hid_ninja_009_vr_t01", + "Hero:hid_ninja_010_sr_t01", + "Hero:hid_ninja_010_vr_t01", + "Hero:hid_ninja_slashbreath_r_t01", + "Hero:hid_ninja_slashbreath_sr_t01", + "Hero:hid_ninja_slashbreath_vr_t01", + "Hero:hid_ninja_slashtail_r_t01", + "Hero:hid_ninja_slashtail_sr_t01", + "Hero:hid_ninja_slashtail_uc_t01", + "Hero:hid_ninja_slashtail_vr_t01", + "Hero:hid_ninja_smokedimmak_r_t01", + "Hero:hid_ninja_smokedimmak_sr_t01", + "Hero:hid_ninja_smokedimmak_vr_t01", + "Hero:hid_ninja_sony_r_t01", + "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "Hero:hid_ninja_starsassassin_r_t01", + "Hero:hid_ninja_starsassassin_sr_t01", + "Hero:hid_ninja_starsassassin_uc_t01", + "Hero:hid_ninja_starsassassin_vr_t01", + "Hero:hid_ninja_starsrain_sr_t01", + "Hero:hid_ninja_starsrain_vr_t01", + "Hero:hid_ninja_starsrainhw_sr_t01", + "Hero:hid_ninja_swordmaster_sr_t01", + "Hero:hid_outlander_007_r_t01", + "Hero:hid_outlander_007_sr_t01", + "Hero:hid_outlander_007_uc_t01", + "Hero:hid_outlander_007_vr_t01", + "Hero:hid_outlander_008_foundersf_sr_t01", + "Hero:hid_outlander_008_foundersm_sr_t01", + "Hero:hid_outlander_008_r_t01", + "Hero:hid_outlander_008_sr_t01", + "Hero:hid_outlander_008_vr_t01", + "Hero:hid_outlander_009_r_t01", + "Hero:hid_outlander_009_sr_t01", + "Hero:hid_outlander_009_vr_t01", + "Hero:hid_outlander_010_sr_t01", + "Hero:hid_outlander_010_vr_t01", + "Hero:hid_outlander_punchdamage_sr_t01", + "Hero:hid_outlander_punchdamage_vr_t01", + "Hero:hid_outlander_punchphase_r_t01", + "Hero:hid_outlander_punchphase_sr_t01", + "Hero:hid_outlander_punchphase_uc_t01", + "Hero:hid_outlander_punchphase_vr_t01", + "Hero:hid_outlander_sony_r_t01", + "Hero:hid_outlander_spherefragment_r_t01", + "Hero:hid_outlander_spherefragment_sr_t01", + "Hero:hid_outlander_spherefragment_vr_t01", + "Hero:hid_outlander_zonefragment_sr_t01", + "Hero:hid_outlander_zoneharvest_r_t01", + "Hero:hid_outlander_zoneharvest_sr_t01", + "Hero:hid_outlander_zoneharvest_uc_t01", + "Hero:hid_outlander_zoneharvest_vr_t01", + "Hero:hid_outlander_zonepistol_r_t01", + "Hero:hid_outlander_zonepistol_sr_t01", + "Hero:hid_outlander_zonepistol_vr_t01", + "Hero:hid_outlander_zonepistolhw_sr_t01", + "Schematic:sid_assault_auto_c_ore_t01", + "Schematic:sid_assault_auto_founders_sr_ore_t01", + "Schematic:sid_assault_auto_halloween_sr_ore_t01", + "Schematic:sid_assault_auto_r_ore_t01", + "Schematic:sid_assault_auto_sr_ore_t01", + "Schematic:sid_assault_auto_uc_ore_t01", + "Schematic:sid_assault_auto_vr_ore_t01", + "Schematic:sid_assault_burst_c_ore_t01", + "Schematic:sid_assault_burst_r_ore_t01", + "Schematic:sid_assault_burst_sr_ore_t01", + "Schematic:sid_assault_burst_uc_ore_t01", + "Schematic:sid_assault_burst_vr_ore_t01", + "Schematic:sid_assault_doubleshot_sr_ore_t01", + "Schematic:sid_assault_doubleshot_vr_ore_t01", + "Schematic:sid_assault_hydra_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_vr_ore_t01", + "Schematic:sid_assault_lmg_r_ore_t01", + "Schematic:sid_assault_lmg_sr_ore_t01", + "Schematic:sid_assault_lmg_vr_ore_t01", + "Schematic:sid_assault_raygun_sr_ore_t01", + "Schematic:sid_assault_raygun_vr_ore_t01", + "Schematic:sid_assault_semiauto_c_ore_t01", + "Schematic:sid_assault_semiauto_founders_vr_ore_t01", + "Schematic:sid_assault_semiauto_r_ore_t01", + "Schematic:sid_assault_semiauto_sr_ore_t01", + "Schematic:sid_assault_semiauto_uc_ore_t01", + "Schematic:sid_assault_semiauto_vr_ore_t01", + "Schematic:sid_assault_singleshot_r_ore_t01", + "Schematic:sid_assault_singleshot_sr_ore_t01", + "Schematic:sid_assault_singleshot_vr_ore_t01", + "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "Schematic:sid_assault_surgical_sr_ore_t01", + "Schematic:sid_assault_surgical_vr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01", + "Schematic:sid_blunt_club_light_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_c_ore_t01", + "Schematic:sid_blunt_hammer_heavy_founders_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_uc_ore_t01", + "Schematic:sid_blunt_hammer_heavy_vr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_vr_ore_t01", + "Schematic:sid_blunt_heavy_paddle_c_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_uc_ore_t01", + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_bat_uc_ore_t01", + "Schematic:sid_blunt_light_c_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_vr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_light_uc_ore_t01", + "Schematic:sid_blunt_light_vr_ore_t01", + "Schematic:sid_blunt_medium_c_ore_t01", + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_blunt_medium_uc_ore_t01", + "Schematic:sid_blunt_medium_vr_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_blunt_tool_light_uc_ore_t01", + "Schematic:sid_ceiling_electric_aoe_r_t01", + "Schematic:sid_ceiling_electric_aoe_sr_t01", + "Schematic:sid_ceiling_electric_aoe_vr_t01", + "Schematic:sid_ceiling_electric_single_c_t01", + "Schematic:sid_ceiling_electric_single_r_t01", + "Schematic:sid_ceiling_electric_single_sr_t01", + "Schematic:sid_ceiling_electric_single_uc_t01", + "Schematic:sid_ceiling_electric_single_vr_t01", + "Schematic:sid_ceiling_gas_r_t01", + "Schematic:sid_ceiling_gas_sr_t01", + "Schematic:sid_ceiling_gas_uc_t01", + "Schematic:sid_ceiling_gas_vr_t01", + "Schematic:sid_edged_axe_heavy_c_ore_t01", + "Schematic:sid_edged_axe_heavy_r_ore_t01", + "Schematic:sid_edged_axe_heavy_sr_ore_t01", + "Schematic:sid_edged_axe_heavy_uc_ore_t01", + "Schematic:sid_edged_axe_heavy_vr_ore_t01", + "Schematic:sid_edged_axe_light_c_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_light_uc_ore_t01", + "Schematic:sid_edged_axe_light_vr_ore_t01", + "Schematic:sid_edged_axe_medium_c_ore_t01", + "Schematic:sid_edged_axe_medium_founders_vr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_vr_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_axe_medium_uc_ore_t01", + "Schematic:sid_edged_axe_medium_vr_ore_t01", + "Schematic:sid_edged_scythe_c_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_vr_ore_t01", + "Schematic:sid_edged_scythe_r_ore_t01", + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_scythe_uc_ore_t01", + "Schematic:sid_edged_scythe_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_c_ore_t01", + "Schematic:sid_edged_sword_heavy_founders_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_sword_heavy_uc_ore_t01", + "Schematic:sid_edged_sword_heavy_vr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_vr_ore_t01", + "Schematic:sid_edged_sword_light_c_ore_t01", + "Schematic:sid_edged_sword_light_founders_vr_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_light_uc_ore_t01", + "Schematic:sid_edged_sword_light_vr_ore_t01", + "Schematic:sid_edged_sword_medium_c_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_vr_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_edged_sword_medium_uc_ore_t01", + "Schematic:sid_edged_sword_medium_vr_ore_t01", + "Schematic:sid_floor_health_r_t01", + "Schematic:sid_floor_health_sr_t01", + "Schematic:sid_floor_health_uc_t01", + "Schematic:sid_floor_health_vr_t01", + "Schematic:sid_floor_launcher_r_t01", + "Schematic:sid_floor_launcher_sr_t01", + "Schematic:sid_floor_launcher_uc_t01", + "Schematic:sid_floor_launcher_vr_t01", + "Schematic:sid_floor_spikes_r_t01", + "Schematic:sid_floor_spikes_sr_t01", + "Schematic:sid_floor_spikes_uc_t01", + "Schematic:sid_floor_spikes_vr_t01", + "Schematic:sid_floor_spikes_wood_c_t01", + "Schematic:sid_floor_spikes_wood_r_t01", + "Schematic:sid_floor_spikes_wood_sr_t01", + "Schematic:sid_floor_spikes_wood_uc_t01", + "Schematic:sid_floor_spikes_wood_vr_t01", + "Schematic:sid_floor_ward_r_t01", + "Schematic:sid_floor_ward_sr_t01", + "Schematic:sid_floor_ward_uc_t01", + "Schematic:sid_floor_ward_vr_t01", + "Schematic:sid_launcher_grenade_r_ore_t01", + "Schematic:sid_launcher_grenade_sr_ore_t01", + "Schematic:sid_launcher_grenade_vr_ore_t01", + "Schematic:sid_launcher_hydraulic_sr_ore_t01", + "Schematic:sid_launcher_hydraulic_vr_ore_t01", + "Schematic:sid_launcher_pumpkin_rpg_sr_ore_t01", + "Schematic:sid_launcher_rocket_r_ore_t01", + "Schematic:sid_launcher_rocket_sr_ore_t01", + "Schematic:sid_launcher_rocket_vr_ore_t01", + "Schematic:sid_piercing_spear_c_ore_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_laser_vr_ore_t01", + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_military_vr_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01", + "Schematic:sid_piercing_spear_uc_ore_t01", + "Schematic:sid_piercing_spear_vr_ore_t01", + "Schematic:sid_pistol_auto_c_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01", + "Schematic:sid_pistol_auto_uc_ore_t01", + "Schematic:sid_pistol_auto_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_vr_ore_t01", + "Schematic:sid_pistol_bolt_sr_ore_t01", + "Schematic:sid_pistol_bolt_vr_ore_t01", + "Schematic:sid_pistol_boltrevolver_c_ore_t01", + "Schematic:sid_pistol_boltrevolver_r_ore_t01", + "Schematic:sid_pistol_boltrevolver_uc_ore_t01", + "Schematic:sid_pistol_dragon_sr_ore_t01", + "Schematic:sid_pistol_dragon_vr_ore_t01", + "Schematic:sid_pistol_firecracker_r_ore_t01", + "Schematic:sid_pistol_firecracker_sr_ore_t01", + "Schematic:sid_pistol_firecracker_vr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_gatling_vr_ore_t01", + "Schematic:sid_pistol_handcannon_founders_vr_ore_t01", + "Schematic:sid_pistol_handcannon_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_vr_ore_t01", + "Schematic:sid_pistol_handcannon_sr_ore_t01", + "Schematic:sid_pistol_handcannon_vr_ore_t01", + "Schematic:sid_pistol_hydraulic_sr_ore_t01", + "Schematic:sid_pistol_hydraulic_vr_ore_t01", + "Schematic:sid_pistol_rapid_founders_vr_ore_t01", + "Schematic:sid_pistol_rapid_r_ore_t01", + "Schematic:sid_pistol_rapid_sr_ore_t01", + "Schematic:sid_pistol_rapid_vr_ore_t01", + "Schematic:sid_pistol_rocket_sr_ore_t01", + "Schematic:sid_pistol_semiauto_c_ore_t01", + "Schematic:sid_pistol_semiauto_founders_vr_ore_t01", + "Schematic:sid_pistol_semiauto_r_ore_t01", + "Schematic:sid_pistol_semiauto_sr_ore_t01", + "Schematic:sid_pistol_semiauto_uc_ore_t01", + "Schematic:sid_pistol_semiauto_vr_ore_t01", + "Schematic:sid_pistol_sixshooter_c_ore_t01", + "Schematic:sid_pistol_sixshooter_r_ore_t01", + "Schematic:sid_pistol_sixshooter_uc_ore_t01", + "Schematic:sid_pistol_space_sr_ore_t01", + "Schematic:sid_pistol_space_vr_ore_t01", + "Schematic:sid_pistol_zapper_sr_ore_t01", + "Schematic:sid_pistol_zapper_vr_ore_t01", + "Schematic:sid_shotgun_auto_founders_vr_ore_t01", + "Schematic:sid_shotgun_auto_r_ore_t01", + "Schematic:sid_shotgun_auto_sr_ore_t01", + "Schematic:sid_shotgun_auto_uc_ore_t01", + "Schematic:sid_shotgun_auto_vr_ore_t01", + "Schematic:sid_shotgun_break_c_ore_t01", + "Schematic:sid_shotgun_break_ou_r_ore_t01", + "Schematic:sid_shotgun_break_ou_sr_ore_t01", + "Schematic:sid_shotgun_break_ou_uc_ore_t01", + "Schematic:sid_shotgun_break_ou_vr_ore_t01", + "Schematic:sid_shotgun_break_r_ore_t01", + "Schematic:sid_shotgun_break_sr_ore_t01", + "Schematic:sid_shotgun_break_uc_ore_t01", + "Schematic:sid_shotgun_break_vr_ore_t01", + "Schematic:sid_shotgun_heavy_sr_ore_t01", + "Schematic:sid_shotgun_longarm_sr_ore_t01", + "Schematic:sid_shotgun_longarm_vr_ore_t01", + "Schematic:sid_shotgun_minigun_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_r_ore_t01", + "Schematic:sid_shotgun_semiauto_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_uc_ore_t01", + "Schematic:sid_shotgun_semiauto_vr_ore_t01", + "Schematic:sid_shotgun_standard_c_ore_t01", + "Schematic:sid_shotgun_standard_r_ore_t01", + "Schematic:sid_shotgun_standard_sr_ore_t01", + "Schematic:sid_shotgun_standard_uc_ore_t01", + "Schematic:sid_shotgun_standard_vr_ore_t01", + "Schematic:sid_shotgun_tactical_c_ore_t01", + "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_vr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_r_ore_t01", + "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_vr_ore_t01", + "Schematic:sid_shotgun_tactical_r_ore_t01", + "Schematic:sid_shotgun_tactical_uc_ore_t01", + "Schematic:sid_sniper_amr_r_ore_t01", + "Schematic:sid_sniper_amr_sr_ore_t01", + "Schematic:sid_sniper_amr_vr_ore_t01", + "Schematic:sid_sniper_auto_founders_vr_ore_t01", + "Schematic:sid_sniper_auto_r_ore_t01", + "Schematic:sid_sniper_auto_sr_ore_t01", + "Schematic:sid_sniper_auto_uc_ore_t01", + "Schematic:sid_sniper_auto_vr_ore_t01", + "Schematic:sid_sniper_boltaction_c_ore_t01", + "Schematic:sid_sniper_boltaction_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_vr_ore_t01", + "Schematic:sid_sniper_boltaction_uc_ore_t01", + "Schematic:sid_sniper_hydraulic_sr_ore_t01", + "Schematic:sid_sniper_hydraulic_vr_ore_t01", + "Schematic:sid_sniper_shredder_sr_ore_t01", + "Schematic:sid_sniper_shredder_vr_ore_t01", + "Schematic:sid_sniper_standard_c_ore_t01", + "Schematic:sid_sniper_standard_founders_vr_ore_t01", + "Schematic:sid_sniper_standard_r_ore_t01", + "Schematic:sid_sniper_standard_scope_sr_ore_t01", + "Schematic:sid_sniper_standard_scope_vr_ore_t01", + "Schematic:sid_sniper_standard_sr_ore_t01", + "Schematic:sid_sniper_standard_uc_ore_t01", + "Schematic:sid_sniper_standard_vr_ore_t01", + "Schematic:sid_sniper_tripleshot_sr_ore_t01", + "Schematic:sid_sniper_tripleshot_vr_ore_t01", + "Schematic:sid_wall_darts_r_t01", + "Schematic:sid_wall_darts_sr_t01", + "Schematic:sid_wall_darts_uc_t01", + "Schematic:sid_wall_darts_vr_t01", + "Schematic:sid_wall_electric_r_t01", + "Schematic:sid_wall_electric_sr_t01", + "Schematic:sid_wall_electric_uc_t01", + "Schematic:sid_wall_electric_vr_t01", + "Schematic:sid_wall_launcher_r_t01", + "Schematic:sid_wall_launcher_sr_t01", + "Schematic:sid_wall_launcher_uc_t01", + "Schematic:sid_wall_launcher_vr_t01", + "Schematic:sid_wall_light_r_t01", + "Schematic:sid_wall_light_sr_t01", + "Schematic:sid_wall_light_vr_t01", + "Schematic:sid_wall_wood_spikes_c_t01", + "Schematic:sid_wall_wood_spikes_r_t01", + "Schematic:sid_wall_wood_spikes_sr_t01", + "Schematic:sid_wall_wood_spikes_uc_t01", + "Schematic:sid_wall_wood_spikes_vr_t01", + "Worker:managerdoctor_c_t01", + "Worker:managerdoctor_r_t01", + "Worker:managerdoctor_sr_kingsly_t01", + "Worker:managerdoctor_sr_noctor_t01", + "Worker:managerdoctor_sr_treky_t01", + "Worker:managerdoctor_uc_t01", + "Worker:managerdoctor_vr_t01", + "Worker:managerengineer_c_t01", + "Worker:managerengineer_r_t01", + "Worker:managerengineer_sr_countess_t01", + "Worker:managerengineer_sr_maths_t01", + "Worker:managerengineer_sr_sobs_t01", + "Worker:managerengineer_uc_t01", + "Worker:managerengineer_vr_t01", + "Worker:managerexplorer_c_t01", + "Worker:managerexplorer_r_t01", + "Worker:managerexplorer_sr_birdie_t01", + "Worker:managerexplorer_sr_eagle_t01", + "Worker:managerexplorer_sr_spacebound_t01", + "Worker:managerexplorer_uc_t01", + "Worker:managerexplorer_vr_t01", + "Worker:managergadgeteer_c_t01", + "Worker:managergadgeteer_r_t01", + "Worker:managergadgeteer_sr_fixer_t01", + "Worker:managergadgeteer_sr_flak_t01", + "Worker:managergadgeteer_sr_zapps_t01", + "Worker:managergadgeteer_uc_t01", + "Worker:managergadgeteer_vr_t01", + "Worker:managerinventor_c_t01", + "Worker:managerinventor_r_t01", + "Worker:managerinventor_sr_frequency_t01", + "Worker:managerinventor_sr_rad_t01", + "Worker:managerinventor_sr_square_t01", + "Worker:managerinventor_uc_t01", + "Worker:managerinventor_vr_t01", + "Worker:managermartialartist_c_t01", + "Worker:managermartialartist_r_t01", + "Worker:managermartialartist_sr_dragon_t01", + "Worker:managermartialartist_sr_samurai_t01", + "Worker:managermartialartist_sr_tiger_t01", + "Worker:managermartialartist_uc_t01", + "Worker:managermartialartist_vr_t01", + "Worker:managersoldier_c_t01", + "Worker:managersoldier_r_t01", + "Worker:managersoldier_sr_malcolm_t01", + "Worker:managersoldier_sr_princess_t01", + "Worker:managersoldier_sr_ramsie_t01", + "Worker:managersoldier_uc_t01", + "Worker:managersoldier_vr_t01", + "Worker:managertrainer_c_t01", + "Worker:managertrainer_r_t01", + "Worker:managertrainer_sr_jumpy_t01", + "Worker:managertrainer_sr_raider_t01", + "Worker:managertrainer_sr_yoglattes_t01", + "Worker:managertrainer_uc_t01", + "Worker:managertrainer_vr_t01", + "Worker:workerbasic_c_t01", + "Worker:workerbasic_r_t01", + "Worker:workerbasic_sr_t01", + "Worker:workerbasic_uc_t01", + "Worker:workerbasic_vr_t01", + "Worker:workerhalloween_alt_sr_t01", + "Worker:workerhalloween_c_t01", + "Worker:workerhalloween_r_t01", + "Worker:workerhalloween_sr_t01", + "Worker:workerhalloween_uc_t01", + "Worker:workerhalloween_vr_t01" + ] +} \ No newline at end of file diff --git a/lawin/responses/Campaign/dailyRewards.json b/lawin/responses/Campaign/dailyRewards.json new file mode 100644 index 0000000..856c91c --- /dev/null +++ b/lawin/responses/Campaign/dailyRewards.json @@ -0,0 +1,1351 @@ +{ + "author": "This list was made by PRO100KatYT", + "0": { + "itemType": "Currency:mtxgiveaway", + "quantity": 1000 + }, + "1": { + "itemType": "AccountResource:heroxp", + "quantity": 300 + }, + "2": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "3": { + "itemType": "CardPack:cardpack_hero_r", + "quantity": 1 + }, + "4": { + "itemType": "CardPack:cardpack_ranged_r", + "quantity": 1 + }, + "5": { + "itemType": "CardPack:cardpack_melee_r", + "quantity": 1 + }, + "6": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 5 + }, + "7": { + "itemType": "PersistentResource:voucher_custom_firecracker_r", + "quantity": 1 + }, + "8": { + "itemType": "CardPack:cardpack_trap_r", + "quantity": 1 + }, + "9": { + "itemType": "CardPack:cardpack_defender_r", + "quantity": 1 + }, + "10": { + "itemType": "CardPack:cardpack_hero_vr", + "quantity": 1 + }, + "11": { + "itemType": "Currency:mtxgiveaway", + "quantity": 50 + }, + "12": { + "itemType": "CardPack:cardpack_manager_r", + "quantity": 1 + }, + "13": { + "itemType": "ConsumableAccountItem:smallxpboost", + "quantity": 3 + }, + "14": { + "itemType": "CardPack:cardpack_worker_vr", + "quantity": 1 + }, + "15": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 1 + }, + "16": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "17": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "18": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "19": { + "itemType": "CardPack:cardpack_trap_r", + "quantity": 1 + }, + "20": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "21": { + "itemType": "ConversionControl:cck_hero_core_consumable_sr", + "quantity": 1 + }, + "22": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "23": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "24": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "25": { + "itemType": "CardPack:cardpack_melee_r", + "quantity": 1 + }, + "26": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "27": { + "itemType": "AccountResource:reagent_c_t03", + "quantity": 5 + }, + "28": { + "itemType": "Currency:mtxgiveaway", + "quantity": 300 + }, + "29": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "30": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "31": { + "itemType": "CardPack:cardpack_hero_r", + "quantity": 1 + }, + "32": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "33": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "34": { + "itemType": "ConsumableAccountItem:smallxpboost", + "quantity": 3 + }, + "35": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "36": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "37": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "38": { + "itemType": "CardPack:cardpack_ranged_r", + "quantity": 1 + }, + "39": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "40": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "41": { + "itemType": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 3 + }, + "42": { + "itemType": "ConversionControl:cck_manager_core_consumable_vr", + "quantity": 1 + }, + "43": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "44": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "45": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "46": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "47": { + "itemType": "CardPack:cardpack_trap_r", + "quantity": 1 + }, + "48": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "49": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "50": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "51": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "52": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "53": { + "itemType": "CardPack:cardpack_melee_r", + "quantity": 1 + }, + "54": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "55": { + "itemType": "AccountResource:reagent_c_t03", + "quantity": 5 + }, + "56": { + "itemType": "Currency:mtxgiveaway", + "quantity": 300 + }, + "57": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "58": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "59": { + "itemType": "CardPack:cardpack_hero_r", + "quantity": 1 + }, + "60": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "61": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "62": { + "itemType": "ConsumableAccountItem:smallxpboost", + "quantity": 3 + }, + "63": { + "itemType": "ConversionControl:cck_worker_core_consumable_sr", + "quantity": 1 + }, + "64": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "65": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "66": { + "itemType": "CardPack:cardpack_ranged_r", + "quantity": 1 + }, + "67": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "68": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "69": { + "itemType": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 3 + }, + "70": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "71": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "72": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "73": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "74": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "75": { + "itemType": "CardPack:cardpack_trap_r", + "quantity": 1 + }, + "76": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "77": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "78": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "79": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "80": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "81": { + "itemType": "ConversionControl:cck_worker_core_consumable_sr", + "quantity": 1 + }, + "82": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "83": { + "itemType": "AccountResource:reagent_c_t03", + "quantity": 5 + }, + "84": { + "itemType": "Currency:mtxgiveaway", + "quantity": 300 + }, + "85": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "86": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "87": { + "itemType": "CardPack:cardpack_hero_r", + "quantity": 1 + }, + "88": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "89": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "90": { + "itemType": "ConsumableAccountItem:smallxpboost", + "quantity": 3 + }, + "91": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "92": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "93": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "94": { + "itemType": "CardPack:cardpack_ranged_r", + "quantity": 1 + }, + "95": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "96": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "97": { + "itemType": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 3 + }, + "98": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "99": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "100": { + "itemType": "ConversionControl:cck_hero_core_consumable_sr", + "quantity": 1 + }, + "101": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "102": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "103": { + "itemType": "CardPack:cardpack_trap_r", + "quantity": 1 + }, + "104": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "105": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "106": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "107": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "108": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "109": { + "itemType": "CardPack:cardpack_melee_r", + "quantity": 1 + }, + "110": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "111": { + "itemType": "AccountResource:reagent_c_t03", + "quantity": 5 + }, + "112": { + "itemType": "Currency:mtxgiveaway", + "quantity": 800 + }, + "113": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "114": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "115": { + "itemType": "CardPack:cardpack_hero_r", + "quantity": 1 + }, + "116": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "117": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "118": { + "itemType": "ConsumableAccountItem:smallxpboost", + "quantity": 3 + }, + "119": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "120": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "121": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "122": { + "itemType": "CardPack:cardpack_ranged_r", + "quantity": 1 + }, + "123": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "124": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "125": { + "itemType": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 3 + }, + "126": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "127": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "128": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "129": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "130": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "131": { + "itemType": "CardPack:cardpack_trap_r", + "quantity": 1 + }, + "132": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "133": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "134": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "135": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "136": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "137": { + "itemType": "CardPack:cardpack_melee_r", + "quantity": 1 + }, + "138": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "139": { + "itemType": "AccountResource:reagent_c_t03", + "quantity": 5 + }, + "140": { + "itemType": "Currency:mtxgiveaway", + "quantity": 300 + }, + "141": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "142": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "143": { + "itemType": "CardPack:cardpack_hero_r", + "quantity": 1 + }, + "144": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "145": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "146": { + "itemType": "ConsumableAccountItem:smallxpboost", + "quantity": 3 + }, + "147": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "148": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "149": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "150": { + "itemType": "CardPack:cardpack_ranged_r", + "quantity": 1 + }, + "151": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "152": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "153": { + "itemType": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 3 + }, + "154": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "155": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "156": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "157": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "158": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "159": { + "itemType": "CardPack:cardpack_trap_r", + "quantity": 1 + }, + "160": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "161": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "162": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "163": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "164": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "165": { + "itemType": "CardPack:cardpack_melee_r", + "quantity": 1 + }, + "166": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "167": { + "itemType": "AccountResource:reagent_c_t03", + "quantity": 5 + }, + "168": { + "itemType": "Currency:mtxgiveaway", + "quantity": 300 + }, + "169": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "170": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "171": { + "itemType": "CardPack:cardpack_hero_r", + "quantity": 1 + }, + "172": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "173": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "174": { + "itemType": "ConsumableAccountItem:smallxpboost", + "quantity": 3 + }, + "175": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "176": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "177": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "178": { + "itemType": "CardPack:cardpack_ranged_r", + "quantity": 1 + }, + "179": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "180": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "181": { + "itemType": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 3 + }, + "182": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "183": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "184": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "185": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "186": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "187": { + "itemType": "CardPack:cardpack_trap_r", + "quantity": 1 + }, + "188": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "189": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "190": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "191": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "192": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "193": { + "itemType": "CardPack:cardpack_melee_r", + "quantity": 1 + }, + "194": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "195": { + "itemType": "AccountResource:reagent_c_t03", + "quantity": 5 + }, + "196": { + "itemType": "Currency:mtxgiveaway", + "quantity": 300 + }, + "197": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "198": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "199": { + "itemType": "CardPack:cardpack_hero_r", + "quantity": 1 + }, + "200": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "201": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "202": { + "itemType": "ConsumableAccountItem:smallxpboost", + "quantity": 3 + }, + "203": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "204": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "205": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "206": { + "itemType": "CardPack:cardpack_ranged_r", + "quantity": 1 + }, + "207": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "208": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "209": { + "itemType": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 3 + }, + "210": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "211": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "212": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "213": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "214": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "215": { + "itemType": "CardPack:cardpack_trap_r", + "quantity": 1 + }, + "216": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "217": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "218": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "219": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "220": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "221": { + "itemType": "CardPack:cardpack_melee_r", + "quantity": 1 + }, + "222": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "223": { + "itemType": "AccountResource:reagent_c_t03", + "quantity": 5 + }, + "224": { + "itemType": "Currency:mtxgiveaway", + "quantity": 800 + }, + "225": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "226": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "227": { + "itemType": "CardPack:cardpack_hero_r", + "quantity": 1 + }, + "228": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "229": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "230": { + "itemType": "ConsumableAccountItem:smallxpboost", + "quantity": 3 + }, + "231": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "232": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "233": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "234": { + "itemType": "CardPack:cardpack_ranged_r", + "quantity": 1 + }, + "235": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "236": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "237": { + "itemType": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 3 + }, + "238": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "239": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "240": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "241": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "242": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "243": { + "itemType": "CardPack:cardpack_trap_r", + "quantity": 1 + }, + "244": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "245": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "246": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "247": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "248": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "249": { + "itemType": "CardPack:cardpack_melee_r", + "quantity": 1 + }, + "250": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "251": { + "itemType": "AccountResource:reagent_c_t03", + "quantity": 5 + }, + "252": { + "itemType": "Currency:mtxgiveaway", + "quantity": 300 + }, + "253": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "254": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "255": { + "itemType": "CardPack:cardpack_hero_r", + "quantity": 1 + }, + "256": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "257": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "258": { + "itemType": "ConsumableAccountItem:smallxpboost", + "quantity": 3 + }, + "259": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "260": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "261": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "262": { + "itemType": "CardPack:cardpack_ranged_r", + "quantity": 1 + }, + "263": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "264": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "265": { + "itemType": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 3 + }, + "266": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "267": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "268": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "269": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "270": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "271": { + "itemType": "CardPack:cardpack_trap_r", + "quantity": 1 + }, + "272": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "273": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "274": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "275": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "276": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "277": { + "itemType": "CardPack:cardpack_melee_r", + "quantity": 1 + }, + "278": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "279": { + "itemType": "AccountResource:reagent_c_t03", + "quantity": 5 + }, + "280": { + "itemType": "Currency:mtxgiveaway", + "quantity": 300 + }, + "281": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "282": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "283": { + "itemType": "CardPack:cardpack_hero_r", + "quantity": 1 + }, + "284": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "285": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "286": { + "itemType": "ConsumableAccountItem:smallxpboost", + "quantity": 3 + }, + "287": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "288": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "289": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "290": { + "itemType": "CardPack:cardpack_ranged_r", + "quantity": 1 + }, + "291": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "292": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "293": { + "itemType": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 3 + }, + "294": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "295": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "296": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "297": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "298": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "299": { + "itemType": "CardPack:cardpack_trap_r", + "quantity": 1 + }, + "300": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "301": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "302": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "303": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "304": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "305": { + "itemType": "CardPack:cardpack_melee_r", + "quantity": 1 + }, + "306": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "307": { + "itemType": "AccountResource:reagent_c_t03", + "quantity": 5 + }, + "308": { + "itemType": "Currency:mtxgiveaway", + "quantity": 300 + }, + "309": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "310": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "311": { + "itemType": "CardPack:cardpack_hero_r", + "quantity": 1 + }, + "312": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "313": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "314": { + "itemType": "ConsumableAccountItem:smallxpboost", + "quantity": 3 + }, + "315": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "316": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "317": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 10 + }, + "318": { + "itemType": "CardPack:cardpack_ranged_r", + "quantity": 1 + }, + "319": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "320": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "321": { + "itemType": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 3 + }, + "322": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "323": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "324": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "325": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "326": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "327": { + "itemType": "CardPack:cardpack_trap_r", + "quantity": 1 + }, + "328": { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 5 + }, + "329": { + "itemType": "Currency:mtxgiveaway", + "quantity": 150 + }, + "330": { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 15 + }, + "331": { + "itemType": "PersistentResource:peopleresource", + "quantity": 20 + }, + "332": { + "itemType": "AccountResource:voucher_basicpack", + "quantity": 2 + }, + "333": { + "itemType": "CardPack:cardpack_melee_r", + "quantity": 1 + }, + "334": { + "itemType": "CardPack:cardpack_bronze", + "quantity": 1 + }, + "335": { + "itemType": "AccountResource:reagent_c_t03", + "quantity": 5 + }, + "336": { + "itemType": "Currency:mtxgiveaway", + "quantity": 1000 + } +} \ No newline at end of file diff --git a/lawin/responses/Campaign/expeditionData.json b/lawin/responses/Campaign/expeditionData.json new file mode 100644 index 0000000..d9fd142 --- /dev/null +++ b/lawin/responses/Campaign/expeditionData.json @@ -0,0 +1,1604 @@ +{ + "author": "This list was created by PRO100KatYT", + "note": "Half of the data here is from epic servers and cannot be found in the game files.", + "questsUnlockingSlots": [ + "quest:stonewoodquest_launchrocket_d5", + "quest:outpostquest_t2_l2", + "quest:outpostquest_t2_l3", + "quest:outpostquest_t2_l4", + "quest:outpostquest_t2_l6", + "quest:outpostquest_t3_l1", + "quest:outpostquest_t3_l4", + "quest:outpostquest_t3_l5", + "quest:outpostquest_t4_l2", + "quest:outpostquest_t4_l3", + "quest:outpostquest_t4_l4" + ], + "slotsFromQuests": { + "quest:stonewoodquest_launchrocket_d5": [ + "expedition.generation.miningore", + "expedition.generation.choppingwood", + "expedition.generation.land.t01_0", + "expedition.generation.land.t01_1" + ], + "quest:outpostquest_t2_l2": [ + "expedition.generation.sea.t01_0", + "expedition.generation.sea.t01_1" + ], + "quest:outpostquest_t2_l3": [ + "expedition.generation.air.t02_0", + "expedition.generation.air.t02_1" + ], + "quest:outpostquest_t2_l4": [ + "expedition.generation.land.t02_0", + "expedition.generation.land.t02_1" + ], + "quest:outpostquest_t2_l6": [ + "expedition.generation.sea.t02_0", + "expedition.generation.sea.t02_1" + ], + "quest:outpostquest_t3_l1": [ + "expedition.generation.sea.t03_0", + "expedition.generation.sea.t03_1" + ], + "quest:outpostquest_t3_l4": [ + "expedition.generation.air.t03_0", + "expedition.generation.air.t03_1" + ], + "quest:outpostquest_t3_l5": [ + "expedition.generation.land.t03_0", + "expedition.generation.land.t03_1" + ], + "quest:outpostquest_t4_l2": [ + "expedition.generation.land.t04_0", + "expedition.generation.land.t04_1" + ], + "quest:outpostquest_t4_l3": [ + "expedition.generation.sea.t04_0", + "expedition.generation.sea.t04_1" + ], + "quest:outpostquest_t4_l4": [ + "expedition.generation.air.t04_0", + "expedition.generation.air.t04_1" + ] + }, + "slots": { + "expedition.generation.land.t01_0": { + "normal": [ + "Expedition:expedition_resourcerun_wood_medium", + "Expedition:expedition_resourcerun_stone_short", + "Expedition:expedition_survivorscouting_short_t01", + "Expedition:expedition_supplyrun_short_t01", + "Expedition:expedition_craftingrun_short_t01", + "Expedition:expedition_resourcerun_stone_medium", + "Expedition:expedition_supplyrun_medium_t01", + "Expedition:expedition_craftingrun_medium_t01", + "Expedition:expedition_resourcerun_wood_short" + ] + }, + "expedition.generation.land.t01_1": { + "normal": [ + "Expedition:expedition_resourcerun_stone_short", + "Expedition:expedition_resourcerun_wood_medium", + "Expedition:expedition_survivorscouting_short_t01", + "Expedition:expedition_supplyrun_medium_t01", + "Expedition:expedition_resourcerun_stone_medium", + "Expedition:expedition_craftingrun_short_t01", + "Expedition:expedition_resourcerun_wood_short", + "Expedition:expedition_craftingrun_medium_t01", + "Expedition:expedition_supplyrun_short_t01" + ] + }, + "expedition.generation.land.t02_0": { + "normal": [ + "Expedition:expedition_resourcerun_woodstone_medium", + "Expedition:expedition_supplyrun_short_t02", + "Expedition:expedition_supplyrun_medium_t02", + "Expedition:expedition_supplyrun_long_t02", + "Expedition:expedition_survivorscouting_medium_t02", + "Expedition:expedition_resourcerun_metal_short", + "Expedition:expedition_resourcerun_metal_medium", + "Expedition:expedition_resourcerun_woodstone_short", + "Expedition:expedition_craftingrun_medium_t02", + "Expedition:expedition_craftingrun_short_t02", + "Expedition:expedition_resourcerun_stone_medium", + "Expedition:expedition_resourcerun_stone_short" + ], + "rare": [ + "Expedition:expedition_rare_weapons_t02" + ] + }, + "expedition.generation.land.t02_1": { + "normal": [ + "Expedition:expedition_resourcerun_stone_short", + "Expedition:expedition_resourcerun_woodstone_medium", + "Expedition:expedition_resourcerun_metal_short", + "Expedition:expedition_supplyrun_long_t02", + "Expedition:expedition_resourcerun_stone_medium", + "Expedition:expedition_resourcerun_woodstone_short", + "Expedition:expedition_craftingrun_short_t02", + "Expedition:expedition_supplyrun_medium_t02", + "Expedition:expedition_resourcerun_metal_medium", + "Expedition:expedition_supplyrun_short_t02", + "Expedition:expedition_survivorscouting_medium_t02", + "Expedition:expedition_craftingrun_medium_t02" + ], + "rare": [ + "Expedition:expedition_rare_traps_t02", + "Expedition:expedition_rare_weapons_t02" + ] + }, + "expedition.generation.land.t03_0": { + "normal": [ + "Expedition:expedition_supplyrun_short_t03", + "Expedition:expedition_survivorscouting_long_t03", + "Expedition:expedition_craftingrun_short_t03", + "Expedition:expedition_supplyrun_long_t03", + "Expedition:expedition_supplyrun_medium_t03", + "Expedition:expedition_craftingrun_long_t03", + "Expedition:expedition_craftingrun_medium_t03" + ], + "rare": [ + "Expedition:expedition_rare_managers_t03", + "Expedition:expedition_rare_heroes_t03", + "Expedition:expedition_rare_traps_t03", + "Expedition:expedition_rare_weapons_t03" + ] + }, + "expedition.generation.land.t03_1": { + "normal": [ + "Expedition:expedition_supplyrun_long_t03", + "Expedition:expedition_supplyrun_short_t03", + "Expedition:expedition_craftingrun_long_t03", + "Expedition:expedition_survivorscouting_long_t03", + "Expedition:expedition_craftingrun_short_t03", + "Expedition:expedition_supplyrun_medium_t03", + "Expedition:expedition_craftingrun_medium_t03" + ], + "rare": [ + "Expedition:expedition_rare_managers_t03", + "Expedition:expedition_rare_heroes_t03", + "Expedition:expedition_rare_traps_t03", + "Expedition:expedition_rare_weapons_t03" + ] + }, + "expedition.generation.land.t04_0": { + "normal": [ + "Expedition:expedition_survivorscouting_long_t04", + "Expedition:expedition_supplyrun_long_t04", + "Expedition:expedition_craftingrun_long_t04" + ], + "rare": [ + "Expedition:expedition_rare_weapons_t04", + "Expedition:expedition_rare_heroes_t04", + "Expedition:expedition_rare_managers_t04", + "Expedition:expedition_rare_traps_t04" + ] + }, + "expedition.generation.land.t04_1": { + "normal": [ + "Expedition:expedition_supplyrun_long_t04", + "Expedition:expedition_survivorscouting_long_t04", + "Expedition:expedition_craftingrun_long_t04" + ], + "rare": [ + "Expedition:expedition_rare_weapons_t04", + "Expedition:expedition_rare_heroes_t04", + "Expedition:expedition_rare_traps_t04", + "Expedition:expedition_rare_managers_t04" + ] + }, + "expedition.generation.sea.t03_0": { + "normal": [ + "Expedition:expedition_sea_supplyrun_long_t03", + "Expedition:expedition_sea_survivorscouting_medium_t03" + ] + }, + "expedition.generation.sea.t03_1": { + "normal": [ + "Expedition:expedition_sea_survivorscouting_medium_t03", + "Expedition:expedition_sea_supplyrun_long_t03" + ] + }, + "expedition.generation.sea.t04_0": { + "normal": [ + "Expedition:expedition_sea_supplyrun_long_t04", + "Expedition:expedition_sea_survivorscouting_long_t04" + ], + "rare": [ + "Expedition:expedition_rare_sea_traps_t04", + "Expedition:expedition_rare_sea_weapons_t04", + "Expedition:expedition_rare_sea_managers_t05", + "Expedition:expedition_rare_sea_managers_t04", + "Expedition:expedition_rare_sea_heroes_t04", + "Expedition:expedition_rare_sea_traps_t05", + "Expedition:expedition_rare_sea_weapons_t05", + "Expedition:expedition_rare_sea_heroes_t05" + ] + }, + "expedition.generation.sea.t04_1": { + "normal": [ + "Expedition:expedition_sea_supplyrun_long_t04", + "Expedition:expedition_sea_survivorscouting_long_t04" + ], + "rare": [ + "Expedition:expedition_rare_sea_traps_t04", + "Expedition:expedition_rare_sea_traps_t05", + "Expedition:expedition_rare_sea_managers_t04", + "Expedition:expedition_rare_sea_heroes_t04", + "Expedition:expedition_rare_sea_weapons_t04", + "Expedition:expedition_rare_sea_managers_t05", + "Expedition:expedition_rare_sea_heroes_t05" + ] + }, + "expedition.generation.air.t03_0": { + "normal": [ + "Expedition:expedition_air_survivorscouting_medium_t03", + "Expedition:expedition_air_supplyrun_long_t03" + ] + }, + "expedition.generation.air.t03_1": { + "normal": [ + "Expedition:expedition_air_survivorscouting_medium_t03", + "Expedition:expedition_air_supplyrun_long_t03" + ] + }, + "expedition.generation.air.t04_0": { + "normal": [ + "Expedition:expedition_air_supplyrun_long_t04", + "Expedition:expedition_air_survivorscouting_long_t04" + ], + "rare": [ + "Expedition:expedition_rare_air_heroes_t04", + "Expedition:expedition_rare_air_traps_t05", + "Expedition:expedition_rare_air_weapons_t04", + "Expedition:expedition_rare_air_managers_t04", + "Expedition:expedition_rare_air_traps_t04", + "Expedition:expedition_rare_air_heroes_t05", + "Expedition:expedition_rare_air_weapons_t05", + "Expedition:expedition_rare_air_managers_t05" + ] + }, + "expedition.generation.air.t04_1": { + "normal": [ + "Expedition:expedition_air_supplyrun_long_t04", + "Expedition:expedition_air_survivorscouting_long_t04" + ], + "rare": [ + "Expedition:expedition_rare_air_heroes_t04", + "Expedition:expedition_rare_air_traps_t04", + "Expedition:expedition_rare_air_weapons_t04", + "Expedition:expedition_rare_air_managers_t05", + "Expedition:expedition_rare_air_managers_t04", + "Expedition:expedition_rare_air_weapons_t05", + "Expedition:expedition_rare_air_traps_t05", + "Expedition:expedition_rare_air_heroes_t05" + ] + }, + "expedition.generation.choppingwood": { + "normal": [ + "Expedition:expedition_miningore_t00" + ] + }, + "expedition.generation.miningore": { + "normal": [ + "Expedition:expedition_choppingwood_t00" + ] + }, + "expedition.generation.sea.t01_0": { + "normal": [ + "Expedition:expedition_sea_supplyrun_short_t01", + "Expedition:expedition_sea_survivorscouting_short_t01" + ] + }, + "expedition.generation.sea.t01_1": { + "normal": [ + "Expedition:expedition_sea_survivorscouting_short_t01", + "Expedition:expedition_sea_supplyrun_short_t01" + ] + }, + "expedition.generation.sea.t02_0": { + "normal": [ + "Expedition:expedition_sea_supplyrun_medium_t02", + "Expedition:expedition_sea_survivorscouting_medium_t02" + ] + }, + "expedition.generation.sea.t02_1": { + "normal": [ + "Expedition:expedition_sea_supplyrun_medium_t02", + "Expedition:expedition_sea_survivorscouting_medium_t02" + ] + }, + "expedition.generation.air.t02_0": { + "normal": [ + "Expedition:expedition_air_supplyrun_long_t02", + "Expedition:expedition_air_supplyrun_medium_t02", + "Expedition:expedition_air_survivorscouting_long_t02" + ] + }, + "expedition.generation.air.t02_1": { + "normal": [ + "Expedition:expedition_air_survivorscouting_long_t02", + "Expedition:expedition_air_supplyrun_long_t02", + "Expedition:expedition_air_supplyrun_medium_t02" + ] + } + }, + "attributes": { + "Expedition:expedition_air_supplyrun_long_t02": { + "expedition_max_target_power": 330, + "expedition_min_target_power": 16, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1200 + }, + "Expedition:expedition_air_supplyrun_long_t03": { + "expedition_max_target_power": 520, + "expedition_min_target_power": 26, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1200 + }, + "Expedition:expedition_air_supplyrun_long_t04": { + "expedition_max_target_power": 735, + "expedition_min_target_power": 36, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_air_supplyrun_medium_t02": { + "expedition_max_target_power": 230, + "expedition_min_target_power": 11, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_air_survivorscouting_long_t02": { + "expedition_max_target_power": 385, + "expedition_min_target_power": 19, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1200 + }, + "Expedition:expedition_air_survivorscouting_long_t04": { + "expedition_max_target_power": 835, + "expedition_min_target_power": 41, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_air_survivorscouting_medium_t03": { + "expedition_max_target_power": 390, + "expedition_min_target_power": 19, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_choppingwood_t00": { + "expedition_max_target_power": 20, + "expedition_min_target_power": 1, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 240 + }, + "Expedition:expedition_craftingrun_long_t03": { + "expedition_max_target_power": 475, + "expedition_min_target_power": 23, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1200 + }, + "Expedition:expedition_craftingrun_long_t04": { + "expedition_max_target_power": 685, + "expedition_min_target_power": 34, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_craftingrun_medium_t01": { + "expedition_max_target_power": 105, + "expedition_min_target_power": 5, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_craftingrun_medium_t02": { + "expedition_max_target_power": 195, + "expedition_min_target_power": 9, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_craftingrun_medium_t03": { + "expedition_max_target_power": 275, + "expedition_min_target_power": 13, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_craftingrun_short_t01": { + "expedition_max_target_power": 95, + "expedition_min_target_power": 4, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 480 + }, + "Expedition:expedition_craftingrun_short_t02": { + "expedition_max_target_power": 155, + "expedition_min_target_power": 7, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 480 + }, + "Expedition:expedition_craftingrun_short_t03": { + "expedition_max_target_power": 225, + "expedition_min_target_power": 11, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 480 + }, + "Expedition:expedition_miningore_t00": { + "expedition_max_target_power": 25, + "expedition_min_target_power": 1, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 240 + }, + "Expedition:expedition_rare_air_heroes_t04": { + "expedition_max_target_power": 1540, + "expedition_min_target_power": 77, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_air_heroes_t05": { + "expedition_max_target_power": 1840, + "expedition_min_target_power": 92, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1440 + }, + "Expedition:expedition_rare_air_managers_t04": { + "expedition_max_target_power": 1240, + "expedition_min_target_power": 62, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_air_managers_t05": { + "expedition_max_target_power": 1540, + "expedition_min_target_power": 77, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1440 + }, + "Expedition:expedition_rare_air_traps_t04": { + "expedition_max_target_power": 1240, + "expedition_min_target_power": 62, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_air_traps_t05": { + "expedition_max_target_power": 1540, + "expedition_min_target_power": 77, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1440 + }, + "Expedition:expedition_rare_air_weapons_t04": { + "expedition_max_target_power": 1240, + "expedition_min_target_power": 62, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_air_weapons_t05": { + "expedition_max_target_power": 1540, + "expedition_min_target_power": 77, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1440 + }, + "Expedition:expedition_rare_heroes_t03": { + "expedition_max_target_power": 740, + "expedition_min_target_power": 37, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_heroes_t04": { + "expedition_max_target_power": 1440, + "expedition_min_target_power": 72, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_managers_t03": { + "expedition_max_target_power": 740, + "expedition_min_target_power": 37, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_managers_t04": { + "expedition_max_target_power": 1440, + "expedition_min_target_power": 72, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_sea_heroes_t04": { + "expedition_max_target_power": 1640, + "expedition_min_target_power": 82, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_sea_heroes_t05": { + "expedition_max_target_power": 2040, + "expedition_min_target_power": 102, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1440 + }, + "Expedition:expedition_rare_sea_managers_t04": { + "expedition_max_target_power": 1240, + "expedition_min_target_power": 62, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_sea_managers_t05": { + "expedition_max_target_power": 1540, + "expedition_min_target_power": 77, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1440 + }, + "Expedition:expedition_rare_sea_traps_t04": { + "expedition_max_target_power": 1240, + "expedition_min_target_power": 62, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_sea_traps_t05": { + "expedition_max_target_power": 1540, + "expedition_min_target_power": 77, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1440 + }, + "Expedition:expedition_rare_sea_weapons_t04": { + "expedition_max_target_power": 1240, + "expedition_min_target_power": 62, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_sea_weapons_t05": { + "expedition_max_target_power": 1540, + "expedition_min_target_power": 77, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1440 + }, + "Expedition:expedition_rare_traps_t02": { + "expedition_max_target_power": 220, + "expedition_min_target_power": 11, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_traps_t03": { + "expedition_max_target_power": 490, + "expedition_min_target_power": 24, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_traps_t04": { + "expedition_max_target_power": 1240, + "expedition_min_target_power": 62, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_weapons_t02": { + "expedition_max_target_power": 220, + "expedition_min_target_power": 11, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_weapons_t03": { + "expedition_max_target_power": 490, + "expedition_min_target_power": 24, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_rare_weapons_t04": { + "expedition_max_target_power": 1240, + "expedition_min_target_power": 62, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_resourcerun_metal_medium": { + "expedition_max_target_power": 140, + "expedition_min_target_power": 7, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_resourcerun_metal_short": { + "expedition_max_target_power": 125, + "expedition_min_target_power": 6, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 480 + }, + "Expedition:expedition_resourcerun_stone_medium": { + "expedition_max_target_power": 120, + "expedition_min_target_power": 6, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_resourcerun_stone_short": { + "expedition_max_target_power": 110, + "expedition_min_target_power": 5, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 480 + }, + "Expedition:expedition_resourcerun_woodstone_medium": { + "expedition_max_target_power": 130, + "expedition_min_target_power": 6, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_resourcerun_woodstone_short": { + "expedition_max_target_power": 120, + "expedition_min_target_power": 6, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 480 + }, + "Expedition:expedition_resourcerun_wood_medium": { + "expedition_max_target_power": 100, + "expedition_min_target_power": 5, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_resourcerun_wood_short": { + "expedition_max_target_power": 95, + "expedition_min_target_power": 4, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 480 + }, + "Expedition:expedition_sea_supplyrun_long_t03": { + "expedition_max_target_power": 500, + "expedition_min_target_power": 25, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1200 + }, + "Expedition:expedition_sea_supplyrun_long_t04": { + "expedition_max_target_power": 725, + "expedition_min_target_power": 36, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_sea_supplyrun_medium_t02": { + "expedition_max_target_power": 215, + "expedition_min_target_power": 10, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_sea_supplyrun_short_t01": { + "expedition_max_target_power": 110, + "expedition_min_target_power": 5, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 480 + }, + "Expedition:expedition_sea_survivorscouting_long_t04": { + "expedition_max_target_power": 825, + "expedition_min_target_power": 41, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_sea_survivorscouting_medium_t02": { + "expedition_max_target_power": 270, + "expedition_min_target_power": 13, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_sea_survivorscouting_medium_t03": { + "expedition_max_target_power": 370, + "expedition_min_target_power": 18, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_sea_survivorscouting_short_t01": { + "expedition_max_target_power": 120, + "expedition_min_target_power": 6, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 480 + }, + "Expedition:expedition_supplyrun_long_t02": { + "expedition_max_target_power": 295, + "expedition_min_target_power": 14, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1200 + }, + "Expedition:expedition_supplyrun_long_t03": { + "expedition_max_target_power": 475, + "expedition_min_target_power": 23, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1200 + }, + "Expedition:expedition_supplyrun_long_t04": { + "expedition_max_target_power": 685, + "expedition_min_target_power": 34, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_supplyrun_medium_t01": { + "expedition_max_target_power": 105, + "expedition_min_target_power": 5, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_supplyrun_medium_t02": { + "expedition_max_target_power": 195, + "expedition_min_target_power": 9, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_supplyrun_medium_t03": { + "expedition_max_target_power": 275, + "expedition_min_target_power": 13, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_supplyrun_short_t01": { + "expedition_max_target_power": 95, + "expedition_min_target_power": 4, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 480 + }, + "Expedition:expedition_supplyrun_short_t02": { + "expedition_max_target_power": 155, + "expedition_min_target_power": 7, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 480 + }, + "Expedition:expedition_supplyrun_short_t03": { + "expedition_max_target_power": 225, + "expedition_min_target_power": 11, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 480 + }, + "Expedition:expedition_survivorscouting_long_t03": { + "expedition_max_target_power": 545, + "expedition_min_target_power": 27, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1200 + }, + "Expedition:expedition_survivorscouting_long_t04": { + "expedition_max_target_power": 785, + "expedition_min_target_power": 39, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 1320 + }, + "Expedition:expedition_survivorscouting_medium_t02": { + "expedition_max_target_power": 250, + "expedition_min_target_power": 12, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 960 + }, + "Expedition:expedition_survivorscouting_short_t01": { + "expedition_max_target_power": 130, + "expedition_min_target_power": 6, + "expiration_duration_minutes": 90, + "expedition_duration_minutes": 480 + } + }, + "note2": "The rewards here are different from the ones on epic servers.", + "rewards": [ + [ + { + "templateId": "WorldItem:wooditemdata", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "WorldItem:stoneitemdata", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "WorldItem:metalitemdata", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + } + ], + [ + { + "templateId": "Ingredient:ingredient_ore_obsidian", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_ore_malachite", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + + { + "templateId": "Ingredient:ingredient_ore_silver", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + + { + "templateId": "Ingredient:ingredient_ore_copper", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + } + ], + [ + { + "templateId": "Ingredient:ingredient_mechanical_parts_t04", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_mechanical_parts_t03", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_mechanical_parts_t02", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_mechanical_parts_t01", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + } + ], + [ + { + "templateId": "Ingredient:ingredient_rare_powercell", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_batteries", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_rare_mechanism", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + } + ], + [ + { + "templateId": "Ingredient:ingredient_twine_t04", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_twine_t03", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_twine_t02", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_twine_t01", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + } + ], + [ + { + "templateId": "Ingredient:ingredient_duct_tape", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_ore_coal", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_crystal_quartz", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_resin", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + } + ], + [ + { + "templateId": "Ingredient:ingredient_powder_t04", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_powder_t03", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_powder_t02", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_powder_t01", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + } + ], + [ + { + "templateId": "Ingredient:ingredient_bacon", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_planks", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_flowers", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_ore_alloy", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_nuts_bolts", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + }, + { + "templateId": "Ingredient:ingredient_herbs", + "itemProfile": "theater0", + "minQuantity": 50, + "maxQuantity": 250 + } + ] + ], + "criteria": [ + "RequiresNinja", + "RequiresCommando", + "RequiresConstructor", + "RequiresOutlander", + "RequiresRareNinja", + "RequiresRareCommando", + "RequiresRareConstructor", + "RequiresRareOutlander", + "RequiresEpicNinja", + "RequiresEpicCommando", + "RequiresEpicConstructor", + "RequiresEpicOutlander", + "RequiresLegendaryNinja", + "RequiresLegendaryCommando", + "RequiresLegendaryConstructor", + "RequiresLegendaryOutlander" + ], + "criteriaRequirements": { + "RequiresNinja": { + "ModValue": 1.5, + "requirements": { + "class": "ninja" + } + }, + "RequiresCommando": { + "ModValue": 1.5, + "requirements": { + "class": "commando" + } + }, + "RequiresConstructor": { + "ModValue": 1.5, + "requirements": { + "class": "constructor" + } + }, + "RequiresOutlander": { + "ModValue": 1.5, + "requirements": { + "class": "outlander" + } + }, + "RequiresRareNinja": { + "ModValue": 1.625, + "requirements": { + "class": "ninja", + "rarity": [ + "r", + "vr", + "sr" + ] + } + }, + "RequiresRareCommando": { + "ModValue": 1.625, + "requirements": { + "class": "commando", + "rarity": [ + "r", + "vr", + "sr" + ] + } + }, + "RequiresRareConstructor": { + "ModValue": 1.625, + "requirements": { + "class": "constructor", + "rarity": [ + "r", + "vr", + "sr" + ] + } + }, + "RequiresRareOutlander": { + "ModValue": 1.625, + "requirements": { + "class": "outlander", + "rarity": [ + "r", + "vr", + "sr" + ] + } + }, + "RequiresEpicNinja": { + "ModValue": 1.75, + "requirements": { + "class": "ninja", + "rarity": [ + "vr", + "sr" + ] + } + }, + "RequiresEpicCommando": { + "ModValue": 1.75, + "requirements": { + "class": "commando", + "rarity": [ + "vr", + "sr" + ] + } + }, + "RequiresEpicConstructor": { + "ModValue": 1.75, + "requirements": { + "class": "constructor", + "rarity": [ + "vr", + "sr" + ] + } + }, + "RequiresEpicOutlander": { + "ModValue": 1.75, + "requirements": { + "class": "outlander", + "rarity": [ + "vr", + "sr" + ] + } + }, + "RequiresLegendaryNinja": { + "ModValue": 2.0, + "requirements": { + "class": "ninja", + "rarity": [ + "sr" + ] + } + }, + "RequiresLegendaryCommando": { + "ModValue": 2.0, + "requirements": { + "class": "commando", + "rarity": [ + "sr" + ] + } + }, + "RequiresLegendaryConstructor": { + "ModValue": 2.0, + "requirements": { + "class": "constructor", + "rarity": [ + "sr" + ] + } + }, + "RequiresLegendaryOutlander": { + "ModValue": 2.0, + "requirements": { + "class": "outlander", + "rarity": [ + "sr" + ] + } + } + }, + "heroLevels": { + "old": { + "uc": { + "t01": { + "1": 5, + "2": 6, + "3": 7, + "4": 8, + "5": 9, + "6": 10, + "7": 11, + "8": 13, + "9": 14, + "10": 15 + }, + "t02": { + "10": 21, + "11": 22, + "12": 23, + "13": 24, + "14": 25, + "15": 26, + "16": 28, + "17": 29, + "18": 30, + "19": 31, + "20": 32 + }, + "t03": { + "20": 38, + "21": 39, + "22": 40, + "23": 41, + "24": 43, + "25": 44, + "26": 45, + "27": 46, + "28": 47, + "29": 48, + "30": 49 + } + }, + "r": { + "t01": { + "1": 10, + "2": 11, + "3": 12, + "4": 14, + "5": 15, + "6": 16, + "7": 17, + "8": 19, + "9": 20, + "10": 21 + }, + "t02": { + "10": 28, + "11": 29, + "12": 31, + "13": 32, + "14": 33, + "15": 34, + "16": 36, + "17": 37, + "18": 38, + "19": 39, + "20": 41 + }, + "t03": { + "20": 48, + "21": 49, + "22": 50, + "23": 51, + "24": 53, + "25": 54, + "26": 55, + "27": 56, + "28": 58, + "29": 59, + "30": 60 + }, + "t04": { + "30": 67, + "31": 68, + "32": 70, + "33": 71, + "34": 72, + "35": 73, + "36": 75, + "37": 76, + "38": 77, + "39": 78, + "40": 80 + } + }, + "vr": { + "t01": { + "1": 15, + "2": 16, + "3": 18, + "4": 19, + "5": 20, + "6": 22, + "7": 23, + "8": 25, + "9": 26, + "10": 27 + }, + "t02": { + "10": 35, + "11": 37, + "12": 38, + "13": 39, + "14": 41, + "15": 42, + "16": 44, + "17": 45, + "18": 46, + "19": 48, + "20": 49 + }, + "t03": { + "20": 57, + "21": 58, + "22": 60, + "23": 61, + "24": 63, + "25": 64, + "26": 65, + "27": 67, + "28": 68, + "29": 69, + "30": 71 + }, + "t04": { + "30": 79, + "31": 80, + "32": 82, + "33": 83, + "34": 84, + "35": 86, + "36": 87, + "37": 88, + "38": 90, + "39": 91, + "40": 93 + }, + "t05": { + "40": 101, + "41": 102, + "42": 103, + "43": 105, + "44": 106, + "45": 107, + "46": 109, + "47": 110, + "48": 112, + "49": 113, + "50": 114 + } + }, + "sr": { + "t01": { + "1": 20, + "2": 22, + "3": 23, + "4": 25, + "5": 26, + "6": 28, + "7": 29, + "8": 31, + "9": 32, + "10": 34 + }, + "t02": { + "10": 43, + "11": 44, + "12": 46, + "13": 47, + "14": 49, + "15": 50, + "16": 52, + "17": 53, + "18": 55, + "19": 56, + "20": 58 + }, + "t03": { + "20": 67, + "21": 68, + "22": 70, + "23": 71, + "24": 73, + "25": 74, + "26": 76, + "27": 77, + "28": 79, + "29": 80, + "30": 82 + }, + "t04": { + "30": 91, + "31": 92, + "32": 94, + "33": 95, + "34": 97, + "35": 98, + "36": 100, + "37": 101, + "38": 103, + "39": 104, + "40": 106 + }, + "t05": { + "40": 115, + "41": 116, + "42": 118, + "43": 119, + "44": 121, + "45": 122, + "46": 124, + "47": 125, + "48": 127, + "49": 128, + "50": 130 + } + } + }, + "new": { + "uc": { + "t01": { + "1": 4, + "2": 5, + "3": 6, + "4": 8, + "5": 9, + "6": 10, + "7": 11, + "8": 13, + "9": 14, + "10": 15 + }, + "t02": { + "10": 22, + "11": 23, + "12": 24, + "13": 26, + "14": 27, + "15": 28, + "16": 30, + "17": 31, + "18": 32, + "19": 34, + "20": 35 + }, + "t03": { + "20": 43, + "21": 45, + "22": 46, + "23": 47, + "24": 49, + "25": 50, + "26": 51, + "27": 53, + "28": 54, + "29": 55, + "30": 57 + } + }, + "r": { + "t01": { + "1": 7, + "2": 8, + "3": 9, + "4": 11, + "5": 12, + "6": 13, + "7": 15, + "8": 16, + "9": 17, + "10": 19 + }, + "t02": { + "10": 26, + "11": 27, + "12": 29, + "13": 30, + "14": 32, + "15": 33, + "16": 35, + "17": 36, + "18": 38, + "19": 39, + "20": 41 + }, + "t03": { + "20": 49, + "21": 51, + "22": 52, + "23": 54, + "24": 55, + "25": 56, + "26": 58, + "27": 59, + "28": 61, + "29": 62, + "30": 64 + }, + "t04": { + "30": 74, + "31": 75, + "32": 77, + "33": 78, + "34": 80, + "35": 81, + "36": 83, + "37": 84, + "38": 86, + "39": 87, + "40": 89 + } + }, + "vr": { + "t01": { + "1": 9, + "2": 11, + "3": 12, + "4": 14, + "5": 15, + "6": 17, + "7": 18, + "8": 20, + "9": 21, + "10": 22 + }, + "t02": { + "10": 30, + "11": 32, + "12": 34, + "13": 35, + "14": 37, + "15": 39, + "16": 40, + "17": 42, + "18": 43, + "19": 45, + "20": 46 + }, + "t03": { + "20": 55, + "21": 56, + "22": 58, + "23": 60, + "24": 61, + "25": 63, + "26": 65, + "27": 66, + "28": 68, + "29": 69, + "30": 71 + }, + "t04": { + "30": 81, + "31": 83, + "32": 84, + "33": 86, + "34": 87, + "35": 89, + "36": 91, + "37": 92, + "38": 94, + "39": 96, + "40": 97 + }, + "t05": { + "40": 108, + "41": 110, + "42": 111, + "43": 112, + "44": 114, + "45": 115, + "46": 116, + "47": 118, + "48": 119, + "49": 120, + "50": 122, + "52": 124, + "54": 127, + "56": 130, + "58": 132, + "60": 135 + } + }, + "sr": { + "t01": { + "1": 12, + "2": 14, + "3": 15, + "4": 17, + "5": 18, + "6": 20, + "7": 21, + "8": 23, + "9": 24, + "10": 26 + }, + "t02": { + "10": 35, + "11": 36, + "12": 38, + "13": 40, + "14": 42, + "15": 43, + "16": 45, + "17": 46, + "18": 48, + "19": 49, + "20": 51 + }, + "t03": { + "20": 61, + "21": 62, + "22": 64, + "23": 66, + "24": 68, + "25": 69, + "26": 71, + "27": 73, + "28": 74, + "29": 76, + "30": 77 + }, + "t04": { + "30": 88, + "31": 90, + "32": 92, + "33": 94, + "34": 95, + "35": 97, + "36": 99, + "37": 101, + "38": 102, + "39": 104, + "40": 106 + }, + "t05": { + "40": 116, + "41": 117, + "42": 118, + "43": 120, + "44": 121, + "45": 123, + "46": 124, + "47": 126, + "48": 127, + "49": 129, + "50": 130, + "52": 133, + "54": 136, + "56": 139, + "58": 142, + "60": 144 + } + } + } + } +} diff --git a/lawin/responses/Campaign/rewards.json b/lawin/responses/Campaign/rewards.json new file mode 100644 index 0000000..a2e77ce --- /dev/null +++ b/lawin/responses/Campaign/rewards.json @@ -0,0 +1,1160 @@ +{ + "author": "This list was created by PRO100KatYT", + "catalog": { + "f5c0e8ab6c9a4530999041e89e9b6934": { + "rewards": [ + { + "templateId": "Quest:foundersquest_getrewards_1_2", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_getrewards_2_3", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_2", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_3", + "quantity": 1 + } + ] + }, + "9aa9f44cd8c24652953a1b204755b193": { + "rewards": [ + { + "templateId": "Quest:foundersquest_getrewards_1_2", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_2", + "quantity": 1 + } + ] + }, + "e2f25dae43604a839dd6f2c21b675d5e": { + "rewards": [ + { + "templateId": "Quest:foundersquest_getrewards_0_1", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_1", + "quantity": 1 + } + ] + }, + "d2da86026c71429a9cf5e76dfd89a1d3": { + "rewards": [ + { + "templateId": "Quest:foundersquest_getrewards_2_3", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_getrewards_3_4", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_chooseherobundle", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_3", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_4", + "quantity": 1 + } + ] + }, + "e852b1940299435884365cec7dc3a608": { + "rewards": [ + { + "templateId": "Quest:foundersquest_getrewards_4_5", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_herobundle_nochoice", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_5", + "quantity": 1 + } + ] + }, + "35759d71512b47e5b2825669f1d9166a": { + "rewards": [ + { + "templateId": "Quest:foundersquest_getrewards_2_3", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_3", + "quantity": 1 + } + ] + }, + "c8319a037f9840e8b7549de480efb9c7": { + "rewards": [ + { + "templateId": "Quest:foundersquest_getrewards_0_1", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_getrewards_1_2", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_getrewards_2_3", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_1", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_2", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_3", + "quantity": 1 + } + ] + }, + "f05c43f7c1d24f5fbb1a6fa5a5a60edb": { + "rewards": [ + { + "templateId": "Quest:foundersquest_getrewards_3_4", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_chooseherobundle", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_4", + "quantity": 1 + } + ] + }, + "57f0419c4e4a4ea4858b2f37a98d5315": { + "rewards": [ + { + "templateId": "Quest:foundersquest_getrewards_1_2", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_getrewards_2_3", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_getrewards_3_4", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_chooseherobundle", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_2", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_3", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_4", + "quantity": 1 + } + ] + }, + "41134f4ff35a45a4923604cbb15e487d": { + "rewards": [ + { + "templateId": "Quest:foundersquest_getrewards_0_1", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_getrewards_1_2", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_1", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_2", + "quantity": 1 + } + ] + }, + "85125898f3914946a9443bcce4667660": { + "rewards": [ + { + "templateId": "Quest:foundersquest_getrewards_0_1", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_getrewards_1_2", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_getrewards_2_3", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_getrewards_3_4", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_chooseherobundle", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_1", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_2", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_3", + "quantity": 1 + }, + { + "templateId": "Token:founderspack_4", + "quantity": 1 + } + ] + } + }, + "quest": { + "quest:foundersquest_chooseherobundle": { + "rewards": [], + "selectableRewards": [ + { + "rewards": [ + { + "templateId": "Hero:hid_constructor_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_constructor_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_constructor_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_shotgun_tactical_founders_sr_ore_t01", + "quantity": 1 + } + ] + }, + { + "rewards": [ + { + "templateId": "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_ninja_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_edged_sword_medium_laser_founders_sr_ore_t01", + "quantity": 1 + } + ] + }, + { + "rewards": [ + { + "templateId": "Hero:hid_outlander_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_outlander_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_outlander_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_pistol_autoheavy_founders_sr_ore_t01", + "quantity": 1 + } + ] + }, + { + "rewards": [ + { + "templateId": "Hero:hid_commando_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_commando_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_soldier_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_assault_lmg_drum_founders_sr_ore_t01", + "quantity": 1 + } + ] + } + ] + }, + "quest:foundersquest_constructor_weaponupgrade_sr": { + "rewards": [ + { + "templateId": "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_constructor_weaponupgrade_vr": { + "rewards": [ + { + "templateId": "Quest:foundersquest_constructor_weaponupgrade_sr", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_shotgun_tactical_founders_vr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_getrewards_0_1": { + "rewards": [ + { + "templateId": "DailyRewardScheduleToken:founderspackdailyrewardtoken", + "quantity": 7 + }, + { + "templateId": "HomebaseBannerIcon:foundertier1banner1", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier1banner2", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier1banner3", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier1banner4", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_getrewards_1_2": { + "rewards": [ + { + "templateId": "AccountResource:voucher_cardpack_bronze", + "quantity": 5 + }, + { + "templateId": "ConsumableAccountItem:smallxpboost", + "quantity": 10 + }, + { + "templateId": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 10 + }, + { + "templateId": "Token:accountinventorybonus", + "quantity": 50 + }, + { + "templateId": "Hero:hid_commando_grenadegun_r_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_commando_guntough_r_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_constructor_hammertank_r_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_constructor_rushbase_r_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_ninja_slashtail_r_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_ninja_starsassassin_r_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_outlander_punchphase_r_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_outlander_zoneharvest_r_t01", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_assault_auto_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_shotgun_standard_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_sniper_boltaction_scope_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_edged_sword_medium_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Trap:tid_floor_spikes_r_t01", + "quantity": 5 + }, + { + "templateId": "Weapon:wid_pistol_rapid_founders_vr_ore_t01", + "quantity": 1 + }, + { + "templateId": "DailyRewardScheduleToken:founderspackdailyrewardtoken", + "quantity": 21 + }, + { + "templateId": "HomebaseBannerIcon:foundertier2banner1", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier2banner2", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier2banner3", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier2banner4", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier2banner5", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier2banner6", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_assault_auto_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_shotgun_standard_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_edged_sword_medium_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_floor_spikes_r_t01", + "quantity": 5 + }, + { + "templateId": "Schematic:sid_pistol_rapid_founders_vr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_getrewards_2_3": { + "rewards": [ + { + "templateId": "ConsumableAccountItem:smallxpboost", + "quantity": 10 + }, + { + "templateId": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 10 + }, + { + "templateId": "Token:accountinventorybonus", + "quantity": 50 + }, + { + "templateId": "Buff:partyxpbuff", + "quantity": 1 + }, + { + "templateId": "Token:founderchatunlock", + "quantity": 1 + }, + { + "templateId": "DailyRewardScheduleToken:founderspackdailyrewardtoken", + "quantity": 14 + }, + { + "templateId": "ConsumableAccountItem:foundersfriendcode", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier3banner1", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier3banner2", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier3banner3", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier3banner4", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier3banner5", + "quantity": 1 + }, + { + "templateId": "Defender:did_defenderassault_founders_vr_t01", + "quantity": 1 + }, + { + "templateId": "Defender:did_defenderpistol_founders_vr_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_getrewards_3_4": { + "rewards": [ + { + "templateId": "AccountResource:voucher_cardpack_bronze", + "quantity": 10 + }, + { + "templateId": "ConsumableAccountItem:smallxpboost", + "quantity": 20 + }, + { + "templateId": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 20 + }, + { + "templateId": "Token:worldinventorybonus", + "quantity": 10 + }, + { + "templateId": "Token:accountinventorybonus", + "quantity": 100 + }, + { + "templateId": "DailyRewardScheduleToken:founderspackdailyrewardtoken", + "quantity": 42 + }, + { + "templateId": "ConsumableAccountItem:foundersfriendcode", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier4banner1", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier4banner2", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier4banner3", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier4banner4", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier4banner5", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_getrewards_4_5": { + "rewards": [ + { + "templateId": "AccountResource:voucher_cardpack_bronze", + "quantity": 10 + }, + { + "templateId": "ConsumableAccountItem:smallxpboost", + "quantity": 40 + }, + { + "templateId": "ConsumableAccountItem:smallxpboost_gift", + "quantity": 40 + }, + { + "templateId": "Token:worldinventorybonus", + "quantity": 10 + }, + { + "templateId": "Token:accountinventorybonus", + "quantity": 100 + }, + { + "templateId": "Weapon:wid_assault_auto_founders_sr_ore_t01", + "quantity": 1 + }, + { + "templateId": "ConversionControl:cck_hero_core_unlimited_vr", + "quantity": 1 + }, + { + "templateId": "ConversionControl:cck_melee_core_unlimited_vr", + "quantity": 1 + }, + { + "templateId": "ConversionControl:cck_ranged_core_unlimited_vr", + "quantity": 1 + }, + { + "templateId": "ConversionControl:cck_worker_core_unlimited_vr", + "quantity": 1 + }, + { + "templateId": "DailyRewardScheduleToken:founderspackdailyrewardtoken", + "quantity": 42 + }, + { + "templateId": "ConsumableAccountItem:foundersfriendcode", + "quantity": 2 + }, + { + "templateId": "HomebaseBannerIcon:foundertier5banner1", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier5banner2", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier5banner3", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier5banner4", + "quantity": 1 + }, + { + "templateId": "HomebaseBannerIcon:foundertier5banner5", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_assault_auto_founders_sr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_getrewards_preorder": { + "rewards": [ + { + "templateId": "Weapon:wid_launcher_rocket_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_launcher_grenade_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_shotgun_break_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Ammo:ammodatashells", + "quantity": 500 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_getrewards_sony": { + "rewards": [ + { + "templateId": "Hero:hid_commando_sony_r_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_constructor_sony_r_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_ninja_sony_r_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_outlander_sony_r_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_herobundle_nochoice": { + "rewards": [ + { + "templateId": "Hero:hid_constructor_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_constructor_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_constructor_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_shotgun_tactical_founders_sr_ore_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_ninja_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_edged_sword_medium_laser_founders_sr_ore_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_outlander_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_outlander_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_outlander_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_pistol_autoheavy_founders_sr_ore_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_commando_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_commando_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_soldier_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_assault_lmg_drum_founders_sr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_herobundle_noconstructor": { + "rewards": [ + { + "templateId": "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_ninja_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_edged_sword_medium_laser_founders_sr_ore_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_outlander_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_outlander_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_outlander_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_pistol_autoheavy_founders_sr_ore_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_commando_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_commando_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_soldier_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_assault_lmg_drum_founders_sr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_herobundle_noninja": { + "rewards": [ + { + "templateId": "Hero:hid_constructor_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_constructor_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_constructor_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_shotgun_tactical_founders_sr_ore_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_outlander_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_outlander_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_outlander_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_pistol_autoheavy_founders_sr_ore_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_commando_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_commando_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_soldier_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_assault_lmg_drum_founders_sr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_herobundle_nooutlander": { + "rewards": [ + { + "templateId": "Hero:hid_constructor_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_constructor_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_constructor_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_shotgun_tactical_founders_sr_ore_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_ninja_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_edged_sword_medium_laser_founders_sr_ore_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_commando_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_commando_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_soldier_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_assault_lmg_drum_founders_sr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_herobundle_nosoldier": { + "rewards": [ + { + "templateId": "Hero:hid_constructor_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_constructor_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_constructor_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_shotgun_tactical_founders_sr_ore_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_ninja_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_edged_sword_medium_laser_founders_sr_ore_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_outlander_008_foundersm_sr_t01", + "quantity": 1 + }, + { + "templateId": "Hero:hid_outlander_008_foundersf_sr_t01", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "quantity": 1 + }, + { + "templateId": "Quest:foundersquest_outlander_weaponupgrade_vr", + "quantity": 1 + }, + { + "templateId": "Weapon:wid_pistol_autoheavy_founders_sr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_ninja_weaponupgrade_sr": { + "rewards": [ + { + "templateId": "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_ninja_weaponupgrade_vr": { + "rewards": [ + { + "templateId": "Quest:foundersquest_ninja_weaponupgrade_sr", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_edged_sword_medium_laser_founders_vr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_outlander_weaponupgrade_sr": { + "rewards": [ + { + "templateId": "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_outlander_weaponupgrade_vr": { + "rewards": [ + { + "templateId": "Quest:foundersquest_outlander_weaponupgrade_sr", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_pistol_autoheavy_founders_vr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_soldier_weaponupgrade_sr": { + "rewards": [ + { + "templateId": "Schematic:sid_assault_surgical_drum_founders_sr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + }, + "quest:foundersquest_soldier_weaponupgrade_vr": { + "rewards": [ + { + "templateId": "Quest:foundersquest_soldier_weaponupgrade_sr", + "quantity": 1 + }, + { + "templateId": "Schematic:sid_assault_surgical_drum_founders_vr_ore_t01", + "quantity": 1 + } + ], + "selectableRewards": [] + } + } +} \ No newline at end of file diff --git a/lawin/responses/Campaign/survivorData.json b/lawin/responses/Campaign/survivorData.json new file mode 100644 index 0000000..57faa7d --- /dev/null +++ b/lawin/responses/Campaign/survivorData.json @@ -0,0 +1,454 @@ +{ + "author": "This list was created by PRO100KatYT", + "fixedAttributes": { + "Worker:managerdoctor_c_t01": { + "managerSynergy": "Homebase.Manager.IsDoctor" + }, + "Worker:managerdoctor_r_t01": { + "managerSynergy": "Homebase.Manager.IsDoctor" + }, + "Worker:managerdoctor_sr_kingsly_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Doctor-kingsly.IconDef-ManagerPortrait-SR-Doctor-kingsly", + "personality": "Homebase.Worker.Personality.IsCompetitive", + "managerSynergy": "Homebase.Manager.IsDoctor", + "gender": "1" + }, + "Worker:managerdoctor_sr_noctor_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Doctor-Noctor.IconDef-ManagerPortrait-SR-Doctor-noctor", + "personality": "Homebase.Worker.Personality.IsAnalytical", + "managerSynergy": "Homebase.Manager.IsDoctor", + "gender": "1" + }, + "Worker:managerdoctor_sr_treky_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Doctor-treky.IconDef-ManagerPortrait-SR-Doctor-treky", + "personality": "Homebase.Worker.Personality.IsPragmatic", + "managerSynergy": "Homebase.Manager.IsDoctor", + "gender": "2" + }, + "Worker:managerdoctor_uc_t01": { + "managerSynergy": "Homebase.Manager.IsDoctor" + }, + "Worker:managerdoctor_vr_t01": { + "managerSynergy": "Homebase.Manager.IsDoctor" + }, + "Worker:managerengineer_c_t01": { + "managerSynergy": "Homebase.Manager.IsEngineer" + }, + "Worker:managerengineer_r_t01": { + "managerSynergy": "Homebase.Manager.IsEngineer" + }, + "Worker:managerengineer_sr_countess_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Engineer-countess.IconDef-ManagerPortrait-SR-Engineer-countess", + "personality": "Homebase.Worker.Personality.IsPragmatic", + "managerSynergy": "Homebase.Manager.IsEngineer", + "gender": "2" + }, + "Worker:managerengineer_sr_maths_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Engineer-maths.IconDef-ManagerPortrait-SR-Engineer-maths", + "personality": "Homebase.Worker.Personality.IsAnalytical", + "managerSynergy": "Homebase.Manager.IsEngineer", + "gender": "2" + }, + "Worker:managerengineer_sr_sobs_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Engineer-sobs.IconDef-ManagerPortrait-SR-Engineer-sobs", + "personality": "Homebase.Worker.Personality.IsDreamer", + "managerSynergy": "Homebase.Manager.IsEngineer", + "gender": "1" + }, + "Worker:managerengineer_uc_t01": { + "managerSynergy": "Homebase.Manager.IsEngineer" + }, + "Worker:managerengineer_vr_t01": { + "managerSynergy": "Homebase.Manager.IsEngineer" + }, + "Worker:managerexplorer_c_t01": { + "managerSynergy": "Homebase.Manager.IsExplorer" + }, + "Worker:managerexplorer_r_t01": { + "managerSynergy": "Homebase.Manager.IsExplorer" + }, + "Worker:managerexplorer_sr_birdie_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Explorer-birdie.IconDef-ManagerPortrait-SR-Explorer-birdie", + "personality": "Homebase.Worker.Personality.IsCurious", + "managerSynergy": "Homebase.Manager.IsExplorer", + "gender": "2" + }, + "Worker:managerexplorer_sr_eagle_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Explorer-eagle.IconDef-ManagerPortrait-SR-Explorer-eagle", + "personality": "Homebase.Worker.Personality.IsAdventurous", + "managerSynergy": "Homebase.Manager.IsExplorer", + "gender": "2" + }, + "Worker:managerexplorer_sr_spacebound_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Explorer-spacebound.IconDef-ManagerPortrait-SR-Explorer-spacebound", + "personality": "Homebase.Worker.Personality.IsDreamer", + "managerSynergy": "Homebase.Manager.IsExplorer", + "gender": "1" + }, + "Worker:managerexplorer_uc_t01": { + "managerSynergy": "Homebase.Manager.IsExplorer" + }, + "Worker:managerexplorer_vr_t01": { + "managerSynergy": "Homebase.Manager.IsExplorer" + }, + "Worker:managergadgeteer_c_t01": { + "managerSynergy": "Homebase.Manager.IsGadgeteer" + }, + "Worker:managergadgeteer_r_t01": { + "managerSynergy": "Homebase.Manager.IsGadgeteer" + }, + "Worker:managergadgeteer_sr_fixer_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Gadgeteer-fixer.IconDef-ManagerPortrait-SR-Gadgeteer-fixer", + "personality": "Homebase.Worker.Personality.IsAnalytical", + "managerSynergy": "Homebase.Manager.IsGadgeteer", + "gender": "1" + }, + "Worker:managergadgeteer_sr_flak_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Gadgeteer-flak.IconDef-ManagerPortrait-SR-Gadgeteer-flak", + "personality": "Homebase.Worker.Personality.IsDependable", + "managerSynergy": "Homebase.Manager.IsGadgeteer", + "gender": "2" + }, + "Worker:managergadgeteer_sr_zapps_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Gadgeteer-zapps.IconDef-ManagerPortrait-SR-Gadgeteer-zapps", + "personality": "Homebase.Worker.Personality.IsCurious", + "managerSynergy": "Homebase.Manager.IsGadgeteer", + "gender": "2" + }, + "Worker:managergadgeteer_uc_t01": { + "managerSynergy": "Homebase.Manager.IsGadgeteer" + }, + "Worker:managergadgeteer_vr_t01": { + "managerSynergy": "Homebase.Manager.IsGadgeteer" + }, + "Worker:managerinventor_c_t01": { + "managerSynergy": "Homebase.Manager.IsInventor" + }, + "Worker:managerinventor_r_t01": { + "managerSynergy": "Homebase.Manager.IsInventor" + }, + "Worker:managerinventor_sr_frequency_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Inventor-frequency.IconDef-ManagerPortrait-SR-Inventor-frequency", + "personality": "Homebase.Worker.Personality.IsDreamer", + "managerSynergy": "Homebase.Manager.IsInventor", + "gender": "1" + }, + "Worker:managerinventor_sr_rad_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Inventor-rad.IconDef-ManagerPortrait-SR-Inventor-rad", + "personality": "Homebase.Worker.Personality.IsCooperative", + "managerSynergy": "Homebase.Manager.IsInventor", + "gender": "2" + }, + "Worker:managerinventor_sr_square_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Inventor-square.IconDef-ManagerPortrait-SR-Inventor-square", + "personality": "Homebase.Worker.Personality.IsPragmatic", + "managerSynergy": "Homebase.Manager.IsInventor", + "gender": "1" + }, + "Worker:managerinventor_uc_t01": { + "managerSynergy": "Homebase.Manager.IsInventor" + }, + "Worker:managerinventor_vr_t01": { + "managerSynergy": "Homebase.Manager.IsInventor" + }, + "Worker:managermartialartist_c_t01": { + "managerSynergy": "Homebase.Manager.IsMartialArtist" + }, + "Worker:managermartialartist_r_t01": { + "managerSynergy": "Homebase.Manager.IsMartialArtist" + }, + "Worker:managermartialartist_sr_dragon_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-MartialArtist-dragon.IconDef-ManagerPortrait-SR-MartialArtist-dragon", + "personality": "Homebase.Worker.Personality.IsAdventurous", + "managerSynergy": "Homebase.Manager.IsMartialArtist", + "gender": "1" + }, + "Worker:managermartialartist_sr_samurai_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-MartialArtist-samurai.IconDef-ManagerPortrait-SR-MartialArtist-samurai", + "personality": "Homebase.Worker.Personality.IsCompetitive", + "managerSynergy": "Homebase.Manager.IsMartialArtist", + "gender": "1" + }, + "Worker:managermartialartist_sr_tiger_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-MartialArtist-tiger.IconDef-ManagerPortrait-SR-MartialArtist-tiger", + "personality": "Homebase.Worker.Personality.IsDependable", + "managerSynergy": "Homebase.Manager.IsMartialArtist", + "gender": "1" + }, + "Worker:managermartialartist_uc_t01": { + "managerSynergy": "Homebase.Manager.IsMartialArtist" + }, + "Worker:managermartialartist_vr_t01": { + "managerSynergy": "Homebase.Manager.IsMartialArtist" + }, + "Worker:managerquestdoctor_r_t01": { + "managerSynergy": "Homebase.Manager.IsDoctor" + }, + "Worker:managersoldier_c_t01": { + "managerSynergy": "Homebase.Manager.IsSoldier" + }, + "Worker:managersoldier_r_t01": { + "managerSynergy": "Homebase.Manager.IsSoldier" + }, + "Worker:managersoldier_sr_malcolm_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Soldier-malcolm.IconDef-ManagerPortrait-SR-Soldier-malcolm", + "personality": "Homebase.Worker.Personality.IsCooperative", + "managerSynergy": "Homebase.Manager.IsSoldier", + "gender": "1" + }, + "Worker:managersoldier_sr_princess_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Soldier-princess.IconDef-ManagerPortrait-SR-Soldier-princess", + "personality": "Homebase.Worker.Personality.IsDependable", + "managerSynergy": "Homebase.Manager.IsSoldier", + "gender": "2" + }, + "Worker:managersoldier_sr_ramsie_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-Soldier-ramsie.IconDef-ManagerPortrait-SR-Soldier-ramsie", + "personality": "Homebase.Worker.Personality.IsAdventurous", + "managerSynergy": "Homebase.Manager.IsSoldier", + "gender": "1" + }, + "Worker:managersoldier_uc_t01": { + "managerSynergy": "Homebase.Manager.IsSoldier" + }, + "Worker:managersoldier_vr_t01": { + "managerSynergy": "Homebase.Manager.IsSoldier" + }, + "Worker:managertrainer_c_t01": { + "managerSynergy": "Homebase.Manager.IsTrainer" + }, + "Worker:managertrainer_r_t01": { + "managerSynergy": "Homebase.Manager.IsTrainer" + }, + "Worker:managertrainer_sr_jumpy_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-PersonalTrainer-jumpy.IconDef-ManagerPortrait-SR-PersonalTrainer-jumpy", + "personality": "Homebase.Worker.Personality.IsCooperative", + "managerSynergy": "Homebase.Manager.IsTrainer", + "gender": "1" + }, + "Worker:managertrainer_sr_raider_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-PersonalTrainer-raider.IconDef-ManagerPortrait-SR-PersonalTrainer-raider", + "personality": "Homebase.Worker.Personality.IsCurious", + "managerSynergy": "Homebase.Manager.IsTrainer", + "gender": "2" + }, + "Worker:managertrainer_sr_yoglattes_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-SR-PersonalTrainer-yoglattes.IconDef-ManagerPortrait-SR-PersonalTrainer-yoglattes", + "personality": "Homebase.Worker.Personality.IsCompetitive", + "managerSynergy": "Homebase.Manager.IsTrainer", + "gender": "2" + }, + "Worker:managertrainer_uc_t01": { + "managerSynergy": "Homebase.Manager.IsTrainer" + }, + "Worker:managertrainer_vr_t01": { + "managerSynergy": "Homebase.Manager.IsTrainer" + }, + "Worker:workerhalloween_alt_sr_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Troll.IconDef-WorkerPortrait-Troll", + "gender": "1" + }, + "Worker:workerhalloween_c_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husk.IconDef-WorkerPortrait-Husk", + "gender": "1" + }, + "Worker:workerhalloween_r_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pitcher.IconDef-WorkerPortrait-Pitcher", + "gender": "1" + }, + "Worker:workerhalloween_sr_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Smasher.IconDef-WorkerPortrait-Smasher", + "gender": "1" + }, + "Worker:workerhalloween_uc_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husky.IconDef-WorkerPortrait-Husky", + "gender": "1" + }, + "Worker:workerhalloween_vr_t01": { + "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Lobber.IconDef-WorkerPortrait-Lobber", + "gender": "2" + } + }, + "bonuses": [ + "Homebase.Worker.SetBonus.IsResistanceLow", + "Homebase.Worker.SetBonus.IsMeleeDamageLow", + "Homebase.Worker.SetBonus.IsTrapDamageLow", + "Homebase.Worker.SetBonus.IsShieldRegenLow", + "Homebase.Worker.SetBonus.IsFortitudeLow", + "Homebase.Worker.SetBonus.IsRangedDamageLow", + "Homebase.Worker.SetBonus.IsAbilityDamageLow", + "Homebase.Worker.SetBonus.IsTrapDurabilityHigh" + ], + "personalities": [ + "Homebase.Worker.Personality.IsAdventurous", + "Homebase.Worker.Personality.IsAnalytical", + "Homebase.Worker.Personality.IsCompetitive", + "Homebase.Worker.Personality.IsCooperative", + "Homebase.Worker.Personality.IsCurious", + "Homebase.Worker.Personality.IsDependable", + "Homebase.Worker.Personality.IsDreamer", + "Homebase.Worker.Personality.IsPragmatic" + ], + "portraits": { + "Homebase.Manager.IsDoctor": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Doctor-M01.IconDef-ManagerPortrait-Doctor-M01" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Doctor-F01.IconDef-ManagerPortrait-Doctor-F01" + ] + }, + "Homebase.Manager.IsEngineer": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Engineer-M01.IconDef-ManagerPortrait-Engineer-M01" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Engineer-F01.IconDef-ManagerPortrait-Engineer-F01" + ] + }, + "Homebase.Manager.IsExplorer": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Explorer-M01.IconDef-ManagerPortrait-Explorer-M01" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Explorer-F01.IconDef-ManagerPortrait-Explorer-F01" + ] + }, + "Homebase.Manager.IsGadgeteer": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Gadgeteer-M01.IconDef-ManagerPortrait-Gadgeteer-M01" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Gadgeteer-F01.IconDef-ManagerPortrait-Gadgeteer-F01" + ] + }, + "Homebase.Manager.IsInventor": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Inventor-M01.IconDef-ManagerPortrait-Inventor-M01" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Inventor-F01.IconDef-ManagerPortrait-Inventor-F01" + ] + }, + "Homebase.Manager.IsSoldier": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Marksman-M01.IconDef-ManagerPortrait-Marksman-M01" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-Marksman-F01.IconDef-ManagerPortrait-Marksman-F01" + ] + }, + "Homebase.Manager.IsMartialArtist": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-MartialArtist-M01.IconDef-ManagerPortrait-MartialArtist-M01" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-MartialArtist-F01.IconDef-ManagerPortrait-MartialArtist-F01" + ] + }, + "Homebase.Manager.IsTrainer": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-PersonalTrainer-M01.IconDef-ManagerPortrait-PersonalTrainer-M01" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-ManagerPortrait-PersonalTrainer-F01.IconDef-ManagerPortrait-PersonalTrainer-F01" + ] + }, + "Homebase.Worker.Personality.IsAdventurous": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Adventurous-M01.IconDef-WorkerPortrait-Adventurous-M01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Adventurous-M02.IconDef-WorkerPortrait-Adventurous-M02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Adventurous-M03.IconDef-WorkerPortrait-Adventurous-M03" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Adventurous-F01.IconDef-WorkerPortrait-Adventurous-F01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Adventurous-F02.IconDef-WorkerPortrait-Adventurous-F02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Adventurous-F03.IconDef-WorkerPortrait-Adventurous-F03" + ] + }, + "Homebase.Worker.Personality.IsAnalytical": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-M01.IconDef-WorkerPortrait-Analytical-M01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-M02.IconDef-WorkerPortrait-Analytical-M02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-M03.IconDef-WorkerPortrait-Analytical-M03" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-F01.IconDef-WorkerPortrait-Analytical-F01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-F02.IconDef-WorkerPortrait-Analytical-F02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Analytical-F03.IconDef-WorkerPortrait-Analytical-F03" + ] + }, + "Homebase.Worker.Personality.IsCompetitive": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-M01.IconDef-WorkerPortrait-Competitive-M01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-M02.IconDef-WorkerPortrait-Competitive-M02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-M03.IconDef-WorkerPortrait-Competitive-M03" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-F01.IconDef-WorkerPortrait-Competitive-F01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-F02.IconDef-WorkerPortrait-Competitive-F02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Competitive-F03.IconDef-WorkerPortrait-Competitive-F03" + ] + }, + "Homebase.Worker.Personality.IsCooperative": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-M01.IconDef-WorkerPortrait-Cooperative-M01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-M02.IconDef-WorkerPortrait-Cooperative-M02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-M03.IconDef-WorkerPortrait-Cooperative-M03" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-F01.IconDef-WorkerPortrait-Cooperative-F01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-F02.IconDef-WorkerPortrait-Cooperative-F02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Cooperative-F03.IconDef-WorkerPortrait-Cooperative-F03" + ] + }, + "Homebase.Worker.Personality.IsCurious": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M01.IconDef-WorkerPortrait-Curious-M01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M02.IconDef-WorkerPortrait-Curious-M02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-M03.IconDef-WorkerPortrait-Curious-M03" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-F01.IconDef-WorkerPortrait-Curious-F01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-F02.IconDef-WorkerPortrait-Curious-F02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Curious-F03.IconDef-WorkerPortrait-Curious-F03" + ] + }, + "Homebase.Worker.Personality.IsDependable": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-M01.IconDef-WorkerPortrait-Dependable-M01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-M02.IconDef-WorkerPortrait-Dependable-M02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-M03.IconDef-WorkerPortrait-Dependable-M03" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-F01.IconDef-WorkerPortrait-Dependable-F01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-F02.IconDef-WorkerPortrait-Dependable-F02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dependable-F03.IconDef-WorkerPortrait-Dependable-F03" + ] + }, + "Homebase.Worker.Personality.IsDreamer": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-M01.IconDef-WorkerPortrait-Dreamer-M01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-M02.IconDef-WorkerPortrait-Dreamer-M02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-M03.IconDef-WorkerPortrait-Dreamer-M03" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-F01.IconDef-WorkerPortrait-Dreamer-F01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-F02.IconDef-WorkerPortrait-Dreamer-F02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Dreamer-F03.IconDef-WorkerPortrait-Dreamer-F03" + ] + }, + "Homebase.Worker.Personality.IsPragmatic": { + "1": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-M01.IconDef-WorkerPortrait-Pragmatic-M01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-M02.IconDef-WorkerPortrait-Pragmatic-M02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-M03.IconDef-WorkerPortrait-Pragmatic-M03" + ], + "2": [ + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-F01.IconDef-WorkerPortrait-Pragmatic-F01", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-F02.IconDef-WorkerPortrait-Pragmatic-F02", + "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Pragmatic-F03.IconDef-WorkerPortrait-Pragmatic-F03" + ] + } + } +} diff --git a/lawin/responses/Campaign/transformItemIDS.json b/lawin/responses/Campaign/transformItemIDS.json new file mode 100644 index 0000000..91bb21d --- /dev/null +++ b/lawin/responses/Campaign/transformItemIDS.json @@ -0,0 +1,2085 @@ +{ + "author": "This list was created by PRO100KatYT", + "ConversionControl:cck_worker_core_unlimited": [ + "Worker:workerbasic_r_t01" + ], + "ConversionControl:cck_worker_core_unlimited_vr": [ + "Worker:workerbasic_vr_t01" + ], + "ConversionControl:cck_worker_core_consumable_vr": [ + "Worker:workerbasic_vr_t01" + ], + "ConversionControl:cck_worker_core_consumable_uc": [ + "Worker:workerbasic_uc_t01" + ], + "ConversionControl:cck_worker_core_consumable_sr": [ + "Worker:workerbasic_sr_t01" + ], + "ConversionControl:cck_worker_core_consumable_r": [ + "Worker:workerbasic_r_t01" + ], + "ConversionControl:cck_worker_core_consumable_c": [ + "Worker:workerbasic_c_t01" + ], + "ConversionControl:cck_worker_core_consumable": [ + "Worker:workerbasic_sr_t01" + ], + "ConversionControl:cck_weapon_core_unlimited": [ + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_scythe_r_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_heavy_r_ore_t01", + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01", + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01", + "Schematic:sid_assault_auto_r_ore_t01", + "Schematic:sid_assault_singleshot_r_ore_t01", + "Schematic:sid_assault_semiauto_r_ore_t01", + "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "Schematic:sid_assault_lmg_r_ore_t01", + "Schematic:sid_assault_burst_r_ore_t01", + "Schematic:sid_sniper_standard_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "Schematic:sid_sniper_boltaction_r_ore_t01", + "Schematic:sid_sniper_auto_r_ore_t01", + "Schematic:sid_sniper_amr_r_ore_t01", + "Schematic:sid_shotgun_tactical_precision_r_ore_t01", + "Schematic:sid_shotgun_tactical_r_ore_t01", + "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "Schematic:sid_shotgun_standard_r_ore_t01", + "Schematic:sid_shotgun_semiauto_r_ore_t01", + "Schematic:sid_shotgun_break_ou_r_ore_t01", + "Schematic:sid_shotgun_break_r_ore_t01", + "Schematic:sid_shotgun_auto_r_ore_t01", + "Schematic:sid_pistol_sixshooter_r_ore_t01", + "Schematic:sid_pistol_semiauto_r_ore_t01", + "Schematic:sid_pistol_rapid_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_r_ore_t01", + "Schematic:sid_pistol_handcannon_r_ore_t01", + "Schematic:sid_pistol_firecracker_r_ore_t01", + "Schematic:sid_pistol_boltrevolver_r_ore_t01", + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01", + "Schematic:sid_launcher_rocket_r_ore_t01", + "Schematic:sid_launcher_grenade_r_ore_t01" + ], + "ConversionControl:cck_weapon_scavenger_consumable_sr": [ + "Schematic:sid_assault_scavenger_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_scavenger_sr_ore_t01", + "Schematic:sid_sniper_scavenger_sr_ore_t01", + "Schematic:sid_edged_axe_scavenger_sr_ore_t01", + "Schematic:sid_blunt_scavenger_sr_ore_t01", + "Schematic:sid_shotgun_break_scavenger_sr_ore_t01", + "Schematic:sid_pistol_scavenger_sr_ore_t01", + "Schematic:sid_piercing_spear_scavenger_sr_ore_t01" + ], + "ConversionControl:cck_weapon_core_consumable": [ + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01", + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_heavy_sr_ore_t01", + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01", + "Schematic:sid_assault_auto_sr_ore_t01", + "Schematic:sid_assault_auto_halloween_sr_ore_t01", + "Schematic:sid_assault_auto_founders_sr_ore_t01", + "Schematic:sid_assault_surgical_sr_ore_t01", + "Schematic:sid_assault_singleshot_sr_ore_t01", + "Schematic:sid_assault_semiauto_sr_ore_t01", + "Schematic:sid_assault_raygun_sr_ore_t01", + "Schematic:sid_assault_lmg_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", + "Schematic:sid_assault_hydra_sr_ore_t01", + "Schematic:sid_assault_doubleshot_sr_ore_t01", + "Schematic:sid_assault_burst_sr_ore_t01", + "Schematic:sid_sniper_tripleshot_sr_ore_t01", + "Schematic:sid_sniper_standard_scope_sr_ore_t01", + "Schematic:sid_sniper_standard_sr_ore_t01", + "Schematic:sid_sniper_shredder_sr_ore_t01", + "Schematic:sid_sniper_hydraulic_sr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", + "Schematic:sid_sniper_auto_sr_ore_t01", + "Schematic:sid_sniper_amr_sr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "Schematic:sid_shotgun_standard_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_sr_ore_t01", + "Schematic:sid_shotgun_minigun_sr_ore_t01", + "Schematic:sid_shotgun_longarm_sr_ore_t01", + "Schematic:sid_shotgun_heavy_sr_ore_t01", + "Schematic:sid_shotgun_break_ou_sr_ore_t01", + "Schematic:sid_shotgun_break_sr_ore_t01", + "Schematic:sid_shotgun_auto_sr_ore_t01", + "Schematic:sid_pistol_zapper_sr_ore_t01", + "Schematic:sid_pistol_space_sr_ore_t01", + "Schematic:sid_pistol_semiauto_sr_ore_t01", + "Schematic:sid_pistol_rocket_sr_ore_t01", + "Schematic:sid_pistol_rapid_sr_ore_t01", + "Schematic:sid_pistol_hydraulic_sr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", + "Schematic:sid_pistol_handcannon_sr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_firecracker_sr_ore_t01", + "Schematic:sid_pistol_dragon_sr_ore_t01", + "Schematic:sid_pistol_bolt_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01", + "Schematic:sid_launcher_rocket_sr_ore_t01", + "Schematic:sid_launcher_pumpkin_rpg_sr_ore_t01", + "Schematic:sid_launcher_hydraulic_sr_ore_t01", + "Schematic:sid_launcher_grenade_sr_ore_t01" + ], + "ConversionControl:cck_trap_core_unlimited": [ + "Schematic:sid_wall_wood_spikes_r_t01", + "Schematic:sid_wall_light_r_t01", + "Schematic:sid_wall_launcher_r_t01", + "Schematic:sid_wall_electric_r_t01", + "Schematic:sid_wall_darts_r_t01", + "Schematic:sid_floor_ward_r_t01", + "Schematic:sid_floor_spikes_wood_r_t01", + "Schematic:sid_floor_spikes_r_t01", + "Schematic:sid_floor_launcher_r_t01", + "Schematic:sid_floor_health_r_t01", + "Schematic:sid_ceiling_gas_r_t01", + "Schematic:sid_ceiling_electric_single_r_t01", + "Schematic:sid_ceiling_electric_aoe_r_t01" + ], + "ConversionControl:cck_trap_core_consumable_vr": [ + "Schematic:sid_wall_wood_spikes_vr_t01", + "Schematic:sid_wall_light_vr_t01", + "Schematic:sid_wall_launcher_vr_t01", + "Schematic:sid_wall_electric_vr_t01", + "Schematic:sid_wall_darts_vr_t01", + "Schematic:sid_floor_ward_vr_t01", + "Schematic:sid_floor_spikes_wood_vr_t01", + "Schematic:sid_floor_spikes_vr_t01", + "Schematic:sid_floor_launcher_vr_t01", + "Schematic:sid_floor_health_vr_t01", + "Schematic:sid_ceiling_gas_vr_t01", + "Schematic:sid_ceiling_electric_single_vr_t01", + "Schematic:sid_ceiling_electric_aoe_vr_t01" + ], + "ConversionControl:cck_trap_core_consumable_uc": [ + "Schematic:sid_wall_wood_spikes_uc_t01", + "Schematic:sid_wall_launcher_uc_t01", + "Schematic:sid_wall_electric_uc_t01", + "Schematic:sid_wall_darts_uc_t01", + "Schematic:sid_floor_ward_uc_t01", + "Schematic:sid_floor_spikes_wood_uc_t01", + "Schematic:sid_floor_spikes_uc_t01", + "Schematic:sid_floor_launcher_uc_t01", + "Schematic:sid_floor_health_uc_t01", + "Schematic:sid_ceiling_gas_uc_t01", + "Schematic:sid_ceiling_electric_single_uc_t01" + ], + "ConversionControl:cck_trap_core_consumable_sr": [ + "Schematic:sid_wall_wood_spikes_sr_t01", + "Schematic:sid_wall_light_sr_t01", + "Schematic:sid_wall_launcher_sr_t01", + "Schematic:sid_wall_electric_sr_t01", + "Schematic:sid_wall_darts_sr_t01", + "Schematic:sid_floor_ward_sr_t01", + "Schematic:sid_floor_spikes_wood_sr_t01", + "Schematic:sid_floor_spikes_sr_t01", + "Schematic:sid_floor_launcher_sr_t01", + "Schematic:sid_floor_health_sr_t01", + "Schematic:sid_ceiling_gas_sr_t01", + "Schematic:sid_ceiling_electric_single_sr_t01", + "Schematic:sid_ceiling_electric_aoe_sr_t01" + ], + "ConversionControl:cck_trap_core_consumable_r": [ + "Schematic:sid_wall_wood_spikes_r_t01", + "Schematic:sid_wall_light_r_t01", + "Schematic:sid_wall_launcher_r_t01", + "Schematic:sid_wall_electric_r_t01", + "Schematic:sid_wall_darts_r_t01", + "Schematic:sid_floor_ward_r_t01", + "Schematic:sid_floor_spikes_wood_r_t01", + "Schematic:sid_floor_spikes_r_t01", + "Schematic:sid_floor_launcher_r_t01", + "Schematic:sid_floor_health_r_t01", + "Schematic:sid_ceiling_gas_r_t01", + "Schematic:sid_ceiling_electric_single_r_t01", + "Schematic:sid_ceiling_electric_aoe_r_t01" + ], + "ConversionControl:cck_trap_core_consumable_c": [ + "Schematic:sid_wall_wood_spikes_c_t01", + "Schematic:sid_floor_spikes_wood_c_t01", + "Schematic:sid_ceiling_electric_single_c_t01" + ], + "ConversionControl:cck_trap_core_consumable": [ + "Schematic:sid_wall_wood_spikes_sr_t01", + "Schematic:sid_wall_light_sr_t01", + "Schematic:sid_wall_launcher_sr_t01", + "Schematic:sid_wall_electric_sr_t01", + "Schematic:sid_wall_darts_sr_t01", + "Schematic:sid_floor_ward_sr_t01", + "Schematic:sid_floor_spikes_wood_sr_t01", + "Schematic:sid_floor_spikes_sr_t01", + "Schematic:sid_floor_launcher_sr_t01", + "Schematic:sid_floor_health_sr_t01", + "Schematic:sid_ceiling_gas_sr_t01", + "Schematic:sid_ceiling_electric_single_sr_t01", + "Schematic:sid_ceiling_electric_aoe_sr_t01" + ], + "ConversionControl:cck_ranged_sniper_unlimited": [ + "Schematic:sid_sniper_standard_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "Schematic:sid_sniper_boltaction_r_ore_t01", + "Schematic:sid_sniper_auto_r_ore_t01", + "Schematic:sid_sniper_amr_r_ore_t01" + ], + "ConversionControl:cck_ranged_shotgun_unlimited": [ + "Schematic:sid_shotgun_tactical_precision_r_ore_t01", + "Schematic:sid_shotgun_tactical_r_ore_t01", + "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "Schematic:sid_shotgun_standard_r_ore_t01", + "Schematic:sid_shotgun_semiauto_r_ore_t01", + "Schematic:sid_shotgun_break_ou_r_ore_t01", + "Schematic:sid_shotgun_break_r_ore_t01", + "Schematic:sid_shotgun_auto_r_ore_t01" + ], + "ConversionControl:cck_ranged_pistol_unlimited": [ + "Schematic:sid_pistol_sixshooter_r_ore_t01", + "Schematic:sid_pistol_semiauto_r_ore_t01", + "Schematic:sid_pistol_rapid_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_r_ore_t01", + "Schematic:sid_pistol_handcannon_r_ore_t01", + "Schematic:sid_pistol_firecracker_r_ore_t01", + "Schematic:sid_pistol_boltrevolver_r_ore_t01", + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01" + ], + "ConversionControl:cck_ranged_core_unlimited_vr": [ + "Schematic:sid_assault_auto_vr_ore_t01", + "Schematic:sid_assault_surgical_vr_ore_t01", + "Schematic:sid_assault_singleshot_vr_ore_t01", + "Schematic:sid_assault_semiauto_vr_ore_t01", + "Schematic:sid_assault_semiauto_founders_vr_ore_t01", + "Schematic:sid_assault_raygun_vr_ore_t01", + "Schematic:sid_assault_lmg_vr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_vr_ore_t01", + "Schematic:sid_assault_doubleshot_vr_ore_t01", + "Schematic:sid_assault_burst_vr_ore_t01", + "Schematic:sid_sniper_tripleshot_vr_ore_t01", + "Schematic:sid_sniper_standard_scope_vr_ore_t01", + "Schematic:sid_sniper_standard_vr_ore_t01", + "Schematic:sid_sniper_standard_founders_vr_ore_t01", + "Schematic:sid_sniper_shredder_vr_ore_t01", + "Schematic:sid_sniper_hydraulic_vr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_vr_ore_t01", + "Schematic:sid_sniper_auto_vr_ore_t01", + "Schematic:sid_sniper_auto_founders_vr_ore_t01", + "Schematic:sid_sniper_amr_vr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_vr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_vr_ore_t01", + "Schematic:sid_shotgun_standard_vr_ore_t01", + "Schematic:sid_shotgun_semiauto_vr_ore_t01", + "Schematic:sid_shotgun_longarm_vr_ore_t01", + "Schematic:sid_shotgun_break_ou_vr_ore_t01", + "Schematic:sid_shotgun_break_vr_ore_t01", + "Schematic:sid_shotgun_auto_vr_ore_t01", + "Schematic:sid_shotgun_auto_founders_vr_ore_t01", + "Schematic:sid_pistol_zapper_vr_ore_t01", + "Schematic:sid_pistol_space_vr_ore_t01", + "Schematic:sid_pistol_semiauto_vr_ore_t01", + "Schematic:sid_pistol_semiauto_founders_vr_ore_t01", + "Schematic:sid_pistol_rapid_vr_ore_t01", + "Schematic:sid_pistol_rapid_founders_vr_ore_t01", + "Schematic:sid_pistol_hydraulic_vr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_vr_ore_t01", + "Schematic:sid_pistol_handcannon_vr_ore_t01", + "Schematic:sid_pistol_handcannon_founders_vr_ore_t01", + "Schematic:sid_pistol_gatling_vr_ore_t01", + "Schematic:sid_pistol_firecracker_vr_ore_t01", + "Schematic:sid_pistol_dragon_vr_ore_t01", + "Schematic:sid_pistol_bolt_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_vr_ore_t01", + "Schematic:sid_pistol_auto_vr_ore_t01", + "Schematic:sid_launcher_rocket_vr_ore_t01", + "Schematic:sid_launcher_hydraulic_vr_ore_t01", + "Schematic:sid_launcher_grenade_vr_ore_t01" + ], + "ConversionControl:cck_ranged_core_unlimited": [ + "Schematic:sid_assault_auto_r_ore_t01", + "Schematic:sid_assault_singleshot_r_ore_t01", + "Schematic:sid_assault_semiauto_r_ore_t01", + "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "Schematic:sid_assault_lmg_r_ore_t01", + "Schematic:sid_assault_burst_r_ore_t01", + "Schematic:sid_sniper_standard_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "Schematic:sid_sniper_boltaction_r_ore_t01", + "Schematic:sid_sniper_auto_r_ore_t01", + "Schematic:sid_sniper_amr_r_ore_t01", + "Schematic:sid_shotgun_tactical_precision_r_ore_t01", + "Schematic:sid_shotgun_tactical_r_ore_t01", + "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "Schematic:sid_shotgun_standard_r_ore_t01", + "Schematic:sid_shotgun_semiauto_r_ore_t01", + "Schematic:sid_shotgun_break_ou_r_ore_t01", + "Schematic:sid_shotgun_break_r_ore_t01", + "Schematic:sid_shotgun_auto_r_ore_t01", + "Schematic:sid_pistol_sixshooter_r_ore_t01", + "Schematic:sid_pistol_semiauto_r_ore_t01", + "Schematic:sid_pistol_rapid_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_r_ore_t01", + "Schematic:sid_pistol_handcannon_r_ore_t01", + "Schematic:sid_pistol_firecracker_r_ore_t01", + "Schematic:sid_pistol_boltrevolver_r_ore_t01", + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01", + "Schematic:sid_launcher_rocket_r_ore_t01", + "Schematic:sid_launcher_grenade_r_ore_t01" + ], + "ConversionControl:cck_ranged_assault_unlimited": [ + "Schematic:sid_assault_auto_r_ore_t01", + "Schematic:sid_assault_singleshot_r_ore_t01", + "Schematic:sid_assault_semiauto_r_ore_t01", + "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "Schematic:sid_assault_lmg_r_ore_t01", + "Schematic:sid_assault_burst_r_ore_t01" + ], + "ConversionControl:cck_ranged_sniper_consumable_vr": [ + "Schematic:sid_sniper_tripleshot_vr_ore_t01", + "Schematic:sid_sniper_standard_scope_vr_ore_t01", + "Schematic:sid_sniper_standard_vr_ore_t01", + "Schematic:sid_sniper_standard_founders_vr_ore_t01", + "Schematic:sid_sniper_shredder_vr_ore_t01", + "Schematic:sid_sniper_hydraulic_vr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_vr_ore_t01", + "Schematic:sid_sniper_auto_vr_ore_t01", + "Schematic:sid_sniper_auto_founders_vr_ore_t01", + "Schematic:sid_sniper_amr_vr_ore_t01" + ], + "ConversionControl:cck_ranged_sniper_consumable_uc": [ + "Schematic:sid_sniper_standard_uc_ore_t01", + "Schematic:sid_sniper_boltaction_uc_ore_t01", + "Schematic:sid_sniper_auto_uc_ore_t01" + ], + "ConversionControl:cck_ranged_sniper_consumable_sr": [ + "Schematic:sid_sniper_tripleshot_sr_ore_t01", + "Schematic:sid_sniper_standard_scope_sr_ore_t01", + "Schematic:sid_sniper_standard_sr_ore_t01", + "Schematic:sid_sniper_shredder_sr_ore_t01", + "Schematic:sid_sniper_hydraulic_sr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", + "Schematic:sid_sniper_auto_sr_ore_t01", + "Schematic:sid_sniper_amr_sr_ore_t01" + ], + "ConversionControl:cck_ranged_sniper_consumable_r": [ + "Schematic:sid_sniper_standard_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "Schematic:sid_sniper_boltaction_r_ore_t01", + "Schematic:sid_sniper_auto_r_ore_t01", + "Schematic:sid_sniper_amr_r_ore_t01" + ], + "ConversionControl:cck_ranged_sniper_consumable_c": [ + "Schematic:sid_sniper_standard_c_ore_t01", + "Schematic:sid_sniper_boltaction_c_ore_t01" + ], + "ConversionControl:cck_ranged_sniper_consumable": [ + "Schematic:sid_sniper_tripleshot_sr_ore_t01", + "Schematic:sid_sniper_standard_scope_sr_ore_t01", + "Schematic:sid_sniper_standard_sr_ore_t01", + "Schematic:sid_sniper_shredder_sr_ore_t01", + "Schematic:sid_sniper_hydraulic_sr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", + "Schematic:sid_sniper_auto_sr_ore_t01", + "Schematic:sid_sniper_amr_sr_ore_t01" + ], + "ConversionControl:cck_ranged_shotgun_consumable_vr": [ + "Schematic:sid_shotgun_tactical_precision_vr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_vr_ore_t01", + "Schematic:sid_shotgun_standard_vr_ore_t01", + "Schematic:sid_shotgun_semiauto_vr_ore_t01", + "Schematic:sid_shotgun_longarm_vr_ore_t01", + "Schematic:sid_shotgun_break_ou_vr_ore_t01", + "Schematic:sid_shotgun_break_vr_ore_t01", + "Schematic:sid_shotgun_auto_vr_ore_t01", + "Schematic:sid_shotgun_auto_founders_vr_ore_t01" + ], + "ConversionControl:cck_ranged_shotgun_consumable_uc": [ + "Schematic:sid_shotgun_tactical_uc_ore_t01", + "Schematic:sid_shotgun_standard_uc_ore_t01", + "Schematic:sid_shotgun_semiauto_uc_ore_t01", + "Schematic:sid_shotgun_break_ou_uc_ore_t01", + "Schematic:sid_shotgun_break_uc_ore_t01", + "Schematic:sid_shotgun_auto_uc_ore_t01" + ], + "ConversionControl:cck_ranged_shotgun_consumable_sr": [ + "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "Schematic:sid_shotgun_standard_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_sr_ore_t01", + "Schematic:sid_shotgun_minigun_sr_ore_t01", + "Schematic:sid_shotgun_longarm_sr_ore_t01", + "Schematic:sid_shotgun_heavy_sr_ore_t01", + "Schematic:sid_shotgun_break_ou_sr_ore_t01", + "Schematic:sid_shotgun_break_sr_ore_t01", + "Schematic:sid_shotgun_auto_sr_ore_t01" + ], + "ConversionControl:cck_ranged_shotgun_consumable_r": [ + "Schematic:sid_shotgun_tactical_precision_r_ore_t01", + "Schematic:sid_shotgun_tactical_r_ore_t01", + "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "Schematic:sid_shotgun_standard_r_ore_t01", + "Schematic:sid_shotgun_semiauto_r_ore_t01", + "Schematic:sid_shotgun_break_ou_r_ore_t01", + "Schematic:sid_shotgun_break_r_ore_t01", + "Schematic:sid_shotgun_auto_r_ore_t01" + ], + "ConversionControl:cck_ranged_shotgun_consumable_c": [ + "Schematic:sid_shotgun_tactical_c_ore_t01", + "Schematic:sid_shotgun_standard_c_ore_t01", + "Schematic:sid_shotgun_break_c_ore_t01" + ], + "ConversionControl:cck_ranged_shotgun_consumable": [ + "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "Schematic:sid_shotgun_standard_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_sr_ore_t01", + "Schematic:sid_shotgun_minigun_sr_ore_t01", + "Schematic:sid_shotgun_longarm_sr_ore_t01", + "Schematic:sid_shotgun_heavy_sr_ore_t01", + "Schematic:sid_shotgun_break_ou_sr_ore_t01", + "Schematic:sid_shotgun_break_sr_ore_t01", + "Schematic:sid_shotgun_auto_sr_ore_t01" + ], + "ConversionControl:cck_ranged_pistol_consumable_vr": [ + "Schematic:sid_pistol_zapper_vr_ore_t01", + "Schematic:sid_pistol_space_vr_ore_t01", + "Schematic:sid_pistol_semiauto_vr_ore_t01", + "Schematic:sid_pistol_semiauto_founders_vr_ore_t01", + "Schematic:sid_pistol_rapid_vr_ore_t01", + "Schematic:sid_pistol_rapid_founders_vr_ore_t01", + "Schematic:sid_pistol_hydraulic_vr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_vr_ore_t01", + "Schematic:sid_pistol_handcannon_vr_ore_t01", + "Schematic:sid_pistol_handcannon_founders_vr_ore_t01", + "Schematic:sid_pistol_gatling_vr_ore_t01", + "Schematic:sid_pistol_firecracker_vr_ore_t01", + "Schematic:sid_pistol_dragon_vr_ore_t01", + "Schematic:sid_pistol_bolt_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_vr_ore_t01", + "Schematic:sid_pistol_auto_vr_ore_t01" + ], + "ConversionControl:cck_ranged_pistol_consumable_uc": [ + "Schematic:sid_pistol_sixshooter_uc_ore_t01", + "Schematic:sid_pistol_semiauto_uc_ore_t01", + "Schematic:sid_pistol_boltrevolver_uc_ore_t01", + "Schematic:sid_pistol_auto_uc_ore_t01" + ], + "ConversionControl:cck_ranged_pistol_consumable_sr": [ + "Schematic:sid_pistol_zapper_sr_ore_t01", + "Schematic:sid_pistol_space_sr_ore_t01", + "Schematic:sid_pistol_semiauto_sr_ore_t01", + "Schematic:sid_pistol_rocket_sr_ore_t01", + "Schematic:sid_pistol_rapid_sr_ore_t01", + "Schematic:sid_pistol_hydraulic_sr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", + "Schematic:sid_pistol_handcannon_sr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_firecracker_sr_ore_t01", + "Schematic:sid_pistol_dragon_sr_ore_t01", + "Schematic:sid_pistol_bolt_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01" + ], + "ConversionControl:cck_ranged_pistol_consumable_r": [ + "Schematic:sid_pistol_sixshooter_r_ore_t01", + "Schematic:sid_pistol_semiauto_r_ore_t01", + "Schematic:sid_pistol_rapid_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_r_ore_t01", + "Schematic:sid_pistol_handcannon_r_ore_t01", + "Schematic:sid_pistol_firecracker_r_ore_t01", + "Schematic:sid_pistol_boltrevolver_r_ore_t01", + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01" + ], + "ConversionControl:cck_ranged_pistol_consumable_c": [ + "Schematic:sid_pistol_sixshooter_c_ore_t01", + "Schematic:sid_pistol_semiauto_c_ore_t01", + "Schematic:sid_pistol_boltrevolver_c_ore_t01", + "Schematic:sid_pistol_auto_c_ore_t01." + ], + "ConversionControl:cck_ranged_pistol_consumable": [ + "Schematic:sid_pistol_zapper_sr_ore_t01", + "Schematic:sid_pistol_space_sr_ore_t01", + "Schematic:sid_pistol_semiauto_sr_ore_t01", + "Schematic:sid_pistol_rocket_sr_ore_t01", + "Schematic:sid_pistol_rapid_sr_ore_t01", + "Schematic:sid_pistol_hydraulic_sr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", + "Schematic:sid_pistol_handcannon_sr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_firecracker_sr_ore_t01", + "Schematic:sid_pistol_dragon_sr_ore_t01", + "Schematic:sid_pistol_bolt_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01" + ], + "ConversionControl:cck_ranged_launcher_scavenger_consumable_sr": [ + "Schematic:sid_launcher_scavenger_sr_ore_t01" + ], + "ConversionControl:cck_ranged_launcher_pumpkin_consumable_sr": [ + "Schematic:sid_launcher_pumpkin_rpg_sr_ore_t01" + ], + "ConversionControl:cck_ranged_core_consumable": [ + "Schematic:sid_assault_auto_sr_ore_t01", + "Schematic:sid_assault_auto_halloween_sr_ore_t01", + "Schematic:sid_assault_auto_founders_sr_ore_t01", + "Schematic:sid_assault_surgical_sr_ore_t01", + "Schematic:sid_assault_singleshot_sr_ore_t01", + "Schematic:sid_assault_semiauto_sr_ore_t01", + "Schematic:sid_assault_raygun_sr_ore_t01", + "Schematic:sid_assault_lmg_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", + "Schematic:sid_assault_hydra_sr_ore_t01", + "Schematic:sid_assault_doubleshot_sr_ore_t01", + "Schematic:sid_assault_burst_sr_ore_t01", + "Schematic:sid_sniper_tripleshot_sr_ore_t01", + "Schematic:sid_sniper_standard_scope_sr_ore_t01", + "Schematic:sid_sniper_standard_sr_ore_t01", + "Schematic:sid_sniper_shredder_sr_ore_t01", + "Schematic:sid_sniper_hydraulic_sr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", + "Schematic:sid_sniper_auto_sr_ore_t01", + "Schematic:sid_sniper_amr_sr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "Schematic:sid_shotgun_standard_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_sr_ore_t01", + "Schematic:sid_shotgun_minigun_sr_ore_t01", + "Schematic:sid_shotgun_longarm_sr_ore_t01", + "Schematic:sid_shotgun_heavy_sr_ore_t01", + "Schematic:sid_shotgun_break_ou_sr_ore_t01", + "Schematic:sid_shotgun_break_sr_ore_t01", + "Schematic:sid_shotgun_auto_sr_ore_t01", + "Schematic:sid_pistol_zapper_sr_ore_t01", + "Schematic:sid_pistol_space_sr_ore_t01", + "Schematic:sid_pistol_semiauto_sr_ore_t01", + "Schematic:sid_pistol_rocket_sr_ore_t01", + "Schematic:sid_pistol_rapid_sr_ore_t01", + "Schematic:sid_pistol_hydraulic_sr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", + "Schematic:sid_pistol_handcannon_sr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_firecracker_sr_ore_t01", + "Schematic:sid_pistol_dragon_sr_ore_t01", + "Schematic:sid_pistol_bolt_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01", + "Schematic:sid_launcher_rocket_sr_ore_t01", + "Schematic:sid_launcher_pumpkin_rpg_sr_ore_t01", + "Schematic:sid_launcher_hydraulic_sr_ore_t01", + "Schematic:sid_launcher_grenade_sr_ore_t01" + ], + "ConversionControl:cck_ranged_assault_hydra_consumable_sr": [ + "Schematic:sid_assault_hydra_sr_ore_t01" + ], + "ConversionControl:cck_ranged_assault_consumable_vr": [ + "Schematic:sid_assault_surgical_vr_ore_t01", + "Schematic:sid_assault_singleshot_vr_ore_t01", + "Schematic:sid_assault_semiauto_vr_ore_t01", + "Schematic:sid_assault_semiauto_founders_vr_ore_t01", + "Schematic:sid_assault_raygun_vr_ore_t01", + "Schematic:sid_assault_lmg_vr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_vr_ore_t01", + "Schematic:sid_assault_doubleshot_vr_ore_t01", + "Schematic:sid_assault_burst_vr_ore_t01" + ], + "ConversionControl:cck_ranged_assault_consumable_uc": [ + "Schematic:sid_assault_auto_uc_ore_t01", + "Schematic:sid_assault_semiauto_uc_ore_t01", + "Schematic:sid_assault_burst_uc_ore_t01" + ], + "ConversionControl:cck_ranged_assault_consumable_sr": [ + "Schematic:sid_assault_surgical_sr_ore_t01", + "Schematic:sid_assault_singleshot_sr_ore_t01", + "Schematic:sid_assault_semiauto_sr_ore_t01", + "Schematic:sid_assault_raygun_sr_ore_t01", + "Schematic:sid_assault_lmg_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", + "Schematic:sid_assault_hydra_sr_ore_t01", + "Schematic:sid_assault_doubleshot_sr_ore_t01", + "Schematic:sid_assault_burst_sr_ore_t01" + ], + "ConversionControl:cck_ranged_assault_consumable_r": [ + "Schematic:sid_assault_auto_r_ore_t01", + "Schematic:sid_assault_singleshot_r_ore_t01", + "Schematic:sid_assault_semiauto_r_ore_t01", + "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "Schematic:sid_assault_lmg_r_ore_t01", + "Schematic:sid_assault_burst_r_ore_t01" + ], + "ConversionControl:cck_ranged_assault_consumable_c": [ + "Schematic:sid_assault_auto_c_ore_t01", + "Schematic:sid_assault_semiauto_c_ore_t01", + "Schematic:sid_assault_burst_c_ore_t01" + ], + "ConversionControl:cck_ranged_assault_consumable": [ + "Schematic:sid_assault_surgical_sr_ore_t01", + "Schematic:sid_assault_singleshot_sr_ore_t01", + "Schematic:sid_assault_semiauto_sr_ore_t01", + "Schematic:sid_assault_raygun_sr_ore_t01", + "Schematic:sid_assault_lmg_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", + "Schematic:sid_assault_hydra_sr_ore_t01", + "Schematic:sid_assault_doubleshot_sr_ore_t01", + "Schematic:sid_assault_burst_sr_ore_t01" + ], + "ConversionControl:cck_ranged_assault_auto_halloween_consumable_sr": [ + "Schematic:sid_assault_auto_halloween_sr_ore_t01" + ], + "ConversionControl:cck_material_event_pumpkinwarhead": [ + "AccountResource:eventcurrency_pumpkinwarhead" + ], + "ConversionControl:cck_ranged_smg_consumable": [ + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01" + ], + "ConversionControl:cck_ranged_smg_consumable_c": [ + "Schematic:sid_pistol_auto_c_ore_t01" + ], + "ConversionControl:cck_ranged_smg_consumable_r": [ + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01" + ], + "ConversionControl:cck_ranged_smg_consumable_sr": [ + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01" + ], + "ConversionControl:cck_ranged_smg_consumable_uc": [ + "Schematic:sid_pistol_auto_uc_ore_t01" + ], + "ConversionControl:cck_ranged_smg_consumable_vr": [ + "Schematic:sid_pistol_autoheavy_vr_ore_t01", + "Schematic:sid_pistol_gatling_vr_ore_t01", + "Schematic:sid_pistol_auto_vr_ore_t01" + ], + "ConversionControl:cck_ranged_smg_unlimited": [ + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01" + ], + "ConversionControl:cck_melee_tool_unlimited": [ + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01" + ], + "ConversionControl:cck_melee_sword_unlimited": [ + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01" + ], + "ConversionControl:cck_melee_spear_unlimited": [ + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01" + ], + "ConversionControl:cck_melee_scythe_unlimited": [ + "Schematic:sid_edged_scythe_r_ore_t01" + ], + "ConversionControl:cck_melee_piercing_unlimited": [ + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01" + ], + "ConversionControl:cck_melee_edged_unlimited": [ + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_scythe_r_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_heavy_r_ore_t01" + ], + "ConversionControl:cck_melee_core_unlimited_vr": [ + "Schematic:sid_piercing_spear_military_vr_ore_t01", + "Schematic:sid_piercing_spear_laser_vr_ore_t01", + "Schematic:sid_piercing_spear_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_vr_ore_t01", + "Schematic:sid_edged_sword_medium_vr_ore_t01", + "Schematic:sid_edged_sword_light_vr_ore_t01", + "Schematic:sid_edged_sword_light_founders_vr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_founders_vr_ore_t01", + "Schematic:sid_edged_scythe_laser_vr_ore_t01", + "Schematic:sid_edged_scythe_vr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_vr_ore_t01", + "Schematic:sid_edged_axe_medium_vr_ore_t01", + "Schematic:sid_edged_axe_medium_founders_vr_ore_t01", + "Schematic:sid_edged_axe_light_vr_ore_t01", + "Schematic:sid_edged_axe_heavy_vr_ore_t01", + "Schematic:sid_blunt_medium_vr_ore_t01", + "Schematic:sid_blunt_light_vr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_founders_vr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_vr_ore_t01", + "Schematic:sid_blunt_club_light_vr_ore_t01" + ], + "ConversionControl:cck_melee_core_unlimited": [ + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_scythe_r_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_heavy_r_ore_t01", + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01", + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01" + ], + "ConversionControl:cck_melee_club_unlimited": [ + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01" + ], + "ConversionControl:cck_melee_blunt_unlimited": [ + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01", + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01" + ], + "ConversionControl:cck_melee_axe_unlimited": [ + "Schematic:sid_edged_axe_heavy_r_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01" + ], + "ConversionControl:cck_melee_tool_consumable_vr": [ + "Schematic:sid_blunt_medium_vr_ore_t01", + "Schematic:sid_blunt_light_vr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_founders_vr_ore_t01" + ], + "ConversionControl:cck_melee_tool_consumable_uc": [ + "Schematic:sid_blunt_medium_uc_ore_t01", + "Schematic:sid_blunt_tool_light_uc_ore_t01", + "Schematic:sid_blunt_hammer_heavy_uc_ore_t01" + ], + "ConversionControl:cck_melee_tool_consumable_sr": [ + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01" + ], + "ConversionControl:cck_melee_tool_consumable_r": [ + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01" + ], + "ConversionControl:cck_melee_tool_consumable_c": [ + "Schematic:sid_blunt_medium_c_ore_t01", + "Schematic:sid_blunt_hammer_heavy_c_ore_t01" + ], + "ConversionControl:cck_melee_tool_consumable": [ + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01" + ], + "ConversionControl:cck_melee_sword_consumable_vr": [ + "Schematic:sid_edged_sword_heavy_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_founders_vr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_vr_ore_t01", + "Schematic:sid_edged_sword_light_vr_ore_t01", + "Schematic:sid_edged_sword_light_founders_vr_ore_t01", + "Schematic:sid_edged_sword_medium_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_vr_ore_t01" + ], + "ConversionControl:cck_melee_sword_consumable_uc": [ + "Schematic:sid_edged_sword_heavy_uc_ore_t01", + "Schematic:sid_edged_sword_light_uc_ore_t01", + "Schematic:sid_edged_sword_medium_uc_ore_t01" + ], + "ConversionControl:cck_melee_sword_consumable_sr": [ + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01" + ], + "ConversionControl:cck_melee_sword_consumable_r": [ + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01" + ], + "ConversionControl:cck_melee_sword_consumable_c": [ + "Schematic:sid_edged_sword_heavy_c_ore_t01", + "Schematic:sid_edged_sword_light_c_ore_t01", + "Schematic:sid_edged_sword_medium_c_ore_t01" + ], + "ConversionControl:cck_melee_sword_consumable": [ + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01" + ], + "ConversionControl:cck_melee_spear_consumable_vr": [ + "Schematic:sid_piercing_spear_military_vr_ore_t01", + "Schematic:sid_piercing_spear_laser_vr_ore_t01", + "Schematic:sid_piercing_spear_vr_ore_t01" + ], + "ConversionControl:cck_melee_spear_consumable_uc": [ + "Schematic:sid_piercing_spear_uc_ore_t01" + ], + "ConversionControl:cck_melee_spear_consumable_sr": [ + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01" + ], + "ConversionControl:cck_melee_spear_consumable_r": [ + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01" + ], + "ConversionControl:cck_melee_spear_consumable_c": [ + "Schematic:sid_piercing_spear_c_ore_t01" + ], + "ConversionControl:cck_melee_spear_consumable": [ + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01" + ], + "ConversionControl:cck_melee_scythe_consumable_vr": [ + "Schematic:sid_edged_scythe_vr_ore_t01", + "Schematic:sid_edged_scythe_laser_vr_ore_t01" + ], + "ConversionControl:cck_melee_scythe_consumable_uc": [ + "Schematic:sid_edged_scythe_uc_ore_t01" + ], + "ConversionControl:cck_melee_scythe_consumable_sr": [ + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01" + ], + "ConversionControl:cck_melee_scythe_consumable_r": [ + "Schematic:sid_edged_scythe_r_ore_t01" + ], + "ConversionControl:cck_melee_scythe_consumable_c": [ + "Schematic:sid_edged_scythe_c_ore_t01" + ], + "ConversionControl:cck_melee_scythe_consumable": [ + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01" + ], + "ConversionControl:cck_melee_piercing_consumable": [ + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01" + ], + "ConversionControl:cck_melee_edged_consumable": [ + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01", + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_heavy_sr_ore_t01" + ], + "ConversionControl:cck_melee_core_consumable": [ + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01", + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_heavy_sr_ore_t01", + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01" + ], + "ConversionControl:cck_melee_club_consumable_vr": [ + "Schematic:sid_blunt_light_rocketbat_vr_ore_t01", + "Schematic:sid_blunt_club_light_vr_ore_t01" + ], + "ConversionControl:cck_melee_club_consumable_uc": [ + "Schematic:sid_blunt_light_bat_uc_ore_t01", + "Schematic:sid_blunt_light_uc_ore_t01", + "Schematic:sid_blunt_heavy_paddle_uc_ore_t01" + ], + "ConversionControl:cck_melee_club_consumable_sr": [ + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01" + ], + "ConversionControl:cck_melee_club_consumable_r": [ + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01" + ], + "ConversionControl:cck_melee_club_consumable_c": [ + "Schematic:sid_blunt_light_c_ore_t01", + "Schematic:sid_blunt_heavy_paddle_c_ore_t01" + ], + "ConversionControl:cck_melee_club_consumable": [ + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01" + ], + "ConversionControl:cck_melee_blunt_consumable": [ + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01" + ], + "ConversionControl:cck_melee_axe_consumable_vr": [ + "Schematic:sid_edged_axe_heavy_vr_ore_t01", + "Schematic:sid_edged_axe_light_vr_ore_t01", + "Schematic:sid_edged_axe_medium_vr_ore_t01", + "Schematic:sid_edged_axe_medium_founders_vr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_vr_ore_t01" + ], + "ConversionControl:cck_melee_axe_consumable_uc": [ + "Schematic:sid_edged_axe_heavy_uc_ore_t01", + "Schematic:sid_edged_axe_light_uc_ore_t01", + "Schematic:sid_edged_axe_medium_uc_ore_t01" + ], + "ConversionControl:cck_melee_axe_consumable_sr": [ + "Schematic:sid_edged_axe_heavy_sr_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01" + ], + "ConversionControl:cck_melee_axe_consumable_r": [ + "Schematic:sid_edged_axe_heavy_r_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01" + ], + "ConversionControl:cck_melee_axe_consumable_c": [ + "Schematic:sid_edged_axe_heavy_c_ore_t01", + "Schematic:sid_edged_axe_light_c_ore_t01", + "Schematic:sid_edged_axe_medium_c_ore_t01" + ], + "ConversionControl:cck_melee_axe_consumable": [ + "Schematic:sid_edged_axe_heavy_sr_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01" + ], + "ConversionControl:cck_manager_core_unlimited": [ + "Worker:managertrainer_uc_t01", + "Worker:managersoldier_uc_t01", + "Worker:managermartialartist_uc_t01", + "Worker:managerinventor_uc_t01", + "Worker:managergadgeteer_uc_t01", + "Worker:managerexplorer_uc_t01", + "Worker:managerengineer_uc_t01", + "Worker:managerdoctor_uc_t01" + ], + "ConversionControl:cck_manager_core_consumable_vr": [ + "Worker:managerquestdoctor_r_t01", + "Worker:managertrainer_r_t01", + "Worker:managersoldier_r_t01", + "Worker:managermartialartist_r_t01", + "Worker:managerinventor_r_t01", + "Worker:managergadgeteer_r_t01", + "Worker:managerexplorer_r_t01", + "Worker:managerengineer_r_t01", + "Worker:managerdoctor_r_t01" + ], + "ConversionControl:cck_manager_core_consumable_uc": [ + "Worker:managertrainer_c_t01", + "Worker:managersoldier_c_t01", + "Worker:managermartialartist_c_t01", + "Worker:managerinventor_c_t01", + "Worker:managergadgeteer_c_t01", + "Worker:managerexplorer_c_t01", + "Worker:managerengineer_c_t01", + "Worker:managerdoctor_c_t01" + ], + "ConversionControl:cck_manager_core_consumable_sr": [ + "Worker:managertrainer_vr_t01", + "Worker:managersoldier_vr_t01", + "Worker:managermartialartist_vr_t01", + "Worker:managerinventor_vr_t01", + "Worker:managergadgeteer_vr_t01", + "Worker:managerexplorer_vr_t01", + "Worker:managerengineer_vr_t01", + "Worker:managerdoctor_vr_t01" + ], + "ConversionControl:cck_manager_core_consumable_r": [ + "Worker:managertrainer_uc_t01", + "Worker:managersoldier_uc_t01", + "Worker:managermartialartist_uc_t01", + "Worker:managerinventor_uc_t01", + "Worker:managergadgeteer_uc_t01", + "Worker:managerexplorer_uc_t01", + "Worker:managerengineer_uc_t01", + "Worker:managerdoctor_uc_t01" + ], + "ConversionControl:cck_manager_core_consumable_c": [ + "Worker:managertrainer_c_t01", + "Worker:managersoldier_c_t01", + "Worker:managermartialartist_c_t01", + "Worker:managerinventor_c_t01", + "Worker:managergadgeteer_c_t01", + "Worker:managerexplorer_c_t01", + "Worker:managerengineer_c_t01", + "Worker:managerdoctor_c_t01" + ], + "ConversionControl:cck_manager_core_consumable": [ + "Worker:managertrainer_vr_t01", + "Worker:managersoldier_vr_t01", + "Worker:managermartialartist_vr_t01", + "Worker:managerinventor_vr_t01", + "Worker:managergadgeteer_vr_t01", + "Worker:managerexplorer_vr_t01", + "Worker:managerengineer_vr_t01", + "Worker:managerdoctor_vr_t01" + ], + "ConversionControl:cck_hero_outlander_unlimited": [ + "Hero:hid_outlander_zonepistol_r_t01", + "Hero:hid_outlander_zoneharvest_r_t01", + "Hero:hid_outlander_spherefragment_r_t01", + "Hero:hid_outlander_punchphase_r_t01", + "Hero:hid_outlander_009_r_t01", + "Hero:hid_outlander_008_r_t01", + "Hero:hid_outlander_007_r_t01", + "Hero:hid_outlander_sony_r_t01" + ], + "ConversionControl:cck_hero_ninja_unlimited": [ + "Hero:hid_ninja_starsassassin_r_t01", + "Hero:hid_ninja_smokedimmak_r_t01", + "Hero:hid_ninja_slashtail_r_t01", + "Hero:hid_ninja_slashbreath_r_t01", + "Hero:hid_ninja_009_r_t01", + "Hero:hid_ninja_008_r_t01", + "Hero:hid_ninja_007_r_t01", + "Hero:hid_ninja_sony_r_t01" + ], + "ConversionControl:cck_hero_core_unlimited": [ + "Hero:hid_outlander_zonepistol_r_t01", + "Hero:hid_outlander_zoneharvest_r_t01", + "Hero:hid_outlander_spherefragment_r_t01", + "Hero:hid_outlander_punchphase_r_t01", + "Hero:hid_outlander_009_r_t01", + "Hero:hid_outlander_008_r_t01", + "Hero:hid_outlander_007_r_t01", + "Hero:hid_outlander_sony_r_t01", + "Hero:hid_ninja_starsassassin_r_t01", + "Hero:hid_ninja_smokedimmak_r_t01", + "Hero:hid_ninja_slashtail_r_t01", + "Hero:hid_ninja_slashbreath_r_t01", + "Hero:hid_ninja_009_r_t01", + "Hero:hid_ninja_008_r_t01", + "Hero:hid_ninja_007_r_t01", + "Hero:hid_ninja_sony_r_t01", + "Hero:hid_constructor_rushbase_r_t01", + "Hero:hid_constructor_plasmadamage_r_t01", + "Hero:hid_constructor_hammertank_r_t01", + "Hero:hid_constructor_basehyper_r_t01", + "Hero:hid_constructor_009_r_t01", + "Hero:hid_constructor_008_r_t01", + "Hero:hid_constructor_007_r_t01", + "Hero:hid_constructor_sony_r_t01", + "Hero:hid_commando_shockdamage_r_t01", + "Hero:hid_commando_guntough_r_t01", + "Hero:hid_commando_grenadegun_r_t01", + "Hero:hid_commando_gcgrenade_r_t01", + "Hero:hid_commando_009_r_t01", + "Hero:hid_commando_008_r_t01", + "Hero:hid_commando_007_r_t01", + "Hero:hid_commando_sony_r_t01" + ], + "ConversionControl:cck_hero_constructor_unlimited": [ + "Hero:hid_constructor_rushbase_r_t01", + "Hero:hid_constructor_plasmadamage_r_t01", + "Hero:hid_constructor_hammertank_r_t01", + "Hero:hid_constructor_basehyper_r_t01", + "Hero:hid_constructor_009_r_t01", + "Hero:hid_constructor_008_r_t01", + "Hero:hid_constructor_007_r_t01", + "Hero:hid_constructor_sony_r_t01" + ], + "ConversionControl:cck_hero_commando_unlimited": [ + "Hero:hid_commando_shockdamage_r_t01", + "Hero:hid_commando_guntough_r_t01", + "Hero:hid_commando_grenadegun_r_t01", + "Hero:hid_commando_gcgrenade_r_t01", + "Hero:hid_commando_009_r_t01", + "Hero:hid_commando_008_r_t01", + "Hero:hid_commando_007_r_t01", + "Hero:hid_commando_sony_r_t01" + ], + "ConversionControl:cck_hero_outlander_consumable": [ + "Hero:hid_outlander_zonepistolhw_sr_t01", + "Hero:hid_outlander_zonepistol_sr_t01", + "Hero:hid_outlander_zoneharvest_sr_t01", + "Hero:hid_outlander_zonefragment_sr_t01", + "Hero:hid_outlander_spherefragment_sr_t01", + "Hero:hid_outlander_punchphase_sr_t01", + "Hero:hid_outlander_punchdamage_sr_t01", + "Hero:hid_outlander_010_sr_t01", + "Hero:hid_outlander_009_sr_t01", + "Hero:hid_outlander_008_sr_t01", + "Hero:hid_outlander_007_sr_t01", + "Hero:hid_outlander_008_foundersf_sr_t01", + "Hero:hid_outlander_008_foundersm_sr_t01" + ], + "ConversionControl:cck_hero_ninja_consumable": [ + "Hero:hid_ninja_swordmaster_sr_t01", + "Hero:hid_ninja_starsrainhw_sr_t01", + "Hero:hid_ninja_starsrain_sr_t01", + "Hero:hid_ninja_starsassassin_sr_t01", + "Hero:hid_ninja_smokedimmak_sr_t01", + "Hero:hid_ninja_slashtail_sr_t01", + "Hero:hid_ninja_slashbreath_sr_t01", + "Hero:hid_ninja_010_sr_t01", + "Hero:hid_ninja_009_sr_t01", + "Hero:hid_ninja_008_sr_t01", + "Hero:hid_ninja_007_sr_t01", + "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "Hero:hid_ninja_starsassassin_foundersm_sr_t01" + ], + "ConversionControl:cck_hero_core_unlimited_vr": [ + "Hero:hid_outlander_zonepistol_vr_t01", + "Hero:hid_outlander_zoneharvest_vr_t01", + "Hero:hid_outlander_spherefragment_vr_t01", + "Hero:hid_outlander_punchphase_vr_t01", + "Hero:hid_outlander_punchdamage_vr_t01", + "Hero:hid_outlander_010_vr_t01", + "Hero:hid_outlander_009_vr_t01", + "Hero:hid_outlander_008_vr_t01", + "Hero:hid_outlander_007_vr_t01", + "Hero:hid_ninja_starsrain_vr_t01", + "Hero:hid_ninja_starsassassin_vr_t01", + "Hero:hid_ninja_smokedimmak_vr_t01", + "Hero:hid_ninja_slashtail_vr_t01", + "Hero:hid_ninja_slashbreath_vr_t01", + "Hero:hid_ninja_010_vr_t01", + "Hero:hid_ninja_009_vr_t01", + "Hero:hid_ninja_008_vr_t01", + "Hero:hid_ninja_007_vr_t01", + "Hero:hid_constructor_rushbase_vr_t01", + "Hero:hid_constructor_plasmadamage_vr_t01", + "Hero:hid_constructor_hammertank_vr_t01", + "Hero:hid_constructor_hammerplasma_vr_t01", + "Hero:hid_constructor_basehyper_vr_t01", + "Hero:hid_constructor_010_vr_t01", + "Hero:hid_constructor_009_vr_t01", + "Hero:hid_constructor_008_vr_t01", + "Hero:hid_constructor_007_vr_t01", + "Hero:hid_commando_shockdamage_vr_t01", + "Hero:hid_commando_guntough_vr_t01", + "Hero:hid_commando_gunheadshot_vr_t01", + "Hero:hid_commando_grenadegun_vr_t01", + "Hero:hid_commando_gcgrenade_vr_t01", + "Hero:hid_commando_010_vr_t01", + "Hero:hid_commando_009_vr_t01", + "Hero:hid_commando_008_vr_t01", + "Hero:hid_commando_007_vr_t01" + ], + "ConversionControl:cck_hero_core_consumable_vr": [ + "Hero:hid_outlander_zonepistol_vr_t01", + "Hero:hid_outlander_zoneharvest_vr_t01", + "Hero:hid_outlander_spherefragment_vr_t01", + "Hero:hid_outlander_punchphase_vr_t01", + "Hero:hid_outlander_punchdamage_vr_t01", + "Hero:hid_outlander_010_vr_t01", + "Hero:hid_outlander_009_vr_t01", + "Hero:hid_outlander_008_vr_t01", + "Hero:hid_outlander_007_vr_t01", + "Hero:hid_ninja_starsrain_vr_t01", + "Hero:hid_ninja_starsassassin_vr_t01", + "Hero:hid_ninja_smokedimmak_vr_t01", + "Hero:hid_ninja_slashtail_vr_t01", + "Hero:hid_ninja_slashbreath_vr_t01", + "Hero:hid_ninja_010_vr_t01", + "Hero:hid_ninja_009_vr_t01", + "Hero:hid_ninja_008_vr_t01", + "Hero:hid_ninja_007_vr_t01", + "Hero:hid_constructor_rushbase_vr_t01", + "Hero:hid_constructor_plasmadamage_vr_t01", + "Hero:hid_constructor_hammertank_vr_t01", + "Hero:hid_constructor_hammerplasma_vr_t01", + "Hero:hid_constructor_basehyper_vr_t01", + "Hero:hid_constructor_010_vr_t01", + "Hero:hid_constructor_009_vr_t01", + "Hero:hid_constructor_008_vr_t01", + "Hero:hid_constructor_007_vr_t01", + "Hero:hid_commando_shockdamage_vr_t01", + "Hero:hid_commando_guntough_vr_t01", + "Hero:hid_commando_gunheadshot_vr_t01", + "Hero:hid_commando_grenadegun_vr_t01", + "Hero:hid_commando_gcgrenade_vr_t01", + "Hero:hid_commando_010_vr_t01", + "Hero:hid_commando_009_vr_t01", + "Hero:hid_commando_008_vr_t01", + "Hero:hid_commando_007_vr_t01" + ], + "ConversionControl:cck_hero_core_consumable_uc": [ + "Hero:hid_outlander_zoneharvest_uc_t01", + "Hero:hid_outlander_punchphase_uc_t01", + "Hero:hid_outlander_007_uc_t01", + "Hero:hid_ninja_starsassassin_uc_t01", + "Hero:hid_ninja_slashtail_uc_t01", + "Hero:hid_ninja_007_uc_t01", + "Hero:hid_constructor_rushbase_uc_t01", + "Hero:hid_constructor_hammertank_uc_t01", + "Hero:hid_constructor_007_uc_t01", + "Hero:hid_commando_grenadegun_uc_t01", + "Hero:hid_commando_guntough_uc_t01", + "Hero:hid_commando_007_uc_t01" + ], + "ConversionControl:cck_hero_core_consumable_sr": [ + "Hero:hid_outlander_zonepistolhw_sr_t01", + "Hero:hid_outlander_zonepistol_sr_t01", + "Hero:hid_outlander_zoneharvest_sr_t01", + "Hero:hid_outlander_zonefragment_sr_t01", + "Hero:hid_outlander_spherefragment_sr_t01", + "Hero:hid_outlander_punchphase_sr_t01", + "Hero:hid_outlander_punchdamage_sr_t01", + "Hero:hid_outlander_010_sr_t01", + "Hero:hid_outlander_009_sr_t01", + "Hero:hid_outlander_008_sr_t01", + "Hero:hid_outlander_007_sr_t01", + "Hero:hid_outlander_008_foundersf_sr_t01", + "Hero:hid_outlander_008_foundersm_sr_t01", + "Hero:hid_ninja_swordmaster_sr_t01", + "Hero:hid_ninja_starsrainhw_sr_t01", + "Hero:hid_ninja_starsrain_sr_t01", + "Hero:hid_ninja_starsassassin_sr_t01", + "Hero:hid_ninja_smokedimmak_sr_t01", + "Hero:hid_ninja_slashtail_sr_t01", + "Hero:hid_ninja_slashbreath_sr_t01", + "Hero:hid_ninja_010_sr_t01", + "Hero:hid_ninja_009_sr_t01", + "Hero:hid_ninja_008_sr_t01", + "Hero:hid_ninja_007_sr_t01", + "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "Hero:hid_constructor_rushbase_sr_t01", + "Hero:hid_constructor_plasmadamage_sr_t01", + "Hero:hid_constructor_hammertank_sr_t01", + "Hero:hid_constructor_hammerplasma_sr_t01", + "Hero:hid_constructor_basehyperhw_sr_t01", + "Hero:hid_constructor_basehyper_sr_t01", + "Hero:hid_constructor_basebig_sr_t01", + "Hero:hid_constructor_010_sr_t01", + "Hero:hid_constructor_009_sr_t01", + "Hero:hid_constructor_008_sr_t01", + "Hero:hid_constructor_007_sr_t01", + "Hero:hid_constructor_008_foundersf_sr_t01", + "Hero:hid_constructor_008_foundersm_sr_t01", + "Hero:hid_commando_shockdamage_sr_t01", + "Hero:hid_commando_guntough_sr_t01", + "Hero:hid_commando_gunheadshothw_sr_t01", + "Hero:hid_commando_gunheadshot_sr_t01", + "Hero:hid_commando_grenademaster_sr_t01", + "Hero:hid_commando_grenadegun_sr_t01", + "Hero:hid_commando_gcgrenade_sr_t01", + "Hero:hid_commando_010_sr_t01", + "Hero:hid_commando_009_sr_t01", + "Hero:hid_commando_008_sr_t01", + "Hero:hid_commando_007_sr_t01", + "Hero:hid_commando_008_foundersf_sr_t01", + "Hero:hid_commando_008_foundersm_sr_t01" + ], + "ConversionControl:cck_hero_core_consumable_r": [ + "Hero:hid_outlander_zonepistol_r_t01", + "Hero:hid_outlander_zoneharvest_r_t01", + "Hero:hid_outlander_spherefragment_r_t01", + "Hero:hid_outlander_punchphase_r_t01", + "Hero:hid_outlander_009_r_t01", + "Hero:hid_outlander_008_r_t01", + "Hero:hid_outlander_007_r_t01", + "Hero:hid_outlander_sony_r_t01", + "Hero:hid_ninja_starsassassin_r_t01", + "Hero:hid_ninja_smokedimmak_r_t01", + "Hero:hid_ninja_slashtail_r_t01", + "Hero:hid_ninja_slashbreath_r_t01", + "Hero:hid_ninja_009_r_t01", + "Hero:hid_ninja_008_r_t01", + "Hero:hid_ninja_007_r_t01", + "Hero:hid_ninja_sony_r_t01", + "Hero:hid_constructor_rushbase_r_t01", + "Hero:hid_constructor_plasmadamage_r_t01", + "Hero:hid_constructor_hammertank_r_t01", + "Hero:hid_constructor_basehyper_r_t01", + "Hero:hid_constructor_009_r_t01", + "Hero:hid_constructor_008_r_t01", + "Hero:hid_constructor_007_r_t01", + "Hero:hid_constructor_sony_r_t01", + "Hero:hid_commando_shockdamage_r_t01", + "Hero:hid_commando_guntough_r_t01", + "Hero:hid_commando_grenadegun_r_t01", + "Hero:hid_commando_gcgrenade_r_t01", + "Hero:hid_commando_009_r_t01", + "Hero:hid_commando_008_r_t01", + "Hero:hid_commando_007_r_t01", + "Hero:hid_commando_sony_r_t01" + ], + "ConversionControl:cck_hero_core_consumable": [ + "Hero:hid_outlander_zonepistolhw_sr_t01", + "Hero:hid_outlander_zonepistol_sr_t01", + "Hero:hid_outlander_zoneharvest_sr_t01", + "Hero:hid_outlander_zonefragment_sr_t01", + "Hero:hid_outlander_spherefragment_sr_t01", + "Hero:hid_outlander_punchphase_sr_t01", + "Hero:hid_outlander_punchdamage_sr_t01", + "Hero:hid_outlander_010_sr_t01", + "Hero:hid_outlander_009_sr_t01", + "Hero:hid_outlander_008_sr_t01", + "Hero:hid_outlander_007_sr_t01", + "Hero:hid_outlander_008_foundersf_sr_t01", + "Hero:hid_outlander_008_foundersm_sr_t01", + "Hero:hid_ninja_swordmaster_sr_t01", + "Hero:hid_ninja_starsrainhw_sr_t01", + "Hero:hid_ninja_starsrain_sr_t01", + "Hero:hid_ninja_starsassassin_sr_t01", + "Hero:hid_ninja_smokedimmak_sr_t01", + "Hero:hid_ninja_slashtail_sr_t01", + "Hero:hid_ninja_slashbreath_sr_t01", + "Hero:hid_ninja_010_sr_t01", + "Hero:hid_ninja_009_sr_t01", + "Hero:hid_ninja_008_sr_t01", + "Hero:hid_ninja_007_sr_t01", + "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "Hero:hid_constructor_rushbase_sr_t01", + "Hero:hid_constructor_plasmadamage_sr_t01", + "Hero:hid_constructor_hammertank_sr_t01", + "Hero:hid_constructor_hammerplasma_sr_t01", + "Hero:hid_constructor_basehyperhw_sr_t01", + "Hero:hid_constructor_basehyper_sr_t01", + "Hero:hid_constructor_basebig_sr_t01", + "Hero:hid_constructor_010_sr_t01", + "Hero:hid_constructor_009_sr_t01", + "Hero:hid_constructor_008_sr_t01", + "Hero:hid_constructor_007_sr_t01", + "Hero:hid_constructor_008_foundersf_sr_t01", + "Hero:hid_constructor_008_foundersm_sr_t01", + "Hero:hid_commando_shockdamage_sr_t01", + "Hero:hid_commando_guntough_sr_t01", + "Hero:hid_commando_gunheadshothw_sr_t01", + "Hero:hid_commando_gunheadshot_sr_t01", + "Hero:hid_commando_grenademaster_sr_t01", + "Hero:hid_commando_grenadegun_sr_t01", + "Hero:hid_commando_gcgrenade_sr_t01", + "Hero:hid_commando_010_sr_t01", + "Hero:hid_commando_009_sr_t01", + "Hero:hid_commando_008_sr_t01", + "Hero:hid_commando_007_sr_t01", + "Hero:hid_commando_008_foundersf_sr_t01", + "Hero:hid_commando_008_foundersm_sr_t01" + ], + "ConversionControl:cck_hero_constructor_consumable": [ + "Hero:hid_constructor_rushbase_sr_t01", + "Hero:hid_constructor_plasmadamage_sr_t01", + "Hero:hid_constructor_hammertank_sr_t01", + "Hero:hid_constructor_hammerplasma_sr_t01", + "Hero:hid_constructor_basehyperhw_sr_t01", + "Hero:hid_constructor_basehyper_sr_t01", + "Hero:hid_constructor_basebig_sr_t01", + "Hero:hid_constructor_010_sr_t01", + "Hero:hid_constructor_009_sr_t01", + "Hero:hid_constructor_008_sr_t01", + "Hero:hid_constructor_007_sr_t01", + "Hero:hid_constructor_008_foundersf_sr_t01", + "Hero:hid_constructor_008_foundersm_sr_t01" + ], + "ConversionControl:cck_hero_commando_consumable": [ + "Hero:hid_commando_shockdamage_sr_t01", + "Hero:hid_commando_guntough_sr_t01", + "Hero:hid_commando_gunheadshothw_sr_t01", + "Hero:hid_commando_gunheadshot_sr_t01", + "Hero:hid_commando_grenademaster_sr_t01", + "Hero:hid_commando_grenadegun_sr_t01", + "Hero:hid_commando_gcgrenade_sr_t01", + "Hero:hid_commando_010_sr_t01", + "Hero:hid_commando_009_sr_t01", + "Hero:hid_commando_008_sr_t01", + "Hero:hid_commando_007_sr_t01", + "Hero:hid_commando_008_foundersf_sr_t01", + "Hero:hid_commando_008_foundersm_sr_t01" + ], + "ConversionControl:cck_expedition_worker_veryrare": [ + "Worker:workerbasic_vr_t01" + ], + "ConversionControl:cck_expedition_worker_uncommon": [ + "Worker:workerbasic_uc_t01" + ], + "ConversionControl:cck_expedition_worker_superrare": [ + "Worker:workerbasic_sr_t01" + ], + "ConversionControl:cck_expedition_worker_rare": [ + "Worker:workerbasic_r_t01" + ], + "ConversionControl:cck_expedition_worker_common": [ + "Worker:workerbasic_c_t01" + ], + "ConversionControl:cck_expedition_weapon_veryrare": [ + "Schematic:sid_piercing_spear_military_vr_ore_t01", + "Schematic:sid_piercing_spear_laser_vr_ore_t01", + "Schematic:sid_piercing_spear_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_vr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_vr_ore_t01", + "Schematic:sid_edged_sword_medium_vr_ore_t01", + "Schematic:sid_edged_sword_light_vr_ore_t01", + "Schematic:sid_edged_sword_light_founders_vr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_vr_ore_t01", + "Schematic:sid_edged_sword_heavy_founders_vr_ore_t01", + "Schematic:sid_edged_scythe_laser_vr_ore_t01", + "Schematic:sid_edged_scythe_vr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_vr_ore_t01", + "Schematic:sid_edged_axe_medium_vr_ore_t01", + "Schematic:sid_edged_axe_medium_founders_vr_ore_t01", + "Schematic:sid_edged_axe_light_vr_ore_t01", + "Schematic:sid_edged_axe_heavy_vr_ore_t01", + "Schematic:sid_blunt_medium_vr_ore_t01", + "Schematic:sid_blunt_light_vr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_vr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_founders_vr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_vr_ore_t01", + "Schematic:sid_blunt_club_light_vr_ore_t01", + "Schematic:sid_assault_auto_vr_ore_t01", + "Schematic:sid_assault_surgical_vr_ore_t01", + "Schematic:sid_assault_singleshot_vr_ore_t01", + "Schematic:sid_assault_semiauto_vr_ore_t01", + "Schematic:sid_assault_semiauto_founders_vr_ore_t01", + "Schematic:sid_assault_raygun_vr_ore_t01", + "Schematic:sid_assault_lmg_vr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_vr_ore_t01", + "Schematic:sid_assault_doubleshot_vr_ore_t01", + "Schematic:sid_assault_burst_vr_ore_t01", + "Schematic:sid_sniper_tripleshot_vr_ore_t01", + "Schematic:sid_sniper_standard_scope_vr_ore_t01", + "Schematic:sid_sniper_standard_vr_ore_t01", + "Schematic:sid_sniper_standard_founders_vr_ore_t01", + "Schematic:sid_sniper_shredder_vr_ore_t01", + "Schematic:sid_sniper_hydraulic_vr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_vr_ore_t01", + "Schematic:sid_sniper_auto_vr_ore_t01", + "Schematic:sid_sniper_auto_founders_vr_ore_t01", + "Schematic:sid_sniper_amr_vr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_vr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_vr_ore_t01", + "Schematic:sid_shotgun_standard_vr_ore_t01", + "Schematic:sid_shotgun_semiauto_vr_ore_t01", + "Schematic:sid_shotgun_longarm_vr_ore_t01", + "Schematic:sid_shotgun_break_ou_vr_ore_t01", + "Schematic:sid_shotgun_break_vr_ore_t01", + "Schematic:sid_shotgun_auto_vr_ore_t01", + "Schematic:sid_shotgun_auto_founders_vr_ore_t01", + "Schematic:sid_pistol_zapper_vr_ore_t01", + "Schematic:sid_pistol_space_vr_ore_t01", + "Schematic:sid_pistol_semiauto_vr_ore_t01", + "Schematic:sid_pistol_semiauto_founders_vr_ore_t01", + "Schematic:sid_pistol_rapid_vr_ore_t01", + "Schematic:sid_pistol_rapid_founders_vr_ore_t01", + "Schematic:sid_pistol_hydraulic_vr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_vr_ore_t01", + "Schematic:sid_pistol_handcannon_vr_ore_t01", + "Schematic:sid_pistol_handcannon_founders_vr_ore_t01", + "Schematic:sid_pistol_gatling_vr_ore_t01", + "Schematic:sid_pistol_firecracker_vr_ore_t01", + "Schematic:sid_pistol_dragon_vr_ore_t01", + "Schematic:sid_pistol_bolt_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_vr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_vr_ore_t01", + "Schematic:sid_pistol_auto_vr_ore_t01", + "Schematic:sid_launcher_rocket_vr_ore_t01", + "Schematic:sid_launcher_hydraulic_vr_ore_t01", + "Schematic:sid_launcher_grenade_vr_ore_t01" + ], + "ConversionControl:cck_expedition_weapon_uncommon": [ + "Schematic:sid_piercing_spear_uc_ore_t01", + "Schematic:sid_edged_sword_medium_uc_ore_t01", + "Schematic:sid_edged_sword_light_uc_ore_t01", + "Schematic:sid_edged_sword_heavy_uc_ore_t01", + "Schematic:sid_edged_scythe_uc_ore_t01", + "Schematic:sid_edged_axe_medium_uc_ore_t01", + "Schematic:sid_edged_axe_light_uc_ore_t01", + "Schematic:sid_edged_axe_heavy_uc_ore_t01", + "Schematic:sid_blunt_medium_uc_ore_t01", + "Schematic:sid_blunt_tool_light_uc_ore_t01", + "Schematic:sid_blunt_hammer_heavy_uc_ore_t01", + "Schematic:sid_blunt_light_bat_uc_ore_t01", + "Schematic:sid_blunt_light_uc_ore_t01", + "Schematic:sid_blunt_heavy_paddle_uc_ore_t01", + "Schematic:sid_assault_auto_uc_ore_t01", + "Schematic:sid_assault_semiauto_uc_ore_t01", + "Schematic:sid_assault_burst_uc_ore_t01", + "Schematic:sid_sniper_standard_uc_ore_t01", + "Schematic:sid_sniper_boltaction_uc_ore_t01", + "Schematic:sid_sniper_auto_uc_ore_t01", + "Schematic:sid_shotgun_tactical_uc_ore_t01", + "Schematic:sid_shotgun_standard_uc_ore_t01", + "Schematic:sid_shotgun_semiauto_uc_ore_t01", + "Schematic:sid_shotgun_break_ou_uc_ore_t01", + "Schematic:sid_shotgun_break_uc_ore_t01", + "Schematic:sid_shotgun_auto_uc_ore_t01", + "Schematic:sid_pistol_sixshooter_uc_ore_t01", + "Schematic:sid_pistol_semiauto_uc_ore_t01", + "Schematic:sid_pistol_boltrevolver_uc_ore_t01", + "Schematic:sid_pistol_auto_uc_ore_t01" + ], + "ConversionControl:cck_expedition_weapon_superrare": [ + "Schematic:sid_piercing_spear_military_sr_ore_t01", + "Schematic:sid_piercing_spear_laser_sr_ore_t01", + "Schematic:sid_piercing_spear_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_sr_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_sr_ore_t01", + "Schematic:sid_edged_sword_medium_sr_ore_t01", + "Schematic:sid_edged_sword_light_sr_ore_t01", + "Schematic:sid_edged_sword_hydraulic_sr_ore_t01", + "Schematic:sid_edged_sword_heavy_sr_ore_t01", + "Schematic:sid_edged_scythe_laser_sr_ore_t01", + "Schematic:sid_edged_scythe_sr_ore_t01", + "Schematic:sid_edged_axe_medium_laser_sr_ore_t01", + "Schematic:sid_edged_axe_medium_sr_ore_t01", + "Schematic:sid_edged_axe_light_sr_ore_t01", + "Schematic:sid_edged_axe_heavy_sr_ore_t01", + "Schematic:sid_blunt_medium_sr_ore_t01", + "Schematic:sid_blunt_light_sr_ore_t01", + "Schematic:sid_blunt_hammer_rocket_sr_ore_t01", + "Schematic:sid_blunt_hammer_heavy_sr_ore_t01", + "Schematic:sid_blunt_light_rocketbat_sr_ore_t01", + "Schematic:sid_blunt_club_light_sr_ore_t01", + "Schematic:sid_assault_auto_sr_ore_t01", + "Schematic:sid_assault_auto_halloween_sr_ore_t01", + "Schematic:sid_assault_auto_founders_sr_ore_t01", + "Schematic:sid_assault_surgical_sr_ore_t01", + "Schematic:sid_assault_singleshot_sr_ore_t01", + "Schematic:sid_assault_semiauto_sr_ore_t01", + "Schematic:sid_assault_raygun_sr_ore_t01", + "Schematic:sid_assault_lmg_sr_ore_t01", + "Schematic:sid_assault_lmg_drum_founders_sr_ore_t01", + "Schematic:sid_assault_hydra_sr_ore_t01", + "Schematic:sid_assault_doubleshot_sr_ore_t01", + "Schematic:sid_assault_burst_sr_ore_t01", + "Schematic:sid_sniper_tripleshot_sr_ore_t01", + "Schematic:sid_sniper_standard_scope_sr_ore_t01", + "Schematic:sid_sniper_standard_sr_ore_t01", + "Schematic:sid_sniper_shredder_sr_ore_t01", + "Schematic:sid_sniper_hydraulic_sr_ore_t01", + "Schematic:sid_sniper_boltaction_scope_sr_ore_t01", + "Schematic:sid_sniper_auto_sr_ore_t01", + "Schematic:sid_sniper_amr_sr_ore_t01", + "Schematic:sid_shotgun_tactical_precision_sr_ore_t01", + "Schematic:sid_shotgun_tactical_founders_sr_ore_t01", + "Schematic:sid_shotgun_standard_sr_ore_t01", + "Schematic:sid_shotgun_semiauto_sr_ore_t01", + "Schematic:sid_shotgun_minigun_sr_ore_t01", + "Schematic:sid_shotgun_longarm_sr_ore_t01", + "Schematic:sid_shotgun_heavy_sr_ore_t01", + "Schematic:sid_shotgun_break_ou_sr_ore_t01", + "Schematic:sid_shotgun_break_sr_ore_t01", + "Schematic:sid_shotgun_auto_sr_ore_t01", + "Schematic:sid_pistol_zapper_sr_ore_t01", + "Schematic:sid_pistol_space_sr_ore_t01", + "Schematic:sid_pistol_semiauto_sr_ore_t01", + "Schematic:sid_pistol_rocket_sr_ore_t01", + "Schematic:sid_pistol_rapid_sr_ore_t01", + "Schematic:sid_pistol_hydraulic_sr_ore_t01", + "Schematic:sid_pistol_handcannon_semi_sr_ore_t01", + "Schematic:sid_pistol_handcannon_sr_ore_t01", + "Schematic:sid_pistol_gatling_sr_ore_t01", + "Schematic:sid_pistol_firecracker_sr_ore_t01", + "Schematic:sid_pistol_dragon_sr_ore_t01", + "Schematic:sid_pistol_bolt_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_sr_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_sr_ore_t01", + "Schematic:sid_pistol_auto_sr_ore_t01", + "Schematic:sid_launcher_rocket_sr_ore_t01", + "Schematic:sid_launcher_pumpkin_rpg_sr_ore_t01", + "Schematic:sid_launcher_hydraulic_sr_ore_t01", + "Schematic:sid_launcher_grenade_sr_ore_t01" + ], + "ConversionControl:cck_expedition_weapon_rare": [ + "Schematic:sid_piercing_spear_military_r_ore_t01", + "Schematic:sid_piercing_spear_r_ore_t01", + "Schematic:sid_edged_sword_medium_laser_founders_r_ore_t01", + "Schematic:sid_edged_sword_medium_r_ore_t01", + "Schematic:sid_edged_sword_light_r_ore_t01", + "Schematic:sid_edged_sword_heavy_r_ore_t01", + "Schematic:sid_edged_scythe_r_ore_t01", + "Schematic:sid_edged_axe_medium_r_ore_t01", + "Schematic:sid_edged_axe_light_r_ore_t01", + "Schematic:sid_edged_axe_heavy_r_ore_t01", + "Schematic:sid_blunt_medium_r_ore_t01", + "Schematic:sid_blunt_tool_light_r_ore_t01", + "Schematic:sid_blunt_hammer_heavy_r_ore_t01", + "Schematic:sid_blunt_light_bat_r_ore_t01", + "Schematic:sid_blunt_light_r_ore_t01", + "Schematic:sid_blunt_heavy_paddle_r_ore_t01", + "Schematic:sid_assault_auto_r_ore_t01", + "Schematic:sid_assault_singleshot_r_ore_t01", + "Schematic:sid_assault_semiauto_r_ore_t01", + "Schematic:sid_assault_surgical_drum_founders_r_ore_t01", + "Schematic:sid_assault_lmg_r_ore_t01", + "Schematic:sid_assault_burst_r_ore_t01", + "Schematic:sid_sniper_standard_r_ore_t01", + "Schematic:sid_sniper_boltaction_scope_r_ore_t01", + "Schematic:sid_sniper_boltaction_r_ore_t01", + "Schematic:sid_sniper_auto_r_ore_t01", + "Schematic:sid_sniper_amr_r_ore_t01", + "Schematic:sid_shotgun_tactical_precision_r_ore_t01", + "Schematic:sid_shotgun_tactical_r_ore_t01", + "Schematic:sid_shotgun_tactical_founders_r_ore_t01", + "Schematic:sid_shotgun_standard_r_ore_t01", + "Schematic:sid_shotgun_semiauto_r_ore_t01", + "Schematic:sid_shotgun_break_ou_r_ore_t01", + "Schematic:sid_shotgun_break_r_ore_t01", + "Schematic:sid_shotgun_auto_r_ore_t01", + "Schematic:sid_pistol_sixshooter_r_ore_t01", + "Schematic:sid_pistol_semiauto_r_ore_t01", + "Schematic:sid_pistol_rapid_r_ore_t01", + "Schematic:sid_pistol_handcannon_semi_r_ore_t01", + "Schematic:sid_pistol_handcannon_r_ore_t01", + "Schematic:sid_pistol_firecracker_r_ore_t01", + "Schematic:sid_pistol_boltrevolver_r_ore_t01", + "Schematic:sid_pistol_autoheavy_r_ore_t01", + "Schematic:sid_pistol_autoheavy_founders_r_ore_t01", + "Schematic:sid_pistol_auto_r_ore_t01", + "Schematic:sid_launcher_rocket_r_ore_t01", + "Schematic:sid_launcher_grenade_r_ore_t01" + ], + "ConversionControl:cck_expedition_weapon_common": [ + "Schematic:sid_piercing_spear_c_ore_t01", + "Schematic:sid_edged_sword_medium_c_ore_t01", + "Schematic:sid_edged_sword_light_c_ore_t01", + "Schematic:sid_edged_sword_heavy_c_ore_t01", + "Schematic:sid_edged_scythe_c_ore_t01", + "Schematic:sid_edged_axe_medium_c_ore_t01", + "Schematic:sid_edged_axe_light_c_ore_t01", + "Schematic:sid_edged_axe_heavy_c_ore_t01", + "Schematic:sid_blunt_medium_c_ore_t01", + "Schematic:sid_blunt_hammer_heavy_c_ore_t01", + "Schematic:sid_blunt_light_c_ore_t01", + "Schematic:sid_blunt_heavy_paddle_c_ore_t01", + "Schematic:sid_assault_auto_c_ore_t01", + "Schematic:sid_assault_semiauto_c_ore_t01", + "Schematic:sid_assault_burst_c_ore_t01", + "Schematic:sid_sniper_standard_c_ore_t01", + "Schematic:sid_sniper_boltaction_c_ore_t01", + "Schematic:sid_shotgun_tactical_c_ore_t01", + "Schematic:sid_shotgun_standard_c_ore_t01", + "Schematic:sid_shotgun_break_c_ore_t01", + "Schematic:sid_pistol_sixshooter_c_ore_t01", + "Schematic:sid_pistol_semiauto_c_ore_t01", + "Schematic:sid_pistol_boltrevolver_c_ore_t01", + "Schematic:sid_pistol_auto_c_ore_t01" + ], + "ConversionControl:cck_expedition_trap_veryrare": [ + "Schematic:sid_wall_wood_spikes_vr_t01", + "Schematic:sid_wall_light_vr_t01", + "Schematic:sid_wall_launcher_vr_t01", + "Schematic:sid_wall_electric_vr_t01", + "Schematic:sid_wall_darts_vr_t01", + "Schematic:sid_floor_ward_vr_t01", + "Schematic:sid_floor_spikes_wood_vr_t01", + "Schematic:sid_floor_spikes_vr_t01", + "Schematic:sid_floor_launcher_vr_t01", + "Schematic:sid_floor_health_vr_t01", + "Schematic:sid_ceiling_gas_vr_t01", + "Schematic:sid_ceiling_electric_single_vr_t01", + "Schematic:sid_ceiling_electric_aoe_vr_t01" + ], + "ConversionControl:cck_expedition_trap_uncommon": [ + "Schematic:sid_wall_wood_spikes_uc_t01", + "Schematic:sid_wall_launcher_uc_t01", + "Schematic:sid_wall_electric_uc_t01", + "Schematic:sid_wall_darts_uc_t01", + "Schematic:sid_floor_ward_uc_t01", + "Schematic:sid_floor_spikes_wood_uc_t01", + "Schematic:sid_floor_spikes_uc_t01", + "Schematic:sid_floor_launcher_uc_t01", + "Schematic:sid_floor_health_uc_t01", + "Schematic:sid_ceiling_gas_uc_t01", + "Schematic:sid_ceiling_electric_single_uc_t01" + ], + "ConversionControl:cck_expedition_trap_superrare": [ + "Schematic:sid_wall_wood_spikes_sr_t01", + "Schematic:sid_wall_light_sr_t01", + "Schematic:sid_wall_launcher_sr_t01", + "Schematic:sid_wall_electric_sr_t01", + "Schematic:sid_wall_darts_sr_t01", + "Schematic:sid_floor_ward_sr_t01", + "Schematic:sid_floor_spikes_wood_sr_t01", + "Schematic:sid_floor_spikes_sr_t01", + "Schematic:sid_floor_launcher_sr_t01", + "Schematic:sid_floor_health_sr_t01", + "Schematic:sid_ceiling_gas_sr_t01", + "Schematic:sid_ceiling_electric_single_sr_t01", + "Schematic:sid_ceiling_electric_aoe_sr_t01" + ], + "ConversionControl:cck_expedition_trap_rare": [ + "Schematic:sid_wall_wood_spikes_r_t01", + "Schematic:sid_wall_light_r_t01", + "Schematic:sid_wall_launcher_r_t01", + "Schematic:sid_wall_electric_r_t01", + "Schematic:sid_wall_darts_r_t01", + "Schematic:sid_floor_ward_r_t01", + "Schematic:sid_floor_spikes_wood_r_t01", + "Schematic:sid_floor_spikes_r_t01", + "Schematic:sid_floor_launcher_r_t01", + "Schematic:sid_floor_health_r_t01", + "Schematic:sid_ceiling_gas_r_t01", + "Schematic:sid_ceiling_electric_single_r_t01", + "Schematic:sid_ceiling_electric_aoe_r_t01" + ], + "ConversionControl:cck_expedition_trap_common": [ + "Schematic:sid_wall_wood_spikes_c_t01", + "Schematic:sid_floor_spikes_wood_c_t01", + "Schematic:sid_ceiling_electric_single_c_t01" + ], + "ConversionControl:cck_expedition_manager_veryrare": [ + "Worker:managerquestdoctor_r_t01", + "Worker:managertrainer_r_t01", + "Worker:managersoldier_r_t01", + "Worker:managermartialartist_r_t01", + "Worker:managerinventor_r_t01", + "Worker:managergadgeteer_r_t01", + "Worker:managerexplorer_r_t01", + "Worker:managerengineer_r_t01", + "Worker:managerdoctor_r_t01" + ], + "ConversionControl:cck_expedition_manager_unique": [ + "Worker:managertrainer_sr_yoglattes_t01", + "Worker:managertrainer_sr_raider_t01", + "Worker:managertrainer_sr_jumpy_t01", + "Worker:managersoldier_sr_ramsie_t01", + "Worker:managersoldier_sr_princess_t01", + "Worker:managersoldier_sr_malcolm_t01", + "Worker:managermartialartist_sr_tiger_t01", + "Worker:managermartialartist_sr_samurai_t01", + "Worker:managermartialartist_sr_dragon_t01", + "Worker:managerinventor_sr_square_t01", + "Worker:managerinventor_sr_rad_t01", + "Worker:managerinventor_sr_frequency_t01", + "Worker:managergadgeteer_sr_zapps_t01", + "Worker:managergadgeteer_sr_flak_t01", + "Worker:managergadgeteer_sr_fixer_t01", + "Worker:managerexplorer_sr_spacebound_t01", + "Worker:managerexplorer_sr_eagle_t01", + "Worker:managerexplorer_sr_birdie_t01", + "Worker:managerengineer_sr_sobs_t01", + "Worker:managerengineer_sr_maths_t01", + "Worker:managerengineer_sr_countess_t01", + "Worker:managerdoctor_sr_treky_t01", + "Worker:managerdoctor_sr_noctor_t01", + "Worker:managerdoctor_sr_kingsly_t01" + ], + "ConversionControl:cck_expedition_manager_uncommon": [ + "Worker:managertrainer_c_t01", + "Worker:managersoldier_c_t01", + "Worker:managermartialartist_c_t01", + "Worker:managerinventor_c_t01", + "Worker:managergadgeteer_c_t01", + "Worker:managerexplorer_c_t01", + "Worker:managerengineer_c_t01", + "Worker:managerdoctor_c_t01" + ], + "ConversionControl:cck_expedition_manager_superrare": [ + "Worker:managertrainer_vr_t01", + "Worker:managersoldier_vr_t01", + "Worker:managermartialartist_vr_t01", + "Worker:managerinventor_vr_t01", + "Worker:managergadgeteer_vr_t01", + "Worker:managerexplorer_vr_t01", + "Worker:managerengineer_vr_t01", + "Worker:managerdoctor_vr_t01" + ], + "ConversionControl:cck_expedition_manager_rare": [ + "Worker:managertrainer_uc_t01", + "Worker:managersoldier_uc_t01", + "Worker:managermartialartist_uc_t01", + "Worker:managerinventor_uc_t01", + "Worker:managergadgeteer_uc_t01", + "Worker:managerexplorer_uc_t01", + "Worker:managerengineer_uc_t01", + "Worker:managerdoctor_uc_t01" + ], + "ConversionControl:cck_expedition_hero_veryrare": [ + "Hero:hid_outlander_zonepistol_vr_t01", + "Hero:hid_outlander_zoneharvest_vr_t01", + "Hero:hid_outlander_spherefragment_vr_t01", + "Hero:hid_outlander_punchphase_vr_t01", + "Hero:hid_outlander_punchdamage_vr_t01", + "Hero:hid_outlander_010_vr_t01", + "Hero:hid_outlander_009_vr_t01", + "Hero:hid_outlander_008_vr_t01", + "Hero:hid_outlander_007_vr_t01", + "Hero:hid_ninja_starsrain_vr_t01", + "Hero:hid_ninja_starsassassin_vr_t01", + "Hero:hid_ninja_smokedimmak_vr_t01", + "Hero:hid_ninja_slashtail_vr_t01", + "Hero:hid_ninja_slashbreath_vr_t01", + "Hero:hid_ninja_010_vr_t01", + "Hero:hid_ninja_009_vr_t01", + "Hero:hid_ninja_008_vr_t01", + "Hero:hid_ninja_007_vr_t01", + "Hero:hid_constructor_rushbase_vr_t01", + "Hero:hid_constructor_plasmadamage_vr_t01", + "Hero:hid_constructor_hammertank_vr_t01", + "Hero:hid_constructor_hammerplasma_vr_t01", + "Hero:hid_constructor_basehyper_vr_t01", + "Hero:hid_constructor_010_vr_t01", + "Hero:hid_constructor_009_vr_t01", + "Hero:hid_constructor_008_vr_t01", + "Hero:hid_constructor_007_vr_t01", + "Hero:hid_commando_shockdamage_vr_t01", + "Hero:hid_commando_guntough_vr_t01", + "Hero:hid_commando_gunheadshot_vr_t01", + "Hero:hid_commando_grenadegun_vr_t01", + "Hero:hid_commando_gcgrenade_vr_t01", + "Hero:hid_commando_010_vr_t01", + "Hero:hid_commando_009_vr_t01", + "Hero:hid_commando_008_vr_t01", + "Hero:hid_commando_007_vr_t01" + ], + "ConversionControl:cck_expedition_hero_uncommon": [ + "Hero:hid_outlander_zoneharvest_uc_t01", + "Hero:hid_outlander_punchphase_uc_t01", + "Hero:hid_outlander_007_uc_t01", + "Hero:hid_ninja_starsassassin_uc_t01", + "Hero:hid_ninja_slashtail_uc_t01", + "Hero:hid_ninja_007_uc_t01", + "Hero:hid_constructor_rushbase_uc_t01", + "Hero:hid_constructor_hammertank_uc_t01", + "Hero:hid_constructor_007_uc_t01", + "Hero:hid_commando_grenadegun_uc_t01", + "Hero:hid_commando_guntough_uc_t01", + "Hero:hid_commando_007_uc_t01" + ], + "ConversionControl:cck_expedition_hero_superrare": [ + "Hero:hid_outlander_zonepistolhw_sr_t01", + "Hero:hid_outlander_zonepistol_sr_t01", + "Hero:hid_outlander_zoneharvest_sr_t01", + "Hero:hid_outlander_zonefragment_sr_t01", + "Hero:hid_outlander_spherefragment_sr_t01", + "Hero:hid_outlander_punchphase_sr_t01", + "Hero:hid_outlander_punchdamage_sr_t01", + "Hero:hid_outlander_010_sr_t01", + "Hero:hid_outlander_009_sr_t01", + "Hero:hid_outlander_008_sr_t01", + "Hero:hid_outlander_007_sr_t01", + "Hero:hid_outlander_008_foundersf_sr_t01", + "Hero:hid_outlander_008_foundersm_sr_t01", + "Hero:hid_ninja_swordmaster_sr_t01", + "Hero:hid_ninja_starsrainhw_sr_t01", + "Hero:hid_ninja_starsrain_sr_t01", + "Hero:hid_ninja_starsassassin_sr_t01", + "Hero:hid_ninja_smokedimmak_sr_t01", + "Hero:hid_ninja_slashtail_sr_t01", + "Hero:hid_ninja_slashbreath_sr_t01", + "Hero:hid_ninja_010_sr_t01", + "Hero:hid_ninja_009_sr_t01", + "Hero:hid_ninja_008_sr_t01", + "Hero:hid_ninja_007_sr_t01", + "Hero:hid_ninja_starsassassin_foundersf_sr_t01", + "Hero:hid_ninja_starsassassin_foundersm_sr_t01", + "Hero:hid_constructor_rushbase_sr_t01", + "Hero:hid_constructor_plasmadamage_sr_t01", + "Hero:hid_constructor_hammertank_sr_t01", + "Hero:hid_constructor_hammerplasma_sr_t01", + "Hero:hid_constructor_basehyperhw_sr_t01", + "Hero:hid_constructor_basehyper_sr_t01", + "Hero:hid_constructor_basebig_sr_t01", + "Hero:hid_constructor_010_sr_t01", + "Hero:hid_constructor_009_sr_t01", + "Hero:hid_constructor_008_sr_t01", + "Hero:hid_constructor_007_sr_t01", + "Hero:hid_constructor_008_foundersf_sr_t01", + "Hero:hid_constructor_008_foundersm_sr_t01", + "Hero:hid_commando_shockdamage_sr_t01", + "Hero:hid_commando_guntough_sr_t01", + "Hero:hid_commando_gunheadshothw_sr_t01", + "Hero:hid_commando_gunheadshot_sr_t01", + "Hero:hid_commando_grenademaster_sr_t01", + "Hero:hid_commando_grenadegun_sr_t01", + "Hero:hid_commando_gcgrenade_sr_t01", + "Hero:hid_commando_010_sr_t01", + "Hero:hid_commando_009_sr_t01", + "Hero:hid_commando_008_sr_t01", + "Hero:hid_commando_007_sr_t01", + "Hero:hid_commando_008_foundersf_sr_t01", + "Hero:hid_commando_008_foundersm_sr_t01" + ], + "ConversionControl:cck_expedition_hero_rare": [ + "Hero:hid_outlander_zonepistol_r_t01", + "Hero:hid_outlander_zoneharvest_r_t01", + "Hero:hid_outlander_spherefragment_r_t01", + "Hero:hid_outlander_punchphase_r_t01", + "Hero:hid_outlander_009_r_t01", + "Hero:hid_outlander_008_r_t01", + "Hero:hid_outlander_007_r_t01", + "Hero:hid_outlander_sony_r_t01", + "Hero:hid_ninja_starsassassin_r_t01", + "Hero:hid_ninja_smokedimmak_r_t01", + "Hero:hid_ninja_slashtail_r_t01", + "Hero:hid_ninja_slashbreath_r_t01", + "Hero:hid_ninja_009_r_t01", + "Hero:hid_ninja_008_r_t01", + "Hero:hid_ninja_007_r_t01", + "Hero:hid_ninja_sony_r_t01", + "Hero:hid_constructor_rushbase_r_t01", + "Hero:hid_constructor_plasmadamage_r_t01", + "Hero:hid_constructor_hammertank_r_t01", + "Hero:hid_constructor_basehyper_r_t01", + "Hero:hid_constructor_009_r_t01", + "Hero:hid_constructor_008_r_t01", + "Hero:hid_constructor_007_r_t01", + "Hero:hid_constructor_sony_r_t01", + "Hero:hid_commando_shockdamage_r_t01", + "Hero:hid_commando_guntough_r_t01", + "Hero:hid_commando_grenadegun_r_t01", + "Hero:hid_commando_gcgrenade_r_t01", + "Hero:hid_commando_009_r_t01", + "Hero:hid_commando_008_r_t01", + "Hero:hid_commando_007_r_t01", + "Hero:hid_commando_sony_r_t01" + ], + "ConversionControl:cck_expedition_defender_veryrare": [ + "Defender:did_defendersniper_basic_vr_t01", + "Defender:did_defendershotgun_basic_vr_t01", + "Defender:did_defenderpistol_basic_vr_t01", + "Defender:did_defendermelee_basic_vr_t01", + "Defender:did_defenderassault_basic_vr_t01", + "Defender:did_defenderassault_founders_vr_t01", + "Defender:did_defenderpistol_founders_vr_t01" + ], + "ConversionControl:cck_expedition_defender_uncommon": [ + "Defender:did_defendersniper_basic_uc_t01", + "Defender:did_defendershotgun_basic_uc_t01", + "Defender:did_defenderpistol_basic_uc_t01", + "Defender:did_defendermelee_basic_uc_t01", + "Defender:did_defenderassault_basic_uc_t01" + ], + "ConversionControl:cck_expedition_defender_superrare": [ + "Defender:did_defendersniper_basic_sr_t01", + "Defender:did_defendershotgun_basic_sr_t01", + "Defender:did_defenderpistol_basic_sr_t01", + "Defender:did_defendermelee_basic_sr_t01", + "Defender:did_defenderassault_basic_sr_t01" + ], + "ConversionControl:cck_expedition_defender_rare": [ + "Defender:did_defendersniper_basic_r_t01", + "Defender:did_defendershotgun_basic_r_t01", + "Defender:did_defenderpistol_basic_r_t01", + "Defender:did_defendermelee_basic_r_t01", + "Defender:did_defenderassault_basic_r_t01" + ], + "ConversionControl:cck_defender_core_unlimited": [ + "Defender:did_defendersniper_basic_r_t01", + "Defender:did_defendershotgun_basic_r_t01", + "Defender:did_defenderpistol_basic_r_t01", + "Defender:did_defendermelee_basic_r_t01", + "Defender:did_defenderassault_basic_r_t01" + ], + "ConversionControl:cck_defender_core_consumable_vr": [ + "Defender:did_defendersniper_basic_vr_t01", + "Defender:did_defendershotgun_basic_vr_t01", + "Defender:did_defenderpistol_basic_vr_t01", + "Defender:did_defendermelee_basic_vr_t01", + "Defender:did_defenderassault_basic_vr_t01", + "Defender:did_defenderassault_founders_vr_t01", + "Defender:did_defenderpistol_founders_vr_t01" + ], + "ConversionControl:cck_defender_core_consumable_uc": [ + "Defender:did_defendersniper_basic_uc_t01", + "Defender:did_defendershotgun_basic_uc_t01", + "Defender:did_defenderpistol_basic_uc_t01", + "Defender:did_defendermelee_basic_uc_t01", + "Defender:did_defenderassault_basic_uc_t01" + ], + "ConversionControl:cck_defender_core_consumable_sr": [ + "Defender:did_defendersniper_basic_sr_t01", + "Defender:did_defendershotgun_basic_sr_t01", + "Defender:did_defenderpistol_basic_sr_t01", + "Defender:did_defendermelee_basic_sr_t01", + "Defender:did_defenderassault_basic_sr_t01" + ], + "ConversionControl:cck_defender_core_consumable_r": [ + "Defender:did_defendersniper_basic_r_t01", + "Defender:did_defendershotgun_basic_r_t01", + "Defender:did_defenderpistol_basic_r_t01", + "Defender:did_defendermelee_basic_r_t01", + "Defender:did_defenderassault_basic_r_t01" + ], + "ConversionControl:cck_defender_core_consumable_c": [ + "Defender:did_defendersniper_basic_c_t01", + "Defender:did_defendershotgun_basic_c_t01", + "Defender:did_defenderpistol_basic_c_t01", + "Defender:did_defendermelee_basic_c_t01", + "Defender:did_defenderassault_basic_c_t01" + ], + "ConversionControl:cck_defender_core_consumable": [ + "Defender:did_defendersniper_basic_sr_t01", + "Defender:did_defendershotgun_basic_sr_t01", + "Defender:did_defenderpistol_basic_sr_t01", + "Defender:did_defendermelee_basic_sr_t01", + "Defender:did_defenderassault_basic_sr_t01" + ] +} \ No newline at end of file diff --git a/lawin/responses/Campaign/worldstw.json b/lawin/responses/Campaign/worldstw.json new file mode 100644 index 0000000..e559bb4 --- /dev/null +++ b/lawin/responses/Campaign/worldstw.json @@ -0,0 +1,62801 @@ +{ + "theaters": [ + { + "displayName": { + "de": "Steinwald", + "ru": "Камнелесье", + "ko": "스톤우드", + "zh-hant": "荒木石林", + "pt-br": "Floresta Pétrea", + "en": "Stonewood", + "it": "Pietralegno", + "fr": "Fontainebois", + "zh-cn": "荒木石林", + "es": "Bosque Pedregoso", + "ar": "ستون وود", + "ja": "ストーンウッド", + "pl": "Kamienny Las", + "es-419": "Bosque Pedregoso", + "tr": "Taşlıorman" + }, + "uniqueId": "33A2311D4AE64B361CCE27BC9F313C8B", + "theaterSlot": 0, + "bIsTestTheater": false, + "description": { + "de": "Fange von hier aus an. Herausfordernde Gegner und motivierendes Gameplay.", + "ru": "Начните здесь. Опасные враги и достойные награды.", + "ko": "최초 시작 지점입니다. 적에게 도전하고 보상을 받으세요.", + "zh-hant": "在此開始。難纏的敵人和獎勵多多的遊戲。", + "pt-br": "Comece aqui. Inimigos desafiadores e jogabilidade recompensadora.", + "en": "Start here. Challenging enemies and rewarding gameplay.", + "it": "Inizia qui. Nemici impegnativi e meccaniche di gioco appaganti.", + "fr": "Commencez ici. Des ennemis difficiles mais une expérience gratifiante.", + "zh-cn": "在此开始。难缠的敌人和奖励多多的游戏。", + "es": "Empieza aquí. Enemigos peligrosos y juego gratificante.", + "ar": "ابدأ من هنا. أعداءٌ أقوياء ونظام لعبٍ مُربِح.", + "ja": "さあ始めよう。手強い敵と報酬が待っている。", + "pl": "Zacznij tutaj. Wrogowie stanowiący wyzwanie oraz satysfakcjonująca rozgrywka.", + "es-419": "Comienza aquí. Enemigos difíciles y experiencia de juego gratificante.", + "tr": "Buradan başla. Zorlayıcı rakipler ve ödüllendirici oynanış." + }, + "runtimeInfo": { + "theaterType": "Standard", + "theaterTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01" + } + ] + }, + "theaterVisibilityRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "worldMapPinClass": "BlueprintGeneratedClass'/Game/Environments/WorldMap/Blueprints/WM_PinEasy.WM_PinEasy_C'", + "theaterImage": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_normal_.Icon-TheaterDifficulty-_normal_'", + "theaterImages": { + "brush_XXS": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_normal_.Icon-TheaterDifficulty-_normal_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_XS": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_normal_.Icon-TheaterDifficulty-_normal_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_S": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_normal_.Icon-TheaterDifficulty-_normal_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_M": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_normal_.Icon-TheaterDifficulty-_normal_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_L": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_normal_.Icon-TheaterDifficulty-_normal_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_XL": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_normal_.Icon-TheaterDifficulty-_normal_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + } + }, + "theaterColorInfo": { + "bUseDifficultyToDetermineColor": false, + "color": { + "specifiedColor": { + "r": 0.5209959745407104, + "g": 1, + "b": 0.01298299990594387, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + } + }, + "socket": "PvE_01", + "missionAlertRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + "tiles": [ + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_HT_EvacuateTheSurvivors.MissionGen_T1_HT_EvacuateTheSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_BuildtheRadarGrid.MissionGen_BuildtheRadarGrid_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_LT_LtB.MissionGen_T1_LT_LtB_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_LtR.MissionGen_T1_VHT_LtR_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_HT_LtB.MissionGen_T1_HT_LtB_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_1Gate.MissionGen_1Gate_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_HT_RtD.MissionGen_T1_HT_RtD_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_MT_Cat1FtS.MissionGen_T1_MT_Cat1FtS_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_HT_LtB.MissionGen_T1_HT_LtB_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_MT_RtD.MissionGen_T1_MT_RtD_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_HT_Cat1FtS.MissionGen_T1_HT_Cat1FtS_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_LtB.MissionGen_T1_VHT_LtB_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_Cat1FtS.MissionGen_T1_VHT_Cat1FtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_RtD.MissionGen_T1_VHT_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_LtB.MissionGen_T1_VHT_LtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_EvacuateTheSurvivors.MissionGen_T1_VHT_EvacuateTheSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_BuildtheRadarGrid.MissionGen_BuildtheRadarGrid_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_DestroyTheEncampments.MissionGen_DestroyTheEncampments_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_Cat1FtS.MissionGen_T1_VHT_Cat1FtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_LtB.MissionGen_T1_VHT_LtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_RtD.MissionGen_T1_VHT_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_EvacuateTheSurvivors.MissionGen_T1_VHT_EvacuateTheSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_BuildtheRadarGrid.MissionGen_BuildtheRadarGrid_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_1Gate_VLT.MissionGen_1Gate_VLT_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Onboarding/BP_ZT_Onboarding_Grasslands_a.BP_ZT_Onboarding_Grasslands_a_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_RetrieveTheData_NoSecondary.MissionGen_RetrieveTheData_NoSecondary_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "CriticalMission", + "zoneTheme": "/Game/World/ZoneThemes/CriticalMission/BP_ZT_CriticalMission.BP_ZT_CriticalMission_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_EvacuateTheSurvivors.MissionGen_EvacuateTheSurvivors_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_LT_Cat1FtS.MissionGen_T1_LT_Cat1FtS_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "None" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_RtD.MissionGen_T1_VHT_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_Cat1FtS.MissionGen_T1_VHT_Cat1FtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_LtB.MissionGen_T1_VHT_LtB_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Onboarding/BP_ZT_Onboarding_Forest_a.BP_ZT_Onboarding_Forest_a_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_LaunchTheBalloon_NoSecondary.MissionGen_LaunchTheBalloon_NoSecondary_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Outposts/BP_ZT_Homebase_06.BP_ZT_Homebase_06_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Outpost", + "zoneTheme": "/Game/World/ZoneThemes/Outposts/BP_ZT_TheOutpost_PvE_01.BP_ZT_TheOutpost_PvE_01_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_TheOutpost_PvE_01.MissionGen_TheOutpost_PvE_01_C" + } + ], + "difficultyWeightOverrides": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Outpost1" + } + } + ], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Onboarding/BP_ZT_Onboarding_Suburban_a.BP_ZT_Onboarding_Suburban_a_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_1GateNoBonus.MissionGen_1GateNoBonus_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_MT_LtB.MissionGen_T1_MT_LtB_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Outposts/BP_ZT_Homebase_02.BP_ZT_Homebase_02_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Outposts/BP_ZT_Homebase_03.BP_ZT_Homebase_03_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Outposts/BP_ZT_Homebase_05.BP_ZT_Homebase_05_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Outposts/BP_ZT_Homebase_07.BP_ZT_Homebase_07_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + } + ], + "regions": [ + { + "displayName": "PvE_01_Difficulty_04", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty04" + } + ] + }, + "tileIndices": [ + 0, + 14, + 18, + 20 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_1Gate.MissionGen_1Gate_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_RetrieveTheData.MissionGen_RetrieveTheData_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_LaunchTheBalloon.MissionGen_LaunchTheBalloon_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone4" + } + } + ], + "numMissionsAvailable": 4, + "numMissionsToChange": 4, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_01_Difficulty_04_Hard", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty04" + } + ] + }, + "tileIndices": [ + 1 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_HT_Cat1FtS.MissionGen_T1_HT_Cat1FtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_HT_LtB.MissionGen_T1_HT_LtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_HT_RtD.MissionGen_T1_HT_RtD_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + } + } + ], + "numMissionsAvailable": 1, + "numMissionsToChange": 1, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Non Mission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 2, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 13, + 15, + 25, + 26, + 27, + 31, + 32, + 33, + 34, + 35, + 39, + 40, + 41, + 42, + 43, + 44, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 62, + 63, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_01_Difficulty_02", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty02" + } + ] + }, + "tileIndices": [ + 3, + 29, + 38 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_1Gate.MissionGen_1Gate_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_RetrieveTheData.MissionGen_RetrieveTheData_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone2" + } + } + ], + "numMissionsAvailable": 3, + "numMissionsToChange": 3, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_01_Difficulty_05", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty05" + } + ] + }, + "tileIndices": [ + 8, + 21, + 22, + 23, + 24, + 45 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_1Gate.MissionGen_1Gate_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_2Gates.MissionGen_2Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_RetrieveTheData.MissionGen_RetrieveTheData_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_LaunchTheBalloon.MissionGen_LaunchTheBalloon_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + } + } + ], + "numMissionsAvailable": 4, + "numMissionsToChange": 4, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_01_Difficulty_05_Hard", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty05" + } + ] + }, + "tileIndices": [ + 12, + 30 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_Cat1FtS.MissionGen_T1_VHT_Cat1FtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_LtB.MissionGen_T1_VHT_LtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_RtD.MissionGen_T1_VHT_RtD_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + } + } + ], + "numMissionsAvailable": 2, + "numMissionsToChange": 2, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_01_Difficulty_03_Hard", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty03" + } + ] + }, + "tileIndices": [ + 16 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_MT_Cat1FtS.MissionGen_T1_MT_Cat1FtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_MT_RtD.MissionGen_T1_MT_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_MT_LtB.MissionGen_T1_MT_LtB_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone4" + } + } + ], + "numMissionsAvailable": 1, + "numMissionsToChange": 1, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_01_Difficulty_03", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty03" + } + ] + }, + "tileIndices": [ + 17, + 19, + 37, + 86 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_1Gate.MissionGen_1Gate_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_RetrieveTheData.MissionGen_RetrieveTheData_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone3" + } + } + ], + "numMissionsAvailable": 3, + "numMissionsToChange": 3, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_01_Difficulty_01", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty01" + } + ] + }, + "tileIndices": [ + 28, + 61, + 65 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_1Gate.MissionGen_1Gate_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_RetrieveTheData.MissionGen_RetrieveTheData_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone1" + } + } + ], + "numMissionsAvailable": 2, + "numMissionsToChange": 2, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Critical Mission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 36 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Outpost", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 64 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": { + "de": "Plankerton", + "ru": "Планкертон", + "ko": "플랭커튼", + "zh-hant": "普蘭克頓", + "pt-br": "Plankerton", + "en": "Plankerton", + "it": "Tavolaccia", + "fr": "Villeplanche", + "zh-cn": "普兰克顿", + "es": "Villatablón", + "ar": "بلانكرتون", + "ja": "プランカートン", + "pl": "Deskogród", + "es-419": "Ciudad Tablón", + "tr": "Kalaslıevler" + }, + "uniqueId": "D477605B4FA48648107B649CE97FCF27", + "theaterSlot": 0, + "bIsTestTheater": false, + "description": { + "de": "In Plankerton erwarten dich härtere Gegner, aber auch größere Belohnungen.", + "ru": "В Планкертоне враги опаснее прежних, но и награды лучше.", + "ko": "플랭커튼에서 강력한 적과 싸우고 더 좋은 보상을 받으세요.", + "zh-hant": "普蘭克頓有更強力的敵人,也有更豐厚的獎勵。", + "pt-br": "Inimigos mais difíceis e recompensas melhores aguardam você em Plankerton.", + "en": "Tougher enemies and greater rewards await in Plankerton.", + "it": "Nemici più impegnativi e ricompense migliori ti attendono a Tavolaccia.", + "fr": "Des ennemis plus coriaces et des récompenses supérieures vous attendent à Villeplanche.", + "zh-cn": "普兰克顿有更强力的敌人,也有更丰厚的奖励。", + "es": "Enemigos más duros y recompensas más jugosas esperan en Villatablón.", + "ar": "ستجد في انتظارك في بلانكرتون أعداء أشرس ومكافآت أكبر.", + "ja": "プランカートンで、より強力な敵とすばらしい報酬があなたを待っている。", + "pl": "W Deskogrodzie czekają trudniejsi wrogowie i lepsze nagrody.", + "es-419": "Esperan enemigos más fuertes y recompensas más grandes en Ciudad Tablón.", + "tr": "Daha güçlü rakipler ve daha büyük ödüller Kalaslıevler'de bekliyor." + }, + "runtimeInfo": { + "theaterType": "Standard", + "theaterTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02" + } + ] + }, + "theaterVisibilityRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "worldMapPinClass": "BlueprintGeneratedClass'/Game/Environments/WorldMap/Blueprints/WM_PinMedium.WM_PinMedium_C'", + "theaterImage": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_hard_.Icon-TheaterDifficulty-_hard_'", + "theaterImages": { + "brush_XXS": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_hard_.Icon-TheaterDifficulty-_hard_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_XS": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_hard_.Icon-TheaterDifficulty-_hard_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_S": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_hard_.Icon-TheaterDifficulty-_hard_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_M": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_hard_.Icon-TheaterDifficulty-_hard_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_L": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_hard_.Icon-TheaterDifficulty-_hard_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_XL": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_hard_.Icon-TheaterDifficulty-_hard_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + } + }, + "theaterColorInfo": { + "bUseDifficultyToDetermineColor": false, + "color": { + "specifiedColor": { + "r": 0.982250988483429, + "g": 0.42326799035072327, + "b": 0.04231100156903267, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + } + }, + "socket": "PvE_02", + "missionAlertRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + "tiles": [ + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_RtL.MissionGen_T2_R1_RtL_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_2Gates.MissionGen_T2_R1_2Gates_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtS_Tutorial.MissionGen_T2_R2_RtS_Tutorial_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_EtShelter.MissionGen_T2_R5_EtShelter_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_DtE.MissionGen_T2_R2_DtE_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Outpost", + "zoneTheme": "/Game/World/ZoneThemes/Outposts/BP_ZT_TheOutpost_PvE_02.BP_ZT_TheOutpost_PvE_02_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_TheOutpost_PvE_02.MissionGen_TheOutpost_PvE_02_C" + } + ], + "difficultyWeightOverrides": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Outpost1" + } + } + ], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_3Gates.MissionGen_T2_R5_3Gates_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_4/MissionGen_T2_R4_EtShelter_Tutorial.MissionGen_T2_R4_EtShelter_Tutorial_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtD.MissionGen_T2_R5_RtD_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtD.MissionGen_T2_R3_RtD_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_1Gate.MissionGen_T2_R3_1Gate_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 11, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_EtSurvivors.MissionGen_T2_R1_EtSurvivors_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtL.MissionGen_T2_R5_RtL_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Onboarding/BP_ZT_VindermansLab.BP_ZT_VindermansLab_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_PtS.MissionGen_T2_R5_PtS_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 13, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_LtR.MissionGen_T2_R5_LtR_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtS.MissionGen_T2_R3_RtS_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 11, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_DtB.MissionGen_T2_R5_DtB_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 13, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtS.MissionGen_T2_R3_RtS_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 11, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtS.MissionGen_T2_R5_RtS_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_3Gates.MissionGen_T2_R5_3Gates_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 16, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 16, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 16, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 16, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 16, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 16, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 16, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 17, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 17, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 11, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_BuildtheRadarGrid.MissionGen_T2_R1_BuildtheRadarGrid_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_DtB_Tutorial.MissionGen_T2_R3_DtB_Tutorial_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_2Gates.MissionGen_T2_R3_2Gates_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "CriticalMission", + "zoneTheme": "/Game/World/ZoneThemes/CriticalMission/BP_ZT_CriticalMission.BP_ZT_CriticalMission_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + } + ], + "regions": [ + { + "displayName": "PvE_02_Difficulty_01", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty01" + } + ] + }, + "tileIndices": [ + 0, + 1, + 2, + 3, + 4, + 7, + 34, + 35, + 43, + 132 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_1Gate.MissionGen_T2_R1_1Gate_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_RtD.MissionGen_T2_R1_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_RtL.MissionGen_T2_R1_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_EtSurvivors.MissionGen_T2_R1_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_BuildtheRadarGrid.MissionGen_T2_R1_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_DtE.MissionGen_T2_R1_DtE_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + } + } + ], + "numMissionsAvailable": 4, + "numMissionsToChange": 4, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Non Mission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 5, + 6, + 10, + 11, + 12, + 25, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 55, + 56, + 57, + 58, + 59, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 131, + 133, + 135, + 137, + 138, + 141, + 142, + 147, + 148, + 150, + 152, + 156, + 157, + 158, + 159, + 162, + 163, + 164, + 165, + 168, + 169 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_02_Difficulty_02", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty02" + } + ] + }, + "tileIndices": [ + 8, + 13, + 14, + 15, + 16, + 23, + 26, + 136, + 139, + 140 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.44999998807907104, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_1Gate.MissionGen_T2_R2_1Gate_C" + }, + { + "weight": 0.44999998807907104, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_2Gates.MissionGen_T2_R2_2Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtD.MissionGen_T2_R2_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtL.MissionGen_T2_R2_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtS.MissionGen_T2_R2_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_DtE.MissionGen_T2_R2_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_BuildtheRadarGrid.MissionGen_T2_R2_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_EtSurvivors.MissionGen_T2_R2_EtSurvivors_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + } + } + ], + "numMissionsAvailable": 5, + "numMissionsToChange": 5, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_02_Difficulty_05", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty05" + } + ] + }, + "tileIndices": [ + 9, + 18, + 20, + 36, + 37, + 38, + 41, + 42, + 45, + 60 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_2Gates.MissionGen_T2_R5_2Gates_C" + }, + { + "weight": 0.5, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_3Gates.MissionGen_T2_R5_3Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtD.MissionGen_T2_R5_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtL.MissionGen_T2_R5_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtS.MissionGen_T2_R5_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_DtB.MissionGen_T2_R5_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_EtShelter.MissionGen_T2_R5_EtShelter_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_EtSurvivors.MissionGen_T2_R5_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_DtE.MissionGen_T2_R5_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_BuildtheRadarGrid.MissionGen_T2_R5_BuildtheRadarGrid_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + } + } + ], + "numMissionsAvailable": 8, + "numMissionsToChange": 8, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Outpost", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 17 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_02_Difficulty_04", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty04" + } + ] + }, + "tileIndices": [ + 19, + 21, + 22, + 29, + 31, + 32, + 33, + 44, + 154, + 160 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.20000000298023224, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_1Gate.MissionGen_T2_R3_1Gate_C" + }, + { + "weight": 0.4000000059604645, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_2Gates.MissionGen_T2_R3_2Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtD.MissionGen_T2_R3_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtS.MissionGen_T2_R3_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_DtE.MissionGen_T2_R3_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_BuildtheRadarGrid.MissionGen_T2_R3_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_EtSurvivors.MissionGen_T2_R3_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + } + } + ], + "numMissionsAvailable": 7, + "numMissionsToChange": 7, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_02_Difficulty_02_Hard", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty02" + } + ] + }, + "tileIndices": [ + 24, + 102 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.44999998807907104, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_1Gate.MissionGen_T2_R2_1Gate_C" + }, + { + "weight": 0.44999998807907104, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_2Gates.MissionGen_T2_R2_2Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtD.MissionGen_T2_R2_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtL.MissionGen_T2_R2_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtS.MissionGen_T2_R2_RtS_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + } + } + ], + "numMissionsAvailable": 2, + "numMissionsToChange": 2, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_02_Difficulty_03", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty03" + } + ] + }, + "tileIndices": [ + 27, + 28, + 30, + 39, + 40, + 143, + 144, + 145, + 146, + 151 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_1Gate.MissionGen_T2_R3_1Gate_C" + }, + { + "weight": 0.4000000059604645, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_2Gates.MissionGen_T2_R3_2Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtD.MissionGen_T2_R3_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtS.MissionGen_T2_R3_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_DtE.MissionGen_T2_R3_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_BuildtheRadarGrid.MissionGen_T2_R3_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_EtSurvivors.MissionGen_T2_R3_EtSurvivors_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + } + } + ], + "numMissionsAvailable": 6, + "numMissionsToChange": 6, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_02_Difficulty_05", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty05" + } + ] + }, + "tileIndices": [ + 54, + 166 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_2Gates.MissionGen_T2_R5_2Gates_C" + }, + { + "weight": 0.5, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_3Gates.MissionGen_T2_R5_3Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtD.MissionGen_T2_R5_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtL.MissionGen_T2_R5_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtS.MissionGen_T2_R5_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_DtB.MissionGen_T2_R5_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_EtShelter.MissionGen_T2_R5_EtShelter_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + } + } + ], + "numMissionsAvailable": 2, + "numMissionsToChange": 2, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_02_Difficulty_01_Hard", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty01" + } + ] + }, + "tileIndices": [ + 130, + 134 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_1Gate.MissionGen_T2_R1_1Gate_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_RtD.MissionGen_T2_R1_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_RtL.MissionGen_T2_R1_RtL_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + } + } + ], + "numMissionsAvailable": 2, + "numMissionsToChange": 2, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_02_Difficulty_03_Hard", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty03" + } + ] + }, + "tileIndices": [ + 149, + 153 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_1Gate.MissionGen_T2_R3_1Gate_C" + }, + { + "weight": 0.4000000059604645, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_2Gates.MissionGen_T2_R3_2Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtD.MissionGen_T2_R3_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtS.MissionGen_T2_R3_RtS_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + } + } + ], + "numMissionsAvailable": 2, + "numMissionsToChange": 2, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_02_Difficulty_04_Hard", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty04" + } + ] + }, + "tileIndices": [ + 155, + 161 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.20000000298023224, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_1Gate.MissionGen_T2_R3_1Gate_C" + }, + { + "weight": 0.4000000059604645, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_2Gates.MissionGen_T2_R3_2Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtD.MissionGen_T2_R3_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtS.MissionGen_T2_R3_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + } + } + ], + "numMissionsAvailable": 2, + "numMissionsToChange": 2, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Critical Mission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 167 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": { + "de": "Bru-Tal", + "ru": "Вещая долина", + "ko": "캐니 밸리", + "zh-hant": "坎尼山谷", + "pt-br": "Canny Valley", + "en": "Canny Valley", + "it": "Vallarguta", + "fr": "Morne-la-Vallée", + "zh-cn": "坎尼山谷", + "es": "Valle Latoso", + "ar": "وادي الدهاة", + "ja": "キャニー・バレー", + "pl": "Dolina Samowitości", + "es-419": "Valle Latoso", + "tr": "Tekinli Vadi" + }, + "uniqueId": "E6ECBD064B153234656CB4BDE6743870", + "theaterSlot": 0, + "bIsTestTheater": false, + "description": { + "de": "Noch stärkere Gegner mit noch besseren Belohnungen.", + "ru": "Ещё более крутые враги с более щедрыми наградами.", + "ko": "더 강력한 적과 더 멋진 보상이 기다리고 있습니다.", + "zh-hant": "越是難纏的敵人,獎勵就越豐厚。", + "pt-br": "Inimigos ainda mais difíceis, recompensas ainda melhores.", + "en": "Even tougher enemies, with even better rewards.", + "it": "Nemici ancora più impegnativi, con ricompense ancora migliori.", + "fr": "Des ennemis encore plus coriaces, avec des récompenses encore meilleures.", + "zh-cn": "越是难缠的敌人,奖励就越丰厚。", + "es": "Enemigos aún más duros. Recompensas aún mejores.", + "ar": "كلما ازدادت شراسة الأعداء، أصبحت المكافآت أفضل.", + "ja": "敵が強くなるが、報酬も良くなる。", + "pl": "Jeszcze silniejsi wrogowie, jeszcze lepsze nagrody.", + "es-419": "Enemigos aún más fuertes, con recompensas todavía mejores.", + "tr": "Çok daha güçlü rakipler, çok daha iyi ödüller." + }, + "runtimeInfo": { + "theaterType": "Standard", + "theaterTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03" + } + ] + }, + "theaterVisibilityRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "worldMapPinClass": "BlueprintGeneratedClass'/Game/Environments/WorldMap/Blueprints/WM_PinHard.WM_PinHard_C'", + "theaterImage": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "theaterImages": { + "brush_XXS": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_XS": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_S": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_M": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_L": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_XL": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + } + }, + "theaterColorInfo": { + "bUseDifficultyToDetermineColor": false, + "color": { + "specifiedColor": { + "r": 0.838798999786377, + "g": 0.011611999943852425, + "b": 0.01680699922144413, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + } + }, + "socket": "PvE_03", + "missionAlertRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + "tiles": [ + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "CriticalMission", + "zoneTheme": "/Game/World/ZoneThemes/CriticalMission/BP_ZT_CriticalMission.BP_ZT_CriticalMission_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_2Gates.MissionGen_T2_2Gates_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 11, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Outpost", + "zoneTheme": "/Game/World/ZoneThemes/Outposts/BP_ZT_TheOutpost_PvE_03.BP_ZT_TheOutpost_PvE_03_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_TheOutpost_PvE_03.MissionGen_TheOutpost_PvE_03_C" + } + ], + "difficultyWeightOverrides": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Outpost1" + } + } + ], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_2Gates.MissionGen_T2_2Gates_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_LtR_CannyValley.MissionGen_LtR_CannyValley_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 16, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 16, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 16, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + } + ], + "regions": [ + { + "displayName": "Non Mission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 0, + 2, + 3, + 10, + 29, + 31, + 32, + 34, + 35, + 36, + 37, + 38, + 39, + 41, + 42, + 47, + 48, + 50, + 52, + 53, + 54, + 55, + 56, + 57, + 63, + 64, + 65, + 69, + 70, + 71, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 94, + 99, + 100, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_03_Difficulty_01", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty01" + } + ] + }, + "tileIndices": [ + 1, + 5, + 6, + 11, + 12, + 13, + 14, + 44, + 45, + 46, + 49, + 51 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.6000000238418579, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_2Gates.MissionGen_T2_2Gates_C" + }, + { + "weight": 0.4000000059604645, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_BuildtheRadarGrid.MissionGen_T2_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + } + } + ], + "numMissionsAvailable": 6, + "numMissionsToChange": 6, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_03_Difficulty_05", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty05" + } + ] + }, + "tileIndices": [ + 4, + 17, + 18, + 20, + 21, + 22, + 66, + 67, + 68, + 72 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.20000000298023224, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_2Gates.MissionGen_T2_2Gates_C" + }, + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C" + }, + { + "weight": 0.5, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_BuildtheRadarGrid.MissionGen_T2_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + } + } + ], + "numMissionsAvailable": 8, + "numMissionsToChange": 8, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Critical Mission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 7 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_03_Difficulty_02", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty02" + } + ] + }, + "tileIndices": [ + 8, + 9, + 15, + 19, + 25, + 27, + 33, + 59, + 60, + 61, + 62 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.44999998807907104, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_2Gates.MissionGen_T2_2Gates_C" + }, + { + "weight": 0.44999998807907104, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C" + }, + { + "weight": 0.10000000149011612, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_BuildtheRadarGrid.MissionGen_T2_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + } + } + ], + "numMissionsAvailable": 5, + "numMissionsToChange": 5, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Outpost", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 16 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_03_Difficulty_04", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty04" + } + ] + }, + "tileIndices": [ + 23, + 24, + 30, + 43, + 92, + 93, + 95, + 96, + 97, + 98 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.20000000298023224, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_2Gates.MissionGen_T2_2Gates_C" + }, + { + "weight": 0.4000000059604645, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C" + }, + { + "weight": 0.4000000059604645, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_BuildtheRadarGrid.MissionGen_T2_BuildtheRadarGrid_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + } + } + ], + "numMissionsAvailable": 7, + "numMissionsToChange": 7, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_03_Difficulty_03", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty03" + } + ] + }, + "tileIndices": [ + 26, + 28, + 40, + 58, + 101, + 102, + 103, + 104, + 105, + 106, + 116 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_2Gates.MissionGen_T2_2Gates_C" + }, + { + "weight": 0.5, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C" + }, + { + "weight": 0.20000000298023224, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_BuildtheRadarGrid.MissionGen_T2_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + } + } + ], + "numMissionsAvailable": 6, + "numMissionsToChange": 6, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": { + "de": "Twine Peaks", + "ru": "Линч-Пикс", + "ko": "트와인 픽스", + "zh-hant": "麻峰", + "pt-br": "Twine Peaks", + "en": "Twine Peaks", + "it": "Montespago", + "fr": "Pics Hardis", + "zh-cn": "麻峰", + "es": "Cumbres Leñosas", + "ar": "القمم التوائم", + "ja": "トワイン・ピークス", + "pl": "Twine Peaks", + "es-419": "Picos Trenzados", + "tr": "Dikiz Tepeler" + }, + "uniqueId": "D9A801C5444D1C74D1B7DAB5C7C12C5B", + "theaterSlot": 0, + "bIsTestTheater": false, + "description": { + "de": "Unwetterwarnung! Diese Missionen sind selbst für die besten Kommandanten eine Herausforderung.", + "ru": "Гидрометцентр предупреждает! Эти миссии заставят попотеть даже самых лучших командиров.", + "ko": "기상 경보! 이곳 미션은 가장 뛰어난 지휘관에게도 쉽지 않을 것입니다.", + "zh-hant": "天氣警報! 即便最優秀的指揮官也會面臨這些任務的重重挑戰。", + "pt-br": "Alerta de clima! Essas missões desafiarão até os melhores Comandantes.", + "en": "Weather alert! These missions will challenge even the best Commanders.", + "it": "Allerta meteo! Queste missioni metteranno alla prova anche i migliori Comandanti.", + "fr": "Alerte météo ! Ces missions mettront au défi même les plus accomplis des Commandants.", + "zh-cn": "天气警报!即便最优秀的指挥官也会面临这些任务的重重挑战。", + "es": "¡Alerta meteorológica! Estas misiones serán un desafío incluso para los mejores comandantes.", + "ar": "تنبيه الطقس! ستُمثّل هذه المهمات تحدّيات حتى لأفضل القادة.", + "ja": "暴風警報! トップクラスのコマンダーでも困難なミッションです。", + "pl": "Ostrzeżenie o pogodzie! Ta misja stanowi wyzwanie nawet dla najlepszych dowódców.", + "es-419": "¡Alerta de mal tiempo! Estas misiones serán un desafío incluso para los mejores comandantes.", + "tr": "Hava durumu uyarısı! Bu görevler en iyi Komutanları bile zorlar." + }, + "runtimeInfo": { + "theaterType": "Standard", + "theaterTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE04" + } + ] + }, + "theaterVisibilityRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "worldMapPinClass": "BlueprintGeneratedClass'/Game/Environments/WorldMap/Blueprints/WM_PinHard.WM_PinHard_C'", + "theaterImage": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "theaterImages": { + "brush_XXS": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_XS": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_S": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_M": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_L": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_XL": { + "imageSize": { + "x": 40, + "y": 40 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + } + }, + "theaterColorInfo": { + "bUseDifficultyToDetermineColor": false, + "color": { + "specifiedColor": { + "r": 0.838798999786377, + "g": 0.01095999963581562, + "b": 0.01680699922144413, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + } + }, + "socket": "PvE_04", + "missionAlertRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + "tiles": [ + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Outpost", + "zoneTheme": "/Game/World/ZoneThemes/Outposts/BP_ZT_TheOutpost_PvE_04.BP_ZT_TheOutpost_PvE_04_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_TheOutpost_PvE_04.MissionGen_TheOutpost_PvE_04_C" + } + ], + "difficultyWeightOverrides": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Outpost1" + } + } + ], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "CriticalMission", + "zoneTheme": "/Game/World/ZoneThemes/CriticalMission/BP_ZT_CriticalMission.BP_ZT_CriticalMission_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_LtR_Twine.MissionGen_LtR_Twine_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "Normal", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 16, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 16, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 16, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheSuburbs/BP_ZT_TheSuburbs.BP_ZT_TheSuburbs_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheCity/BP_ZT_TheCity.BP_ZT_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + } + ], + "regions": [ + { + "displayName": "PvE_04_Difficulty_05", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE04.Difficulty05" + } + ] + }, + "tileIndices": [ + 0, + 2, + 3, + 8, + 24, + 25, + 26, + 27, + 39, + 58 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C" + }, + { + "weight": 0.699999988079071, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_BuildtheRadarGrid.MissionGen_T2_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone5" + } + } + ], + "numMissionsAvailable": 8, + "numMissionsToChange": 8, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_04_Difficulty_04", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE04.Difficulty04" + } + ] + }, + "tileIndices": [ + 1, + 4, + 29, + 30, + 31, + 32, + 34, + 36, + 46, + 80 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.4000000059604645, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C" + }, + { + "weight": 0.6000000238418579, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_BuildtheRadarGrid.MissionGen_T2_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone4" + } + } + ], + "numMissionsAvailable": 7, + "numMissionsToChange": 7, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Outpost", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 5 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_04_Difficulty_03", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE04.Difficulty03" + } + ] + }, + "tileIndices": [ + 6, + 7, + 43, + 44, + 50, + 51, + 72, + 73, + 75, + 76 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.5, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C" + }, + { + "weight": 0.5, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_BuildtheRadarGrid.MissionGen_T2_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone3" + } + } + ], + "numMissionsAvailable": 6, + "numMissionsToChange": 6, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Non Mission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 9, + 19, + 20, + 21, + 22, + 23, + 28, + 33, + 35, + 37, + 38, + 40, + 45, + 47, + 48, + 54, + 55, + 56, + 57, + 59, + 60, + 61, + 65, + 66, + 70, + 71, + 74, + 77, + 78, + 79, + 81, + 82, + 83, + 84, + 85, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Critical Mission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 10 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_04_Difficulty_01", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE04.Difficulty01" + } + ] + }, + "tileIndices": [ + 11, + 12, + 13, + 15, + 16, + 17, + 18, + 49, + 53, + 86 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_2Gates.MissionGen_T2_2Gates_C" + }, + { + "weight": 0.699999988079071, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_BuildtheRadarGrid.MissionGen_T2_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + } + } + ], + "numMissionsAvailable": 5, + "numMissionsToChange": 5, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "PvE_04_Difficulty_02", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE04.Difficulty02" + } + ] + }, + "tileIndices": [ + 14, + 41, + 42, + 52, + 62, + 63, + 64, + 67, + 68, + 69 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.10000000149011612, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_2Gates.MissionGen_T2_2Gates_C" + }, + { + "weight": 0.44999998807907104, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C" + }, + { + "weight": 0.44999998807907104, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_BuildtheRadarGrid.MissionGen_T2_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone2" + } + } + ], + "numMissionsAvailable": 5, + "numMissionsToChange": 5, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": { + "de": "Steinwald", + "ru": "Камнелесье", + "ko": "스톤우드", + "zh-hant": "荒木石林", + "pt-br": "Floresta Pétrea", + "en": "Stonewood", + "it": "Pietralegno", + "fr": "Fontainebois", + "zh-cn": "荒木石林", + "es": "Bosque Pedregoso", + "ar": "ستون وود", + "ja": "ストーンウッド", + "pl": "Kamienny Las", + "es-419": "Bosque Pedregoso", + "tr": "Taşlıorman" + }, + "uniqueId": "8633333E41A86F67F78EAEAF25BF4735", + "theaterSlot": 0, + "bIsTestTheater": false, + "description": "", + "runtimeInfo": { + "theaterType": "Tutorial", + "theaterTags": { + "gameplayTags": [] + }, + "theaterVisibilityRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "worldMapPinClass": "BlueprintGeneratedClass'/Game/Environments/WorldMap/Blueprints/WM_PinEasy.WM_PinEasy_C'", + "theaterImage": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_normal_.Icon-TheaterDifficulty-_normal_'", + "theaterImages": { + "brush_XXS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "None", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_XS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "None", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_S": { + "imageSize": { + "x": 32, + "y": 32 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "None", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_M": { + "imageSize": { + "x": 32, + "y": 32 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "None", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_L": { + "imageSize": { + "x": 32, + "y": 32 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "None", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_XL": { + "imageSize": { + "x": 32, + "y": 32 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "None", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + } + }, + "theaterColorInfo": { + "bUseDifficultyToDetermineColor": false, + "color": { + "specifiedColor": { + "r": 0.4969330132007599, + "g": 1, + "b": 0.01298299990594387, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + } + }, + "socket": "Onboarding_Gate", + "missionAlertRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + "tiles": [ + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Onboarding/ZT_OnboardingFort/BP_ZT_Onboarding_Fort.BP_ZT_Onboarding_Fort_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Onboarding_Fort.MissionGen_Onboarding_Fort_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + } + ], + "regions": [ + { + "displayName": "Rural Region", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 0 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + } + ], + "missions": [ + { + "theaterId": "33A2311D4AE64B361CCE27BC9F313C8B", + "availableMissions": [ + { + "missionGuid": "f0f99052-6e14-4d86-973d-8fd113e21408", + "missionRewards": { + "tierGroupName": "Mission_Select_T03", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t03", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t03", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_MT_LtB.MissionGen_T1_MT_LtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone3" + }, + "tileIndex": 86, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "798f5765-16f3-4833-a540-3dc3f8797c4a", + "missionRewards": { + "tierGroupName": "Mission_Select_T05", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t05", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_LtR.MissionGen_T1_VHT_LtR_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + }, + "tileIndex": 8, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3e99d8c0-e60f-48b1-8785-138c48bff1aa", + "missionRewards": { + "tierGroupName": "Mission_Select_T05", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t05", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_minimal", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_LtB.MissionGen_T1_VHT_LtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + }, + "tileIndex": 45, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "21567023-9e59-4166-bf09-a1e58beec0a9", + "missionRewards": { + "tierGroupName": "Mission_Select_T01", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t01", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t01", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_1GateNoBonus.MissionGen_1GateNoBonus_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone1" + }, + "tileIndex": 65, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "226c0c48-7274-4c8b-8e6e-248028dcfb8f", + "missionRewards": { + "tierGroupName": "Mission_Select_T04", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t04", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_BuildtheRadarGrid.MissionGen_BuildtheRadarGrid_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone4" + }, + "tileIndex": 0, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "04984fe9-ffac-4436-9983-60489353081b", + "missionRewards": { + "tierGroupName": "Mission_Select_T04", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t04", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t04", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_HT_RtD.MissionGen_T1_HT_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone4" + }, + "tileIndex": 14, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "659bd0b7-89fc-4779-ad46-b9876c1c165c", + "missionRewards": { + "tierGroupName": "Mission_Select_T04", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t04", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_HT_LtB.MissionGen_T1_HT_LtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone4" + }, + "tileIndex": 18, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1f6ed0b4-cf4f-45ed-bc96-798995c5d2a6", + "missionRewards": { + "tierGroupName": "Mission_Select_T04", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t04", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t04", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_HT_Cat1FtS.MissionGen_T1_HT_Cat1FtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone4" + }, + "tileIndex": 20, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d95970e9-e1f3-4265-886d-26968535912d", + "missionRewards": { + "tierGroupName": "Mission_Select_T05", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t05", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t05", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_HT_LtB.MissionGen_T1_HT_LtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + }, + "tileIndex": 1, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "2bb32850-fa9a-4556-bf2a-952f2e0ddb2c", + "missionRewards": { + "tierGroupName": "Mission_Select_T02", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t02", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t02", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_LT_LtB.MissionGen_T1_LT_LtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone2" + }, + "tileIndex": 3, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "758974d4-3979-439f-88d0-58264f075abb", + "missionRewards": { + "tierGroupName": "Mission_Select_T02", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t02", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t02", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_RetrieveTheData_NoSecondary.MissionGen_RetrieveTheData_NoSecondary_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone2" + }, + "tileIndex": 29, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b32326e5-381a-4f08-8709-65bd1f1152ae", + "missionRewards": { + "tierGroupName": "Mission_Select_T02", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t02", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t02", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_LT_Cat1FtS.MissionGen_T1_LT_Cat1FtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone2" + }, + "tileIndex": 38, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3344af9d-4edf-4c28-a71c-16709b5994ca", + "missionRewards": { + "tierGroupName": "Mission_Select_T05", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t05", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_minimal", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_LtB.MissionGen_T1_VHT_LtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + }, + "tileIndex": 21, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "773310bd-2604-41e4-8e19-da5ff4b77d71", + "missionRewards": { + "tierGroupName": "Mission_Select_T05", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t05", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t05", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_EvacuateTheSurvivors.MissionGen_T1_VHT_EvacuateTheSurvivors_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + }, + "tileIndex": 22, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0f0409fc-c66d-4d39-887a-f71478e3d2a7", + "missionRewards": { + "tierGroupName": "Mission_Select_T05", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t05", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t05", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_DestroyTheEncampments.MissionGen_DestroyTheEncampments_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + }, + "tileIndex": 23, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "5b36a004-f347-4af4-bb88-693c0116c7d3", + "missionRewards": { + "tierGroupName": "Mission_Select_T05", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t05", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_EvacuateTheSurvivors.MissionGen_T1_VHT_EvacuateTheSurvivors_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + }, + "tileIndex": 24, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "2cb32da3-529b-4bd9-bc99-a6c981c75ce8", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_LtB.MissionGen_T1_VHT_LtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 12, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "80f3add7-9c74-4810-a816-fd44af4be546", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_VHT_RtD.MissionGen_T1_VHT_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 30, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "672bda67-fbe4-43ba-af14-ccf6d6bbb432", + "missionRewards": { + "tierGroupName": "Mission_Select_T04", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t04", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_MT_RtD.MissionGen_T1_MT_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone4" + }, + "tileIndex": 16, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "560db042-7ac6-4eba-abd2-b21a97449772", + "missionRewards": { + "tierGroupName": "Mission_Select_T03", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t03", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t03", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_MT_Cat1FtS.MissionGen_T1_MT_Cat1FtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone3" + }, + "tileIndex": 17, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1d2881a3-ce24-4be0-8765-758537087f25", + "missionRewards": { + "tierGroupName": "Mission_Select_T03", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t03", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_crystal_quartz_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_T1_MT_RtD.MissionGen_T1_MT_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone3" + }, + "tileIndex": 19, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "51f97106-ad84-45e4-a24b-91236a2fcf4c", + "missionRewards": { + "tierGroupName": "Mission_Select_T03", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t03", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t03", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_EvacuateTheSurvivors.MissionGen_EvacuateTheSurvivors_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone3" + }, + "tileIndex": 37, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9dbdb9dd-3c0e-42c0-959f-e6db979df419", + "missionRewards": { + "tierGroupName": "Mission_Select_T01", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t01", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t01", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_1Gate_VLT.MissionGen_1Gate_VLT_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone1" + }, + "tileIndex": 28, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3f9a2279-3aaf-4a05-9559-f1f1bfaeab84", + "missionRewards": { + "tierGroupName": "Mission_Select_T01", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t01", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t01", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_LaunchTheBalloon_NoSecondary.MissionGen_LaunchTheBalloon_NoSecondary_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone1" + }, + "tileIndex": 61, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "79856d10-4c4a-4b46-9ad4-fbc29597575c", + "missionRewards": { + "tierGroupName": "Outpost_Select_Theater1", + "items": [ + { + "itemType": "CardPack:zcp_voucher_basicpack", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_outpost_theater1", + "quantity": 1 + } + ] + }, + "bonusMissionRewards": { + "tierGroupName": "Outpost_Select_Bonus_Theater1", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t03", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_TheOutpost_PvE_01.MissionGen_TheOutpost_PvE_01_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Outpost1" + }, + "tileIndex": 64, + "availableUntil": "2017-07-25T23:59:59.999Z" + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + }, + { + "theaterId": "D477605B4FA48648107B649CE97FCF27", + "availableMissions": [ + { + "missionGuid": "1fc8ab75-ff67-4113-8b58-8e1511aaacb9", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t07", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtS_Tutorial.MissionGen_T2_R2_RtS_Tutorial_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 8, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "340e3dac-b3e2-498f-ad50-fa3c572fa2d0", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t09", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtS.MissionGen_T2_R3_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 44, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "bde3d898-d4e8-409b-bcba-4a3f6a104b2d", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_RtL.MissionGen_T2_R1_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 1, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a25df424-65e6-4071-a63b-177066008262", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_RtL.MissionGen_T2_R1_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 7, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "720d8dd4-cfcc-4452-9da7-1d32f02f374f", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtD.MissionGen_T2_R3_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 21, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1ca201fd-720e-4c6c-b963-57ef181c315d", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t08", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 39, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "351d95e1-c41c-4aba-99af-1a152e74a687", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_BuildtheRadarGrid.MissionGen_T2_R1_BuildtheRadarGrid_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 132, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "62a9d85b-53e3-49e7-834c-61926fb33984", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_BuildtheRadarGrid.MissionGen_T2_R1_BuildtheRadarGrid_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 34, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "35c1a3d5-1b58-482d-8544-f61e83d68ddb", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_DtE.MissionGen_T2_R1_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 43, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "e8cdf407-f4ee-45fd-86fc-c894a0344bfb", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t07", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtD.MissionGen_T2_R2_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 16, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1d2c6505-9b19-4000-af42-e52dfbe0efd0", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_BuildtheRadarGrid.MissionGen_T2_R2_BuildtheRadarGrid_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 23, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "dea45c72-d1c3-4da4-ab5e-405d34e26cba", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t10", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtL.MissionGen_T2_R5_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 36, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "30b6aacb-5756-43b3-b761-000f49013ee7", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t10", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_3Gates.MissionGen_T2_R5_3Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 60, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "2f821e71-f501-472e-a582-7d0ef269df3a", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_high", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_EtSurvivors.MissionGen_T2_R3_EtSurvivors_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 32, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3fe50d9b-5ed4-432e-bb1f-5a8df48b9064", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t08", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 30, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f88f4660-37b3-41a1-8f96-39363bd2b82a", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t08", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 143, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9d7d67be-94df-4c6b-84ba-fdd20790a74e", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_RtL.MissionGen_T2_R1_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 2, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ec647549-e29a-4fbc-9e8c-e43eb4e3ef61", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_2Gates.MissionGen_T2_R1_2Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 3, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b20b8553-7d50-468d-be69-32953e163b31", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_EtSurvivors.MissionGen_T2_R1_EtSurvivors_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 35, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "38b8d7c6-c52d-4903-b290-d73affddc570", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_EtSurvivors.MissionGen_T2_R1_EtSurvivors_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 4, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "5e287335-fff2-4f81-9297-ddda5721c984", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_DtE.MissionGen_T2_R2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 14, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "8062baf2-f2c6-4f30-93e0-791c8564bb33", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t07", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtS.MissionGen_T2_R2_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 15, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "74e59466-0ce9-403e-be43-d9f7bf868800", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtD.MissionGen_T2_R2_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 26, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "fdd8a8e3-16ef-4541-b328-3d9524125d3d", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t07", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtD.MissionGen_T2_R2_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 140, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f8647209-4d0b-47f9-93b2-8db35168263d", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t07", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtD.MissionGen_T2_R2_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 13, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "7f531c5f-22cb-4212-ae3c-f4e015dec79c", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_EtShelter.MissionGen_T2_R5_EtShelter_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 9, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "2a5227f1-f14d-4881-b130-b5053becc695", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_3Gates.MissionGen_T2_R5_3Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 18, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "73b9860b-31be-432f-88ed-0d3a3fe04fea", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t10", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtD.MissionGen_T2_R5_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 20, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6a1e7259-8ac0-4673-a63c-18747cdadef5", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_veryhigh", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_PtS.MissionGen_T2_R5_PtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 37, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "581f4eb3-d132-4699-91ac-18abc85e637f", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_malachite_minimal", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_DtB.MissionGen_T2_R5_DtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 42, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ddaa4990-2348-49fe-938a-7ea9b666c16f", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_crystal_quartz_extreme", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtS.MissionGen_T2_R5_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 41, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f402276b-9d07-4445-a2da-6a9222e91c10", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtS.MissionGen_T2_R5_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 45, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3af50bf3-4569-4f1d-b1d0-dcd27801becb", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_LtR.MissionGen_T2_R5_LtR_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 38, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a77fc5da-4653-4c14-b27f-9f92ac5fceb6", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_high", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_4/MissionGen_T2_R4_EtShelter_Tutorial.MissionGen_T2_R4_EtShelter_Tutorial_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 19, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "95f0c55e-54d2-4a9d-a78c-143fa0732bfa", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtD.MissionGen_T2_R3_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 22, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c0565732-6ec6-4c60-95c1-14933aa74bee", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_malachite_minimal", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_1Gate.MissionGen_T2_R3_1Gate_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 29, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b151bcb2-d306-4329-a9c9-e5cce27cafb2", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_high", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 31, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b124bab3-f83f-4f97-81e2-dbc59ac8c2fb", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_high", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_2Gates.MissionGen_T2_R3_2Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 154, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4fb97115-e1c7-419c-8ad9-c410c97ef6d1", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t09", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtD.MissionGen_T2_R3_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 33, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "7e4298f0-48d9-454d-b884-e8173f71d468", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t09", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 160, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1bfbb501-2ce2-48ac-b7c8-8fff0bd2e9cd", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t08", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtD.MissionGen_T2_R2_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 102, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "7dd45d13-f377-4055-b3b7-afe4b24f525c", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t08", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtS.MissionGen_T2_R2_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 24, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "42e1eb7f-b4a2-4d95-a074-8f4d1d2e428b", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtS.MissionGen_T2_R3_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 40, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4dc05e9d-699d-4757-951e-20be1bb1f7b9", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_DtB_Tutorial.MissionGen_T2_R3_DtB_Tutorial_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 144, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0b02d7cd-6c9c-4627-93ef-6500d887b05f", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_EtSurvivors.MissionGen_T2_R3_EtSurvivors_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 151, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c41a8eb8-abdb-4be6-b984-0f5f21db3d2e", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t08", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 27, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a90a4757-72ae-4800-bad7-493919f1e3a1", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_1Gate.MissionGen_T2_R3_1Gate_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 28, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "7353071b-f1db-4aa7-a824-4229a04f482d", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_vr", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 145, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "da00be24-6570-4004-8579-3fe5de9f8c43", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t11", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtS.MissionGen_T2_R5_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 54, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b2720924-3d89-414f-b32d-4d5761d0ac1e", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t11", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_2Gates.MissionGen_T2_R5_2Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 166, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3559acf8-0290-4575-a463-40cd38ac4453", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t07", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_RtD.MissionGen_T2_R1_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 130, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1c0a217e-4ab9-4495-9420-459a9009de71", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t07", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_RtD.MissionGen_T2_R1_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 134, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9cad8b83-0117-4025-93e7-c7a01e456725", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_high", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_1Gate.MissionGen_T2_R3_1Gate_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 153, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a5d7f3d9-c561-4a8d-b28c-66ab44099ad8", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_silver_high", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 149, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "7aa22607-b09c-4955-9ac2-b12493f24b7f", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t10", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtD.MissionGen_T2_R3_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 161, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "17841edb-0658-4285-97ee-d384f64d56d8", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtD.MissionGen_T2_R3_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 155, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "68ca9e5f-e819-4834-9c17-d8051cc7c91f", + "missionRewards": { + "tierGroupName": "Outpost_Select_Theater2", + "items": [ + { + "itemType": "CardPack:zcp_voucher_basicpack", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_outpost_theater2", + "quantity": 1 + } + ] + }, + "bonusMissionRewards": { + "tierGroupName": "Outpost_Select_Bonus_Theater2", + "items": [ + { + "itemType": "CardPack:zcp_reagent_c_t01_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_TheOutpost_PvE_02.MissionGen_TheOutpost_PvE_02_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Outpost1" + }, + "tileIndex": 17, + "availableUntil": "2017-07-25T23:59:59.999Z" + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + }, + { + "theaterId": "E6ECBD064B153234656CB4BDE6743870", + "availableMissions": [ + { + "missionGuid": "2105bfac-c32a-4d59-a2b4-f70e90a39559", + "missionRewards": { + "tierGroupName": "Mission_Select_T12", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t12", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_vr", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + }, + "tileIndex": 25, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6a894502-d0df-49e4-baff-b58cdce0f9ca", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_malachite_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 26, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6348100e-13f7-46ca-b3c9-31b457290e44", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t11", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 11, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "021957bf-5e8c-421d-b6d2-f6c57de087a3", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 66, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "803c59c7-2236-483d-bb71-2de19c52497c", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 18, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c8a39c29-a715-479d-a1e6-a19e1424cc1c", + "missionRewards": { + "tierGroupName": "Mission_Select_T12", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t12", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_malachite_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_2Gates.MissionGen_T2_2Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + }, + "tileIndex": 8, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "fa57f7aa-6b4d-4a32-a30b-b322cff68529", + "missionRewards": { + "tierGroupName": "Mission_Select_T12", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t12", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_malachite_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_2Gates.MissionGen_T2_2Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + }, + "tileIndex": 15, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c51a86ea-e750-4d51-ba70-fb21a21fd011", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_crystal_shadowshard_minimal", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 92, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9675cc22-a627-4db7-85bd-f4faf51b18b6", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 98, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "cd4447cc-8760-47ad-9971-134452fc2f7c", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_malachite_high", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 43, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3a293435-7b35-433e-87d5-23a634dfca01", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t13", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 103, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c1e65af3-433a-45fb-95d6-d9ece9c9e7f1", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 40, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d813c0c1-f326-4572-8981-907285477029", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_2Gates.MissionGen_T2_2Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 13, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "047efcf3-902e-4d6f-866c-e5a1772faed2", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t11", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 12, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1c08b2c8-6a34-480c-a227-80cfade4d707", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t11", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 45, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f1e9e9a5-381a-4d9b-99db-ed979d541288", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t11", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 5, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4fb1bff4-e6af-4ed0-b8a6-39d094cc82b5", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 51, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "409ce7b7-5d09-4baf-a46e-37c4fe24683f", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t11", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 14, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f9673d7e-c2b0-4d43-93e9-b4ae893e82ec", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t15", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 67, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "88116067-8f9a-41e7-988d-a6cc06e2b7bb", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_malachite_veryhigh", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_LtR_CannyValley.MissionGen_LtR_CannyValley_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 68, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "607a5211-7e13-4d73-a943-c0ff1f4641cc", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 72, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a529188c-816c-40d4-9e92-d62bdd36bf7e", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t15", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 22, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "97cfd696-de7b-4d51-8225-cf3d6dc3ec70", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 21, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "cfd9f3b7-b6d0-46e2-b3e7-3d228b723a7a", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_malachite_veryhigh", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 17, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f294275e-44ee-466a-a2c8-33920e148e93", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 20, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ff153073-ee0b-4a49-aafb-ac8bb55fe8dd", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t15", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 4, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f51c3ff8-1159-4a92-b7e4-919ad7af8477", + "missionRewards": { + "tierGroupName": "Mission_Select_T12", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t12", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t12", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + }, + "tileIndex": 9, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "e4fb8849-1fbc-4daf-81a9-26e04af49eb6", + "missionRewards": { + "tierGroupName": "Mission_Select_T12", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t12", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_vr", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + }, + "tileIndex": 60, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0586d634-95a8-47ff-9501-d2006fc142f0", + "missionRewards": { + "tierGroupName": "Mission_Select_T12", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t12", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + }, + "tileIndex": 33, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3b027d0d-dd7e-442d-981e-817a6e0b2745", + "missionRewards": { + "tierGroupName": "Mission_Select_T12", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t12", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t12", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + }, + "tileIndex": 27, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "514bbbfb-ffda-41b8-989e-a16f6297ee21", + "missionRewards": { + "tierGroupName": "Mission_Select_T12", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t12", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t12", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_3Gates.MissionGen_T2_3Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + }, + "tileIndex": 59, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "920431a3-936a-43c9-bd3b-c189e595e20f", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_2Gates.MissionGen_T2_2Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 24, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4e6e5997-172f-4787-be05-91e854676ea1", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 30, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "686a65c2-1ce0-4e7d-9f9e-c9592dc957e9", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_obsidian_minimal", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 97, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b0ae0bb5-7891-4c4f-8b51-51bc3df0cf02", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 93, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "72597570-2d23-4eb5-841c-1005ada6ddd1", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t14", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 23, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3c3917ef-881f-4cc4-9a00-69546994abcc", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_malachite_high", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 96, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c6053f33-5071-4a90-b24b-2f3770608cbb", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_malachite_high", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 95, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "66aa0b76-2ed3-490b-a931-5e96958230b7", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_malachite_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 101, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "67806ed5-5dc8-455b-910d-4c66f19397f6", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t13", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 102, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "e531709e-291a-49da-b879-1ebf68796921", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t13", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 105, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "844543cd-3797-4329-b268-efd5c5bb4d9a", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t13", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 106, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6e9e05ce-efb5-4fdd-b5f9-897cc870b01c", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 28, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "120a494e-35ab-47dc-8608-7f27f39ae90d", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 58, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "df1d9601-da18-4b09-8feb-b4ac5103e030", + "missionRewards": { + "tierGroupName": "Outpost_Select_Theater3", + "items": [ + { + "itemType": "CardPack:zcp_voucher_basicpack", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_outpost_theater3", + "quantity": 1 + } + ] + }, + "bonusMissionRewards": { + "tierGroupName": "Outpost_Select_Bonus_Theater3", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t12", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_TheOutpost_PvE_03.MissionGen_TheOutpost_PvE_03_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Outpost1" + }, + "tileIndex": 16, + "availableUntil": "2017-07-25T23:59:59.999Z" + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + }, + { + "theaterId": "D9A801C5444D1C74D1B7DAB5C7C12C5B", + "availableMissions": [ + { + "missionGuid": "8812555e-e42f-429b-b784-ae0776929a74", + "missionRewards": { + "tierGroupName": "Mission_Select_T17", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t17", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t17", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone2" + }, + "tileIndex": 63, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d58abe82-f43b-4106-a170-1c6492486d69", + "missionRewards": { + "tierGroupName": "Mission_Select_T18", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t18", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_obsidian_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone3" + }, + "tileIndex": 73, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c57c03f0-69a9-4de4-bc3b-e7b29e09447c", + "missionRewards": { + "tierGroupName": "Mission_Select_T20", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t20", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone5" + }, + "tileIndex": 3, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "26c615ff-739e-4d01-87c8-feced4d7b1c1", + "missionRewards": { + "tierGroupName": "Mission_Select_T20", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t20", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_obsidian_veryhigh", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone5" + }, + "tileIndex": 2, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0271103b-01c5-45ad-8493-cac19a00db88", + "missionRewards": { + "tierGroupName": "Mission_Select_T19", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t19", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_high", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone4" + }, + "tileIndex": 30, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "25d1f451-cae3-48e3-85c6-b04a99667e52", + "missionRewards": { + "tierGroupName": "Mission_Select_T19", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t19", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone4" + }, + "tileIndex": 80, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "225870e8-f068-42fd-a2ad-674c7bb4edfa", + "missionRewards": { + "tierGroupName": "Mission_Select_T18", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t18", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t18", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_BuildtheRadarGrid.MissionGen_T2_BuildtheRadarGrid_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone3" + }, + "tileIndex": 44, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b8ac0a36-2b59-4cac-928c-a47e9a78f1fb", + "missionRewards": { + "tierGroupName": "Mission_Select_T16", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t16", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_obsidian_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + }, + "tileIndex": 15, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "35d90966-0458-46bc-8764-053f5c88eee5", + "missionRewards": { + "tierGroupName": "Mission_Select_T16", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t16", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + }, + "tileIndex": 16, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0621f642-d52e-4a77-9e7e-834907c5d920", + "missionRewards": { + "tierGroupName": "Mission_Select_T17", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t17", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t17", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone2" + }, + "tileIndex": 69, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f1e0529d-c75f-43b6-b1e5-baf7b0a35387", + "missionRewards": { + "tierGroupName": "Mission_Select_T20", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t20", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_high", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone5" + }, + "tileIndex": 0, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f8b4ecb4-de69-4f83-854e-13db63def3da", + "missionRewards": { + "tierGroupName": "Mission_Select_T20", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t20", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t20", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone5" + }, + "tileIndex": 39, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c38d3c04-d8a2-4819-ae2e-7e10cbbfd1da", + "missionRewards": { + "tierGroupName": "Mission_Select_T20", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t20", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_4Gates.MissionGen_T2_4Gates_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone5" + }, + "tileIndex": 58, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "16db9c69-da58-419f-84d3-f7b94f3b0fb9", + "missionRewards": { + "tierGroupName": "Mission_Select_T20", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t20", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone5" + }, + "tileIndex": 27, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d3d10d20-8e18-47c1-b5c9-a4aca5573534", + "missionRewards": { + "tierGroupName": "Mission_Select_T20", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t20", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone5" + }, + "tileIndex": 24, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1158f413-6c47-4f29-b5c1-85be5594b591", + "missionRewards": { + "tierGroupName": "Mission_Select_T20", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t20", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_LtR_Twine.MissionGen_LtR_Twine_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone5" + }, + "tileIndex": 25, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0e8806e4-6d0c-47b3-8b25-258c32084024", + "missionRewards": { + "tierGroupName": "Mission_Select_T20", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t20", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone5" + }, + "tileIndex": 26, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "fcfbcf0e-5873-48b4-a0cf-eb96f91517e1", + "missionRewards": { + "tierGroupName": "Mission_Select_T20", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t20", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone5" + }, + "tileIndex": 8, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1acd33d0-12d0-4f15-be39-da4e045b0f57", + "missionRewards": { + "tierGroupName": "Mission_Select_T19", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t19", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone4" + }, + "tileIndex": 4, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b5b84b46-e4f6-4e06-9cb7-e8b22845b2a8", + "missionRewards": { + "tierGroupName": "Mission_Select_T19", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t19", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone4" + }, + "tileIndex": 31, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ce30bd76-4df7-4fb6-8248-00c017455f86", + "missionRewards": { + "tierGroupName": "Mission_Select_T19", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t19", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone4" + }, + "tileIndex": 29, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b788f779-24c3-492a-839d-78e9559f4aed", + "missionRewards": { + "tierGroupName": "Mission_Select_T19", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t19", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t19", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone4" + }, + "tileIndex": 36, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "8553bd0e-03e9-4ac5-b051-64086b038aff", + "missionRewards": { + "tierGroupName": "Mission_Select_T19", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t19", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_crystal_sunbeam_minimal", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtS.MissionGen_T2_RtS_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone4" + }, + "tileIndex": 46, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "31281580-e40f-487c-acb4-dfb7ef72d4e7", + "missionRewards": { + "tierGroupName": "Mission_Select_T19", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t19", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t19", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone4" + }, + "tileIndex": 1, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9a61eae9-0aeb-45b3-beb5-dd3c35af0ad2", + "missionRewards": { + "tierGroupName": "Mission_Select_T19", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t19", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_crystal_shadowshard_high", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone4" + }, + "tileIndex": 32, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f960731d-0ac1-4eca-98c7-0a11858c29b1", + "missionRewards": { + "tierGroupName": "Mission_Select_T18", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t18", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t18", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone3" + }, + "tileIndex": 7, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "8c6121b2-65d2-425a-97f3-f64bfa5c2b17", + "missionRewards": { + "tierGroupName": "Mission_Select_T18", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t18", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_crystal_shadowshard_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone3" + }, + "tileIndex": 51, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "7b094355-45f3-40e8-8787-a3c1d6bdb6d7", + "missionRewards": { + "tierGroupName": "Mission_Select_T18", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t18", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone3" + }, + "tileIndex": 76, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "82f1bd9e-be66-4949-b87a-59941231e06d", + "missionRewards": { + "tierGroupName": "Mission_Select_T18", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t18", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone3" + }, + "tileIndex": 6, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "708eea20-f47b-4a05-ad3c-ff3f25fdc840", + "missionRewards": { + "tierGroupName": "Mission_Select_T18", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t18", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_crystal_shadowshard_medium", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone3" + }, + "tileIndex": 50, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ebbe55c6-468b-4e42-8289-e7c6d1142eef", + "missionRewards": { + "tierGroupName": "Mission_Select_T18", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t18", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_high", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_BuildtheRadarGrid.MissionGen_T2_BuildtheRadarGrid_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone3" + }, + "tileIndex": 72, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d5c50e09-78f6-470e-acf6-457ef806fc29", + "missionRewards": { + "tierGroupName": "Mission_Select_T16", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t16", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_crystal_shadowshard_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + }, + "tileIndex": 11, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "7f921b76-fccd-4301-9f63-a511a8fd427b", + "missionRewards": { + "tierGroupName": "Mission_Select_T16", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t16", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t16", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + }, + "tileIndex": 12, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1aeec61b-7fc4-4a2f-aa3c-65b4fda313fd", + "missionRewards": { + "tierGroupName": "Mission_Select_T16", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t16", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_obsidian_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + }, + "tileIndex": 18, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "96bcc6f7-65cd-4de2-bf00-06c96beac235", + "missionRewards": { + "tierGroupName": "Mission_Select_T16", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t16", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_crystal_shadowshard_verylow", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + }, + "tileIndex": 49, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "125d1690-057f-4068-838e-64da0f70af16", + "missionRewards": { + "tierGroupName": "Mission_Select_T16", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t16", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtD.MissionGen_T2_RtD_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + }, + "tileIndex": 17, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9bb48860-d5f9-42bf-9dcd-a55150c8b3db", + "missionRewards": { + "tierGroupName": "Mission_Select_T17", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t17", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t17", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone2" + }, + "tileIndex": 14, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ac13f6d8-0d54-49af-b002-aa6467e2930f", + "missionRewards": { + "tierGroupName": "Mission_Select_T17", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t17", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_crystal_shadowshard_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtSurvivors.MissionGen_T2_EtSurvivors_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone2" + }, + "tileIndex": 41, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "14d3a565-b12d-4aab-ab1b-b4335ddcdfe3", + "missionRewards": { + "tierGroupName": "Mission_Select_T17", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t17", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_EtShelter.MissionGen_T2_EtShelter_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone2" + }, + "tileIndex": 52, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ed2f97fd-9735-4909-80b9-ad81218acbbf", + "missionRewards": { + "tierGroupName": "Mission_Select_T17", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t17", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_schematicxp_t17", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtE.MissionGen_T2_DtE_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone2" + }, + "tileIndex": 68, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "93fd7141-1b9f-4c79-a8c1-ad1aa2834c2a", + "missionRewards": { + "tierGroupName": "Mission_Select_T17", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t17", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t17", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_RtL.MissionGen_T2_RtL_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone2" + }, + "tileIndex": 67, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "59e67f4a-d66c-4bc6-b3de-a80610ebc072", + "missionRewards": { + "tierGroupName": "Outpost_Select_Theater4", + "items": [ + { + "itemType": "CardPack:zcp_voucher_basicpack", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_outpost_theater4", + "quantity": 1 + } + ] + }, + "bonusMissionRewards": { + "tierGroupName": "Outpost_Select_Bonus_Theater4", + "items": [ + { + "itemType": "CardPack:zcp_crystal_shadowshard_low", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_TheOutpost_PvE_04.MissionGen_TheOutpost_PvE_04_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Outpost1" + }, + "tileIndex": 5, + "availableUntil": "2017-07-25T23:59:59.999Z" + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + }, + { + "theaterId": "8633333E41A86F67F78EAEAF25BF4735", + "availableMissions": [ + { + "missionGuid": "b9c086b0-d157-446b-b52c-0648752201d3", + "missionRewards": { + "tierGroupName": "Mission_Select_Tutorial", + "items": [ + { + "itemType": "CardPack:zcp_tutorial_melee", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_tutorial_trap", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Onboarding_Fort.MissionGen_Onboarding_Fort_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Tutorial_Zone1" + }, + "tileIndex": 0, + "availableUntil": "2017-07-25T23:59:59.999Z" + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ], + "missionAlerts": [ + { + "theaterId": "33A2311D4AE64B361CCE27BC9F313C8B", + "availableMissionAlerts": [ + { + "missionAlertGuid": "1c017021-436b-4624-ba09-eb9ac39bfe46", + "tileIndex": 16, + "availableUntil": "2017-07-25T23:59:59.999Z", + "missionAlertRewards": { + "tierGroupName": "MissionAlert_Proto_01", + "items": [ + { + "itemType": "ConversionControl:cck_melee_tool_consumable_uc", + "quantity": 1 + } + ] + } + }, + { + "missionAlertGuid": "c70c5cc6-3568-4878-a4dd-69c439457234", + "tileIndex": 23, + "availableUntil": "2017-07-25T23:59:59.999Z", + "missionAlertRewards": { + "tierGroupName": "MissionAlert_Proto_01", + "items": [ + { + "itemType": "AccountResource:schematicxp", + "quantity": 600 + } + ] + } + }, + { + "missionAlertGuid": "9335ae41-002f-4f36-bc7d-3b1bda9e7e05", + "tileIndex": 1, + "availableUntil": "2017-07-25T23:59:59.999Z", + "missionAlertRewards": { + "tierGroupName": "MissionAlert_Proto_01", + "items": [ + { + "itemType": "ConversionControl:cck_ranged_sniper_consumable_uc", + "quantity": 1 + } + ] + } + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + }, + { + "theaterId": "D477605B4FA48648107B649CE97FCF27", + "availableMissionAlerts": [ + { + "missionAlertGuid": "1014117e-a215-4b93-80aa-efa849940b41", + "tileIndex": 39, + "availableUntil": "2017-07-25T23:59:59.999Z", + "missionAlertRewards": { + "tierGroupName": "MissionAlert_Proto_01", + "items": [ + { + "itemType": "AccountResource:personnelxp", + "quantity": 750 + } + ] + } + }, + { + "missionAlertGuid": "e8126672-23b6-4d14-ba57-4c303cb6e864", + "tileIndex": 31, + "availableUntil": "2017-07-25T23:59:59.999Z", + "missionAlertRewards": { + "tierGroupName": "MissionAlert_Proto_02", + "items": [ + { + "itemType": "AccountResource:heroxp", + "quantity": 2300 + } + ] + } + }, + { + "missionAlertGuid": "b1c70fda-c950-4b51-a3d7-63588af86a48", + "tileIndex": 9, + "availableUntil": "2017-07-25T23:59:59.999Z", + "missionAlertRewards": { + "tierGroupName": "MissionAlert_Proto_02", + "items": [ + { + "itemType": "AccountResource:heroxp", + "quantity": 2100 + } + ] + } + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + }, + { + "theaterId": "E6ECBD064B153234656CB4BDE6743870", + "availableMissionAlerts": [ + { + "missionAlertGuid": "b9b4a211-867e-42ce-8fda-f4ebda822127", + "tileIndex": 97, + "availableUntil": "2017-07-25T23:59:59.999Z", + "missionAlertRewards": { + "tierGroupName": "MissionAlert_Proto_03", + "items": [ + { + "itemType": "Worker:workerbasic_r_t01", + "quantity": 1 + } + ] + } + }, + { + "missionAlertGuid": "effea288-d718-41e4-a569-76a3889ea5a8", + "tileIndex": 105, + "availableUntil": "2017-07-25T23:59:59.999Z", + "missionAlertRewards": { + "tierGroupName": "MissionAlert_Proto_02", + "items": [ + { + "itemType": "AccountResource:heroxp", + "quantity": 1700 + } + ] + } + }, + { + "missionAlertGuid": "735458f3-a7ef-4aab-be4e-a09bad520bcb", + "tileIndex": 102, + "availableUntil": "2017-07-25T23:59:59.999Z", + "missionAlertRewards": { + "tierGroupName": "MissionAlert_Proto_02", + "items": [ + { + "itemType": "AccountResource:reagent_c_t01", + "quantity": 13 + } + ] + } + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + }, + { + "theaterId": "D9A801C5444D1C74D1B7DAB5C7C12C5B", + "availableMissionAlerts": [ + { + "missionAlertGuid": "6be13617-5287-4268-83be-09bdd5721d4e", + "tileIndex": 4, + "availableUntil": "2017-07-25T23:59:59.999Z", + "missionAlertRewards": { + "tierGroupName": "MissionAlert_Proto_04", + "items": [ + { + "itemType": "AccountResource:reagent_c_t02", + "quantity": 15 + } + ] + } + }, + { + "missionAlertGuid": "a7f86b46-098a-427e-ae84-6e0e158d2ac5", + "tileIndex": 51, + "availableUntil": "2017-07-25T23:59:59.999Z", + "missionAlertRewards": { + "tierGroupName": "MissionAlert_Proto_03", + "items": [ + { + "itemType": "Worker:workerbasic_r_t01", + "quantity": 1 + } + ] + } + }, + { + "missionAlertGuid": "c644477c-782b-4d45-b334-306c8fd9a53b", + "tileIndex": 12, + "availableUntil": "2017-07-25T23:59:59.999Z", + "missionAlertRewards": { + "tierGroupName": "MissionAlert_Proto_03", + "items": [ + { + "itemType": "AccountResource:schematicxp", + "quantity": 3350 + } + ] + } + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + }, + { + "theaterId": "8633333E41A86F67F78EAEAF25BF4735", + "availableMissionAlerts": [], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ], + "Seasonal": { + "Season4": { + "theaters": [ + { + "displayName": { + "de": "Untersuche den Krater", + "ru": "Visit the Crater", + "ko": "Visit the Crater", + "zh-hant": "Visit the Crater", + "pt-br": "Visite a Cratera", + "en": "Visit the Crater", + "it": "Visita il cratere", + "fr": "Aller au cratère", + "zh-cn": "Visit the Crater", + "es": "Visita el cráter", + "ar": "Visit the Crater", + "ja": "Visit the Crater", + "pl": "Zbadaj krater", + "es-419": "Visit the Crater", + "tr": "Visit the Crater" + }, + "uniqueId": "322A87A340A50168BC74F4801F7B884A", + "theaterSlot": 0, + "bIsTestTheater": false, + "bHideLikeTestTheater": false, + "requiredEventFlag": "EventFlag.Blockbuster2018", + "missionRewardNamedWeightsRowName": "None", + "description": { + "de": "Es gibt Gerüchte, dass etwas in dieser Gegend herabgestürzt ist.", + "ru": "There are rumors about something crashing down in this area.", + "ko": "There are rumors about something crashing down in this area.", + "zh-hant": "There are rumors about something crashing down in this area.", + "pt-br": "Há rumores de que algo caiu nessa área.", + "en": "There are rumors about something crashing down in this area.", + "it": "Si dice che qualcosa sia precipitato in quest'area.", + "fr": "Les rumeurs racontent que quelque chose s'est écrasé dans cette zone.", + "zh-cn": "There are rumors about something crashing down in this area.", + "es": "Los rumores dicen que algo se estrelló en esta zona.", + "ar": "There are rumors about something crashing down in this area.", + "ja": "There are rumors about something crashing down in this area.", + "pl": "Doszły nas plotki o jakimś obiekcie, który rozbił się w okolicy.", + "es-419": "There are rumors about something crashing down in this area.", + "tr": "There are rumors about something crashing down in this area." + }, + "runtimeInfo": { + "theaterType": "Standard", + "theaterTags": { + "gameplayTags": [] + }, + "theaterVisibilityRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "FortQuestItemDefinition'/Game/Quests/Outpost/OutpostQuest_T1_L3.OutpostQuest_T1_L3'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None", + "eventFlag": "EventFlag.Blockbuster2018" + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "requiredSubGameForVisibility": "Invalid", + "bOnlyMatchLinkedQuestsToTiles": true, + "worldMapPinClass": "BlueprintGeneratedClass'/Game/Environments/WorldMap/Blueprints/WM_PinHard.WM_PinHard_C'", + "theaterImage": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "theaterImages": { + "brush_XXS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_XS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_S": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_M": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_L": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_XL": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + } + }, + "theaterColorInfo": { + "bUseDifficultyToDetermineColor": false, + "color": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + } + }, + "socket": "Survival_Mode", + "missionAlertRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertCategoryRequirements": [ + { + "missionAlertCategoryName": "Survival3DayCategory", + "bRespectTileRequirements": true, + "bAllowQuickplay": true + }, + { + "missionAlertCategoryName": "Survival7DayCategory", + "bRespectTileRequirements": true, + "bAllowQuickplay": true + } + ] + }, + "tiles": [ + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 1, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 1, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 1, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 1, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 1, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 1, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 1, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Winter/BP_ZT_TheForestWinter.BP_ZT_TheForestWinter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheGrasslands/BP_ZT_TheGrasslands.BP_ZT_TheGrasslands_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_TestTheSuit_BlockBuster_Landmark.MissionGen_TestTheSuit_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_TheCrater/BP_ZT_TheCrater.BP_ZT_TheCrater_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [ + { + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_DtM_BlockBuster_Landmark.MissionGen_DtM_BlockBuster_Landmark_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_TheForest/BP_ZT_TheForest.BP_ZT_TheForest_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + } + } + ], + "regions": [ + { + "displayName": "PvE_01_Difficulty_05", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty05" + } + ] + }, + "tileIndices": [ + 0, + 17, + 50 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_1Gate.MissionGen_1Gate_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_2Gates.MissionGen_2Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_RetrieveTheData.MissionGen_RetrieveTheData_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_LaunchTheBalloon.MissionGen_LaunchTheBalloon_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + } + } + ], + "numMissionsAvailable": 4, + "numMissionsToChange": 4, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [ + { + "categoryName": "StormCategory", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": "PvE_01_Difficulty_03", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty03" + } + ] + }, + "tileIndices": [ + 1, + 37, + 72 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_1Gate.MissionGen_1Gate_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_RetrieveTheData.MissionGen_RetrieveTheData_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone3" + } + } + ], + "numMissionsAvailable": 3, + "numMissionsToChange": 3, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [ + { + "categoryName": "StormCategory", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": "PvE_01_Difficulty_04", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty04" + } + ] + }, + "tileIndices": [ + 2, + 49, + 73 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_1Gate.MissionGen_1Gate_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_RetrieveTheData.MissionGen_RetrieveTheData_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_LaunchTheBalloon.MissionGen_LaunchTheBalloon_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone4" + } + } + ], + "numMissionsAvailable": 4, + "numMissionsToChange": 4, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [ + { + "categoryName": "StormCategory", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": "Non Mission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 3, + 4, + 5, + 6, + 7, + 8, + 11, + 12, + 13, + 15, + 16, + 22, + 25, + 26, + 27, + 30, + 34, + 35, + 36, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 62, + 64, + 65, + 66, + 67, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "PvE_02_Difficulty_02", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty02" + } + ] + }, + "tileIndices": [ + 9, + 18, + 52 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.44999998807907104, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_1Gate.MissionGen_T2_R2_1Gate_C" + }, + { + "weight": 0.44999998807907104, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_2Gates.MissionGen_T2_R2_2Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtD.MissionGen_T2_R2_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtL.MissionGen_T2_R2_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_RtS.MissionGen_T2_R2_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_DtE.MissionGen_T2_R2_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_BuildtheRadarGrid.MissionGen_T2_R2_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_2/MissionGen_T2_R2_EtSurvivors.MissionGen_T2_R2_EtSurvivors_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + } + } + ], + "numMissionsAvailable": 5, + "numMissionsToChange": 5, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [ + { + "categoryName": "StormCategory", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": "PvE_02_Difficulty_01", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty01" + } + ] + }, + "tileIndices": [ + 10, + 19, + 51 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_1Gate.MissionGen_T2_R1_1Gate_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_RtD.MissionGen_T2_R1_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_RtL.MissionGen_T2_R1_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_EtSurvivors.MissionGen_T2_R1_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_BuildtheRadarGrid.MissionGen_T2_R1_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_1/MissionGen_T2_R1_DtE.MissionGen_T2_R1_DtE_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + } + } + ], + "numMissionsAvailable": 4, + "numMissionsToChange": 4, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "PvE_02_Difficulty_03", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty03" + } + ] + }, + "tileIndices": [ + 14, + 20, + 53 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_1Gate.MissionGen_T2_R3_1Gate_C" + }, + { + "weight": 0.4000000059604645, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_2Gates.MissionGen_T2_R3_2Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtD.MissionGen_T2_R3_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtS.MissionGen_T2_R3_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_DtE.MissionGen_T2_R3_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_BuildtheRadarGrid.MissionGen_T2_R3_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_EtSurvivors.MissionGen_T2_R3_EtSurvivors_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + } + } + ], + "numMissionsAvailable": 6, + "numMissionsToChange": 6, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [ + { + "categoryName": "StormCategory", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": "PvE_02_Difficulty_04", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty04" + } + ] + }, + "tileIndices": [ + 21, + 24, + 54 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.20000000298023224, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_1Gate.MissionGen_T2_R3_1Gate_C" + }, + { + "weight": 0.4000000059604645, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_2Gates.MissionGen_T2_R3_2Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtD.MissionGen_T2_R3_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtL.MissionGen_T2_R3_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_RtS.MissionGen_T2_R3_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_DtE.MissionGen_T2_R3_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_BuildtheRadarGrid.MissionGen_T2_R3_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_3/MissionGen_T2_R3_EtSurvivors.MissionGen_T2_R3_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_T2_DtB.MissionGen_T2_DtB_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + } + } + ], + "numMissionsAvailable": 7, + "numMissionsToChange": 7, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [ + { + "categoryName": "StormCategory", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": "PvE_02_Difficulty_05", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty05" + } + ] + }, + "tileIndices": [ + 23, + 55, + 70 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_2Gates.MissionGen_T2_R5_2Gates_C" + }, + { + "weight": 0.5, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_3Gates.MissionGen_T2_R5_3Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtD.MissionGen_T2_R5_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtL.MissionGen_T2_R5_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_RtS.MissionGen_T2_R5_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_DtB.MissionGen_T2_R5_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_EtShelter.MissionGen_T2_R5_EtShelter_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_EtSurvivors.MissionGen_T2_R5_EtSurvivors_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_DtE.MissionGen_T2_R5_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/Plankerton/Region_5/MissionGen_T2_R5_BuildtheRadarGrid.MissionGen_T2_R5_BuildtheRadarGrid_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + } + } + ], + "numMissionsAvailable": 8, + "numMissionsToChange": 8, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [ + { + "categoryName": "StormCategory", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": "PvE_03_Difficulty_05", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty05" + } + ] + }, + "tileIndices": [ + 28, + 60, + 82 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.20000000298023224, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_2Gates.MissionGen_T3_R5_2Gates_C" + }, + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_3Gates.MissionGen_T3_R5_3Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtD.MissionGen_T3_R5_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtL.MissionGen_T3_R5_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtS.MissionGen_T3_R5_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_DtB.MissionGen_T3_R5_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_EtShelter.MissionGen_T3_R5_EtShelter_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_DtE.MissionGen_T3_R5_DtE_C" + }, + { + "weight": 0.20000000298023224, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_1Gate.MissionGen_T3_R5_1Gate_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + } + } + ], + "numMissionsAvailable": 8, + "numMissionsToChange": 8, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [ + { + "categoryName": "StormCategory", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": "PvE_03_Difficulty_04", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty04" + } + ] + }, + "tileIndices": [ + 29, + 59, + 83 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_2Gates.MissionGen_T3_R5_2Gates_C" + }, + { + "weight": 0.4000000059604645, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_3Gates.MissionGen_T3_R5_3Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtD.MissionGen_T3_R5_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtL.MissionGen_T3_R5_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtS.MissionGen_T3_R5_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_DtB.MissionGen_T3_R5_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_EtShelter.MissionGen_T3_R5_EtShelter_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_DtE.MissionGen_T3_R5_DtE_C" + }, + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_1Gate.MissionGen_T3_R5_1Gate_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + } + } + ], + "numMissionsAvailable": 7, + "numMissionsToChange": 7, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [ + { + "categoryName": "StormCategory", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": "PvE_03_Difficulty_01", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty01" + } + ] + }, + "tileIndices": [ + 31, + 56, + 69 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.6000000238418579, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_2Gates.MissionGen_T3_R5_2Gates_C" + }, + { + "weight": 0.4000000059604645, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_3Gates.MissionGen_T3_R5_3Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtD.MissionGen_T3_R5_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtL.MissionGen_T3_R5_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtS.MissionGen_T3_R5_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_EtShelter.MissionGen_T3_R5_EtShelter_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_DtE.MissionGen_T3_R5_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_DtB.MissionGen_T3_R5_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_1Gate.MissionGen_T3_R5_1Gate_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + } + } + ], + "numMissionsAvailable": 6, + "numMissionsToChange": 6, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "PvE_03_Difficulty_02", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty02" + } + ] + }, + "tileIndices": [ + 32, + 57, + 71 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.44999998807907104, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_2Gates.MissionGen_T3_R5_2Gates_C" + }, + { + "weight": 0.44999998807907104, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_3Gates.MissionGen_T3_R5_3Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtD.MissionGen_T3_R5_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtL.MissionGen_T3_R5_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtS.MissionGen_T3_R5_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_DtB.MissionGen_T3_R5_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_EtShelter.MissionGen_T3_R5_EtShelter_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_DtE.MissionGen_T3_R5_DtE_C" + }, + { + "weight": 0.44999998807907104, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_1Gate.MissionGen_T3_R5_1Gate_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + } + } + ], + "numMissionsAvailable": 5, + "numMissionsToChange": 5, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [ + { + "categoryName": "StormCategory", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": "PvE_03_Difficulty_03", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty03" + } + ] + }, + "tileIndices": [ + 33, + 58, + 68 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_2Gates.MissionGen_T3_R5_2Gates_C" + }, + { + "weight": 0.5, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_3Gates.MissionGen_T3_R5_3Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtD.MissionGen_T3_R5_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtS.MissionGen_T3_R5_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_DtB.MissionGen_T3_R5_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_EtShelter.MissionGen_T3_R5_EtShelter_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_DtE.MissionGen_T3_R5_DtE_C" + }, + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_1Gate.MissionGen_T3_R5_1Gate_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + } + } + ], + "numMissionsAvailable": 6, + "numMissionsToChange": 6, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [ + { + "categoryName": "StormCategory", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + }, + { + "displayName": "PvE_04_Difficulty_01", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE04.Difficulty01" + } + ] + }, + "tileIndices": [ + 61, + 63, + 84 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_2Gates.MissionGen_T3_R5_2Gates_C" + }, + { + "weight": 0.699999988079071, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_3Gates.MissionGen_T3_R5_3Gates_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtD.MissionGen_T3_R5_RtD_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtL.MissionGen_T3_R5_RtL_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_RtS.MissionGen_T3_R5_RtS_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_DtB.MissionGen_T3_R5_DtB_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_EtShelter.MissionGen_T3_R5_EtShelter_C" + }, + { + "weight": 0.30000001192092896, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_1Gate.MissionGen_T3_R5_1Gate_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_BuildtheRadarGrid.MissionGen_T3_R5_BuildtheRadarGrid_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_DtE.MissionGen_T3_R5_DtE_C" + }, + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/CannyValley/MissionGen_T3_R5_EtSurvivors.MissionGen_T3_R5_EtSurvivors_C" + } + ], + "difficultyWeights": [ + { + "weight": 1, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + } + } + ], + "numMissionsAvailable": 5, + "numMissionsToChange": 5, + "missionChangeFrequency": 0.5 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertRequirements": [] + } + ] + } + ], + "missions": [ + { + "theaterId": "322A87A340A50168BC74F4801F7B884A", + "availableMissions": [ + { + "missionGuid": "c9cbb7f8-4aa4-4652-b829-8f78b17ba557", + "missionRewards": { + "tierGroupName": "Mission_Select_T05", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t05", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t05", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + }, + "tileIndex": 50, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "93447549-0b9e-4d27-b0b3-77b407a5c0d9", + "missionRewards": { + "tierGroupName": "Mission_Select_T03", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t03", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_personnelxp_t03", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t03", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone3" + }, + "tileIndex": 37, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "482381fb-16ca-4938-8c44-531e744bdd38", + "missionRewards": { + "tierGroupName": "Mission_Select_T04", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t04", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t04", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone4" + }, + "tileIndex": 49, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "5c3280fb-a10c-429f-a0df-0b27616e2d76", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_improvised_r", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t07", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 52, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "be5ed9ac-aa4e-44b5-9ceb-336fe24d0c74", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 51, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "88056c2a-cd9c-496a-83cd-b7317df284b5", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t08", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 53, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "695635ae-0090-4730-bfd1-b64a66f875bb", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_alteration_upgrade_uc", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t09", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 54, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3fb6a9f3-5f99-4f8f-918e-bb57e9f39212", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t10", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 55, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0f059b21-c5ad-488f-82cc-5426ed46a4f2", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t15", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 60, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "39764a98-d47b-472b-a957-343633dfcbb4", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t14", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 59, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9df21dbd-59ed-43c8-a307-c0613eb2afa1", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_heroxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t11", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 56, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1cf91138-f31c-4635-83a5-6b6856525499", + "missionRewards": { + "tierGroupName": "Mission_Select_T12", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t12", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_medium", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t12", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + }, + "tileIndex": 57, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "8f9975be-8805-4c41-9e3f-0340f94579e5", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_alteration_upgrade_r", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t13", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 58, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "da999b8e-91d4-4826-a86f-b7ca1129a3ad", + "missionRewards": { + "tierGroupName": "Mission_Select_T16", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t16", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_ore_obsidian_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t16", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/Plankerton/ParentMissionGens/MissionGen_StC_BlockBuster_Landmark.MissionGen_StC_BlockBuster_Landmark_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + }, + "tileIndex": 61, + "availableUntil": "2017-07-25T23:59:59.999Z" + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ], + "missionAlerts": [ + { + "theaterId": "322A87A340A50168BC74F4801F7B884A", + "availableMissionAlerts": [], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ] + }, + "Season5": { + "theaters": [ + { + "displayName": { + "de": "Die Horde", + "ru": "Орда", + "ko": "웨이브", + "zh-hant": "部落", + "pt-br": "A Horda", + "en": "The Horde", + "it": "L'Orda", + "fr": "La horde", + "zh-cn": "部落", + "es": "La horda", + "ar": "The Horde", + "ja": "大群", + "pl": "Hordobicie", + "es-419": "La horda", + "tr": "Sürü" + }, + "uniqueId": "V12RVJQ2FOT0FE3BVD7R0W3LNBUQC5B4", + "author": "This theater zone was recreated by PRO100KatYT for LawinServer.", + "theaterSlot": 1, + "bIsTestTheater": false, + "bHideLikeTestTheater": false, + "requiredEventFlag": "EventFlag.RoadTrip2018", + "description": { + "de": "Baue eine tragbare Basis und stelle dich der Horde.", + "ru": "Постройте мобильную базу и сразитесь с ордой.", + "ko": "이동식 기지를 건설하고 웨이브를 처리하세요.", + "zh-hant": "建立一個可移動的基地並加入部落。", + "pt-br": "Construa uma base portátil e enfrente a horda.", + "en": "Build a portable base and take on the horde.", + "it": "Costruisci una base portatile e sconfiggi l'Orda.", + "fr": "Construisez un fort portatif et affrontez la horde.", + "zh-cn": "建立一个可移动的基地并加入部落。", + "es": "Construye una base portátil y enfréntate a la horda.", + "ar": "Build a portable base and take on the horde.", + "ja": "ポータブルベースを建築し、大群と戦おう。", + "pl": "Zbuduj przenośną bazę i staw czoła hordzie.", + "es-419": "Construye una base portátil y enfrenta a la horda.", + "tr": "Taşınabilir bir üs inşa et ve sürüyle yüzleş." + }, + "runtimeInfo": { + "theaterType": "Standard", + "theaterTags": { + "gameplayTags": [] + }, + "theaterVisibilityRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None", + "eventFlag": "EventFlag.RoadTrip2018" + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "worldMapPinClass": "BlueprintGeneratedClass'/Game/Environments/WorldMap/Blueprints/WM_PinHorde.WM_PinHorde_C'", + "theaterImage": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_normal_.Icon-TheaterDifficulty-_normal_'", + "theaterImages": { + "brush_XXS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "None", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_XS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "None", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_S": { + "imageSize": { + "x": 32, + "y": 32 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "None", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_M": { + "imageSize": { + "x": 32, + "y": 32 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "None", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_L": { + "imageSize": { + "x": 32, + "y": 32 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "None", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + }, + "brush_XL": { + "imageSize": { + "x": 32, + "y": 32 + }, + "drawAs": "Image", + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "resourceObject": "None", + "resourceName": "None", + "bIsDynamicallyLoaded": false, + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "isValid": 0 + } + } + }, + "theaterColorInfo": { + "bUseDifficultyToDetermineColor": false, + "color": { + "specifiedColor": { + "r": 0.4969330132007599, + "g": 1, + "b": 0.01298299990594387, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + } + }, + "socket": "TEST_ElderProto", + "missionAlertRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + "tiles": [ + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Horde/BP_ZT_BuildTheBase_Desert.BP_ZT_BuildTheBase_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 0, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_BuildTheBase.MissionGen_BuildTheBase_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Horde/Stonewood/BP_ZT_ChallengeTheHorde_SW_H.BP_ZT_ChallengeTheHorde_SW_H_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Horde/Stonewood/BP_ZT_ChallengeTheHorde_SW_VH.BP_ZT_ChallengeTheHorde_SW_VH_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Horde/Plankerton/BP_ZT_ChallengeTheHorde_Plank_VL.BP_ZT_ChallengeTheHorde_Plank_VL_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": -1, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Horde/Plankerton/BP_ZT_ChallengeTheHorde_Plank_M.BP_ZT_ChallengeTheHorde_Plank_M_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 0, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Horde/Plankerton/BP_ZT_ChallengeTheHorde_Plank_VH.BP_ZT_ChallengeTheHorde_Plank_VH_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 0, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Horde/Canny/BP_ZT_ChallengeTheHorde_Canny_VL.BP_ZT_ChallengeTheHorde_Canny_VL_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": -1, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Horde/Canny/BP_ZT_ChallengeTheHorde_Canny_M.BP_ZT_ChallengeTheHorde_Canny_M_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": -2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Horde/Canny/BP_ZT_ChallengeTheHorde_Canny_VH.BP_ZT_ChallengeTheHorde_Canny_VH_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": -3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Horde/Twinepeaks/BP_ZT_ChallengeTheHorde_Twine.BP_ZT_ChallengeTheHorde_Twine_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": -3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": -1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": -1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": -1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": -2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -3, + "yCoordinate": -1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": -1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": -2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": -2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": -3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": -3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": -4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": -3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": -4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": -2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": -5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -5, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + } + ], + "regions": [ + { + "displayName": "The Horde", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Non Mission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + } + ], + "missions": [ + { + "theaterId": "V12RVJQ2FOT0FE3BVD7R0W3LNBUQC5B4", + "availableMissions": [ + { + "missionGuid": "de4cd9a1-7b60-b86f-d57a-2b69d35f6d6b", + "missionRewards": {}, + "missionGenerator": "/Game/World/MissionGens/MissionGen_BuildTheBase.MissionGen_BuildTheBase_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Horde_Stonewood_VeryLow" + }, + "tileIndex": 0, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "52b91f1e-942b-a87c-e239-6d4a1694f535", + "missionRewards": { + "tierGroupName": "HordeBash_Stonewood_High", + "items": [ + { + "itemType": "AccountResource:schematicxp", + "quantity": 1 + }, + { + "itemType": "AccountResource:eventcurrency_scaling", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Horde_Stonewood_High" + }, + "tileIndex": 1, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0ca13b17-4c4d-64b1-6ead-ffc0e1b09646", + "missionRewards": { + "tierGroupName": "HordeBash_Stonewood_VeryHigh", + "items": [ + { + "itemType": "AccountResource:heroxp", + "quantity": 1 + }, + { + "itemType": "AccountResource:eventcurrency_scaling", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Horde_Stonewood_VeryHigh" + }, + "tileIndex": 2, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ea1238a7-a9f1-d5e3-c6e5-8e22aefff639", + "missionRewards": { + "tierGroupName": "HordeBash_Plankerton_VeryLow", + "items": [ + { + "itemType": "AccountResource:schematicxp", + "quantity": 1 + }, + { + "itemType": "AccountResource:eventcurrency_scaling", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Horde_Plankerton_VeryLow" + }, + "tileIndex": 3, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "90f74c0e-181f-7a78-b633-871a2e7d1c37", + "missionRewards": { + "tierGroupName": "HordeBash_Plankerton_Medium", + "items": [ + { + "itemType": "AccountResource:personnelxp", + "quantity": 1 + }, + { + "itemType": "AccountResource:eventcurrency_scaling", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Horde_Plankerton_Medium" + }, + "tileIndex": 4, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "fe64cfcf-6310-979d-bfc5-346fa8c6ff02", + "missionRewards": { + "tierGroupName": "HordeBash_Plankerton_VeryHigh", + "items": [ + { + "itemType": "AccountResource:personnelxp", + "quantity": 1 + }, + { + "itemType": "AccountResource:eventcurrency_scaling", + "quantity": 1 + }, + { + "itemType": "AccountResource:reagent_alteration_upgrade_uc", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Horde_Plankerton_VeryHigh" + }, + "tileIndex": 5, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f444abb9-0d08-2ec7-4617-1a4d7b8dd630", + "missionRewards": { + "tierGroupName": "HordeBash_Canny_VeryLow", + "items": [ + { + "itemType": "AccountResource:personnelxp", + "quantity": 1 + }, + { + "itemType": "AccountResource:eventcurrency_scaling", + "quantity": 1 + }, + { + "itemType": "AccountResource:reagent_alteration_generic", + "quantity": 2 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Horde_Uncanny_VeryLow" + }, + "tileIndex": 6, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "945d8a44-3171-1f86-22c0-dfedd7b1803d", + "missionRewards": { + "tierGroupName": "HordeBash_Canny_Medium", + "items": [ + { + "itemType": "AccountResource:schematicxp", + "quantity": 1 + }, + { + "itemType": "AccountResource:eventcurrency_scaling", + "quantity": 1 + }, + { + "itemType": "AccountResource:reagent_alteration_generic", + "quantity": 2 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Horde_Uncanny_Medium" + }, + "tileIndex": 7, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "62e5861c-23a5-f5d6-9083-df142463c5ae", + "missionRewards": { + "tierGroupName": "HordeBash_Canny_VeryHigh", + "items": [ + { + "itemType": "AccountResource:heroxp", + "quantity": 1 + }, + { + "itemType": "AccountResource:eventcurrency_scaling", + "quantity": 1 + }, + { + "itemType": "AccountResource:reagent_alteration_generic", + "quantity": 2 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Horde_Uncanny_VeryHigh" + }, + "tileIndex": 8, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "65cd7461-e29e-3f62-5af5-38ab51e55325", + "missionRewards": { + "tierGroupName": "HordeBash_Final", + "items": [ + { + "itemType": "AccountResource:personnelxp", + "quantity": 1 + }, + { + "itemType": "AccountResource:eventcurrency_scaling", + "quantity": 1 + }, + { + "itemType": "AccountResource:reagent_alteration_generic", + "quantity": 2 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_ChallengeTheHorde.MissionGen_ChallengeTheHorde_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Horde_Final" + }, + "tileIndex": 9, + "availableUntil": "2017-07-25T23:59:59.999Z" + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ], + "missionAlerts": [ + { + "theaterId": "V12RVJQ2FOT0FE3BVD7R0W3LNBUQC5B4", + "availableMissionAlerts": [ + { + "name": "MissionAlert_HordeCategory_01", + "categoryName": "HordeCategory", + "spreadDataName": "None", + "missionAlertGuid": "bed38a34-5cac-b325-0ff3-76bd439dde21", + "tileIndex": 1, + "availableUntil": "2017-07-25T23:59:59.999Z", + "totalSpreadRefreshes": 0, + "missionAlertModifiers": {}, + "missionAlertRewards": { + "tierGroupName": "HordeBash_Stonewood_High", + "items": [ + { + "itemType": "AccountResource:eventcurrency_roadtrip", + "quantity": 50 + }, + { + "itemType": "Token:hordepointstier1", + "quantity": 1 + } + ] + } + }, + { + "name": "MissionAlert_HordeCategory_02", + "categoryName": "HordeCategory", + "spreadDataName": "None", + "missionAlertGuid": "437e80d7-5f97-22f2-1781-2fae1aa61170", + "tileIndex": 2, + "availableUntil": "2017-07-25T23:59:59.999Z", + "totalSpreadRefreshes": 0, + "missionAlertModifiers": {}, + "missionAlertRewards": { + "tierGroupName": "HordeBash_Stonewood_VeryHigh", + "items": [ + { + "itemType": "AccountResource:eventcurrency_roadtrip", + "quantity": 50 + }, + { + "itemType": "Token:hordepointstier1", + "quantity": 1 + } + ] + } + }, + { + "name": "MissionAlert_HordeCategory_03", + "categoryName": "HordeCategory", + "spreadDataName": "None", + "missionAlertGuid": "9f90630f-3f58-b608-ff42-3904c66666c2", + "tileIndex": 3, + "availableUntil": "2017-07-25T23:59:59.999Z", + "totalSpreadRefreshes": 0, + "missionAlertModifiers": {}, + "missionAlertRewards": { + "tierGroupName": "HordeBash_Plankerton_VeryLow", + "items": [ + { + "itemType": "AccountResource:eventcurrency_roadtrip", + "quantity": 52 + }, + { + "itemType": "Token:hordepointstier1", + "quantity": 1 + } + ] + } + }, + { + "name": "MissionAlert_HordeCategory_04", + "categoryName": "HordeCategory", + "spreadDataName": "None", + "missionAlertGuid": "a5e01b47-3c4e-36fe-f45f-14515dee0549", + "tileIndex": 4, + "availableUntil": "2017-07-25T23:59:59.999Z", + "totalSpreadRefreshes": 0, + "missionAlertModifiers": {}, + "missionAlertRewards": { + "tierGroupName": "HordeBash_Plankerton_Medium", + "items": [ + { + "itemType": "AccountResource:eventcurrency_roadtrip", + "quantity": 60 + }, + { + "itemType": "Token:hordepointstier2", + "quantity": 1 + } + ] + } + }, + { + "name": "MissionAlert_HordeCategory_05", + "categoryName": "HordeCategory", + "spreadDataName": "None", + "missionAlertGuid": "62761bef-979b-cc25-2d9d-f36aee639075", + "tileIndex": 5, + "availableUntil": "2017-07-25T23:59:59.999Z", + "totalSpreadRefreshes": 0, + "missionAlertModifiers": {}, + "missionAlertRewards": { + "tierGroupName": "HordeBash_Plankerton_VeryHigh", + "items": [ + { + "itemType": "AccountResource:eventcurrency_roadtrip", + "quantity": 72 + }, + { + "itemType": "Token:hordepointstier2", + "quantity": 1 + } + ] + } + }, + { + "name": "MissionAlert_HordeCategory_06", + "categoryName": "HordeCategory", + "spreadDataName": "None", + "missionAlertGuid": "56475e2-b116-ed79-6c4a-e408463f4222", + "tileIndex": 6, + "availableUntil": "2017-07-25T23:59:59.999Z", + "totalSpreadRefreshes": 0, + "missionAlertModifiers": {}, + "missionAlertRewards": { + "tierGroupName": "HordeBash_Canny_VeryLow", + "items": [ + { + "itemType": "AccountResource:eventcurrency_roadtrip", + "quantity": 80 + }, + { + "itemType": "Token:hordepointstier2", + "quantity": 1 + } + ] + } + }, + { + "name": "MissionAlert_HordeCategory_07", + "categoryName": "HordeCategory", + "spreadDataName": "None", + "missionAlertGuid": "61e46898-c8d6-6720-392f-3aaf630d9dfd", + "tileIndex": 7, + "availableUntil": "2017-07-25T23:59:59.999Z", + "totalSpreadRefreshes": 0, + "missionAlertModifiers": {}, + "missionAlertRewards": { + "tierGroupName": "HordeBash_Canny_Medium", + "items": [ + { + "itemType": "AccountResource:eventcurrency_roadtrip", + "quantity": 92 + }, + { + "itemType": "Token:hordepointstier3", + "quantity": 1 + } + ] + } + }, + { + "name": "MissionAlert_HordeCategory_08", + "categoryName": "HordeCategory", + "spreadDataName": "None", + "missionAlertGuid": "99f5c35d-d455-d644-7281-4bdda4a22b5c", + "tileIndex": 8, + "availableUntil": "2017-07-25T23:59:59.999Z", + "totalSpreadRefreshes": 0, + "missionAlertModifiers": {}, + "missionAlertRewards": { + "tierGroupName": "HordeBash_Canny_VeryHigh", + "items": [ + { + "itemType": "AccountResource:eventcurrency_roadtrip", + "quantity": 102 + }, + { + "itemType": "Token:hordepointstier3", + "quantity": 1 + } + ] + } + }, + { + "name": "MissionAlert_HordeCategory_09", + "categoryName": "HordeCategory", + "spreadDataName": "None", + "missionAlertGuid": "fc47ae9c-71bd-362d-96c2-0dc9f66605ac", + "tileIndex": 9, + "availableUntil": "2017-07-25T23:59:59.999Z", + "totalSpreadRefreshes": 0, + "missionAlertModifiers": {}, + "missionAlertRewards": { + "tierGroupName": "HordeBash_Final", + "items": [ + { + "itemType": "AccountResource:eventcurrency_roadtrip", + "quantity": 120 + }, + { + "itemType": "Token:hordepointstier4", + "quantity": 1 + } + ] + } + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ] + }, + "Season7": { + "theaters": [ + { + "displayName": { + "de": "Frostnite", + "ru": "Морозные войны", + "ko": "프로스트나이트", + "zh-hant": "霜凍之夜", + "pt-br": "Frionite", + "en": "Frostnite", + "it": "Frostnite", + "fr": "Nuit de glace", + "zh-cn": "霜冻之夜", + "es": "Frostnite", + "ar": "Frostnite", + "ja": "フロストナイト", + "pl": "Mróznite", + "es-419": "Navidad descerebrada", + "tr": "Fortnite Soğukları" + }, + "uniqueId": "FQ7DMNYZ6ZHTBAX2I5JGVZYUUMPGYX2M", + "author": "This theater zone was recreated by PRO100KatYT for LawinServer.", + "theaterSlot": 1, + "bIsTestTheater": false, + "bHideLikeTestTheater": false, + "requiredEventFlag": "EventFlag.Frostnite", + "description": { + "de": "Verteidige in einer schier endlosen Nacht zusammen mit deinem Team den weihnachtlichen Heizbrenner!", + "ru": "Вы с командой обороняете нагреватель от врагов на протяжении бесконечной ночи!", + "ko": "스쿼드원과 함께 거의 끝이 없는 밤 동안 크리스마스 버너를 방어해야 합니다!", + "zh-hant": "你和你的隊友們將會在近乎無盡的長夜中保衛聖誕加熱器!", + "pt-br": "Você e sua equipe defenderão a Fornalha de Yule em uma noite quase sem fim!", + "en": "You and your team will defend the Yule Burner through a nearly endless night!", + "it": "Tu e la tua squadra difenderete il bruciatore natalizio nel corso di una notte infinita!", + "fr": "Votre groupe et vous devez défendre le brûleur pendant une nuit sans fin !", + "zh-cn": "你和你的队友们将会在近乎无尽的长夜中保卫圣诞加热器!", + "es": "¡Tu equipo y tú defenderéis el quemador navideño a lo largo de una noche casi interminable!", + "ar": "You and your team will defend the Yule Burner through a nearly endless night!", + "ja": "ほぼ明けない夜の中でチームと共にユールバーナーを守ろう!", + "pl": "Wraz ze swoją drużyną będziecie bronić świątecznego spalacza w niemal niekończącą się noc!", + "es-419": "¡Tú y tu equipo defenderán el quemador navideño durante una noche interminable!", + "tr": "Takım arkadaşlarınla sobayı bitmek bilmez bir gece boyunca savun!" + }, + "runtimeInfo": { + "theaterType": "Standard", + "theaterTags": { + "gameplayTags": [] + }, + "theaterVisibilityRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None", + "eventFlag": "EventFlag.Frostnite" + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "worldMapPinClass": "BlueprintGeneratedClass'/Game/Environments/WorldMap/Blueprints/WM_PinHoliday.WM_PinHoliday_C'", + "theaterImage": "Texture2D'/Game/UI/Icons/EditorIcon-Atlas-Red.EditorIcon-Atlas-Red'", + "theaterImages": { + "brush_XXS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_XS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_S": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_M": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_L": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_XL": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + } + }, + "theaterColorInfo": { + "bUseDifficultyToDetermineColor": false, + "color": { + "specifiedColor": { + "r": 1, + "g": 0, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + } + }, + "socket": "TEST_ElderProto", + "missionAlertRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertCategoryRequirements": [], + "gameplayModifierList": [] + }, + "tiles": [ + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 0, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": -2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": -1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": -1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": -1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": -5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -5, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Endless/BP_ZT_Endless_Winter.BP_ZT_Endless_Winter_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + } + ], + "regions": [ + { + "displayName": "Frostnite", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Non Mission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + } + ], + "missions": [ + { + "theaterId": "FQ7DMNYZ6ZHTBAX2I5JGVZYUUMPGYX2M", + "availableMissions": [ + { + "missionGuid": "9fbb55bf-48f0-768f-6119-60a6b1809100", + "missionRewards": { + "tierGroupName": "Mission_Select_Endless_T01", + "items": [ + { + "itemType": "CardPack:zcp_endless_t01", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Endless_Start_Zone5" + }, + "tileIndex": 0, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "661f922f-c92c-a2a5-6506-76481e61c622", + "missionRewards": { + "tierGroupName": "Mission_Select_Endless_T02", + "items": [ + { + "itemType": "CardPack:zcp_endless_t02", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Endless_Normal_Zone3" + }, + "tileIndex": 1, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1ee4c755-9353-1796-812c-ef81dc49833a", + "missionRewards": { + "tierGroupName": "Mission_Select_Endless_T03", + "items": [ + { + "itemType": "CardPack:zcp_endless_t03", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Endless_Normal_Zone5" + }, + "tileIndex": 2, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9f1a43d0-6c85-4756-0aa6-d1255aa7cf54", + "missionRewards": { + "tierGroupName": "Mission_Select_Endless_T04", + "items": [ + { + "itemType": "CardPack:zcp_endless_t04", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Endless_Hard_Zone3" + }, + "tileIndex": 3, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "5e11cd16-27e9-ef76-84f8-73b067b09f14", + "missionRewards": { + "tierGroupName": "Mission_Select_Endless_T05", + "items": [ + { + "itemType": "CardPack:zcp_endless_t05", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Endless_Hard_Zone5" + }, + "tileIndex": 4, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ff83dbf6-3ede-acd4-71c8-616930e5d41f", + "missionRewards": { + "tierGroupName": "Mission_Select_Endless_T06", + "items": [ + { + "itemType": "CardPack:zcp_endless_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Endless_Nightmare_Zone3" + }, + "tileIndex": 5, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d6a4c1ae-5676-e8fd-09c1-713751ec8e5f", + "missionRewards": { + "tierGroupName": "Mission_Select_Endless_T07", + "items": [ + { + "itemType": "CardPack:zcp_endless_t07", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Endless.MissionGen_Endless_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Endless_Nightmare_Zone5" + }, + "tileIndex": 6, + "availableUntil": "2017-07-25T23:59:59.999Z" + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ], + "missionAlerts": [ + { + "theaterId": "FQ7DMNYZ6ZHTBAX2I5JGVZYUUMPGYX2M", + "availableMissionAlerts": [], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ] + }, + "Season8": { + "theaters": [ + { + "displayName": { + "de": "Das Frühlings-Event", + "ru": "The Spring Event", + "ko": "The Spring Event", + "zh-hant": "The Spring Event", + "pt-br": "O Evento da Primavera", + "en": "The Spring Event", + "it": "L'evento primaverile", + "fr": "Événement printanier", + "zh-cn": "The Spring Event", + "es": "El evento de primavera", + "ar": "The Spring Event", + "ja": "The Spring Event", + "pl": "Wiosenne wydarzenie", + "es-419": "The Spring Event", + "tr": "The Spring Event" + }, + "uniqueId": "BRKD1Q8ODLTWQMF2C39A6P58CV34P2EW", + "author": "This theater zone was recreated by PRO100KatYT for LawinServer.", + "theaterSlot": 1, + "bIsTestTheater": false, + "bHideLikeTestTheater": false, + "requiredEventFlag": "EventFlag.Spring2019.Phase2", + "description": { + "de": "Es gibt Gerüchte, dass etwas in dieser Gegend herabgestürzt ist.", + "ru": "There are rumors about something crashing down in this area.", + "ko": "There are rumors about something crashing down in this area.", + "zh-hant": "There are rumors about something crashing down in this area.", + "pt-br": "Há rumores de que algo caiu nessa área.", + "en": "There are rumors about something crashing down in this area.", + "it": "Si dice che qualcosa sia precipitato in quest'area.", + "fr": "Les rumeurs racontent que quelque chose s'est écrasé dans cette zone.", + "zh-cn": "There are rumors about something crashing down in this area.", + "es": "Los rumores dicen que algo se estrelló en esta zona.", + "ar": "There are rumors about something crashing down in this area.", + "ja": "There are rumors about something crashing down in this area.", + "pl": "Doszły nas plotki o jakimś obiekcie, który rozbił się w okolicy.", + "es-419": "There are rumors about something crashing down in this area.", + "tr": "There are rumors about something crashing down in this area." + }, + "runtimeInfo": { + "theaterType": "Standard", + "theaterTags": { + "gameplayTags": [] + }, + "theaterVisibilityRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None", + "eventFlag": "EventFlag.Spring2019.Phase2" + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "requiredSubGameForVisibility": "Invalid", + "bOnlyMatchLinkedQuestsToTiles": true, + "worldMapPinClass": "BlueprintGeneratedClass'/Game/Environments/WorldMap/Blueprints/WM_PinHard.WM_PinHard_C'", + "theaterImage": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "theaterImages": { + "brush_XXS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_XS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_S": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_M": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_L": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_XL": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + } + }, + "theaterColorInfo": { + "bUseDifficultyToDetermineColor": false, + "color": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + } + }, + "socket": "Survival_Mode", + "missionAlertRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertCategoryRequirements": [ + { + "missionAlertCategoryName": "Survival3DayCategory", + "bRespectTileRequirements": true, + "bAllowQuickplay": true + }, + { + "missionAlertCategoryName": "Survival7DayCategory", + "bRespectTileRequirements": true, + "bAllowQuickplay": true + } + ] + }, + "tiles": [ + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 0, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 0, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": -1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": -1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_WalkthePlank/BP_ZT_TheLakeside_WalkthePlank.BP_ZT_TheLakeside_WalkthePlank_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -6, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": -5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_PirateCove/BP_ZT_PirateCove_Landmark.BP_ZT_PirateCove_Landmark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + } + ], + "regions": [ + { + "displayName": "Beyond the Stellar Horizon", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Non Mission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + } + ], + "missions": [ + { + "theaterId": "BRKD1Q8ODLTWQMF2C39A6P58CV34P2EW", + "availableMissions": [ + { + "missionGuid": "a76025da-4878-3b9b-b522-7e392cfbe4a7", + "missionRewards": { + "tierGroupName": "Mission_Select_T16", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t16", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_veryhigh", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t16", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + }, + "tileIndex": 0, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f5cc717b-4eb9-5780-c178-afbbfaddf743", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_veryhigh", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t15", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 1, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f45aa168-59d3-9f3f-c3e0-134cb94cd248", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_veryhigh", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t14", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 2, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "209e6059-c6da-e560-06d3-88dd0ff98bf4", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_high", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t13", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 3, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "391a1e1e-1370-18a2-02e9-764a019a474f", + "missionRewards": { + "tierGroupName": "Mission_Select_T12", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t12", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_high", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t12", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + }, + "tileIndex": 4, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9f943456-d268-c8c9-ed64-a683152f111a", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_high", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t11", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 5, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4e0f8dca-c9f7-a4ab-645a-1ed6d2e12a68", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_medium", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t10", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 6, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "83919237-9cdb-6558-18cb-dea8319e6332", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_medium", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t09", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 7, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "88eca1ff-8a13-708f-635c-7c790ef291df", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_medium", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t08", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 8, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6d92749a-c78c-5707-fa38-cd3e78b659f5", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t07", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 9, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "32cfc511-d654-2572-0f23-8b3c372e6e05", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 10, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d8ab87bb-853e-c7d5-b315-2d7e09155369", + "missionRewards": { + "tierGroupName": "Mission_Select_T05", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t05", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t05", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + }, + "tileIndex": 11, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "db64c80e-435a-2860-7c4a-a83c8552c958", + "missionRewards": { + "tierGroupName": "Mission_Select_T04", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t04", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t04", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone4" + }, + "tileIndex": 12, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "cdc70d05-bcc6-644b-65ca-c238748f5d5a", + "missionRewards": { + "tierGroupName": "Mission_Select_T03", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t03", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t03", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone3" + }, + "tileIndex": 13, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "7b8c5089-3e69-3f95-01cc-b565b1916b44", + "missionRewards": { + "tierGroupName": "Mission_Select_T02", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t02", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t02", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone2" + }, + "tileIndex": 14, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "764c9ac5-ea3b-02c8-84cb-a25d8682e929", + "missionRewards": { + "tierGroupName": "Mission_Select_T01", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t01", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t01", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_PirateCove.MissionGen_PirateCove_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone1" + }, + "tileIndex": 15, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "de0278d3-075e-7846-57fe-315c402e5022", + "missionRewards": { + "tierGroupName": "Mission_Select_T16", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t16", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_veryhigh", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t16", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + }, + "tileIndex": 16, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "63273bce-a870-4384-bc15-8330690850bb", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_veryhigh", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t15", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 17, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4abb9b49-1c53-ddca-e5ff-b1d692efd98a", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_veryhigh", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t14", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 18, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ae6fda55-bb7f-4dc6-49cf-aa53fa1e295a", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_high", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t13", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 19, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6b7c6676-6449-8d5f-8710-fa41a6f3026e", + "missionRewards": { + "tierGroupName": "Mission_Select_T12", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t12", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_high", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t12", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + }, + "tileIndex": 20, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a732336e-0df5-6a4b-1310-7ddbd0809612", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_high", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t11", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 21, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "085153ec-9389-5695-a39d-460d3c689313", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_medium", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t10", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 22, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "e4381717-54a8-7269-af8b-b8bd26a82df0", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_medium", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t09", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 23, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "147fca3f-9e77-de41-b67d-86f7a2126593", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_medium", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t08", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 24, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "57ed77b8-42a5-5f52-0078-94fd4ed937a1", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t07", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 25, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "18cc30c0-0684-92ab-a4c3-898715d66bbc", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 26, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "525a68a1-2c51-ab17-77eb-f2b7812f7548", + "missionRewards": { + "tierGroupName": "Mission_Select_T05", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t05", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t05", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + }, + "tileIndex": 27, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0d72f65e-8cc0-84ba-d095-c0e07a0e77b0", + "missionRewards": { + "tierGroupName": "Mission_Select_T04", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t04", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t04", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone4" + }, + "tileIndex": 28, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9a4a6bdd-3c9b-add7-69d8-92aa03c4ef39", + "missionRewards": { + "tierGroupName": "Mission_Select_T03", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t03", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t03", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone3" + }, + "tileIndex": 29, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "5120f088-f973-4ced-1ff1-4a7e99917eff", + "missionRewards": { + "tierGroupName": "Mission_Select_T02", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t02", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t02", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone2" + }, + "tileIndex": 30, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6029a370-a583-42cf-69fb-230c28b9e317", + "missionRewards": { + "tierGroupName": "Mission_Select_T01", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t01", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t01", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/MissionGen_WalkThePlank.MissionGen_WalkThePlank_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone1" + }, + "tileIndex": 31, + "availableUntil": "2017-07-25T23:59:59.999Z" + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ], + "missionAlerts": [ + { + "theaterId": "BRKD1Q8ODLTWQMF2C39A6P58CV34P2EW", + "availableMissionAlerts": [], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ] + }, + "Season9": { + "theaters": [ + { + "displayName": { + "de": "Jenseits des Sternhorizonts", + "ru": "За звёздным горизонтом", + "ko": "우주 지평선 너머", + "zh-hant": "星球地平線以外", + "pt-br": "Além do Horizonte Estelar", + "en": "Beyond the Stellar Horizon", + "it": "Oltre l'orizzonte delle stelle", + "fr": "Par-delà l'Horizon stellaire", + "zh-cn": "星野之上", + "es": "Más allá del horizonte estelar", + "ar": "Beyond the Stellar Horizon", + "ja": "نحو آفاق النجوم", + "pl": "Za gwiezdnym horyzontem", + "es-419": "Más allá del horizonte estelar", + "tr": "Yıldızlar Ufkunun Ötesinde" + }, + "uniqueId": "BRKD1Q8ODLTWQMF2C39A6P58CV34P2EW", + "author": "This theater zone was recreated by PRO100KatYT for LawinServer.", + "theaterSlot": 1, + "bIsTestTheater": false, + "bHideLikeTestTheater": false, + "requiredEventFlag": "EventFlag.Season9.Phase2", + "description": "", + "runtimeInfo": { + "theaterType": "Standard", + "theaterTags": { + "gameplayTags": [] + }, + "theaterVisibilityRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None", + "eventFlag": "EventFlag.Season9.Phase2" + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "requiredSubGameForVisibility": "Invalid", + "bOnlyMatchLinkedQuestsToTiles": true, + "worldMapPinClass": "BlueprintGeneratedClass'/Game/Environments/WorldMap/Blueprints/WM_PinHard.WM_PinHard_C'", + "theaterImage": "Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_nightmare_.Icon-TheaterDifficulty-_nightmare_'", + "theaterImages": { + "brush_XXS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_XS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_S": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_M": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_L": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_XL": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + } + }, + "theaterColorInfo": { + "bUseDifficultyToDetermineColor": false, + "color": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + } + }, + "socket": "Survival_Mode", + "missionAlertRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "missionAlertCategoryRequirements": [ + { + "missionAlertCategoryName": "Survival3DayCategory", + "bRespectTileRequirements": true, + "bAllowQuickplay": true + }, + { + "missionAlertCategoryName": "Survival7DayCategory", + "bRespectTileRequirements": true, + "bAllowQuickplay": true + } + ] + }, + "tiles": [ + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 0, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 0, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 4, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -2, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -1, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": -1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": -1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": -6, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": -5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/Landmarks/ZT_FinalFrontier/BP_ZT_FinalFrontier.BP_ZT_FinalFrontier_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + }, + "linkedQuests": [], + "xCoordinate": 0, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": true, + "tileTags": { + "gameplayTags": [] + } + } + ], + "regions": [ + { + "displayName": "Beyond the Stellar Horizon", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + }, + { + "displayName": "Non Mission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "partyPowerRating": 0, + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "itemDefinition": "None" + } + } + ] + } + ], + "missions": [ + { + "theaterId": "BRKD1Q8ODLTWQMF2C39A6P58CV34P2EW", + "availableMissions": [ + { + "missionGuid": "a76025da-4878-3b9b-b522-7e392cfbe4a7", + "missionRewards": { + "tierGroupName": "Mission_Select_T16", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t16", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_veryhigh", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t16", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + }, + "tileIndex": 0, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f5cc717b-4eb9-5780-c178-afbbfaddf743", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_veryhigh", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t15", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 1, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f45aa168-59d3-9f3f-c3e0-134cb94cd248", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_veryhigh", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t14", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 2, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "209e6059-c6da-e560-06d3-88dd0ff98bf4", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_high", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t13", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 3, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "391a1e1e-1370-18a2-02e9-764a019a474f", + "missionRewards": { + "tierGroupName": "Mission_Select_T12", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t12", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_high", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t12", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + }, + "tileIndex": 4, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9f943456-d268-c8c9-ed64-a683152f111a", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_high", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t11", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 5, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4e0f8dca-c9f7-a4ab-645a-1ed6d2e12a68", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_medium", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t10", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 6, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "83919237-9cdb-6558-18cb-dea8319e6332", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_medium", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t09", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 7, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "88eca1ff-8a13-708f-635c-7c790ef291df", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_medium", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t08", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 8, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6d92749a-c78c-5707-fa38-cd3e78b659f5", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t07", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 9, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "32cfc511-d654-2572-0f23-8b3c372e6e05", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 10, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d8ab87bb-853e-c7d5-b315-2d7e09155369", + "missionRewards": { + "tierGroupName": "Mission_Select_T05", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t05", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t05", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + }, + "tileIndex": 11, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "db64c80e-435a-2860-7c4a-a83c8552c958", + "missionRewards": { + "tierGroupName": "Mission_Select_T04", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t04", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t04", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone4" + }, + "tileIndex": 12, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "cdc70d05-bcc6-644b-65ca-c238748f5d5a", + "missionRewards": { + "tierGroupName": "Mission_Select_T03", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t03", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t03", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone3" + }, + "tileIndex": 13, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "7b8c5089-3e69-3f95-01cc-b565b1916b44", + "missionRewards": { + "tierGroupName": "Mission_Select_T02", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t02", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t02", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone2" + }, + "tileIndex": 14, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "764c9ac5-ea3b-02c8-84cb-a25d8682e929", + "missionRewards": { + "tierGroupName": "Mission_Select_T01", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t01", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t01", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalFrontier.MissionGen_FinalFrontier_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone1" + }, + "tileIndex": 15, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "de0278d3-075e-7846-57fe-315c402e5022", + "missionRewards": { + "tierGroupName": "Mission_Select_T16", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t16", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_veryhigh", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t16", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Nightmare_Zone1" + }, + "tileIndex": 16, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "63273bce-a870-4384-bc15-8330690850bb", + "missionRewards": { + "tierGroupName": "Mission_Select_T15", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t15", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_veryhigh", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t15", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone5" + }, + "tileIndex": 17, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4abb9b49-1c53-ddca-e5ff-b1d692efd98a", + "missionRewards": { + "tierGroupName": "Mission_Select_T14", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t14", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_veryhigh", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t14", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone4" + }, + "tileIndex": 18, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ae6fda55-bb7f-4dc6-49cf-aa53fa1e295a", + "missionRewards": { + "tierGroupName": "Mission_Select_T13", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t13", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t04_high", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t13", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone3" + }, + "tileIndex": 19, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6b7c6676-6449-8d5f-8710-fa41a6f3026e", + "missionRewards": { + "tierGroupName": "Mission_Select_T12", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t12", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_high", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t12", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone2" + }, + "tileIndex": 20, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a732336e-0df5-6a4b-1310-7ddbd0809612", + "missionRewards": { + "tierGroupName": "Mission_Select_T11", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t11", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_high", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t11", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Hard_Zone1" + }, + "tileIndex": 21, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "085153ec-9389-5695-a39d-460d3c689313", + "missionRewards": { + "tierGroupName": "Mission_Select_T10", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t10", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_medium", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t10", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone5" + }, + "tileIndex": 22, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "e4381717-54a8-7269-af8b-b8bd26a82df0", + "missionRewards": { + "tierGroupName": "Mission_Select_T09", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t09", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t03_medium", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t09", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone4" + }, + "tileIndex": 23, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "147fca3f-9e77-de41-b67d-86f7a2126593", + "missionRewards": { + "tierGroupName": "Mission_Select_T08", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t08", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_medium", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t08", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone3" + }, + "tileIndex": 24, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "57ed77b8-42a5-5f52-0078-94fd4ed937a1", + "missionRewards": { + "tierGroupName": "Mission_Select_T07", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t07", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t07", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone2" + }, + "tileIndex": 25, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "18cc30c0-0684-92ab-a4c3-898715d66bbc", + "missionRewards": { + "tierGroupName": "Mission_Select_T06", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t06", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t06", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Normal_Zone1" + }, + "tileIndex": 26, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "525a68a1-2c51-ab17-77eb-f2b7812f7548", + "missionRewards": { + "tierGroupName": "Mission_Select_T05", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t05", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t02_low", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t05", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone5" + }, + "tileIndex": 27, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0d72f65e-8cc0-84ba-d095-c0e07a0e77b0", + "missionRewards": { + "tierGroupName": "Mission_Select_T04", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t04", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t04", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone4" + }, + "tileIndex": 28, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9a4a6bdd-3c9b-add7-69d8-92aa03c4ef39", + "missionRewards": { + "tierGroupName": "Mission_Select_T03", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t03", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t03", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone3" + }, + "tileIndex": 29, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "5120f088-f973-4ced-1ff1-4a7e99917eff", + "missionRewards": { + "tierGroupName": "Mission_Select_T02", + "items": [ + { + "itemType": "CardPack:zcp_personnelxp_t02", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t02", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone2" + }, + "tileIndex": 30, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6029a370-a583-42cf-69fb-230c28b9e317", + "missionRewards": { + "tierGroupName": "Mission_Select_T01", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t01", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_reagent_c_t01_verylow", + "quantity": 1 + }, + { + "itemType": "CardPack:zcp_eventscaling_t01", + "quantity": 1 + } + ] + }, + "missionGenerator": "/Game/World/MissionGens/EventPrimaryMissions/MissionGen_FinalRehearsal.MissionGen_FinalRehearsal_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Start_Zone1" + }, + "tileIndex": 31, + "availableUntil": "2017-07-25T23:59:59.999Z" + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ], + "missionAlerts": [ + { + "theaterId": "BRKD1Q8ODLTWQMF2C39A6P58CV34P2EW", + "availableMissionAlerts": [], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ] + }, + "Season10": { + "theaters": [ + { + "displayName": { + "de": "Straße zum Sommer", + "ru": "Пора в путь", + "ko": "도로 여행", + "zh-hant": "上路", + "pt-br": "Pegando a Estrada", + "en": "Hit the Road", + "it": "Mettiti in marcia", + "fr": "Sur la route", + "zh-cn": "上路", + "es": "En marcha", + "ar": "انطلق في طريقك", + "ja": "出発!", + "pl": "Pora ruszać w drogę", + "es-419": "Ponte en marcha", + "tr": "Yola Çık" + }, + "uniqueId": "4FF9902F4E66D5754137B5B8A2C06CCE", + "theaterSlot": 1, + "bIsTestTheater": false, + "bHideLikeTestTheater": false, + "requiredEventFlag": "EventFlag.Season10.Phase2", + "missionRewardNamedWeightsRowName": "None", + "description": { + "de": "Eskortiere das Transportfahrzeug zum Radiosender!", + "ru": "Сопровождайте грузовик до радиостанции!", + "ko": "라디오 방송국으로 길을 안내하세요!", + "zh-hant": "護送運輸隊前往廣播站!", + "pt-br": "Escolte o veículo até a estação de rádio!", + "en": "Escort the transport to the radio station!", + "it": "Scorta il mezzo fino alla stazione radio!", + "fr": "Escortez le véhicule jusqu'à la station de radio !", + "zh-cn": "护送运输队前往广播站!", + "es": "¡Acompaña al vehículo a la estación de radio!", + "ar": "اصطحب وسيلة النقل إلى محطة الراديو!", + "ja": "乗り物をラジオ局まで守り抜こう!", + "pl": "Eskortuj transport do stacji radiowej!", + "es-419": "¡Escolta el transporte a la estación de radio!", + "tr": "Kamyoneti radyo istasyonuna götür!" + }, + "runtimeInfo": { + "theaterType": "Standard", + "theaterTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.Mayday" + } + ] + }, + "eventDependentTheaterTags": [], + "theaterVisibilityRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.Season10.Phase2" + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "requiredSubGameForVisibility": "Invalid", + "bOnlyMatchLinkedQuestsToTiles": false, + "worldMapPinClass": "BlueprintGeneratedClass'/Game/Environments/WorldMap/Blueprints/WM_PinMayday.WM_PinMayday_C'", + "theaterImage": "None", + "theaterImages": { + "brush_XXS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_XS": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_S": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_M": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_L": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + }, + "brush_XL": { + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + }, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "bIsDynamicallyLoaded": false + } + }, + "theaterColorInfo": { + "bUseDifficultyToDetermineColor": false, + "color": { + "specifiedColor": { + "r": 1, + "g": 0, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + } + }, + "socket": "TEST_ElderProto", + "missionAlertRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertCategoryRequirements": [], + "gameplayModifierList": [ + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase1", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Player_ShieldBuff.GM_Player_ShieldBuff'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase2", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Player_OnShieldDestroyed_AOE.GM_Player_OnShieldDestroyed_AOE'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase3", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_LowG.GM_LowG'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase3", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Enemy_OnDmgDealt_Knockback.GM_Enemy_OnDmgDealt_Knockback'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase4", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Player_MeleeSwingSpeed_Buff.GM_Player_MeleeSwingSpeed_Buff'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase4", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Enemy_Ricochet.GM_Enemy_Ricochet'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase5", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Player_ShieldBuff.GM_Player_ShieldBuff'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase5", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Defense/GM_Enemy_MaxHealthIncrease_Minor.GM_Enemy_MaxHealthIncrease_Minor'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase6", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Enemy_HideOnMinimap.GM_Enemy_HideOnMinimap'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase6", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_BaseHusk_OnDeath_Explode.GM_BaseHusk_OnDeath_Explode'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase6", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Player_OnShieldDestroyed_AOE.GM_Player_OnShieldDestroyed_AOE'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase7", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_LowG.GM_LowG'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase7", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Enemy_OnDmgDealt_Knockback.GM_Enemy_OnDmgDealt_Knockback'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase7", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Defense/GM_Enemy_MaxHealthIncrease_Minor.GM_Enemy_MaxHealthIncrease_Minor'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase8", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Player_MeleeSwingSpeed_Buff.GM_Player_MeleeSwingSpeed_Buff'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase8", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Player_OnDmgDealt_LifeLeech.GM_Player_OnDmgDealt_LifeLeech'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase8", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Enemy_Ricochet_Major.GM_Enemy_Ricochet_Major'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase8", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Enemy_OnDmgReceived_SpeedBuff.GM_Enemy_OnDmgReceived_SpeedBuff'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase9", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Player_ShieldBuff.GM_Player_ShieldBuff'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase9", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Defense/GM_Enemy_MaxHealthIncrease_Major.GM_Enemy_MaxHealthIncrease_Major'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase9", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Enemy_OnDeath_AreaHeal.GM_Enemy_OnDeath_AreaHeal'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase10", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Enemy_OnDmgDealt_Knockback.GM_Enemy_OnDmgDealt_Knockback'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase10", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Enemy_OnDmgReceived_SpeedBuff.GM_Enemy_OnDmgReceived_SpeedBuff'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase10", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Defense/GM_Enemy_MaxHealthIncrease_Minor.GM_Enemy_MaxHealthIncrease_Minor'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase10", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Player_ShieldBuff.GM_Player_ShieldBuff'" + }, + { + "eventFlagName": "EventFlag.Mayday.Quests.Phase10", + "gameplayModifier": "FortGameplayModifierItemDefinition'/Game/Items/GameplayModifiers/Mutations/GM_Player_OnDmgDealt_LifeLeech.GM_Player_OnDmgDealt_LifeLeech'" + } + ] + }, + "tiles": [ + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Mayday/BP_ZT_Mayday_Canny2.BP_ZT_Mayday_Canny2_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "FortQuestItemDefinition'/Game/Quests/Outpost/OutpostQuest_T1_L3.OutpostQuest_T1_L3'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C" + } + ], + "difficultyWeightOverrides": [ + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Start_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone3" + } + }, + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Endgame_Zone5" + } + } + ], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Mayday/BP_ZT_Mayday_Plankerton2.BP_ZT_Mayday_Plankerton2_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "FortQuestItemDefinition'/Game/Quests/Outpost/OutpostQuest_T1_L3.OutpostQuest_T1_L3'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C" + } + ], + "difficultyWeightOverrides": [ + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Start_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone3" + } + }, + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Endgame_Zone5" + } + } + ], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Mayday/BP_ZT_Mayday.BP_ZT_Mayday_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "FortQuestItemDefinition'/Game/Quests/Outpost/OutpostQuest_T1_L3.OutpostQuest_T1_L3'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C" + } + ], + "difficultyWeightOverrides": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Start_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Endgame_Zone5" + } + } + ], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Mayday/BP_ZT_Mayday_Endgame.BP_ZT_Mayday_Endgame_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "FortQuestItemDefinition'/Game/Quests/Outpost/OutpostQuest_T1_L3.OutpostQuest_T1_L3'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C" + } + ], + "difficultyWeightOverrides": [ + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Start_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone5" + } + }, + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Endgame_Zone5" + } + } + ], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Mayday/BP_ZT_Mayday_Twine2.BP_ZT_Mayday_Twine2_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "FortQuestItemDefinition'/Game/Quests/Outpost/OutpostQuest_T1_L3.OutpostQuest_T1_L3'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C" + } + ], + "difficultyWeightOverrides": [ + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Start_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone3" + } + }, + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Endgame_Zone5" + } + } + ], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Mayday/BP_ZT_Mayday_Twine1.BP_ZT_Mayday_Twine1_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "FortQuestItemDefinition'/Game/Quests/Outpost/OutpostQuest_T1_L3.OutpostQuest_T1_L3'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C" + } + ], + "difficultyWeightOverrides": [ + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Start_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone5" + } + }, + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Endgame_Zone5" + } + } + ], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Mayday/BP_ZT_Mayday_Canny1.BP_ZT_Mayday_Canny1_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "FortQuestItemDefinition'/Game/Quests/Outpost/OutpostQuest_T1_L3.OutpostQuest_T1_L3'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C" + } + ], + "difficultyWeightOverrides": [ + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Start_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone5" + } + }, + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Endgame_Zone5" + } + } + ], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/Game/World/ZoneThemes/Mayday/BP_ZT_Mayday_Plankerton1.BP_ZT_Mayday_Plankerton1_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "FortQuestItemDefinition'/Game/Quests/Outpost/OutpostQuest_T1_L3.OutpostQuest_T1_L3'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C" + } + ], + "difficultyWeightOverrides": [ + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Start_Zone5" + } + }, + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone3" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone5" + } + }, + { + "weight": 0.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Endgame_Zone5" + } + } + ], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/Game/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + } + ], + "regions": [ + { + "displayName": "Non Mission", + "uniqueId": "Region_NonMission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Hit the Road - Canny Valley Tier 2", + "uniqueId": "Region_Mayday_CannyValley_T2", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 12 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 64, + "maxPersonalPowerRating": 93, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Hit the Road - Plankerton Tier 2", + "uniqueId": "Region_Mayday_Plankerton_T2", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 13 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 34, + "maxPersonalPowerRating": 63, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Hit the Road - Stonewood Tier", + "uniqueId": "Region_Mayday_Stonewood_T1", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 25 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 33, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Hit the Road - Twine Peaks 3", + "uniqueId": "Region_Mayday_TwinePeaks_T3", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 37 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 120, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Hit the Road - Twine Peaks 2", + "uniqueId": "Region_Mayday_TwinePeaks_T2", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 38 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 94, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Hit the Road - Twine Peaks 1", + "uniqueId": "Region_Mayday_TwinePeaks_T1", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 39 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 76, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Hit the Road - Canny Valley Tier 1", + "uniqueId": "Region_Mayday_CannyValley_T1", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 40 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 46, + "maxPersonalPowerRating": 75, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Hit the Road - Plankerton Tier 1", + "uniqueId": "Region_Mayday_Plankerton_T1", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 41 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 21, + "maxPersonalPowerRating": 45, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + } + ] + } + ], + "missions": [ + { + "theaterId": "4FF9902F4E66D5754137B5B8A2C06CCE", + "availableMissions": [ + { + "missionGuid": "f6d24793-3d8b-4021-a07a-e6b1d52c3938", + "missionRewards": { + "tierGroupName": "Mission_Select_Mayday_T05", + "items": [ + { + "itemType": "CardPack:zcp_mayday_t05", + "quantity": 1 + } + ] + }, + "bonusMissionRewards": { + "tierGroupName": "Mission_Select_Bonus_T15", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone5" + }, + "tileIndex": 12, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "bc5d8e36-fb38-4854-be6c-603c8385eb39", + "missionRewards": { + "tierGroupName": "Mission_Select_Mayday_T03", + "items": [ + { + "itemType": "CardPack:zcp_mayday_t03", + "quantity": 1 + } + ] + }, + "bonusMissionRewards": { + "tierGroupName": "Mission_Select_Bonus_T10", + "items": [ + { + "itemType": "CardPack:zcp_reagent_c_t02_verylow", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone5" + }, + "tileIndex": 13, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "482922c8-a9ed-45a4-9841-579b5dc621cc", + "missionRewards": { + "tierGroupName": "Mission_Select_Mayday_T01", + "items": [ + { + "itemType": "CardPack:zcp_mayday_t01", + "quantity": 1 + } + ] + }, + "bonusMissionRewards": { + "tierGroupName": "Mission_Select_Bonus_T05", + "items": [ + { + "itemType": "CardPack:zcp_schematicxp_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Start_Zone5" + }, + "tileIndex": 25, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "bf1550b1-9cbc-4b34-acd4-1ec8e073f5da", + "missionRewards": { + "tierGroupName": "Mission_Select_Mayday_T08", + "items": [ + { + "itemType": "CardPack:zcp_mayday_t08", + "quantity": 1 + } + ] + }, + "bonusMissionRewards": { + "tierGroupName": "Mission_Select_Bonus_T25", + "items": [ + { + "itemType": "CardPack:zcp_reagent_alteration_upgrade_sr_high", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Endgame_Zone5" + }, + "tileIndex": 37, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d858818c-5f1c-478b-9cdd-d71ef74c43c5", + "missionRewards": { + "tierGroupName": "Mission_Select_Mayday_T07", + "items": [ + { + "itemType": "CardPack:zcp_mayday_t07", + "quantity": 1 + } + ] + }, + "bonusMissionRewards": { + "tierGroupName": "Mission_Select_Bonus_T20", + "items": [ + { + "itemType": "CardPack:zcp_reagent_c_t03_low", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone5" + }, + "tileIndex": 38, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c25f3d62-d796-48c0-ab79-0fb2325a9576", + "missionRewards": { + "tierGroupName": "Mission_Select_Mayday_T06", + "items": [ + { + "itemType": "CardPack:zcp_mayday_t06", + "quantity": 1 + } + ] + }, + "bonusMissionRewards": { + "tierGroupName": "Mission_Select_Bonus_T18", + "items": [ + { + "itemType": "CardPack:zcp_heroxp_t18", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Nightmare_Zone3" + }, + "tileIndex": 39, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b915d161-8f98-4832-9181-b228e71784c5", + "missionRewards": { + "tierGroupName": "Mission_Select_Mayday_T04", + "items": [ + { + "itemType": "CardPack:zcp_mayday_t04", + "quantity": 1 + } + ] + }, + "bonusMissionRewards": { + "tierGroupName": "Mission_Select_Bonus_T13", + "items": [ + { + "itemType": "CardPack:zcp_reagent_alteration_upgrade_r", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Hard_Zone3" + }, + "tileIndex": 40, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6396aecf-c4be-4fd1-a916-938478a04545", + "missionRewards": { + "tierGroupName": "Mission_Select_Mayday_T02", + "items": [ + { + "itemType": "CardPack:zcp_mayday_t02", + "quantity": 1 + } + ] + }, + "bonusMissionRewards": { + "tierGroupName": "Mission_Select_Bonus_T08", + "items": [ + { + "itemType": "CardPack:zcp_reagent_c_t02_verylow", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/Game/World/MissionGens/MissionGen_Mayday.MissionGen_Mayday_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_Mayday_Normal_Zone3" + }, + "tileIndex": 41, + "availableUntil": "2017-07-25T23:59:59.999Z" + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ], + "missionAlerts": [ + { + "theaterId": "4FF9902F4E66D5754137B5B8A2C06CCE", + "availableMissionAlerts": [], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ] + }, + "Season24": { + "theaters": [ + { + "displayName": { + "de": "Überlebe die Horde", + "ru": "Переживите орду", + "ko": "호드 서바이벌", + "zh-hant": "Survive the Horde", + "pt-br": "Sobreviva à Horda", + "en": "Survive the Horde", + "it": "Sopravvivi all'Orda", + "fr": "Survivre à la horde", + "zh-cn": "Survive the Horde", + "es": "Sobrevive a la horda", + "ar": "انجُ من الحشد", + "ja": "大群から生き延びろ", + "pl": "Przetrwaj Atak Hordy", + "es-419": "Sobrevive a la horda", + "tr": "Sürüden Kurtul" + }, + "uniqueId": "DB73FE4C445040F5886B5FB337BC8C83", + "theaterSlot": 1, + "bIsTestTheater": false, + "bHideLikeTestTheater": false, + "requiredEventFlag": "EventFlag.HordeV3", + "missionRewardNamedWeightsRowName": "None", + "description": { + "de": "Sammle Vorratslieferungen ein, errichte Verteidigungsanlagen und überlebe Wellen von Gegnern!", + "ru": "Хватайте грузы с припасами, стройте укрепления и переживите волны врагов!", + "ko": "보급품을 모으고, 방어 시설을 짓고, 적 웨이브로부터 생존하세요!", + "zh-hant": "Grab supply drops, build defenses, and survive waves of enemies!", + "pt-br": "Pegue Entregas de Suprimentos, construa defesas e sobreviva a ondas de inimigos!", + "en": "Grab supply drops, build defenses, and survive waves of enemies!", + "it": "Raccogli consegne di rifornimenti, costruisci difese e sopravvivi a ondate di nemici!", + "fr": "Fouillez des ravitaillements, construisez des défenses et survivez aux vagues d'ennemis !", + "zh-cn": "Grab supply drops, build defenses, and survive waves of enemies!", + "es": "Reúne entregas de suministros, construye defensas y sobrevive a oleadas de enemigos.", + "ar": "احصل على صناديق الإمدادات وابنِ الدفاعات وانجُ من أمواج الأعداء!", + "ja": "補給物資を集め、防衛設備を建築し、敵のウェーブを生き延びよう!", + "pl": "Przechwyć zrzuty zaopatrzenia, zbuduj umocnienia i przetrwaj fale wrogów!", + "es-419": "¡Reúne entregas de suministros, construye defensas y sobrevive a oleadas de enemigos!", + "tr": "Mühimmat desteklerini kap, savunmanı inşa et ve düşman dalgalarından kurtul!" + }, + "runtimeInfo": { + "theaterType": "Standard", + "theaterTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.Horde" + } + ] + }, + "eventDependentTheaterTags": [], + "theaterVisibilityRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/Game/Quests/Outpost/OutpostQuest_T1_L3.OutpostQuest_T1_L3'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3" + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/Game/Quests/Outpost/OutpostQuest_T1_L3.OutpostQuest_T1_L3'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3" + }, + "requiredSubGameForVisibility": "Campaign", + "bOnlyMatchLinkedQuestsToTiles": false, + "worldMapPinClass": "/Script/Engine.BlueprintGeneratedClass'/SaveTheWorld/Environments/WorldMap/Blueprints/WM_PinHorde.WM_PinHorde_C'", + "theaterImage": "/Script/Engine.Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_normal_.Icon-TheaterDifficulty-_normal_'", + "theaterImages": { + "brush_XXS": { + "bIsDynamicallyLoaded": false, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius", + "bUseBrushTransparency": false + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + } + }, + "brush_XS": { + "bIsDynamicallyLoaded": false, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius", + "bUseBrushTransparency": false + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + } + }, + "brush_S": { + "bIsDynamicallyLoaded": false, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius", + "bUseBrushTransparency": false + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + } + }, + "brush_M": { + "bIsDynamicallyLoaded": false, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius", + "bUseBrushTransparency": false + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + } + }, + "brush_L": { + "bIsDynamicallyLoaded": false, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius", + "bUseBrushTransparency": false + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + } + }, + "brush_XL": { + "bIsDynamicallyLoaded": false, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius", + "bUseBrushTransparency": false + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": 0 + } + } + }, + "theaterColorInfo": { + "bUseDifficultyToDetermineColor": false, + "color": { + "specifiedColor": { + "r": 1, + "g": 0, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + } + }, + "socket": "TEST_ElderProto", + "missionAlertRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertCategoryRequirements": [], + "gameplayModifierList": [] + }, + "tiles": [ + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 14, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/AD/BP_ZT_AD_TheCity.BP_ZT_AD_TheCity_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/AD/BP_ZT_AD_TheIndustrialPark.BP_ZT_AD_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 13, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 13, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 14, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 13, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 16, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 14, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A06.HordeV3_Quest_Event_A06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 16, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 16, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 13, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 13, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + } + ], + "regions": [ + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T7", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty05" + } + ] + }, + "tileIndices": [ + 0, + 2, + 12, + 33, + 34, + 39 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 58, + "maxPersonalPowerRating": 93, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Non Mission", + "uniqueId": "Region_NonMission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 1, + 3, + 5, + 6, + 7, + 10, + 11, + 13, + 14, + 15, + 17, + 19, + 20, + 21, + 23, + 24, + 27, + 28, + 31, + 32, + 35, + 36, + 37, + 38, + 40, + 41, + 42, + 45, + 46, + 47, + 49, + 51, + 52, + 54, + 55, + 56, + 57, + 58, + 59, + 63, + 64, + 65, + 66, + 69, + 70, + 72, + 73, + 75, + 76, + 77, + 79, + 82, + 84, + 85, + 86, + 89, + 90, + 91, + 93, + 94, + 95, + 99, + 100, + 101, + 102, + 104, + 106, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 118, + 121, + 124, + 125, + 126, + 128, + 129, + 130, + 131, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 164, + 165, + 166, + 167, + 168, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 184, + 185, + 186, + 187, + 188, + 191, + 192, + 193, + 194, + 195, + 197, + 199, + 200, + 201, + 203, + 204, + 205, + 206 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T8", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE04.Difficulty02" + } + ] + }, + "tileIndices": [ + 4, + 9, + 16, + 18, + 25, + 26 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 70, + "maxPersonalPowerRating": 107, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T9", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE04.Difficulty04" + } + ] + }, + "tileIndices": [ + 8, + 29, + 134, + 135, + 182, + 183 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 82, + "maxPersonalPowerRating": 123, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T1", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty04" + } + ] + }, + "tileIndices": [ + 22, + 60, + 61, + 62, + 67, + 68 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 22, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T2", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty05" + } + ] + }, + "tileIndices": [ + 30, + 43, + 44, + 71, + 74, + 78 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 33, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T6", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty03" + } + ] + }, + "tileIndices": [ + 48, + 50, + 96, + 97, + 98, + 105 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 46, + "maxPersonalPowerRating": 81, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T11", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE05.Difficulty03" + } + ] + }, + "tileIndices": [ + 53, + 139, + 140, + 196, + 198, + 202 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 108, + "maxPersonalPowerRating": 255, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T3", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty02" + } + ] + }, + "tileIndices": [ + 80, + 81, + 83, + 87, + 88, + 92 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 9, + "maxPersonalPowerRating": 45, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T5", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty01" + } + ] + }, + "tileIndices": [ + 103, + 122, + 123, + 127, + 132, + 133 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 34, + "maxPersonalPowerRating": 69, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T4", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty04" + } + ] + }, + "tileIndices": [ + 107, + 108, + 109, + 117, + 119, + 120 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 23, + "maxPersonalPowerRating": 57, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T10", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE05.Difficulty01" + } + ] + }, + "tileIndices": [ + 136, + 137, + 138, + 169, + 189, + 190 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 94, + "maxPersonalPowerRating": 225, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T12", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE05.Difficulty05" + } + ] + }, + "tileIndices": [ + 141, + 142, + 143, + 163, + 207, + 208 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 124, + "maxPersonalPowerRating": 255, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + } + ] + } + ], + "missions": [{ + "theaterId": "DB73FE4C445040F5886B5FB337BC8C83", + "availableMissions": [ + { + "missionGuid": "39295ef1-fb24-4d80-beb0-a4703fd717d2", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 0, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d65a6035-c20c-4c6b-85d5-c80b69b1f2f5", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 2, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "07776710-1e9a-43d4-9f64-b2ff95e0beda", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 12, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9f0ebf75-91a3-4e41-a639-c6fdc2704ac4", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 33, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "8611fdfd-6c41-488a-98b2-a2153230299d", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 34, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "34efb661-60b6-49a5-be3b-2934a82b51dd", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 39, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "2d978bc1-fb2c-4b14-8075-2a5250c94c5c", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 4, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "852812e5-5288-4947-a948-b69313d40964", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 9, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "8b34c348-69d3-4ced-88ad-fb603225cc11", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 16, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0f227678-03cb-4932-b0a1-b3e7afc33110", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 18, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1897a1ef-fd15-40a9-b1ff-747428b2f0be", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 25, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "322d7478-d5af-457d-8518-3f7d6963fe60", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 26, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "29d1ec23-b4bb-45e2-94b4-5a62d914f4d6", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 8, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "2717365c-dc8e-4b63-bb29-771837c41b8f", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 29, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "e7f25135-ee7e-4629-86d6-3000aaea8997", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 134, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "502b9cb7-417c-444e-8bc3-5ad53fa0cef2", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 135, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f34ce97f-0b57-49a4-a694-c9ef3be0e3f9", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 182, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1d96de16-dbbe-4d9a-9dfa-e155ac46a44b", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 183, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f45f75ad-3210-490e-8e1f-97faa13f57ba", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 22, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f953ada4-4edb-4a79-a85a-00a6ffec5884", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 60, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "eee27a7e-bb93-43b3-80b7-28a67efa85ae", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 61, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "fe9027ac-de79-4ad5-ac89-3beaf77b2a8e", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 62, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ec7bc679-f1a3-44aa-a5cd-19ecc0ceea2e", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 67, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "5e0e257d-baf1-4d5d-a4d4-5e8d9f4ea7b5", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 68, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f698dfb2-892a-4564-8f60-026aa7db7232", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 30, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "51e25d26-e21d-4084-9c82-2b67cde953d6", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 43, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4996c460-103f-4e00-bc27-0eaa8db053df", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 44, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "e1f573e9-59b8-4db6-b005-bc08e03a1867", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 71, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0cfb00f5-f732-463f-a5a1-2c98c9ed69bd", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 74, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "11edfba8-e934-4ea5-92f4-0f645542dfaf", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 78, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "7a96db62-6df4-478a-80be-84c996d4618e", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 48, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a3be8845-ff33-49e1-9c0a-d2f257f92b41", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 50, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b4d19f5f-6cd0-43bf-8eb1-83a690e6a5c7", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 96, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "e0d3e5cc-7fba-4267-9d0b-5161c343c542", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 97, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "fe191b1b-d8a8-456a-a84a-c521a52dde25", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 98, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "65115d4d-38fe-436d-b18c-0f488c1e5719", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 105, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b8535f4c-13f2-4cde-9d57-95e86d536a9d", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 53, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6761bc42-c840-4321-8b8b-2f571e6b7e0f", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 139, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "aed6b6e5-be84-42ad-9b54-d42849aa0628", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 140, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "468d4b1a-30e7-4717-a037-56cbaa7c5602", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 196, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "81de5d94-3c68-4485-adc5-5963a08791e9", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 198, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "aac0c617-0bd3-4e80-810b-801ea3c26980", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 202, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "53f2a738-f032-4806-be48-197734ec2732", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 80, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "dd5cfded-fb84-49ea-96b4-c575da5e3b46", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 81, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "743d871b-ab07-4130-90f1-ee68b058943f", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 83, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "67a06139-943c-4cb0-9524-e84c9d1af58f", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 87, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0f47b8d3-dadb-4b53-929f-89d6663d0bc1", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 88, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ff76fe7b-fe21-43ae-b2c0-d30efaac682e", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 92, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "fe99e3a6-08bb-4fb1-aea5-8e7239f653fe", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 103, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b2e38290-9f99-4d26-804f-b8fc5514e91d", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 122, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "891ea42e-d3b4-41b4-a77b-f14a981d3430", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 123, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9f21ea8b-815d-46c9-aa02-128418edb3f4", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 127, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4014e4b0-7b46-4bc7-92ee-3fbe52d26019", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 132, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "fdde07a9-6c44-4630-9405-576376f0bb0a", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 133, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "19dab462-81ad-4d65-bd45-ca631911300c", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 107, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "bca6188d-c4d9-45ee-ade5-8f3a8bd05f65", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 108, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d0484452-0ee5-4fd7-a8f3-60f12fb42e4b", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 109, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c1db9924-f71c-4849-86d9-f6ee1030577d", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 117, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9986e149-d438-43d9-a53f-68ca7d36d2cd", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 119, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "65212e64-60de-4501-8a17-3f42a5d6be54", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 120, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "2c54a981-4111-43e5-a139-cb3e71286062", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 136, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3d01bfba-1e3d-4fd5-9c30-520a36de806d", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 137, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b1adeb2e-a608-4206-8b8b-98c271935dfa", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 138, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9dc3ab7b-22f0-4627-a4b9-1b279a2ea233", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 169, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "471035da-bc09-44f8-9485-ea89dcf92c60", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 189, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ecee02d2-614d-4a1c-a3f1-c9d185b22b84", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 190, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a9e767cb-c547-44d9-a8b4-642260c47f27", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 141, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "12089892-d372-424d-9907-a56e2808508b", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 142, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "5a07006f-4df7-40da-942b-90a86200cb63", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 143, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "85da85a2-4adc-4b04-be65-b386d264f456", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 163, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3cc97980-7aed-4886-a1bb-d65bc5583e9b", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 207, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "14341cd9-480b-419a-a687-ba63ec7eef0c", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 208, + "availableUntil": "2017-07-25T23:59:59.999Z" + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + }], + "missionAlerts": [ + { + "theaterId": "DB73FE4C445040F5886B5FB337BC8C83", + "availableMissionAlerts": [], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ] + }, + "Season25": { + "theaters": [ + { + "displayName": { + "de": "Überlebe die Horde", + "ru": "Переживите орду", + "ko": "호드 서바이벌", + "zh-hant": "Survive the Horde", + "pt-br": "Sobreviva à Horda", + "en": "Survive the Horde", + "it": "Sopravvivi all'Orda", + "fr": "Survivre à la horde", + "zh-cn": "Survive the Horde", + "es": "Sobrevive a la horda", + "ar": "انجُ من الحشد", + "ja": "大群から生き延びろ", + "pl": "Przetrwaj Atak Hordy", + "es-419": "Sobrevive a la horda", + "tr": "Sürüden Kurtul" + }, + "uniqueId": "DB73FE4C445040F5886B5FB337BC8C83", + "theaterSlot": 1, + "bIsTestTheater": false, + "bHideLikeTestTheater": false, + "requiredEventFlag": "EventFlag.HordeV3", + "missionRewardNamedWeightsRowName": "None", + "description": { + "de": "Sammle Vorratslieferungen ein, errichte Verteidigungsanlagen und überlebe Wellen von Gegnern!", + "ru": "Хватайте грузы с припасами, стройте укрепления и переживите волны врагов!", + "ko": "보급품을 모으고, 방어 시설을 짓고, 적 웨이브로부터 생존하세요!", + "zh-hant": "Grab supply drops, build defenses, and survive waves of enemies!", + "pt-br": "Pegue Entregas de Suprimentos, construa defesas e sobreviva a ondas de inimigos!", + "en": "Grab supply drops, build defenses, and survive waves of enemies!", + "it": "Raccogli consegne di rifornimenti, costruisci difese e sopravvivi a ondate di nemici!", + "fr": "Fouillez des ravitaillements, construisez des défenses et survivez aux vagues d'ennemis !", + "zh-cn": "Grab supply drops, build defenses, and survive waves of enemies!", + "es": "Reúne entregas de suministros, construye defensas y sobrevive a oleadas de enemigos.", + "ar": "احصل على صناديق الإمدادات وابنِ الدفاعات وانجُ من أمواج الأعداء!", + "ja": "補給物資を集め、防衛設備を建築し、敵のウェーブを生き延びよう!", + "pl": "Przechwyć zrzuty zaopatrzenia, zbuduj umocnienia i przetrwaj fale wrogów!", + "es-419": "¡Reúne entregas de suministros, construye defensas y sobrevive a oleadas de enemigos!", + "tr": "Mühimmat desteklerini kap, savunmanı inşa et ve düşman dalgalarından kurtul!" + }, + "runtimeInfo": { + "theaterType": "Standard", + "theaterTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.Horde" + } + ] + }, + "eventDependentTheaterTags": [], + "theaterVisibilityRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/Game/Quests/Outpost/OutpostQuest_T1_L3.OutpostQuest_T1_L3'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3" + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/Game/Quests/Outpost/OutpostQuest_T1_L3.OutpostQuest_T1_L3'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3" + }, + "requiredSubGameForVisibility": "Campaign", + "bOnlyMatchLinkedQuestsToTiles": false, + "worldMapPinClass": "/Script/Engine.BlueprintGeneratedClass'/SaveTheWorld/Environments/WorldMap/Blueprints/WM_PinHorde.WM_PinHorde_C'", + "theaterImage": "/Script/Engine.Texture2D'/Game/UI/Icons/Icon-TheaterDifficulty-_normal_.Icon-TheaterDifficulty-_normal_'", + "theaterImages": { + "brush_XXS": { + "bIsDynamicallyLoaded": false, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius", + "bUseBrushTransparency": false + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": false + } + }, + "brush_XS": { + "bIsDynamicallyLoaded": false, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius", + "bUseBrushTransparency": false + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": false + } + }, + "brush_S": { + "bIsDynamicallyLoaded": false, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius", + "bUseBrushTransparency": false + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": false + } + }, + "brush_M": { + "bIsDynamicallyLoaded": false, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius", + "bUseBrushTransparency": false + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": false + } + }, + "brush_L": { + "bIsDynamicallyLoaded": false, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius", + "bUseBrushTransparency": false + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": false + } + }, + "brush_XL": { + "bIsDynamicallyLoaded": false, + "drawAs": "Image", + "tiling": "NoTile", + "mirroring": "NoMirror", + "imageType": "NoImage", + "imageSize": { + "x": 32, + "y": 32 + }, + "margin": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "tintColor": { + "specifiedColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + }, + "outlineSettings": { + "cornerRadii": { + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "color": { + "specifiedColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "colorUseRule": "UseColor_Specified" + }, + "width": 0, + "roundingType": "HalfHeightRadius", + "bUseBrushTransparency": false + }, + "resourceObject": "None", + "resourceName": "None", + "uVRegion": { + "min": { + "x": 0, + "y": 0 + }, + "max": { + "x": 0, + "y": 0 + }, + "bIsValid": false + } + } + }, + "theaterColorInfo": { + "bUseDifficultyToDetermineColor": false, + "color": { + "specifiedColor": { + "r": 1, + "g": 0, + "b": 1, + "a": 1 + }, + "colorUseRule": "UseColor_Specified" + } + }, + "socket": "TEST_ElderProto", + "missionAlertRequirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertCategoryRequirements": [], + "gameplayModifierList": [] + }, + "tiles": [ + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week08" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W08.HordeV3_Quest_Weekly_W08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week08" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W08.HordeV3_Quest_Weekly_W08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 14, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_Arid/BP_ZT_Desert.BP_ZT_Desert_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week08" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W08.HordeV3_Quest_Weekly_W08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 14, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/AD/BP_ZT_AD_TheIndustrialPark.BP_ZT_AD_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week07" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W07.HordeV3_Quest_Weekly_W07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 13, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 13, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week07" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W07.HordeV3_Quest_Weekly_W07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 13, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 13, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week07" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W07.HordeV3_Quest_Weekly_W07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week07" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W07.HordeV3_Quest_Weekly_W07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week08" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W08.HordeV3_Quest_Weekly_W08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week08" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W08.HordeV3_Quest_Weekly_W08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 14, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 14, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 13, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 16, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week07" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W07.HordeV3_Quest_Weekly_W07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 2, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week08" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W08.HordeV3_Quest_Weekly_W08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week08" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W08.HordeV3_Quest_Weekly_W08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 6, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week07" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W07.HordeV3_Quest_Weekly_W07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 1, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 2, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 3, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 4, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 3, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 4, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week07" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W07.HordeV3_Quest_Weekly_W07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 5, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week08" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W08.HordeV3_Quest_Weekly_W08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week07" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W07.HordeV3_Quest_Weekly_W07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 9, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 8, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 7, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 14, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week03" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W03.HordeV3_Quest_Weekly_W03'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week02" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W02.HordeV3_Quest_Weekly_W02'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A05.HordeV3_Quest_Event_A05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A06.HordeV3_Quest_Event_A06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A07.HordeV3_Quest_Event_A07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + }, + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Event_A08.HordeV3_Quest_Event_A08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 5, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 6, + "yCoordinate": 16, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 7, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 8, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 16, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 15, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 0, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 1, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 13, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 2, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 9, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 13, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 12, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 15, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 14, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week08" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W08.HordeV3_Quest_Weekly_W08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 14, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 13, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week07" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W07.HordeV3_Quest_Weekly_W07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 13, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 12, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 11, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week08" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W08.HordeV3_Quest_Weekly_W08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 13, + "yCoordinate": 10, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 10, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week07" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W07.HordeV3_Quest_Weekly_W07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 13, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 9, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 8, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 8, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 7, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week08" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W08.HordeV3_Quest_Weekly_W08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 7, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 13, + "yCoordinate": 6, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week07" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W07.HordeV3_Quest_Weekly_W07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 6, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 5, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 10, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 9, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 10, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 11, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week06" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W06.HordeV3_Quest_Weekly_W06'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 5, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 12, + "yCoordinate": 4, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week08" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W08.HordeV3_Quest_Weekly_W08'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 13, + "yCoordinate": 3, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "NonMission", + "zoneTheme": "/SaveTheWorld/World/ZoneThemes/ZT_TheIndustrialPark/BP_ZT_TheIndustrialPark.BP_ZT_TheIndustrialPark_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "linkedQuests": [], + "xCoordinate": 14, + "yCoordinate": 3, + "missionWeightOverrides": [], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week07" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W07.HordeV3_Quest_Weekly_W07'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 13, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week05" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W05.HordeV3_Quest_Weekly_W05'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 12, + "yCoordinate": 2, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + }, + { + "tileType": "AlwaysActive", + "zoneTheme": "/STW_Horde/World/ZoneThemes/BP_ZT_HordeV3.BP_ZT_HordeV3_C", + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "EventFlag.HordeV3.Week04" + }, + "linkedQuests": [ + { + "questDefinition": "/Script/FortniteGame.FortQuestItemDefinition_Campaign'/STW_Horde/Quests/HordeV3/HordeV3_Quest_Weekly_W04.HordeV3_Quest_Weekly_W04'", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + } + } + ], + "xCoordinate": 11, + "yCoordinate": 1, + "missionWeightOverrides": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C" + } + ], + "difficultyWeightOverrides": [], + "canBeMissionAlert": false, + "tileTags": { + "gameplayTags": [] + }, + "bDisallowQuickplay": false + } + ], + "regions": [ + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T7", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty05" + } + ] + }, + "tileIndices": [ + 0, + 2, + 6, + 12, + 33, + 34, + 35, + 39 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 58, + "maxPersonalPowerRating": 93, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Non Mission", + "uniqueId": "Region_NonMission", + "regionTags": { + "gameplayTags": [] + }, + "tileIndices": [ + 1, + 3, + 5, + 7, + 10, + 11, + 13, + 15, + 17, + 20, + 21, + 24, + 28, + 32, + 36, + 37, + 38, + 40, + 41, + 45, + 46, + 47, + 49, + 51, + 54, + 55, + 56, + 57, + 58, + 59, + 63, + 64, + 65, + 66, + 69, + 70, + 72, + 73, + 75, + 76, + 77, + 82, + 84, + 85, + 86, + 90, + 91, + 93, + 94, + 99, + 100, + 101, + 102, + 106, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 118, + 124, + 125, + 126, + 128, + 130, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 164, + 165, + 166, + 167, + 168, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 180, + 184, + 185, + 187, + 191, + 192, + 194, + 197, + 199, + 200, + 201, + 203, + 205 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [], + "difficultyWeights": [], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 0, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T8", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE04.Difficulty02" + } + ] + }, + "tileIndices": [ + 4, + 9, + 16, + 18, + 19, + 25, + 26, + 27 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 70, + "maxPersonalPowerRating": 107, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T9", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE04.Difficulty04" + } + ] + }, + "tileIndices": [ + 8, + 29, + 134, + 135, + 179, + 181, + 182, + 183 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 82, + "maxPersonalPowerRating": 123, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T2", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty05" + } + ] + }, + "tileIndices": [ + 14, + 30, + 31, + 43, + 44, + 71, + 74, + 78 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 33, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T1", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE01.Difficulty04" + } + ] + }, + "tileIndices": [ + 22, + 23, + 52, + 60, + 61, + 62, + 67, + 68 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 0, + "maxPersonalPowerRating": 22, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T6", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty03" + } + ] + }, + "tileIndices": [ + 42, + 48, + 50, + 96, + 97, + 98, + 104, + 105 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 46, + "maxPersonalPowerRating": 81, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T11", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE05.Difficulty03" + } + ] + }, + "tileIndices": [ + 53, + 139, + 140, + 193, + 195, + 196, + 198, + 202 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 108, + "maxPersonalPowerRating": 255, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T3", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty02" + } + ] + }, + "tileIndices": [ + 79, + 80, + 81, + 83, + 87, + 88, + 89, + 92 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 9, + "maxPersonalPowerRating": 45, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T4", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE02.Difficulty04" + } + ] + }, + "tileIndices": [ + 95, + 107, + 108, + 109, + 117, + 119, + 120, + 121 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 23, + "maxPersonalPowerRating": 57, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T5", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE03.Difficulty01" + } + ] + }, + "tileIndices": [ + 103, + 122, + 123, + 127, + 129, + 131, + 132, + 133 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 34, + "maxPersonalPowerRating": 69, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T10", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE05.Difficulty01" + } + ] + }, + "tileIndices": [ + 136, + 137, + 138, + 169, + 186, + 188, + 189, + 190 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 94, + "maxPersonalPowerRating": 225, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + }, + { + "displayName": "Survive the Horde", + "uniqueId": "Region_HordeV3_T12", + "regionTags": { + "gameplayTags": [ + { + "tagName": "Stat.Theater.PvE05.Difficulty05" + } + ] + }, + "tileIndices": [ + 141, + 142, + 143, + 163, + 204, + 206, + 207, + 208 + ], + "regionThemeIcon": "None", + "missionData": { + "missionWeights": [ + { + "weight": 1.0, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C" + } + ], + "difficultyWeights": [ + { + "weight": 1.0, + "difficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + } + } + ], + "numMissionsAvailable": 0, + "numMissionsToChange": 0, + "missionChangeFrequency": 0.0 + }, + "requirements": { + "commanderLevel": 0, + "personalPowerRating": 124, + "maxPersonalPowerRating": 255, + "partyPowerRating": 0, + "maxPartyPowerRating": 0, + "activeQuestDefinitions": [], + "questDefinition": "None", + "objectiveStatHandle": { + "dataTable": "None", + "rowName": "None" + }, + "uncompletedQuestDefinition": "None", + "itemDefinition": "None", + "eventFlag": "" + }, + "missionAlertRequirements": [] + } + ] + } + ], + "missions": [ + { + "theaterId": "DB73FE4C445040F5886B5FB337BC8C83", + "availableMissions": [ + { + "missionGuid": "9f5b5150-1028-4aca-a947-85edf0a1e781", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 0, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1c23e6d3-1231-4bcb-a911-6643abc478e0", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 2, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "db2e1e65-b907-4684-9dcd-49663e30b8bb", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 6, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6deef9e7-a83a-4c2e-8fcc-d36e6c1a99c3", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 12, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d09d0b0f-6728-43f4-843a-a7e51e70dffe", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 33, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a6f0c45e-5211-47aa-a55d-4f52942ccf35", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 34, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "caf3e934-b10b-41f3-812e-e228d2d86dfe", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 35, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d785b146-1002-463e-b403-c9f7c570b087", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T15", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t15", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_07" + }, + "tileIndex": 39, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d4dd9090-c0ee-4c69-ae76-dbc5f14bd872", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 4, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f067d3c6-1a35-41e7-a7e9-a36d6d6ebbff", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 9, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "8f166d23-6b3b-4a62-887b-d2795ffc2ace", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 16, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "7d6b1483-1345-4ee3-a12c-133a1f69ba61", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 18, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "38f354ea-a9c3-40b1-94c9-9cec0bfb2621", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 19, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b702a565-7e20-41f5-ac33-45ee338a5653", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 25, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "5dc93aff-f512-4709-b188-68bfb5ed9adc", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 26, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "31d1424a-11fe-450f-8a58-0f575eacd147", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T17", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t17", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_08" + }, + "tileIndex": 27, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "50baccae-40b7-4aff-bf11-ba328e3fe9ca", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 8, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "eace75e8-0e32-42c2-b71a-6d99314b5d65", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 29, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "50d4cce5-1d7a-4dce-9519-761a8cc7b93d", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 134, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "fa52e634-5167-4e3f-a62f-94b5ca0adb9a", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 135, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "85f9dc61-e9b8-4b9e-b099-112e92b71cf6", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 179, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4954568a-b9a6-42c1-a755-8c2740db9d50", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 181, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "17a1dcf5-51e4-41c3-8f88-99702144bd44", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 182, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4975170e-b521-4c5e-8613-2f3e78fba1aa", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T19", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t19", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_09" + }, + "tileIndex": 183, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "943944fe-8da8-4193-97d4-011cbe43c12d", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 14, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b44af8bd-1420-406d-8fed-64fdf96248c5", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 30, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0b0a3c56-7742-4b24-b30e-75cf8dabc9f3", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 31, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4a693fd2-0006-4c41-8db8-31d8814ecca8", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 43, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b8fdd914-7cbd-44cf-93d4-6ceb7427be93", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 44, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "cd54bcbf-86ff-45f9-8b5c-e806c5549ddf", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 71, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "5e463e95-5746-473a-917f-3851a5ba4db8", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 74, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "e6e61aff-d291-4df9-ace7-3ba7f756d6d3", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T05", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t05", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_02" + }, + "tileIndex": 78, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "8e80beaf-efe8-4a84-a98c-15e8b0407684", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 22, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "946f5b35-4e14-4589-b982-8053c9925a74", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 23, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "e86d48a2-1d23-432b-a171-1be0a997bc45", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 52, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9644d1a7-2cb9-4655-9470-54b7e9089187", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 60, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "ea629912-2e9c-4d57-8fae-574f8be1c14a", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 61, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "97977179-d57f-4411-bfa8-a7c251a5f55f", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 62, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9d6a6a9d-b8ed-4f34-92b5-88b39b77f882", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 67, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "bc997769-9bdb-4a77-a96c-73a8c203f2c6", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T04", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t04", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_01" + }, + "tileIndex": 68, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "13eae65a-5dc0-429e-b2f3-a9bdb25ec201", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 42, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1653664f-914d-45ee-b1a8-a3a7dc36706c", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 48, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "b02cd898-394f-4f67-bdc0-1451fb9f02a4", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 50, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "98381e7e-1ac6-45e2-b93f-3ccbdf187737", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 96, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "46411e65-cbb4-4d9d-99de-a99712f07fa7", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 97, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "8ab78d47-be54-4dcc-98c6-0e231a7651c5", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 98, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0a25b198-6d0a-4770-8e52-5142901dc0cd", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 104, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4d2dffc0-ab53-4658-ab31-b05b90ee1ff1", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T13", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t13", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_06" + }, + "tileIndex": 105, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "8d262061-d0bb-4d26-a167-56e1576f59a8", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 53, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a87c9daa-58be-4355-8388-65d4e7e51dbb", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 139, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "98665f09-2d2f-467a-848e-5d2be6fb2734", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 140, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f00c602e-4ffc-4073-98d7-474cce8b6c0f", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 193, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "527be8c0-9f0c-4343-8759-1d9887d7196a", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 195, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "be817fca-98ec-4969-ac09-b9019e9e236a", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 196, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3e9a7fca-5f2e-475c-9def-859689a02354", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 198, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c6d7c72a-a66a-4762-824f-51f672b6877e", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T23", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t23", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_11" + }, + "tileIndex": 202, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0dea0799-2061-468b-83ef-6d95ec8a78be", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 79, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d9a0aa96-0980-43aa-9677-ba82d7921813", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 80, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d7df5abc-360e-4763-a527-f540834d539f", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 81, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a5802ccd-baa2-42cc-9169-f17a3393410e", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 83, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "67b3f4f7-725a-41a2-b9a5-3faf83e864fe", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 87, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a1cc3ad7-fd07-4081-ad1f-6d95aca50dfe", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 88, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a2d85213-a45c-4cde-8451-904338f2bc58", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 89, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9de796ae-f3cb-4c44-8410-3cbaccbae569", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T07", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t07", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_03" + }, + "tileIndex": 92, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f35970e6-ff0d-423a-be54-13b4f00f1d92", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 95, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "08e62cde-82b0-4ac3-b73f-1b586d0d3df7", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 107, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f89be038-325a-4faa-bee2-e36a2c8377b5", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 108, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "5e6a4f3d-dc0d-4337-9f12-4cf40140e9ef", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 109, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "48cba25a-5db3-43d4-8538-b32825d07348", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 117, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0f2cd37a-1522-4fff-8227-21296d0b20d6", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 119, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c60caa7f-c899-440e-92d9-14af1daa0a88", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 120, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1c279329-8df3-4db0-96f4-a37d571c75e3", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T09", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t09", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_04" + }, + "tileIndex": 121, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "09de9ec0-3938-47cf-bbf1-5b50ee0a32cf", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 103, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "09aa7bc2-a5e4-4e37-b1b1-6525dc3ea6da", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 122, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "f4598011-6e48-4328-ab25-d73a133f8511", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 123, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "3e24f20a-6c98-4547-9f6f-cbb81e1bc161", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 127, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4f621106-c0dd-4b1c-8429-80da7fe7abdb", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 129, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "1f2fe700-3925-4eca-b4fb-8c9db7742067", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 131, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "0f62dfb2-5c5c-40a2-8838-48c61db12908", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 132, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "27eae808-1b12-47de-a4fc-e95c714b9e94", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T11", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t11", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_05" + }, + "tileIndex": 133, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "740c3e43-b6ec-490e-9e20-4dd9b76773d7", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 136, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "82ede2a5-3676-4b0b-bfdc-507c07db3ab2", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 137, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a8555991-2621-4fd6-a6d4-7f034b011737", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 138, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "d85ffb64-e29a-47bb-be10-7a62867895ae", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 169, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "06bea736-2219-479b-883d-f3530c6af590", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 186, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "4fe3377a-2599-42b6-9b30-087c2a399f97", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 188, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "aa20876c-f9be-4276-a7bc-f13724fde48a", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 189, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "5d9c1b33-5caa-49d9-bac3-74b6de0c8397", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T21", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t21", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_10" + }, + "tileIndex": 190, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "e76ebada-ede4-4d6d-b39f-67e82cfd4e25", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week03/MissionGen_HordeV3_Mod_03_T1.MissionGen_HordeV3_Mod_03_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 141, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "20981b5c-b96e-4173-a5bf-2e4528bf10bf", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week02/MissionGen_HordeV3_Mod_02_T1.MissionGen_HordeV3_Mod_02_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 142, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "02155b8a-9a9b-4b23-b667-bfe1c5b1f375", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/World/MissionGens/MissionGen_HordeV3_T1.MissionGen_HordeV3_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 143, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "a65a2431-7088-4c56-9766-3f7c902cdb25", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week06/MissionGen_HordeV3_Mod_06_T1.MissionGen_HordeV3_Mod_06_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 163, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c28f088f-9daa-472a-a151-f11e4d9254e0", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week08/MissionGen_HordeV3_Mod_08_T1.MissionGen_HordeV3_Mod_08_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 204, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "c74b66f7-df65-4758-87d2-7cef416e83c1", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week07/MissionGen_HordeV3_Mod_07_T1.MissionGen_HordeV3_Mod_07_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 206, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "6779975d-e069-4faa-9aa5-fed8d59638c6", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week05/MissionGen_HordeV3_Mod_05_T1.MissionGen_HordeV3_Mod_05_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 207, + "availableUntil": "2017-07-25T23:59:59.999Z" + }, + { + "missionGuid": "9896b426-70d3-4f53-97df-c35eab4cb9bb", + "missionRewards": { + "tierGroupName": "Mission_Select_HordeV3_T25", + "items": [ + { + "itemType": "CardPack:zcp_hordev3_t25", + "quantity": 1 + } + ] + }, + "overrideMissionRewards": {}, + "missionGenerator": "/STW_Horde/Missions/WeeklyMods/Week04/MissionGen_HordeV3_Mod_04_T1.MissionGen_HordeV3_Mod_04_T1_C", + "missionDifficultyInfo": { + "dataTable": "DataTable'/Game/Balance/DataTables/GameDifficultyGrowthBounds.GameDifficultyGrowthBounds'", + "rowName": "Theater_HV3_12" + }, + "tileIndex": 208, + "availableUntil": "2017-07-25T23:59:59.999Z" + } + ], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ], + "missionAlerts": [ + { + "theaterId": "DB73FE4C445040F5886B5FB337BC8C83", + "availableMissionAlerts": [], + "nextRefresh": "2017-07-25T23:59:59.999Z" + } + ] + } + } +} diff --git a/lawin/responses/CloudDir/Full.ini b/lawin/responses/CloudDir/Full.ini new file mode 100644 index 0000000..0bfbd3e --- /dev/null +++ b/lawin/responses/CloudDir/Full.ini @@ -0,0 +1,90 @@ +[LawinServer.manifest,FortniteCreative] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,FortniteCampaign] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.pl] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.es-419Optional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,StartupOptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,FortniteCampaignTutorial] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.allOptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.itOptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.es-419] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,KairosCapture] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,FortniteBR] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,FortniteCreativeOptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.zh-CN] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.ruOptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.frOptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.deOptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.de] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,FortniteBROptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,FortniteCampaignOptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,FortniteCampaignTutorialOptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.ru] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.plOptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.fr] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.es-ESOptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,KairosCaptureOptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.all] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.zh-CNOptional] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.it] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Lang.es-ES] +DeltaDownloadSize="0" +DownloadSize="0" +[LawinServer.manifest,Startup] +DeltaDownloadSize="0" +DownloadSize="0" diff --git a/lawin/responses/CloudDir/LawinServer.chunk b/lawin/responses/CloudDir/LawinServer.chunk new file mode 100644 index 0000000..9cdf877 Binary files /dev/null and b/lawin/responses/CloudDir/LawinServer.chunk differ diff --git a/lawin/responses/CloudDir/LawinServer.manifest b/lawin/responses/CloudDir/LawinServer.manifest new file mode 100644 index 0000000..b29aa32 Binary files /dev/null and b/lawin/responses/CloudDir/LawinServer.manifest differ diff --git a/lawin/responses/SAC.json b/lawin/responses/SAC.json new file mode 100644 index 0000000..ee7ba97 --- /dev/null +++ b/lawin/responses/SAC.json @@ -0,0 +1,7 @@ +[ + "lawin", + "ti93", + "pro100katyt", + "playeereq", + "matteoki" +] \ No newline at end of file diff --git a/lawin/responses/catalog.json b/lawin/responses/catalog.json new file mode 100644 index 0000000..040b93a --- /dev/null +++ b/lawin/responses/catalog.json @@ -0,0 +1,3403 @@ +{ + "refreshIntervalHrs": 24, + "dailyPurchaseHrs": 24, + "expiration": "9999-12-31T00:00:00.000Z", + "storefronts": [ + { + "name": "BRDailyStorefront", + "catalogEntries": [] + }, + { + "name": "BRWeeklyStorefront", + "catalogEntries": [] + }, + { + "name": "BRSeasonStorefront", + "catalogEntries": [ + { + "devName": "[VIRTUAL]1 x Aerial Assault One for 500 MtxCurrency", + "offerId": "v2:/km5i4yvqxd8sqav1r4tk4qlsjolqkd7o5g25p6elcbqwtlsulqnu6hv84ug58i9c", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [ + "Panel 1" + ], + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 500, + "finalPrice": 500, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 500 + } + ], + "meta": {}, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [ + { + "requirementType": "DenyOnItemOwnership", + "requiredId": "AthenaGlider:Glider_ID_001", + "minQuantity": 1 + } + ], + "offerType": "StaticPrice", + "giftInfo": {}, + "refundable": true, + "metaInfo": [], + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_Featured_GliderMiG.DA_Featured_GliderMiG", + "itemGrants": [ + { + "templateId": "AthenaGlider:Glider_ID_001", + "quantity": 1 + } + ], + "sortPriority": -1, + "catalogGroupPriority": 0 + }, + { + "devName": "[VIRTUAL]1 x Aerial Assault Trooper for 1200 MtxCurrency", + "offerId": "v2:/6icfozpr9g7o1gxperhc5rl8dty1o4rzlszmiky0iafc012w5gcdczvsvbvqw8fv", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [ + "Panel 2" + ], + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 1200, + "finalPrice": 1200, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 1200 + } + ], + "meta": {}, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [ + { + "requirementType": "DenyOnItemOwnership", + "requiredId": "AthenaCharacter:CID_017_Athena_Commando_M", + "minQuantity": 1 + } + ], + "offerType": "StaticPrice", + "giftInfo": {}, + "refundable": true, + "metaInfo": [], + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_Featured_SMaleHID017.DA_Featured_SMaleHID017", + "itemGrants": [ + { + "templateId": "AthenaCharacter:CID_017_Athena_Commando_M", + "quantity": 1 + } + ], + "sortPriority": -1, + "catalogGroupPriority": 0 + }, + { + "devName": "[VIRTUAL]1 x Renegade Raider for 1200 MtxCurrency", + "offerId": "v2:/erpaf2rm87d5xgdtqpgx3qyqwrjmn5gsog0cu792enrxh9k1jckzjvgvn6qu7fq7", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [ + "Panel 3" + ], + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 1200, + "finalPrice": 1200, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 1200 + } + ], + "meta": {}, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [ + { + "requirementType": "DenyOnItemOwnership", + "requiredId": "AthenaCharacter:CID_028_Athena_Commando_F", + "minQuantity": 1 + } + ], + "offerType": "StaticPrice", + "giftInfo": {}, + "refundable": true, + "metaInfo": [], + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_Featured_SFemaleHID028.DA_Featured_SFemaleHID028", + "itemGrants": [ + { + "templateId": "AthenaCharacter:CID_028_Athena_Commando_F", + "quantity": 1 + } + ], + "sortPriority": -1, + "catalogGroupPriority": 0 + }, + { + "devName": "[VIRTUAL]1 x Raider's Revenge for 1500 MtxCurrency4", + "offerId": "v2:/w6aq7n8ma7gz342b4wus42hmkqz8suurbdvjo51ug6on7j9rme577eax92rlt4g9", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [ + "Panel 4" + ], + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 1500, + "finalPrice": 1500, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 1500 + } + ], + "meta": {}, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [ + { + "requirementType": "DenyOnItemOwnership", + "requiredId": "AthenaPickaxe:Pickaxe_Lockjaw", + "minQuantity": 1 + } + ], + "offerType": "StaticPrice", + "giftInfo": {}, + "refundable": true, + "metaInfo": [], + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_Featured_PickaxeLockjaw.DA_Featured_PickaxeLockjaw", + "itemGrants": [ + { + "templateId": "AthenaPickaxe:Pickaxe_Lockjaw", + "quantity": 1 + } + ], + "sortPriority": -1, + "catalogGroupPriority": 0 + } + ] + }, + { + "name": "STWSpecialEventStorefront", + "catalogEntries": [ + { + "devName": "[VIRTUAL]1 x Commando Renegade for 2800 GameItem : AccountResource:eventcurrency_scaling", + "offerId": "v2:/fe91e5ee1e64e09367f7f641e897c054a23822387ef79eb81b0bf0805f993c34", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [], + "prices": [ + { + "currencyType": "GameItem", + "currencySubType": "AccountResource:eventcurrency_scaling", + "regularPrice": 2800, + "dynamicRegularPrice": 2800, + "finalPrice": 2800, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "meta": {}, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [], + "offerType": "StaticPrice", + "refundable": false, + "itemGrants": [ + { + "templateId": "Hero:HID_Commando_XBOX_SR_T01", + "quantity": 1 + } + ], + "additionalGrants": [], + "sortPriority": 0, + "catalogGroupPriority": 0 + }, + { + "devName": "[VIRTUAL]1 x Guardian Knox for 2800 GameItem : AccountResource:eventcurrency_scaling", + "offerId": "v2:/83ac0269acedb2d5634a031f55b643b852272903e74d9fa1bb49256a0c06abef", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [], + "prices": [ + { + "currencyType": "GameItem", + "currencySubType": "AccountResource:eventcurrency_scaling", + "regularPrice": 2800, + "dynamicRegularPrice": 2800, + "finalPrice": 2800, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "meta": {}, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [], + "offerType": "StaticPrice", + "refundable": false, + "itemGrants": [ + { + "templateId": "Hero:HID_Constructor_XBOX_SR_T01", + "quantity": 1 + } + ], + "additionalGrants": [], + "sortPriority": 0, + "catalogGroupPriority": 0 + }, + { + "devName": "[VIRTUAL]1 x Jade Assassin Sarah for 2800 GameItem : AccountResource:eventcurrency_scaling", + "offerId": "v2:/9b91076467e61cf01a3c16e39a18331d2e23d754cdafc860aac0fdd7155615ae", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [], + "prices": [ + { + "currencyType": "GameItem", + "currencySubType": "AccountResource:eventcurrency_scaling", + "regularPrice": 2800, + "dynamicRegularPrice": 2800, + "finalPrice": 2800, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "meta": {}, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [], + "offerType": "StaticPrice", + "refundable": false, + "itemGrants": [ + { + "templateId": "Hero:HID_Ninja_XBOX_SR_T01", + "quantity": 1 + } + ], + "additionalGrants": [], + "sortPriority": 0, + "catalogGroupPriority": 0 + }, + { + "devName": "[VIRTUAL]1 x Trailblazer Jess for 2800 GameItem : AccountResource:eventcurrency_scaling", + "offerId": "v2:/aacc97a394a9feaa106ad275caad4e4f22b987d8ceb42d64991024bf6d8a5404", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [], + "prices": [ + { + "currencyType": "GameItem", + "currencySubType": "AccountResource:eventcurrency_scaling", + "regularPrice": 2800, + "dynamicRegularPrice": 2800, + "finalPrice": 2800, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "meta": {}, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [], + "offerType": "StaticPrice", + "refundable": false, + "itemGrants": [ + { + "templateId": "Hero:HID_Outlander_XBOX_SR_T01", + "quantity": 1 + } + ], + "additionalGrants": [], + "sortPriority": 0, + "catalogGroupPriority": 0 + } + ] + }, + { + "name": "STWRotationalEventStorefront", + "catalogEntries": [ + { + "devName": "[VIRTUAL]1 x Commando Ramirez for 2800 GameItem : AccountResource:eventcurrency_scaling", + "offerId": "v2:/cbb7b1eb042cb87002d6a688e25dcabdb08a7de29bea0ced23aca176cd5c174a", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [], + "prices": [ + { + "currencyType": "GameItem", + "currencySubType": "AccountResource:eventcurrency_scaling", + "regularPrice": 2800, + "dynamicRegularPrice": 2800, + "finalPrice": 2800, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "meta": {}, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [], + "offerType": "StaticPrice", + "refundable": false, + "itemGrants": [ + { + "templateId": "Hero:HID_Commando_Sony_SR_T01", + "quantity": 1 + } + ], + "additionalGrants": [], + "sortPriority": 0, + "catalogGroupPriority": 0 + }, + { + "devName": "[VIRTUAL]1 x Guardian Penny for 2800 GameItem : AccountResource:eventcurrency_scaling", + "offerId": "v2:/3e03cd9c32d3b2c809b523aac846762ef0401c701e383451e88a0594318522fa", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [], + "prices": [ + { + "currencyType": "GameItem", + "currencySubType": "AccountResource:eventcurrency_scaling", + "regularPrice": 2800, + "dynamicRegularPrice": 2800, + "finalPrice": 2800, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "meta": {}, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [], + "offerType": "StaticPrice", + "refundable": false, + "itemGrants": [ + { + "templateId": "Hero:HID_Constructor_Sony_SR_T01", + "quantity": 1 + } + ], + "additionalGrants": [], + "sortPriority": 0, + "catalogGroupPriority": 0 + }, + { + "devName": "[VIRTUAL]1 x Bluestreak Ken for 2800 GameItem : AccountResource:eventcurrency_scaling", + "offerId": "v2:/4f1c82dc8fb66fef5a0046fb2163344069b65b6ba64e496939d2fc8e8f779157", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [], + "prices": [ + { + "currencyType": "GameItem", + "currencySubType": "AccountResource:eventcurrency_scaling", + "regularPrice": 2800, + "dynamicRegularPrice": 2800, + "finalPrice": 2800, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "meta": {}, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [], + "offerType": "StaticPrice", + "refundable": false, + "itemGrants": [ + { + "templateId": "Hero:HID_Ninja_Sony_SR_T01", + "quantity": 1 + } + ], + "additionalGrants": [], + "sortPriority": 0, + "catalogGroupPriority": 0 + }, + { + "devName": "[VIRTUAL]1 x Trailblazer A.C. for 2800 GameItem : AccountResource:eventcurrency_scaling", + "offerId": "v2:/5e359069d870aebce7043bcca03da243402bb3ac13b39a87a17e272682b0486f", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [], + "prices": [ + { + "currencyType": "GameItem", + "currencySubType": "AccountResource:eventcurrency_scaling", + "regularPrice": 2800, + "dynamicRegularPrice": 2800, + "finalPrice": 2800, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "meta": {}, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [], + "offerType": "StaticPrice", + "refundable": false, + "itemGrants": [ + { + "templateId": "Hero:HID_Outlander_Sony_SR_T01", + "quantity": 1 + } + ], + "additionalGrants": [], + "sortPriority": 0, + "catalogGroupPriority": 0 + } + ] + }, + { + "name": "CardPackStore", + "catalogEntries": [ + { + "offerId": "B9B0CE758A5049F898773C1A47A69ED4", + "devName": "Always.UpgradePack.03", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 0, + "finalPrice": 0, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 0 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "63BE689248CAF1251C84B4B3574F90EF", + "minQuantity": 1 + } + ], + "metaInfo": [], + "metaAssetInfo": { + "structName": "FortCatalogMeta", + "payload": { + "chaseItems": [ + "FortSchematicItemDefinition'/Game/Items/Schematics/Ranged/Assault/Raygun/SID_Assault_Raygun_VR_Ore_T01.SID_Assault_Raygun_VR_Ore_T01'", + "FortSchematicItemDefinition'/Game/Items/Schematics/Melee/Blunt/Tools/Hammer_Heavy/SID_Blunt_Hammer_Heavy_R_Ore_T01.SID_Blunt_Hammer_Heavy_R_Ore_T01'", + "FortWorkerType'/Game/Items/Workers/Managers/ManagerDoctor_R_T01.ManagerDoctor_R_T01'" + ], + "packDefinition": "FortCardPackItemDefinition'/Game/Items/CardPacks/CardPack_Bronze.CardPack_Bronze'" + } + }, + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Upgrade-Lama", + "ru": "Лама с улучшениями", + "ko": "업그레이드 라마", + "en": "Upgrade Llama", + "it": "Lama plus", + "fr": "Lama amélioré", + "es": "Llama mejorable", + "ar": "لاما الترقية", + "ja": "アップグレードラマ", + "pl": "Ulepszlama", + "es-419": "Llama de mejoras", + "tr": "Geliştirme Laması" + }, + "shortDescription": "", + "description": { + "de": "Das treue alte Lama, vollgepackt mit einer Fülle toller Sachen und Upgrade-Materialien. Enthält mindestens 4 Gegenstände, darunter ein seltener Gegenstand oder ein Held! Hat eine hohe Chance, sich aufzurüsten.", + "ru": "Старая добрая лама, набитая полезными вещами и материалами для улучшений. Содержит как минимум 4 предмета, включая один редкий предмет или героя. Высокая вероятность получить улучшение.", + "ko": "다양한 물건과 업그레이드 재료가 담긴 믿음직한 라마입니다. 희귀 아이템이나 영웅을 포함해 최소 4개의 아이템이 들어있습니다! 업그레이드 확률이 높습니다.", + "en": "The old faithful llama, packed with a variety of goodies and upgrade materials. Contains at least 4 items, including a rare item or a hero! Has a high chance to upgrade.", + "it": "Il caro vecchio lama, carico di oggetti e materiali da potenziamento. Include almeno 4 oggetti, di cui un oggetto o un eroe rari! Probabilità elevata di potenziamento.", + "fr": "Un bon vieux lama, plein de marchandises et de matériaux d'amélioration divers et variés. Contient au moins 4 objets, dont un objet rare ou un héros. A de fortes chances de gagner en valeur.", + "es": "La vieja y querida llama de siempre, atiborrada con una variedad de artículos y de materiales de mejora. Contiene al menos 4 objetos, ¡entre ellos un objeto raro o un héroe! Tiene una alta probabilidad de mejorarse.", + "ar": "اللاما المخلصة القديمة المكدسة بمجموعة متنوعة من السلع ومواد الترقية. يحتوي على 4 عناصر على الأقل، تشتمل على عنصر نادر أو بطل! لديه فرصة كبيرة للترقية.", + "ja": "様々なアイテムやアップグレード用素材が詰まった、安心定番のラマ。レアアイテム1個、またはヒーロー1体を含む4個以上のアイテムが入っている! 高確率でアップグレードのチャンスあり。", + "pl": "Stara dobra lama, pełna różnych skarbów i materiałów do ulepszania. Zawiera przynajmniej 4 elementy. Jednym z nich jest na pewno rzadki przedmiot lub bohater. Ma duże szanse na ulepszenie. PRO100Kąt pozdrawia wszystkich Polaków.", + "es-419": "La llama siempre fiel, llena de una variedad de productos y materiales de mejora. Contiene al menos 4 objetos, ¡incluido un héroe u objeto raro! Tiene una alta probabilidad de mejora.", + "tr": "Çeşitli ürünler ve geliştirme malzemeleri ile doldurulmuş bildiğimiz lama. Nadir bir eşya veya kahraman da dahil olmak üzere en az 4 eşya içerir! Geliştirme şansı yüksektir." + }, + "displayAssetPath": "", + "itemGrants": [ + { + "templateId": "CardPack:cardpack_bronze", + "quantity": 1 + } + ] + }, + { + "offerId": "1F6B613D4B7BAD47D8A93CAEED2C4996", + "devName": "Mini Llama Manual Tutorial - high SharedDisplayPriority", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 0, + "finalPrice": 0, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 0 + } + ], + "categories": [], + "dailyLimit": 1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "82ADCC874CFC2D47927208BAE871CF2B", + "minQuantity": 1 + } + ], + "metaInfo": [], + "metaAssetInfo": { + "structName": "FortCatalogMeta", + "payload": { + "chaseItems": [ + "FortWorkerType'/Game/Items/Workers/WorkerBasic_UC_T02.WorkerBasic_UC_T02'", + "FortSchematicItemDefinition'/Game/Items/Schematics/Melee/Blunt/Tools/Hammer_Heavy/SID_Blunt_Hammer_Heavy_UC_Ore_T02.SID_Blunt_Hammer_Heavy_UC_Ore_T02'", + "FortWorkerType'/Game/Items/Workers/Managers/ManagerDoctor_UC_T01.ManagerDoctor_UC_T01'" + ], + "packDefinition": "FortCardPackItemDefinition'/Game/Items/CardPacks/CardPack_Basic.CardPack_Basic'" + } + }, + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Mini-Belohnungslama", + "ru": "Мини-лама с наградой", + "ko": "미니 보상 라마", + "en": "Mini Reward Llama", + "it": "Lama miniricompensa", + "fr": "Mini lama à récompense", + "es": "Minillama de recompensa", + "ar": "لاما جوائز مصغرة", + "ja": "ミニ報酬ラマ", + "pl": "Minilama", + "es-419": "Minillama de recompensa", + "tr": "Mini Ödül Laması" + }, + "shortDescription": "", + "description": { + "de": "Ein einfaches Lama, das mit allerlei gewöhnlichen Dingen gefüllt ist, um dich durch deine erste Apokalypse zu bringen. Enthält mindestens 3 Gegenstände.\r\n", + "ru": "Простенькая лама, набитая самыми важными вещами, которые помогут вам пережить ваш первый апокалипсис. Содержит по меньшей мере 3 предмета.\r\n", + "ko": "첫 종말에서 생존을 도와줄 기본적인 물품이 담긴 단촐한 라마입니다. 최소 아이템 3개를 얻을 수 있습니다!\r\n", + "en": "A simple llama stuffed with basic goods to get you through your first apocalypse. Contains at least 3 items.\r\n", + "it": "Lama comune carico di oggetti base con cui affrontare la tua prima apocalisse. Include almeno 3 oggetti.\r\n", + "fr": "Un lama rempli de marchandises de base pour vous permettre de survivre à votre première apocalypse. Contient au moins 3 objets.\r\n", + "es": "Una simple llama rellena de artículos básicos con los que sobrevivir a tu primer apocalipsis. Contiene al menos 3 objetos.\r\n", + "ar": "لاما بسيطة مملوءة بالسلع الأساسية لتخرج من نهاية العالم الأولى. تحتوي على 3 عناصر.\r\n", + "ja": "最初のアポカリプスを乗り切れるよう、基本グッズを詰め込んだシンプルなラマ。アイテムが3個以上入っている。\r\n", + "pl": "Zwykła lama wypchana podstawowymi rzeczami, które pomogą ci przetrwać pierwszą apokalipsę. Zawiera co najmniej 3 przedmioty. PRO100Kąt pozdrawia wszystkich Polaków.\r\n", + "es-419": "Una llama simple llena de productos básicos para que puedas sobrevivir a tu primer apocalipsis. Contiene al menos 3 objetos.\r\n", + "tr": "İlk kıyametinden sağ salim çıkabilmen için gerekli temel ürünlerle doldurulmuş basit bir lama. En az 3 öğe içerir.\r\n" + }, + "displayAssetPath": "", + "itemGrants": [ + { + "templateId": "CardPack:cardpack_basic", + "quantity": 1 + } + ] + }, + { + "offerId": "73216346454B1B2892DDA381C75E1BCB", + "devName": "Mini Llama Manual Default - Low SharedDisplayPriority", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 0, + "finalPrice": 0, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 0 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "RequireFulfillment", + "requiredId": "82ADCC874CFC2D47927208BAE871CF2B", + "minQuantity": 1 + } + ], + "metaInfo": [], + "metaAssetInfo": { + "structName": "FortCatalogMeta", + "payload": { + "chaseItems": [ + "FortWorkerType'/Game/Items/Workers/WorkerBasic_UC_T02.WorkerBasic_UC_T02'", + "FortSchematicItemDefinition'/Game/Items/Schematics/Melee/Blunt/Tools/Hammer_Heavy/SID_Blunt_Hammer_Heavy_UC_Ore_T02.SID_Blunt_Hammer_Heavy_UC_Ore_T02'", + "FortWorkerType'/Game/Items/Workers/Managers/ManagerDoctor_UC_T01.ManagerDoctor_UC_T01'" + ], + "packDefinition": "FortCardPackItemDefinition'/Game/Items/CardPacks/CardPack_Basic.CardPack_Basic'" + } + }, + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Mini-Belohnungslama", + "ru": "Мини-лама с наградой", + "ko": "미니 보상 라마", + "en": "Mini Reward Llama", + "it": "Lama miniricompensa", + "fr": "Mini lama à récompense", + "es": "Minillama de recompensa", + "ar": "لاما جوائز مصغرة", + "ja": "ミニ報酬ラマ", + "pl": "Minilama", + "es-419": "Minillama de recompensa", + "tr": "Mini Ödül Laması" + }, + "shortDescription": "", + "description": { + "de": "Ein einfaches Lama, das mit allerlei gewöhnlichen Dingen gefüllt ist, um dich durch deine erste Apokalypse zu bringen. Enthält mindestens 3 Gegenstände.\r\n", + "ru": "Простенькая лама, набитая самыми важными вещами, которые помогут вам пережить ваш первый апокалипсис. Содержит по меньшей мере 3 предмета.\r\n", + "ko": "첫 종말에서 생존을 도와줄 기본적인 물품이 담긴 단촐한 라마입니다. 최소 아이템 3개를 얻을 수 있습니다!\r\n", + "en": "A simple llama stuffed with basic goods to get you through your first apocalypse. Contains at least 3 items.\r\n", + "it": "Lama comune carico di oggetti base con cui affrontare la tua prima apocalisse. Include almeno 3 oggetti.\r\n", + "fr": "Un lama rempli de marchandises de base pour vous permettre de survivre à votre première apocalypse. Contient au moins 3 objets.\r\n", + "es": "Una simple llama rellena de artículos básicos con los que sobrevivir a tu primer apocalipsis. Contiene al menos 3 objetos.\r\n", + "ar": "لاما بسيطة مملوءة بالسلع الأساسية لتخرج من نهاية العالم الأولى. تحتوي على 3 عناصر.\r\n", + "ja": "最初のアポカリプスを乗り切れるよう、基本グッズを詰め込んだシンプルなラマ。アイテムが3個以上入っている。\r\n", + "pl": "Zwykła lama wypchana podstawowymi rzeczami, które pomogą ci przetrwać pierwszą apokalipsę. Zawiera co najmniej 3 przedmioty. PRO100Kąt pozdrawia wszystkich Polaków.\r\n", + "es-419": "Una llama simple llena de productos básicos para que puedas sobrevivir a tu primer apocalipsis. Contiene al menos 3 objetos.\r\n", + "tr": "İlk kıyametinden sağ salim çıkabilmen için gerekli temel ürünlerle doldurulmuş basit bir lama. En az 3 öğe içerir.\r\n" + }, + "displayAssetPath": "", + "itemGrants": [ + { + "templateId": "CardPack:cardpack_basic", + "quantity": 1 + } + ] + } + ] + }, + { + "name": "CardPackStorePreroll", + "catalogEntries": [ + { + "offerId": "D2E08EFA731D437B85B7340EB51A5E1D", + "devName": "Always.UpgradePack.01", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [], + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 50, + "dynamicRegularPrice": 50, + "finalPrice": 50, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 50 + } + ], + "meta": { + "MaxConcurrentPurchases": "-1", + "Preroll": "True", + "ProfileId": "campaign", + "EventLimit": "-1" + }, + "metaAssetInfo": { + "structName": "FortCatalogMeta", + "payload": { + "chaseItems": [ + "FortSchematicItemDefinition'/Game/Items/Schematics/Ranged/Assault/Raygun/SID_Assault_Raygun_VR_Ore_T01.SID_Assault_Raygun_VR_Ore_T01'", + "FortSchematicItemDefinition'/Game/Items/Schematics/Melee/Blunt/Tools/Hammer_Heavy/SID_Blunt_Hammer_Heavy_R_Ore_T01.SID_Blunt_Hammer_Heavy_R_Ore_T01'", + "FortWorkerType'/Game/Items/Workers/Managers/ManagerDoctor_R_T01.ManagerDoctor_R_T01'" + ], + "packDefinition": "FortCardPackItemDefinition'/Game/Items/CardPacks/CardPack_Bronze.CardPack_Bronze'" + } + }, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [], + "offerType": "StaticPrice", + "refundable": false, + "metaInfo": [ + { + "key": "MaxConcurrentPurchases", + "value": "-1" + }, + { + "key": "Preroll", + "value": "True" + }, + { + "key": "ProfileId", + "value": "campaign" + }, + { + "key": "EventLimit", + "value": "-1" + } + ], + "displayAssetPath": "/Game/Items/CardPacks/CardPack_Bronze.CardPack_Bronze", + "itemGrants": [ + { + "templateId": "CardPack:cardpack_bronze", + "quantity": 1 + } + ], + "additionalGrants": [], + "sortPriority": 0, + "title": { + "de": "Upgrade-Lama", + "ru": "Лама с улучшениями", + "ko": "업그레이드 라마", + "en": "Upgrade Llama", + "it": "Lama plus", + "fr": "Lama amélioré", + "es": "Llama mejorable", + "ar": "لاما الترقية", + "ja": "アップグレードラマ", + "pl": "Ulepszlama", + "es-419": "Llama de mejoras", + "tr": "Geliştirme Laması" + }, + "shortDescription": "", + "description": { + "de": "Das treue alte Lama, vollgepackt mit einer Fülle toller Sachen und Upgrade-Materialien. Enthält mindestens 4 Gegenstände, darunter ein seltener Gegenstand oder ein Held! Hat eine hohe Chance, sich aufzurüsten.", + "ru": "Старая добрая лама, набитая полезными вещами и материалами для улучшений. Содержит как минимум 4 предмета, включая один редкий предмет или героя. Высокая вероятность получить улучшение.", + "ko": "다양한 물건과 업그레이드 재료가 담긴 믿음직한 라마입니다. 희귀 아이템이나 영웅을 포함해 최소 4개의 아이템이 들어있습니다! 업그레이드 확률이 높습니다.", + "en": "The old faithful llama, packed with a variety of goodies and upgrade materials. Contains at least 4 items, including a rare item or a hero! Has a high chance to upgrade.", + "it": "Il caro vecchio lama, carico di oggetti e materiali da potenziamento. Include almeno 4 oggetti, di cui un oggetto o un eroe rari! Probabilità elevata di potenziamento.", + "fr": "Un bon vieux lama, plein de marchandises et de matériaux d'amélioration divers et variés. Contient au moins 4 objets, dont un objet rare ou un héros. A de fortes chances de gagner en valeur.", + "es": "La vieja y querida llama de siempre, atiborrada con una variedad de artículos y de materiales de mejora. Contiene al menos 4 objetos, ¡entre ellos un objeto raro o un héroe! Tiene una alta probabilidad de mejorarse.", + "ar": "اللاما المخلصة القديمة المكدسة بمجموعة متنوعة من السلع ومواد الترقية. يحتوي على 4 عناصر على الأقل، تشتمل على عنصر نادر أو بطل! لديه فرصة كبيرة للترقية.", + "ja": "様々なアイテムやアップグレード用素材が詰まった、安心定番のラマ。レアアイテム1個、またはヒーロー1体を含む4個以上のアイテムが入っている! 高確率でアップグレードのチャンスあり。", + "pl": "Stara dobra lama, pełna różnych skarbów i materiałów do ulepszania. Zawiera przynajmniej 4 elementy. Jednym z nich jest na pewno rzadki przedmiot lub bohater. Ma duże szanse na ulepszenie. PRO100Kąt pozdrawia wszystkich Polaków.", + "es-419": "La llama siempre fiel, llena de una variedad de productos y materiales de mejora. Contiene al menos 4 objetos, ¡incluido un héroe u objeto raro! Tiene una alta probabilidad de mejora.", + "tr": "Çeşitli ürünler ve geliştirme malzemeleri ile doldurulmuş bildiğimiz lama. Nadir bir eşya veya kahraman da dahil olmak üzere en az 4 eşya içerir! Geliştirme şansı yüksektir." + }, + "catalogGroup": "Upgrade", + "catalogGroupPriority": 2, + "fulfillmentClass": "com.epicgames.fortnite.core.game.fulfillments.PrerollFulfillment" + }, + { + "offerId": "2D09C70ABD0049EBAF1D4054127287FF", + "devName": "Always.Jackpot.01", + "fulfillmentIds": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "categories": [], + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 500, + "dynamicRegularPrice": 500, + "finalPrice": 500, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 500 + } + ], + "meta": { + "MaxConcurrentPurchases": "-1", + "Preroll": "True", + "ProfileId": "campaign", + "EventLimit": "-1" + }, + "matchFilter": "", + "filterWeight": 0, + "appStoreId": [], + "requirements": [], + "offerType": "StaticPrice", + "refundable": false, + "metaInfo": [ + { + "key": "MaxConcurrentPurchases", + "value": "-1" + }, + { + "key": "Preroll", + "value": "True" + }, + { + "key": "ProfileId", + "value": "campaign" + }, + { + "key": "EventLimit", + "value": "-1" + } + ], + "metaAssetInfo": { + "structName": "FortCatalogMeta", + "payload": { + "chaseItems": [ + "FortSchematicItemDefinition'/Game/Items/Schematics/Ranged/Assault/Hydraulic/SID_Assault_Hydraulic_Drum_SR_Ore_T01.SID_Assault_Hydraulic_Drum_SR_Ore_T01'", + "FortSchematicItemDefinition'/Game/Items/Schematics/Ranged/Sniper/TripleShot/SID_Sniper_TripleShot_VR_Ore_T01.SID_Sniper_TripleShot_VR_Ore_T01'", + "FortHeroType'/Game/Heroes/Outlander/ItemDefinition/HID_Outlander_010_M_SR_T01.HID_Outlander_010_M_SR_T01'", + "FortSchematicItemDefinition'/Game/Items/Schematics/Melee/Piercing/Spear_High/SID_Piercing_Spear_SR_Ore_T01.SID_Piercing_Spear_SR_Ore_T01'", + "FortHeroType'/Game/Heroes/Ninja/ItemDefinition/HID_Ninja_010_F_SR_T01.HID_Ninja_010_F_SR_T01'", + "FortSchematicItemDefinition'/Game/Items/Schematics/Ranged/Shotgun/Scavenger/SID_Shotgun_SemiAuto_Scavenger_SR_Ore_T01.SID_Shotgun_SemiAuto_Scavenger_SR_Ore_T01'" + ], + "packDefinition": "FortCardPackItemDefinition'/Game/Items/CardPacks/CardPack_Jackpot.CardPack_Jackpot'" + } + }, + "displayAssetPath": "/Game/Items/CardPacks/CardPack_Jackpot.CardPack_Jackpot", + "itemGrants": [ + { + "templateId": "CardPack:cardpack_jackpot", + "quantity": 1 + } + ], + "additionalGrants": [], + "sortPriority": 0, + "title": { + "de": "Legendäres Trollschatz-Lama", + "ru": "Лама с легендарной заначкой тролля", + "ko": "전설 트롤 상자 라마", + "en": "Legendary Troll Stash Llama", + "it": "Lama Tesoro Troll leggendario", + "fr": "Lama à butin de Troll légendaire", + "es": "Llama de alijo de trol legendario", + "ar": "لاما مخبأ الأقزام الأسطوري", + "ja": "トロールのお宝ラマ(レジェンド)", + "pl": "Legendarna lama ze skrytki trolla", + "es-419": "Llama de provisión trol legendaria", + "tr": "Efsanevi Trol Zulası Laması" + }, + "shortDescription": "", + "description": { + "de": "Eine ganze Suite voller toller Sachen, direkt aus dem Lager vom Troll um die Ecke! Enthält mindestens 8 absolut legal erstandene Gegenstände.", + "ru": "Груда всяких вкусностей из заначки вашего местного тролля! Содержит как минимум 8 совершенно точно не краденых предметов.", + "ko": "주변 트롤 상자에서 얻어온 물건입니다! 최소 8개의 아이템을 획득할 수 있습니다. 훔친 물건은 절대... 아닐걸요?", + "en": "An entire suite of goodies, direct from your local troll's stash! Contains at least 8 definitely-not-stolen items.", + "it": "Un'intera raccolta di oggetti provenienti da tesori Troll a chilometro zero! Include almeno 8 oggetti assolutamente non rubati.", + "fr": "Un lot de marchandises directement tirées du butin de Troll le plus proche ! Contient au moins 8 objets. Dont aucun n'a été volé. Promis.", + "es": "¡Un surtido completo de artículos que procede directamente del alijo de tu trol convecino! Contiene al menos 8 objetos obtenidos de forma indudablemente legal.", + "ar": "مجموعة كاملة من المقتنيات مباشرةً من مخبأ الأقزام المحلي الخاص بك! تحتوي على 8 عناصر على الأقل غير مسروقة قطعًا. ", + "ja": "アイテムをドンと一式、近所にあるトロールの隠れ家から直送! もちろん盗品じゃないアイテムが8個以上入っている。", + "pl": "Cały zestaw skarbów prosto ze skrytki miejscowego trolla! Zawiera przynajmniej 8 przedmiotów (na pewno nie kradzionych). PRO100Kąt pozdrawia wszystkich Polaków.", + "es-419": "¡Un conjunto completo de productos, directo de las provisiones de tu trol local! Contiene al menos 8 objetos que definitivamente no fueron robados.", + "tr": "Mahallenizin trolünün zulasından çıkarılmış bir grup ürün! En az 8 tane kesinlikle çalıntı olmayan öğe içerir." + }, + "catalogGroup": "Shared", + "catalogGroupPriority": 2, + "fulfillmentClass": "com.epicgames.fortnite.core.game.fulfillments.PrerollFulfillment" + } + ] + }, + { + "name": "CardPackStoreGameplay", + "catalogEntries": [ + { + "offerId": "1F6B613D4B7BAD47D8A93CAEED2C4996", + "devName": "Mini Llama Manual Tutorial - high SharedDisplayPriority", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "AccountResource:voucher_basicpack", + "regularPrice": 0, + "dynamicRegularPrice": 0, + "finalPrice": 0, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 0 + } + ], + "categories": [], + "dailyLimit": 1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "82ADCC874CFC2D47927208BAE871CF2B", + "minQuantity": 1 + } + ], + "metaInfo": [ + { + "key": "bUseSharedDisplay", + "value": "true" + }, + { + "key": "SharedDisplayPriority", + "value": "999999" + } + ], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Mini-Belohnungslama", + "ru": "Мини-лама с наградой", + "ko": "미니 보상 라마", + "en": "Mini Reward Llama", + "it": "Lama miniricompensa", + "fr": "Mini lama à récompense", + "es": "Minillama de recompensa", + "ar": "لاما جوائز مصغرة", + "ja": "ミニ報酬ラマ", + "pl": "Minilama", + "es-419": "Minillama de recompensa", + "tr": "Mini Ödül Laması" + }, + "shortDescription": "", + "description": { + "de": "Ein einfaches Lama, das mit allerlei gewöhnlichen Dingen gefüllt ist, um dich durch deine erste Apokalypse zu bringen. Enthält mindestens 3 Gegenstände.\r\n", + "ru": "Простенькая лама, набитая самыми важными вещами, которые помогут вам пережить ваш первый апокалипсис. Содержит по меньшей мере 3 предмета.\r\n", + "ko": "첫 종말에서 생존을 도와줄 기본적인 물품이 담긴 단촐한 라마입니다. 최소 아이템 3개를 얻을 수 있습니다!\r\n", + "en": "A simple llama stuffed with basic goods to get you through your first apocalypse. Contains at least 3 items.\r\n", + "it": "Lama comune carico di oggetti base con cui affrontare la tua prima apocalisse. Include almeno 3 oggetti.\r\n", + "fr": "Un lama rempli de marchandises de base pour vous permettre de survivre à votre première apocalypse. Contient au moins 3 objets.\r\n", + "es": "Una simple llama rellena de artículos básicos con los que sobrevivir a tu primer apocalipsis. Contiene al menos 3 objetos.\r\n", + "ar": "لاما بسيطة مملوءة بالسلع الأساسية لتخرج من نهاية العالم الأولى. تحتوي على 3 عناصر.\r\n", + "ja": "最初のアポカリプスを乗り切れるよう、基本グッズを詰め込んだシンプルなラマ。アイテムが3個以上入っている。\r\n", + "pl": "Zwykła lama wypchana podstawowymi rzeczami, które pomogą ci przetrwać pierwszą apokalipsę. Zawiera co najmniej 3 przedmioty. PRO100Kąt pozdrawia wszystkich Polaków.\r\n", + "es-419": "Una llama simple llena de productos básicos para que puedas sobrevivir a tu primer apocalipsis. Contiene al menos 3 objetos.\r\n", + "tr": "İlk kıyametinden sağ salim çıkabilmen için gerekli temel ürünlerle doldurulmuş basit bir lama. En az 3 öğe içerir.\r\n" + }, + "displayAssetPath": "/Game/Items/CardPacks/CardPack_Basic.CardPack_Basic", + "itemGrants": [ + { + "templateId": "CardPack:cardpack_basic", + "quantity": 1 + } + ] + } + ] + }, + { + "name": "BRSeason2", + "catalogEntries": [ + { + "offerId": "C3BA14F04F4D56FC1D490F8011B56553", + "devName": "BR.Season2.BattlePass.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 1800, + "finalPrice": 950, + "saleType": "PercentOff", + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 950 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "2B4936F24F3179416FEFD49DA5C4B64C", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 1, + "title": { + "de": "Battle Pass", + "ru": "Боевой пропуск", + "ko": "배틀패스", + "zh-hant": "英雄季卡", + "pt-br": "Passe de Batalha", + "en": "Battle Pass", + "it": "Pass battaglia", + "fr": "Passe de combat", + "zh-cn": "英雄季卡", + "es": "Pase de batalla", + "ar": "Battle Pass", + "ja": "バトルパス", + "pl": "Karnet bojowy", + "es-419": "Pase de batalla", + "tr": "Savaş Bileti" + }, + "shortDescription": "", + "description": { + "de": "Saison 2: 14. Dezember - 20. Februar\r\n\r\nErhalte sofort diese Gegenstände im Wert von über 2.000 V-Bucks!\r\n • Blauer Knappe (Outfit)\r\n • +50 % Saison-Match-EP\r\n • +10 % Saison-Match-EP für Freunde\r\n • Zusätzliche tägliche Battle-Pass-Herausforderung\r\n\r\nSpiele weiter und levele deinen Battle Pass auf, um über 65 Belohnungen im Wert von 12.000 V-Bucks freizuschalten (im Normalfall werden 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Level kaufen!\r\n • Schwarzer Ritter und 2 weitere Outfits\r\n • 3 Erntewerkzeuge\r\n • 2 Hängegleiter\r\n • 1.000 V-Bucks\r\n • +60 % Saison-Match-EP\r\n • +20 % Saison-Match-EP für Freunde\r\n • 2 animierte Emotes\r\n • 13 2D-Emoticons\r\n • und vieles mehr!", + "ru": "Второй сезон: 14 декабря — 20 февраля\r\n\r\nСразу же получите предметы стоимостью более 2000 В-баксов!\r\n • Экипировка Синего оруженосца;\r\n • +50% к опыту за матчи сезона;\r\n • +10% к опыту друзей за матчи сезона;\r\n • дополнительное ежедневное испытание по боевому пропуску.\r\n\r\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 65 наград суммарной стоимостью 12 000 В-баксов! Обычно, чтобы открыть все награды, требуется 75–120 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\r\n • Экипировка Чёрного рыцаря и ещё 2 костюма;\r\n • 3 кирки;\r\n • 2 дельтаплана;\r\n • 1000 В-баксов;\r\n • +60% к опыту за матчи сезона;\r\n • +20% к опыту друзей за матчи сезона;\r\n • 2 анимированных эмоции;\r\n • 13 эмотиконов;\r\n • и это ещё не всё!", + "ko": "시즌 2: 12월 14일 - 2월 20일\r\n\r\n2000 V-Bucks 이상의 가치가 있는 아이템을 즉시 받아가세요.\r\n • 청색 견습기사 의상\r\n • 50% 보너스 시즌 매치 경험치\r\n • 10% 보너스 시즌 친구 매치 경험치\r\n • 배틀패스 일일 도전 추가\r\n\r\n게임을 플레이하면서 배틀패스 레벨을 올려보세요. 12,000 V-Bucks의 가치가 있는 65개 이상의 보상을 얻을 수 있습니다(보통 75-150시간 정도 소요). 더 빠르게 달성하고 싶으신가요? V-Bucks를 사용해서 언제든지 레벨을 구매할 수 있습니다!\r\n • 흑기사 및 의상 2개\r\n • 수확 도구 3개\r\n • 글라이더 2개\r\n • 1000 V-Bucks\r\n • 60% 보너스 시즌 매치 경험치\r\n • 20% 보너스 시즌 친구 매치 경험치\r\n • 애니메이션 이모트 2개\r\n • 2D 이모트 13개\r\n • 그 외 혜택!", + "zh-hant": "第2賽季:12月14日-2月20日\r\n\r\n立即獲得總值超過2000V幣的下列物品!\r\n•堡壘騎士服裝\r\n•額外50%賽季匹配經驗\r\n•額外10%好友賽季匹配經驗\r\n•追加英雄季卡每日挑戰\r\n\r\n遊玩升級英雄季卡,解鎖價值12000V幣的65個以上獎勵(遊戲時間通常為75至150小時)。想要儘早獲得?你也可以使用V幣隨時購買升級!\r\n•3套服裝\r\n•3個採集工具\r\n•2架滑翔傘\r\n•1000V幣\r\n•額外60%賽季匹配經驗\r\n•額外20%好友賽季匹配經驗\r\n•2個動畫表情\r\n•13個2D表情符號\r\n•還有更多獎勵!", + "pt-br": "Temporada 2: 14 de dezembro — 20 de fevereiro\r\n\r\nReceba instantaneamente estes itens avaliados em mais de 2.000 V-Bucks!\r\n • Traje Escudeiro Azul\r\n • 50% de Bônus de EXP da Temporada em Partidas\r\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\r\n • Desafio Diário de Passe de Batalha Extra\r\n\r\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 65 recompensas avaliadas em 12.000 V-Bucks (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar níveis a qualquer momento!\r\n • Cavaleiro Negro e mais 2 outros trajes\r\n • 3 Ferramentas de Coleta\r\n • 2 Asas-deltas\r\n • 1.000 V-Bucks\r\n • 60% de Bônus de EXP da Temporada em Partidas\r\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\r\n • 2 Gestos Animados\r\n • 13 Gestos 2D\r\n • e mais!", + "en": "Season 2: Dec 14 - Feb 20\r\n\r\nInstantly get these items valued at over 2000 V-Bucks.\r\n • Blue Squire Outfit\r\n • 50% Bonus Season Match XP\r\n • 10% Bonus Season Friend Match XP\r\n • Extra Battle Pass Daily Challenge\r\n\r\nPlay to level up your Battle Pass, unlocking up to 65+ rewards worth 12,000 V-Bucks (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy levels any time!\r\n • Black Knight plus 2 other outfits\r\n • 3 Harvesting Tools\r\n • 2 Gliders\r\n • 1000 V-Bucks\r\n • 60% Bonus Season Match XP\r\n • 20% Bonus Season Friend Match XP\r\n • 2 Animated Emotes\r\n • 13 2D Emotes\r\n • and more!", + "it": "Stagione 2: 14 dic. - 20 feb.\r\n\r\nOttieni subito una valutazione di questi oggetti a 2000 V-buck!\r\n • Costume Scudiero blu\r\n • Bonus del 50% dei PE partite stagionali\r\n • Bonus del 10% dei PE partite amico\r\n • Sfida giornaliera Pass battaglia extra\r\n\r\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando fino a 65+ ricompense dal valore di 12.000 V-buck (necessarie tra le 75-150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per acquistare i livelli in qualsiasi momento!\r\n • Cavaliere nero e altri 2 costumi\r\n • 3 strumenti di raccolta\r\n • 2 deltaplani\r\n • 1000 V-buck\r\n • Bonus del 60% dei PE partite stagionali\r\n • Bonus del 20% dei PE partite amico\r\n • 2 emoticon animate\r\n • 13 emoticon 2D\r\n • e molto altro ancora!", + "fr": "Saison 2 : 14 déc. - 20 fév.\r\n\r\nRecevez immédiatement ces objets d'une valeur supérieure à 2000 V-bucks.\r\n • Tenue d'écuyer bleu\r\n • Bonus d'EXP de saison de 50%\r\n • Bonus d'EXP de saison de 10% pour des amis\r\n • Un défi quotidien du Passe de combat supplémentaire\r\n\r\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 65 récompenses d'une valeur de 12 000 V-bucks (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\r\n • Chevalier noir, ainsi que deux autres tenues\r\n • 3 outils de collecte\r\n • 2 planeurs\r\n • 1000 V-bucks\r\n • Bonus d'EXP de saison de 60%\r\n • Bonus d'EXP de saison de 20% pour des amis\r\n • 2 emotes animées\r\n • 13 emotes en 2D\r\n • Et plus !", + "zh-cn": "第2赛季:12月14日-2月20日\r\n\r\n立即获得总值超过2000V币的下列物品!\r\n•堡垒骑士服装\r\n•额外50%赛季匹配经验\r\n•额外10%好友赛季匹配经验\r\n•追加英雄季卡每日挑战\r\n\r\n游玩升级英雄季卡,解锁价值12000V币的65个以上奖励(游戏时间通常为75至150小时)。想要尽早获得?你也可以使用V币随时购买升级!\r\n•3套服装\r\n•3个采集工具\r\n•2架滑翔伞\r\n•1000V币\r\n•额外60%赛季匹配经验\r\n•额外20%好友赛季匹配经验\r\n•2个动画表情\r\n•13个2D表情符号\r\n•还有更多奖励! ", + "es": "Temporada 2: 14 dic - 20 feb\r\n\r\nConsigue instantáneamente estos objetos valorados en más de 2000 paVos.\r\n • Traje de escudero azul.\r\n • Bonificación de PE de partida de temporada del 50%.\r\n • Bonificación de PE de partida amistosa de temporada del 10%.\r\n • Desafío diario del pase de batalla adicional.\r\n\r\nJuega para subir de nivel tu pase de batalla y desbloquea más de 65 recompensas con un valor de 12000 paVos (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para subir de nivel siempre que quieras!\r\n • Caballero negro más otros 2 trajes.\r\n • 3 herramientas de recolección.\r\n • 2 alas delta.\r\n • 1000 paVos.\r\n • Bonificación de PE de partida de temporada del 60%.\r\n • Bonificación de PE de partida amistosa de temporada del 20%.\r\n • 2 gestos animados.\r\n • 13 gestos 2D.\r\n • ¡Y mucho más!", + "ar": "Season 2: Dec 14 - Feb 20\r\n\r\nInstantly get these items valued at over 2000 V-Bucks.\r\n • Blue Squire Outfit\r\n • 50% Bonus Season Match XP\r\n • 10% Bonus Season Friend Match XP\r\n • Extra Battle Pass Daily Challenge\r\n\r\nPlay to level up your Battle Pass, unlocking up to 65+ rewards worth 12,000 V-Bucks (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy levels any time!\r\n • Black Knight plus 2 other outfits\r\n • 3 Harvesting Tools\r\n • 2 Gliders\r\n • 1000 V-Bucks\r\n • 60% Bonus Season Match XP\r\n • 20% Bonus Season Friend Match XP\r\n • 2 Animated Emotes\r\n • 13 2D Emotes\r\n • and more!", + "ja": "シーズン2: 12月14日~2月20日\r\n\r\n2000 V-Bucks分のアイテムをすぐに入手しましょう。\r\n ・ブルースクワイアー\r\n ・シーズンマッチXPの50%ボーナス\r\n ・シーズンフレンドマッチXPの10%ボーナス\r\n ・追加のバトルパス・デイリーチャレンジ\r\n\r\nプレイしてバトルパスのレベルを上げると、12000 V-Bucks分の報酬を最大65個以上アンロックできます(およそ75~150時間程度のプレイが必要)。すぐに報酬が欲しい場合は、V-Bucksでいつでもティアを購入することができます!\r\n ・ブラックナイトコスチュームとさらに他のコスチューム2点\r\n ・収集ツールx3\r\n ・グライダーx2\r\n ・1000 V-Bucks\r\n ・シーズンマッチXPの60%ボーナス\r\n ・シーズンフレンドマッチXPの20%ボーナス\r\n • 動くエモートx2\r\n ・2Dエモートx13\r\n ・他にも色々!", + "pl": "Sezon 2: 14 grudnia - 20 lutego\r\n\r\nOtrzymasz od razu poniższe przedmioty o wartości ponad 2000 V-dolców!\r\n • Strój: „Niebieski Giermek”\r\n • Sezonowa premia +50% PD za grę\r\n • Sezonowa premia +10% PD za grę ze znajomym\r\n • Dodatkowe wyzwanie dnia z karnetu bojowego\r\n\r\nGraj dalej, aby awansować karnet bojowy i zdobyć ponad 65 kolejnych nagród o wartości ponad 12 000 V-dolców (ich zebranie normalnie zajmuje od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\r\n • Czarny Rycerz plus 2 inne stroje\r\n • 3 zbieraki\r\n • 2 lotnie\r\n • 1000 V-dolców\r\n • Sezonowa premia +60% PD za grę\r\n • Sezonowa premia +20% PD za grę ze znajomym\r\n • 2 animowane emotki\r\n • 13 emotek 2D\r\n • I dużo więcej!", + "es-419": "Temporada 2: 14 dic - 20 feb\r\n\r\n¡Obtén al instante estos objetos que cuestan más de 2000 monedas V!\r\n • Atuendo Escudero azul\r\n • 50 % de bonificación de PE para partidas de la temporada\r\n • 10 % de bonificación de PE para partidas con amigos en la temporada\r\n • Desafío diario de pase de batalla adicional\r\n\r\nJuega para subir de nivel tu pase de batalla y desbloquea hasta más de 65 recompensas con un valor de 12.000 monedas V (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\r\n • Caballero negro más otros 2 atuendos\r\n • 3 herramientas de recolección\r\n • 2 planeadores\r\n • 1000 monedas V\r\n • 60 % de bonificación de PE para partidas de la temporada\r\n • 20 % de bonificación de PE para partidas con amigos en la temporada\r\n • 2 gestos animados\r\n • 13 gestos 2D\r\n • ¡Y mucho más!", + "tr": "2. Sezon: 14 Aralık - 20 Şubat\r\n\r\n2000 V-Papel’in üzerinde değeri olan bu içeriklere hemen sahip ol.\r\n • Mavi Şövalye Kıyafeti\r\n • %50 Bonus Sezonluk Maç TP'si\r\n • %10 Bonus Sezonluk Arkadaş Maçı TP'si\r\n • İlave Savaş Bileti Günlük Görevi\r\n\r\nOynayarak Savaş Bileti’nin seviyesini yükselt ve 12.000 V-Papel değerindeki (normalde 75-150 saat oynayarak elde edilebilen) 65'in üzerinde ödülün kilidini aç. Hepsine daha çabuk mu sahip olmak istiyorsun? İstediğin zaman aşama satın almak için V-Papel kullanabilirsin!\r\n • Kara Şövalye ve 2 kıyafet daha\r\n • 3 Toplama Aleti\r\n • 2 Planör\r\n • 1000 V-Papel\r\n • %60 Bonus Sezonluk Maç TP'si\r\n • %20 Bonus Sezonluk Arkadaş Maçı TP'si\r\n • 2 Animasyonlu İfade\r\n • 13 2B İfade\r\n • ve daha fazlası!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season2_BattlePass.DA_BR_Season2_BattlePass", + "itemGrants": [] + }, + { + "offerId": "F86AC2ED4B3EA4B2D65EF1B2629572A0", + "devName": "BR.Season2.SingleTier.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 150, + "finalPrice": 150, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 150 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle-Pass-Level", + "ru": "Уровень боевого пропуска", + "ko": "배틀패스 레벨", + "zh-hant": "英雄季卡戰階", + "pt-br": "Nível de Passe de Batalha", + "en": "Battle Pass Level", + "it": "Livello Pass battaglia", + "fr": "Niveau de Passe de combat", + "zh-cn": "英雄季卡战阶", + "es": "Pase de batalla de nivel", + "ar": "Battle Pass Level", + "ja": "バトルバスレベル", + "pl": "Poziom karnetu bojowego", + "es-419": "Nivel de pase de batalla", + "tr": "Savaş Bileti Aşaması" + }, + "shortDescription": "", + "description": { + "de": "Hol dir jetzt tolle Belohnungen!", + "ru": "Получите отличные награды!", + "ko": "지금 푸짐한 보상을 얻어보세요!", + "zh-hant": "現在獲得豐厚獎勵!", + "pt-br": "Ganhe recompensas ótimas agora!", + "en": "Get great rewards now!", + "it": "Ricevi subito magnifiche ricompense!", + "fr": "Obtenez de grandes récompenses !", + "zh-cn": "现在获得丰厚奖励!", + "es": "¡Consigue recompensas increíbles!", + "ar": "Get great rewards now!", + "ja": "ステキな報酬を今すぐゲット!", + "pl": "Zdobądź super nagrody już teraz!", + "es-419": "¡Consigue grandes recompensas ahora!", + "tr": "Harika ödüllerin sahibi ol!" + }, + "displayAssetPath": "", + "itemGrants": [] + } + ] + }, + { + "name": "BRSeason3", + "catalogEntries": [ + { + "offerId": "70487F4C4673CC98F2FEBEBB26505F44", + "devName": "BR.Season3.BattleBundle.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 4700, + "finalPrice": 2800, + "saleType": "PercentOff", + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "2B4936F24F3179416FEFD49DA5C4B64B", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle-Pass-Paket", + "ru": "Боевой комплект", + "ko": "배틀번들", + "zh-hant": "戰鬥套組", + "pt-br": "Pacotão de Batalha", + "en": "Battle Bundle", + "it": "Nuovo pacchetto battaglia", + "fr": "Pack de combat", + "zh-cn": "战斗套组", + "es": "Lote de batalla", + "ar": "Battle Bundle", + "ja": "バトルバンドル", + "pl": "Zestaw bojowy", + "es-419": "Paquete de batalla", + "tr": "Savaş Paketi" + }, + "shortDescription": { + "de": "Battle Pass + 25 Stufen!", + "ru": "Боевой пропуск + 25 уровней!", + "ko": "배틀패스 + 25티어!", + "zh-hant": "英雄季卡增加25戰階!", + "pt-br": "Passe de Batalha + 25 categorias!", + "en": "Battle pass + 25 tiers!", + "it": "Pass battaglia + 25 livelli!", + "fr": "Passe de combat + 25 paliers !", + "zh-cn": "英雄季卡增加25战阶!", + "es": "¡Pase de batalla y 25 niveles!", + "ar": "Battle pass + 25 tiers!", + "ja": "バトルパス+25ティア!", + "pl": "Karnet bojowy + 25 stopni!", + "es-419": "¡Pase de batalla + 25 niveles!", + "tr": "Savaş Bileti + 25 aşama!" + }, + "description": { + "de": "Saison 3: 22. Februar – 30. April\r\n\r\nErhalte sofort diese Gegenstände im Wert von über 8.000 V-Bucks.\r\n • Missionsspezialist (Outfit)\r\n • Rostmeister (Outfit)\r\n • Sägezahn (Erntewerkzeug)\r\n • Regenbogenritt (Hängegleiter)\r\n • Regenbogen (Flugspur)\r\n • +70 % Saison-Match-EP\r\n • +20 % Saison-Match-EP für Freunde\r\n • Zugang zu Wöchentlichen Herausforderungen\r\n • und noch mehr!\r\n\r\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 weitere Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\r\n • Der Sensenmann und 3 weitere Outfits\r\n • 1 Erntewerkzeug\r\n • 1 Hängegleiter\r\n • 2 Rücken-Accessoires\r\n • 4 Flugspuren\r\n • 1.300 V-Bucks\r\n • und noch eine ganze Menge mehr!", + "ru": "Третий сезон: 22 февраля — 30 апреля\r\n\r\nСразу же получите предметы стоимостью более 8000 В-баксов!\r\n • Экипировка «Миссия выполнима»;\r\n • Экипировка «Повелитель ржавчины»;\r\n • Кирка «Пилозуб»;\r\n • Дельтаплан «Радужный гонщик»;\r\n • Радужный след при падении;\r\n • +70% к опыту за матчи сезона;\r\n • +20% к опыту друзей за матчи сезона;\r\n • доступ к еженедельным испытаниям.\r\n • и это не всё!\r\n\r\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\r\n • Экипировка «Душегуб» и ещё 3 костюма;\r\n • 1 кирка;\r\n • 1 дельтаплан;\r\n • 2 украшения на спину;\r\n • 4 воздушных следа при падении;\r\n • 1300 В-баксов;\r\n • и это ещё не всё!", + "ko": "시즌 3: 2월 22일 - 4월 30일\r\n\r\n8000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\r\n • 우주선 비행사 의상\r\n • 고철왕 의상\r\n • 톱날 수확 도구\r\n • 무지개 글라이더\r\n • 무지개 스카이다이빙 트레일\r\n • 70% 보너스 시즌 매치 XP\r\n • 20% 보너스 시즌 친구 매치 XP\r\n • 주간 도전 이용 권한\r\n\r\n배틀패스 티어를 올려서 최대 75개 이상의 보상을 얻으세요(보통 75-150시간 소요). 더 빨리 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\r\n • 사신 의상 및 다른 의상 3개\r\n • 수확 도구 1개\r\n • 글라이더 1개\r\n • 등 장신구 2개\r\n • 스카이다이빙 트레일 4개\r\n • 1300 V-Bucks\r\n • 그 외 많은 혜택!", + "zh-hant": "第3賽季:2月22日——4月30日\r\n\r\n立即獲得這些價值8000V幣的物品。\r\n • 任務專家服裝\r\n • 廢土領主服裝\r\n • 鋸齒採集工具\r\n • 彩虹騎士滑翔傘\r\n • 彩虹滑翔軌跡\r\n • 70%額外賽季比賽經驗\r\n • 20%額外賽季好友比賽經驗\r\n •獲得每週挑戰許可權\r\n •以及更多!\r\n\r\n通過遊玩提升英雄季卡戰階,解鎖75個以上獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\r\n •收割者以及其他3套服裝\r\n • 1個採集工具\r\n • 1個滑翔傘\r\n • 2個背部裝飾\r\n • 4個滑翔軌跡\r\n • 1300V幣\r\n • 以及更多獎勵!", + "pt-br": "Temporada 3: 22 de fevereiro — 30 de abril\r\n\r\nReceba instantaneamente estes itens avaliados em mais de 8.000 V-Bucks!\r\n • Traje Especialista em Missão\r\n • Traje Lorde da Ferrugem\r\n • Ferramenta de Coleta Dente Serrilhado\r\n • Asa-delta Arco-íris\r\n • Rastro de Queda Livre Arco-íris\r\n • 70% de Bônus de EXP da Temporada em Partidas\r\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\r\n • Acesso a Desafios Semanais\r\n • e mais!\r\n\r\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\r\n • O Ceifador e mais 3 outros trajes\r\n • 1 Ferramenta de Coleta\r\n • 1 Asa-delta\r\n • 2 Acessórios para as Costas\r\n • 4 Rastros de Queda Livre\r\n • 1.300 V-Bucks\r\n • e muito mais!", + "en": "Season 3: Feb 22 - April 30\r\n\r\nInstantly get these items valued at over 8000 V-Bucks.\r\n • Mission Specialist Outfit\r\n • Rust Lord Outfit\r\n • Sawtooth Harvesting Tool\r\n • Rainbow Rider Glider\r\n • Rainbow Skydiving Trail\r\n • 70% Bonus Season Match XP\r\n • 20% Bonus Season Friend Match XP\r\n • Access to Weekly Challenges\r\n • and more!\r\n\r\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\r\n • The Reaper plus 3 other outfits\r\n • 1 Harvesting Tool\r\n • 1 Glider\r\n • 2 Back Blings\r\n • 4 Skydiving Trails\r\n • 1300 V-Bucks\r\n • and so much more!", + "it": "Stagione 3: 22 feb. - 30 apr.\r\n\r\nOttieni subito questi oggetti dal valore di oltre 8000 V-buck!\r\n • Costume Specialista di missione\r\n • Costume Signore della ruggine\r\n • Strumento di raccolta Dente di sega\r\n • Deltaplano Fantino arcobaleno\r\n • Scia Volo dell'arcobaleno\r\n • Bonus del 70% dei PE partite stagionali\r\n • Bonus del 20% dei PE partite amico\r\n • Accesso alle sfide settimanali\r\n • ...e molto altro ancora!\r\n\r\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando oltre 75 ricompense (necessarie tra le 75-150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per acquistare i livelli in qualsiasi momento!\r\n • Il Mietitore e altri 3 costumi\r\n • 1 strumento di raccolta\r\n • 1 deltaplano\r\n • 2 Dorsi decorativi\r\n • 4 Scie Skydive\r\n • 1300 V-buck\r\n • ...e molto altro ancora!", + "fr": "Saison 3 : 22 février - 30 avril\r\n\r\nRecevez immédiatement ces objets d'une valeur supérieure à 8000 V-bucks.\r\n • Tenue de Spationaute\r\n • Tenue de Roi de la rouille\r\n • Outil de collecte Dent de scie\r\n • Planeur magique\r\n • Traînée de condensation Arc-en-ciel\r\n • Bonus d'EXP de saison de 70%\r\n • Bonus d'EXP de saison de 20% pour des amis\r\n • L'accès aux défis hebdomadaires\r\n • Et plus !\r\n\r\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\r\n • Le Faucheur, ainsi que 3 autres tenues\r\n • 1 outil de collecte\r\n • 1 planeur\r\n • 2 accessoires de dos\r\n • 4 traînées de condensation\r\n • 1300 V-bucks\r\n • Et plus !", + "zh-cn": "第3赛季:2月22日——4月30日\r\n\r\n立即获得这些价值8000V币的物品。\r\n • 任务专家服装\r\n • 废土领主服装\r\n • 锯齿采集工具\r\n • 彩虹骑士滑翔伞\r\n • 彩虹滑翔轨迹\r\n • 70%额外赛季比赛经验\r\n • 20%额外赛季好友比赛经验\r\n •获得每周挑战权限\r\n •以及更多!\r\n\r\n通过游玩提升英雄季卡战阶,解锁75个以上奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\r\n •收割者以及其他3套服装\r\n • 1个采集工具\r\n • 1个滑翔伞\r\n • 2个背部装饰\r\n • 4个滑翔轨迹\r\n • 1300V币\r\n • 以及更多奖励!", + "es": "Temporada 3: 22 feb - 30 abr\r\n\r\nConsigue instantáneamente estos objetos valorados en más de 8000 paVos.\r\n • Traje de especialista en misiones.\r\n • Traje de señor del óxido.\r\n • Herramienta de recolección dientes de sierra.\r\n • Ala delta jinete arcoíris.\r\n • Estela de descenso arcoíris.\r\n • Bonificación de PE de partida de temporada del 70%.\r\n • Bonificación de PE de partida amistosa de temporada del 20%.\r\n • Acceso a los desafíos semanales.\r\n • ¡Y mucho más!\r\n\r\nJuega para subir de nivel tu pase de batalla y desbloquea más de 75 recompensas (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\r\n • Señor Muerte más otros 3 trajes.\r\n • 1 herramienta de recolección.\r\n • 1 ala delta.\r\n • 2 popurrí de regalitos.\r\n • 4 estelas de descenso.\r\n • 1300 paVos.\r\n • ¡Y mucho más!", + "ar": "Season 3: Feb 22 - April 30\r\n\r\nInstantly get these items valued at over 8000 V-Bucks.\r\n • Mission Specialist Outfit\r\n • Rust Lord Outfit\r\n • Sawtooth Harvesting Tool\r\n • Rainbow Rider Glider\r\n • Rainbow Skydiving Trail\r\n • 70% Bonus Season Match XP\r\n • 20% Bonus Season Friend Match XP\r\n • Access to Weekly Challenges\r\n • and more!\r\n\r\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\r\n • The Reaper plus 3 other outfits\r\n • 1 Harvesting Tool\r\n • 1 Glider\r\n • 2 Back Blings\r\n • 4 Skydiving Trails\r\n • 1300 V-Bucks\r\n • and so much more!", + "ja": "シーズン3: 2月22日~4月30日\r\n\r\n8000 V-Bucks以上の価値があるアイテムをすぐに手に入れよう。\r\n ・ミッションスペシャリストコスチューム\r\n ・ジャンクロードコスチューム\r\n ・ジャンクアックス収集ツール\r\n ・レインボーライダーグライダー\r\n ・レインボースカイダイビングトレイル\r\n ・シーズンマッチXPの70%ボーナス\r\n ・シーズンフレンドマッチXPの20%ボーナス\r\n ・ウィークリーチャレンジへの挑戦権\r\n ・他にも色々!\r\n\r\nたくさんプレイしてバトルパスのレベルを上げると、75以上の報酬をアンロックできます(およそ75~150時間程度のプレイが必要)。すぐに報酬が欲しい場合は、V-Bucksでいつでもティアを購入することができます!\r\n ・ザ・リーパーコスチュームとさらに他のコスチューム3点\r\n ・収集ツールx1\r\n ・グライダーx1\r\n ・バックアクセサリーx2\r\n ・スカイダイビングトレイルx4\r\n ・1300 V-Bucks\r\n ・他にも色々!", + "pl": "Sezon 3: 22 lutego - 30 kwietnia\r\n\r\nOtrzymasz od razu poniższe przedmioty o wartości ponad 8000 V-dolców!\r\n • Strój: Specjalista od Zadań\r\n • Strój: Rdzawy Lord\r\n • Lotnia Jeźdźca Tęczy\r\n • Sezonowa premia +70% PD za grę\r\n • Sezonowa premia +20% PD za grę ze znajomym\r\n • Dodatkowe wyzwanie dnia z karnetu bojowego\r\n\r\nGraj dalej, aby awansować karnet bojowy i zdobyć ponad 75 kolejnych nagród (ich zebranie normalnie zajmuje od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\r\n • Żniwiarz plus 3 inne stroje\r\n • 1 zbierak\r\n • 1 lotnia\r\n • 2 plecaki\r\n • 4 smugi lotni\n • 1300 V-dolców\r\n • I dużo więcej!", + "es-419": "Temporada 3: Del 22 de feb. al 30 de abr.\r\n\r\n¡Obtén al instante estos objetos que cuestan más de 8000 monedas V!\r\n • Atuendo Especialista de misión\r\n • Atuendo Señor del óxido\r\n • Herramienta de recolección Dientes de sierra\r\n • Planeador Jinete de arcoíris\r\n • Rastro de caída libre Arcoíris\r\n • 70% de bonificación de PE para partidas de la temporada\r\n • 20 % de PE de bonificación para partidas con amigos en la temporada\r\n • Acceso a los desafíos semanales\r\n • ¡Y mucho más!\r\n\r\nJuega para subir de nivel tu pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\r\n • Segador más otros 3 atuendos\r\n • 1 herramienta de recolección\r\n • 1 planeador\r\n • 2 mochilas retro\r\n • 4 rastros de caída libre\r\n • 1300 monedas V\r\n • ¡Y mucho más!", + "tr": "3. Sezon: 22 Şubat - 30 Nisan\r\n\r\n8000 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\r\n • Görev Uzmanı Kıyafeti\r\n • Pasın Efendisi Kıyafeti\r\n • Testere Dişli Kazma\r\n • Gökkuşağının Kanatları Planörü\r\n • %70 Bonus Sezon Maçı TP’si\r\n • %20 Bonus Sezon Arkadaş Maçı TP’si\r\n • Haftalık Görevlere Erişim\r\n • ve daha pek çok şey!\r\n\r\nSavaş Bileti’nin seviyesini yükseltmek için oyna, 75’ten fazla ödülü aç (75-150 saat arası vakit alabilir)! Hepsini daha mı çabuk istiyorsun? V-Papel kullanarak aşamaları istediğin zaman açabilirsin!\r\n • Ölüm Meleği ve 3 kıyafet daha\r\n • 1 Toplama Aleti\r\n • 1 Planör\r\n • 2 Sırt Süsü\r\n • 4 Dalış İzi\r\n • 1300 V-Papel\r\n • ve dahası!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season3_BattlePassWithLevels.DA_BR_Season3_BattlePassWithLevels", + "itemGrants": [] + }, + { + "offerId": "2331626809474871A3A44C47C1D8742E", + "devName": "BR.Season3.BattlePass.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 950, + "finalPrice": 950, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 950 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "2B4936F24F3179416FEFD49DA5C4B64B", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 1, + "title": { + "de": "Battle Pass", + "ru": "Боевой пропуск", + "ko": "배틀패스", + "zh-hant": "英雄季卡", + "pt-br": "Passe de Batalha", + "en": "Battle Pass", + "it": "Pass battaglia", + "fr": "Passe de combat", + "zh-cn": "英雄季卡", + "es": "Pase de batalla", + "ar": "Battle Pass", + "ja": "バトルパス", + "pl": "Karnet bojowy", + "es-419": "Pase de batalla", + "tr": "Savaş Bileti" + }, + "shortDescription": { + "de": "Saison 3", + "ru": "Сезон 3", + "ko": "시즌 3", + "zh-hant": "第3季度", + "pt-br": "Temporada 3", + "en": "Season 3", + "it": "Stagione 3", + "fr": "Saison 3", + "zh-cn": "第3赛季", + "es": "Temporada 3", + "ar": "Season 3", + "ja": "シーズン3", + "pl": "Sezon 3", + "es-419": "Temporada 3", + "tr": "3. Sezon" + }, + "description": { + "de": "Saison 3: 22. Februar – 30. April\r\n\r\nErhalte sofort diese Gegenstände im Wert von über 2.000 V-Bucks.\r\n • Missionsspezialist (Outfit)\r\n • +50 % Saison-Match-EP\r\n • +10 % Saison-Match-EP für Freunde\r\n • Zugang zu Wöchentlichen Herausforderungen\r\n\r\nSpiele weiter und stufe deinen Battle Pass auf, um bis zu 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\r\n • Der Sensenmann und 4 weitere Outfits\r\n • 2 Erntewerkzeuge\r\n • 2 Hängegleiter\r\n • 2 Rücken-Accessoires\r\n • 5 Flugspuren\r\n • 1.300 V-Bucks\r\n • und noch eine ganze Menge mehr!", + "ru": "Третий сезон: 22 февраля — 30 апреля\r\n\r\nСразу же получите предметы стоимостью более 2000 В-баксов!\r\n • Экипировка «Миссия выполнима»;\r\n • +50% к опыту за матчи сезона;\r\n • +10% к опыту друзей за матчи сезона;\r\n • доступ к еженедельным испытаниям.\r\n\r\nИграйте, повышайте уровень боевого пропуска — и вас ждут до 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\r\n • Экипировка «Душегуб» и ещё 4 костюма;\r\n • 2 кирки;\r\n • 2 дельтаплана;\r\n • 2 украшения на спину;\r\n • 5 воздушных следов при падении;\r\n • 1300 В-баксов;\r\n • и это ещё не всё!", + "ko": "시즌 3: 2월 22일 - 4월 30일\r\n\r\n2000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\r\n • 우주선 비행사 의상\r\n • 50% 보너스 시즌 매치 XP\r\n • 10% 보너스 시즌 친구 매치 XP\r\n • 주간 도전 이용 권한\r\n\r\n배틀패스 티어를 올려서 최대 100개의 보상을 얻으세요(보통 75-150시간 소요). 더 빨리 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\r\n • 사신 의상 및 다른 의상 4개\r\n • 수확 도구 2개\r\n • 글라이더 2개\r\n • 등 장신구 2개\r\n • 스카이다이빙 트레일 5개\r\n • 1300 V-Bucks\r\n • 그 외 많은 혜택!", + "zh-hant": "第3賽季:2月22日——4月30日\r\n\r\n立即獲得這些價值2000V幣的物品。\r\n • 任務專家服裝\r\n • 50% 額外賽季比賽經驗\r\n • 10%額外賽季好友比賽經驗\r\n •獲得每週挑戰許可權\r\n\r\n通過遊玩提升英雄季卡戰階,解鎖100多個獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\r\n •收割者以及其他4套服裝\r\n • 2個採集工具\r\n • 2個滑翔傘\r\n • 2個背部裝飾\r\n • 5個滑翔軌跡\r\n • 1300V幣\r\n • 以及更多獎勵!", + "pt-br": "Temporada 3: 22 de fevereiro — 30 de abril\r\n\r\nReceba instantaneamente estes itens avaliados em mais de 2.000 V-Bucks!\r\n • Traje Especialista em Missão\r\n • 50% de Bônus de EXP da Temporada em Partidas\r\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\r\n • Acesso a Desafios Semanais\r\n\r\nJogue para subir o nível do seu Passe de Batalha, desbloqueando até 100 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\r\n • O Ceifador e mais 4 outros trajes\r\n • 2 Ferramentas de Coleta\r\n • 2 Asas-deltas\r\n • 2 Acessórios para as Costas\r\n • 5 Rastros de Queda Livre\r\n • 1.300 V-Bucks\r\n • e muito mais!", + "en": "Season 3: Feb 22 - April 30\r\n\r\nInstantly get these items valued at over 2000 V-Bucks.\r\n • Mission Specialist Outfit\r\n • 50% Bonus Season Match XP\r\n • 10% Bonus Season Friend Match XP\r\n • Access to Weekly Challenges\r\n\r\nPlay to level up your Battle Pass, unlocking up to 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\r\n • The Reaper plus 4 other outfits\r\n • 2 Harvesting Tools\r\n • 2 Gliders\r\n • 2 Back Blings\r\n • 5 Skydiving Trails\r\n • 1300 V-Bucks\r\n • and so much more!", + "it": "Stagione 3: 22 feb. - 30 apr.\r\n\r\nOttieni subito questi oggetti dal valore di oltre 2000 V-buck!\r\n • Costume Specialista di missione\r\n • Bonus del 50% dei PE partite stagionali\r\n • Bonus del 10% dei PE partite amico\r\n • Accesso alle sfide settimanali\r\n\r\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando fino a 100 ricompense (necessarie tra le 75-150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per acquistare i livelli in qualsiasi momento!\r\n • Il Mietitore e altri 4 costumi\r\n • 2 strumenti di raccolta\r\n • 2 deltaplani\r\n • 2 Dorsi decorativi\r\n • 5 Scie Skydive\r\n • 1300 V-buck\r\n • ...e molto altro ancora!", + "fr": "Saison 3 : 22 février - 30 avril\r\n\r\nRecevez immédiatement ces objets d'une valeur supérieure à 2000 V-bucks.\r\n • Tenue de Spationaute\r\n • Bonus d'EXP de saison de 50%\r\n • Bonus d'EXP de saison de 10% pour des amis\r\n • L'accès aux défis hebdomadaires\r\n\r\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller jusqu'à 100 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\r\n • Le Faucheur, ainsi que 4 autres tenues\r\n • 2 outils de collecte\r\n • 2 planeurs\r\n • 2 accessoires de dos\r\n • 5 traînées de condensation\r\n • 1300 V-bucks\r\n • Et plus !", + "zh-cn": "第3赛季:2月22日——4月30日\r\n\r\n立即获得这些价值2000V币的物品。\r\n • 任务专家服装\r\n • 50% 额外赛季比赛经验\r\n • 10%额外赛季好友比赛经验\r\n •获得每周挑战权限\r\n\r\n通过游玩提升英雄季卡战阶,解锁100多个奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\r\n •收割者以及其他4套服装\r\n • 2个采集工具\r\n • 2个滑翔伞\r\n • 2个背部装饰\r\n • 5个滑翔轨迹\r\n • 1300V币\r\n • 以及更多奖励!", + "es": "Temporada 3: 22 feb - 30 abr\r\n\r\nConsigue instantáneamente estos objetos valorados en más de 2000 paVos.\r\n • Traje de especialista en misiones.\r\n • Bonificación de PE de partida de temporada del 50%.\r\n • Bonificación de PE de partida amistosa de temporada del 10%.\r\n • Acceso a los desafíos semanales.\r\n\r\nJuega para subir de nivel tu pase de batalla y desbloquea hasta 100 recompensas (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\r\n • Señor Muerte más otros 4 trajes.\r\n • 2 herramientas de recolección.\r\n • 2 alas delta.\r\n • 2 popurrí de regalitos.\r\n • 5 estelas de descenso.\r\n • 1300 paVos.\r\n • ¡Y mucho más!", + "ar": "Season 3: Feb 22 - April 30\r\n\r\nInstantly get these items valued at over 2000 V-Bucks.\r\n • Mission Specialist Outfit\r\n • 50% Bonus Season Match XP\r\n • 10% Bonus Season Friend Match XP\r\n • Access to Weekly Challenges\r\n\r\nPlay to level up your Battle Pass, unlocking up to 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\r\n • The Reaper plus 4 other outfits\r\n • 2 Harvesting Tools\r\n • 2 Gliders\r\n • 2 Back Blings\r\n • 5 Skydiving Trails\r\n • 1300 V-Bucks\r\n • and so much more!", + "ja": "シーズン3: 2月22日~4月30日\r\n\r\n2000 V-Bucks以上の価値があるアイテムをすぐに手に入れよう。\r\n ・ミッションスペシャリスト\r\n ・シーズンマッチXPの50%ボーナス\r\n ・シーズンフレンドマッチXPの10%ボーナス\r\n ・ウィークリーチャレンジへの挑戦権\r\n\r\nプレイしてバトルパスのレベルを上げると、最大100個の報酬をアンロックする事ができます。すぐに報酬が欲しい場合は、V-Bucksでいつでもティアを購入する事ができます!\r\n ・ザ・リーパーや他のコスチューム4点\r\n ・ピックアックス 2点\r\n ・グライダー 2点\r\n ・バックアクセサリー 2点\r\n ・トレイル 5点\r\n ・1300 V-Bucks\r\n ・他にも色々!", + "pl": "Sezon 3: 22 lutego - 30 kwietnia\r\n\r\nOtrzymasz od razu poniższe przedmioty o wartości ponad 2000 V-dolców!\r\n • Strój: Specjalista od Zadań\r\n • Sezonowa premia +50% PD za grę\r\n • Sezonowa premia +10% PD za grę ze znajomym\r\n • Dodatkowe wyzwanie dnia z karnetu bojowego\r\n\r\nGraj dalej, aby awansować karnet bojowy i zdobyć do 100 kolejnych nagród (ich zebranie normalnie zajmuje od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\r\n • Żniwiarz plus 4 inne stroje\r\n • 2 zbieraki\r\n • 2 lotnie\r\n • 2 plecaki\r\n • 5 smug lotni\n • 1300 V-dolców\r\n • I dużo więcej!", + "es-419": "Temporada 3: Del 22 de feb. al 30 de abr.\r\n\r\n¡Obtén al instante estos objetos que cuestan más de 2000 monedas V!\r\n • Atuendo Especialista de misión\r\n • 50 % de bonificación de PE para partidas de la temporada\r\n • 10 % de PE de bonificación para partidas con amigos en la temporada\r\n • Acceso a los desafíos semanales\r\n\r\nJuega para subir de nivel tu pase de batalla y desbloquear hasta 100 recompensas (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\r\n • Segador más otros 4 atuendos\r\n • 2 herramientas de recolección\r\n • 2 planeadores\r\n • 2 mochilas retro\r\n • 5 rastros de caída libre\r\n • 1300 monedas V\r\n • ¡Y mucho más!", + "tr": "3. Sezon: 22 Şubat - 30 Nisan\r\n\r\n2000 V-Papel'in üzerinde değeri olan bu içerikleri hemen edin.\r\n • Görev Uzmanı Kıyafeti\r\n • %50 Bonus Sezon Maçı TP'si\r\n • %10 Bonus Sezon Arkadaş Maç TP'si\r\n • Haftalık Görevlere Erişim\r\n\r\nSavaş Bileti’nin seviyesini yükseltmek için oyna, 100 ödülü de aç (75-150 saat arası vakit alabilir)! Hepsini daha mı çabuk istiyorsun? V-Papel kullanarak aşamaları istediğin zaman açabilirsin!\r\n • Ölüm Meleği ve 4 kıyafet daha\r\n • 2 Toplama Aleti\r\n • 2 Planör\r\n • 2 Sırt Süsü\r\n •5 Dalış İzi\r\n • 1300 V-Papel \r\n • ve daha pek çok şey!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season3_BattlePass.DA_BR_Season3_BattlePass", + "itemGrants": [] + }, + { + "offerId": "E2D7975EFEC54A45900D8D9A6D9D273C", + "devName": "BR.Season3.SingleTier.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 150, + "finalPrice": 150, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 150 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle-Pass-Level", + "ru": "Уровень боевого пропуска", + "ko": "배틀패스 레벨", + "zh-hant": "英雄季卡戰階", + "pt-br": "Nível de Passe de Batalha", + "en": "Battle Pass Level", + "it": "Livello Pass battaglia", + "fr": "Niveau de Passe de combat", + "zh-cn": "英雄季卡战阶", + "es": "Pase de batalla de nivel", + "ar": "Battle Pass Level", + "ja": "バトルバスレベル", + "pl": "Poziom karnetu bojowego", + "es-419": "Nivel de pase de batalla", + "tr": "Savaş Bileti Aşaması" + }, + "shortDescription": "", + "description": { + "de": "Hol dir jetzt tolle Belohnungen!", + "ru": "Получите отличные награды!", + "ko": "지금 푸짐한 보상을 얻어보세요!", + "zh-hant": "現在獲得豐厚獎勵!", + "pt-br": "Ganhe recompensas ótimas agora!", + "en": "Get great rewards now!", + "it": "Ricevi subito magnifiche ricompense!", + "fr": "Obtenez de grandes récompenses !", + "zh-cn": "现在获得丰厚奖励!", + "es": "¡Consigue recompensas increíbles!", + "ar": "Get great rewards now!", + "ja": "素晴らしい報酬を今すぐゲット!", + "pl": "Zdobądź super nagrody już teraz!", + "es-419": "¡Consigue grandes recompensas ahora!", + "tr": "Harika ödüllerin sahibi ol!" + }, + "displayAssetPath": "", + "itemGrants": [] + } + ] + }, + { + "name": "BRSeason4", + "catalogEntries": [ + { + "offerId": "884CE68998C44AC58D85C5A9883DE1A6", + "devName": "BR.Season4.BattleBundle.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 4700, + "finalPrice": 2800, + "saleType": "PercentOff", + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "2B4936F24F3179416FEFD49DA5C4B64A", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle-Pass-Paket", + "ru": "Боевой комплект", + "ko": "배틀번들", + "zh-hant": "戰鬥套組", + "pt-br": "Pacotão de Batalha", + "en": "Battle Bundle", + "it": "Bundle battaglia", + "fr": "Pack de combat", + "zh-cn": "战斗套组", + "es": "Lote de batalla", + "ar": "Battle Bundle", + "ja": "バトルバンドル", + "pl": "Zestaw bojowy", + "es-419": "Paquete de batalla", + "tr": "Savaş Paketi" + }, + "shortDescription": { + "de": "Battle Pass + 25 Stufen!", + "ru": "Боевой пропуск + 25 уровней!", + "ko": "배틀패스 + 25티어!", + "zh-hant": "英雄季卡增加25戰階!", + "pt-br": "Passe de Batalha + 25 categorias!", + "en": "Battle Pass + 25 tiers!", + "it": "Pass battaglia + 25 livelli!", + "fr": "Passe de combat + 25 paliers !", + "zh-cn": "英雄季卡增加25战阶!", + "es": "¡Pase de batalla y 25 niveles!", + "ar": "Battle Pass + 25 tiers!", + "ja": "バトルパス+25ティア!", + "pl": "Karnet bojowy + 25 stopni!", + "es-419": "¡Pase de batalla + 25 niveles!", + "tr": "Savaş Bileti + 25 aşama!" + }, + "description": { + "de": "Saison 4: Ab sofort bis 9. Juli\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • Carbide (Outfit)\n • Kriegsfalke (Outfit)\n • Teknique (Outfit) \n • Orkanhacke (Spitzhacke)\n • Zuckerschock (Hängegleiter)\n • Standardausführung (Rücken-Accessoire)\n • 4 Spraymotive\n • Retro-Science-Fiction (Flugspur)\n • +70 % Saison-Match-EP\n • +20 % Saison-Match-EP für Freunde\n • Zugang zu Wöchentlichen Herausforderungen\n • Zugang zu Blockbuster-Herausforderungen\n • Zugang zu Carbide-Herausforderungen\n • und mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\n\n • Omega und 3 weitere Outfits\n • 3 Spitzhacken\n • 4 Emotes\n • 2 Hängegleiter\n • 1 Rücken-Accessoire\n • 4 Flugspuren\n • 16 Spraymotive\n • 1.300 V-Bucks\n • und noch eine ganze Menge mehr!", + "ru": "Четвёртый сезон: до 9 июля\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • экипировка Карбида;\n • экипировка Боевого ястреба;\n • экипировка мисс Бэнкси;\n • кирка «Штормовая мощь»;\n • дельтаплан «Конфетка»;\n • украшение на спину «Верный стандарт»;\n • 4 граффити;\n • воздушный след «Ретрофутуризм»;\n • +70% к опыту за матчи сезона;\n • +20% к опыту друзей за матчи сезона;\n • доступ к еженедельным испытаниям;\n • доступ к испытаниям Карбида;\n • доступ к испытаниям события «Убойное кино»;\n • и это ещё не всё!\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\n • экипировка Омеги и ещё 3 костюма;\n • 3 кирки;\n • 4 эмоции;\n • 2 дельтаплана;\n • 1 украшение на спину;\n • 4 воздушных следа;\n • 16 граффити;\n • 1300 В-баксов;\n • и это ещё не всё!", + "ko": "시즌4: 7월 9일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 카바이드 의상\n • 배틀호크 의상\n • 테크니크 아티스트 의상\n • 강풍 곡괭이\n • 슈가 크래시 글라이더\n • 보급품 배낭 등 장신구\n • 스프레이 4개\n • 복고풍 공상 과학 스카이다이빙 트레일\n • 70% 보너스 시즌 매치 XP\n • 20% 보너스 시즌 친구 매치 XP\n • 주간 도전 이용 권한\n • 블록버스터 도전 이용 권한\n • 카바이드 도전 이용 권한\n\n배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요). 더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\n • 오메가 및 다른 의상 3개\n • 곡괭이 3개\n • 이모트 4개\n • 글라이더 2개\n • 등 장신구 1개\n • 스카이다이빙 트레일 4개\n • 스프레이 16개\n • 1,300 V-Bucks\n • 그 외 많은 혜택!", + "zh-hant": "第4賽季:現在起至7月9日\n\n立即獲得這些價值10000V幣的物品。\n • 碳化合金服裝\n • 戰鷹服裝\n • 技巧服裝\n • 蓋爾力量鋤頭\n • 糖果風暴滑翔傘\n • 制式裝備背包\n • 4個塗鴉\n • 復古科幻滑翔軌跡\n • 70% 額外賽季比賽經驗\n • 20%額外賽季好友比賽經驗\n • 獲得每週挑戰許可權\n • 獲得爆紅挑戰許可權\n • 獲得碳化合金挑戰許可權\n • 以及更多!\n\n通過遊玩提升英雄季卡戰階,解鎖75多個獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\n •歐米伽以及其他3套服裝\n •3個鋤頭\n • 4個姿勢\n • 2個滑翔傘\n • 1個背部裝飾\n • 4個滑翔軌跡\n • 16個塗鴉\n • 1300V幣\n • 以及更多獎勵!", + "pt-br": "Temporada 4: de hoje até 9 de julho\n\nReceba instantaneamente estes itens avaliados em mais de 10.000 V-Bucks.\n • Traje Carboneto\n • Traje Gavião Guerreiro\n • Traje Téknica \n • Picareta Rajada\n • Asa-delta Pancada Açucarada\n • Acessório para as Costas Padrão\n • 4 Sprays\n • Rastro de Queda Livre Ficção Científica Retrô\n • 70% de Bônus de EXP da Temporada em Partidas\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\n • Acesso a Desafios Semanais\n • Acesso a Desafios de Filmaço\n • Acesso a Desafios Carboneto\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\n\n • O Ômega e mais 3 outros trajes\n • 3 Picaretas\n • 4 Gestos\n • 2 Asas-deltas\n • 1 Acessórios para as Costas\n • 4 Rastros de Queda Livre\n • 16 Sprays\n • 1.300 V-Bucks\n • e muito mais!", + "en": "Season 4: Now thru July 9\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Carbide Outfit\n • Battlehawk Outfit\n • Teknique Outfit \n • Gale Force Pickaxe\n • Sugar Crash Glider\n • Standard Issue Back Bling\n • 4 Sprays\n • Retro Sci-fi Skydiving Trail\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Access to Weekly Challenges\n • Access to Blockbuster Challenges\n • Access to Carbide Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n\n • Omega plus 3 other outfits\n • 3 Pickaxes\n • 4 Emotes\n • 2 Gliders\n • 1 Back Bling\n • 4 Skydiving Trails\n • 16 Sprays\n • 1300 V-Bucks\n • and so much more!", + "it": "Stagione 4: fino al 9 luglio\n\nOttieni subito questi oggetti dal valore di oltre 10,000 V-buck!\n • Costume Carburo\n • Costume Battlehawk\n • Costume Teknica\n • Piccone Uragano\n • Deltaplano Crash zucchero\n • Dorso decorativo Standard\n • 4 spray\n • Scia skydive Fantascienza rétro\n • Bonus del 70% dei PE partite stagionali\n • Bonus del 20% dei PE partite amico\n • Accesso alle sfide settimanali\n • Accesso alle sfide spaccatutto\n • Accesso alle sfide Carburo\n • ...e tanto altro!\n\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando oltre 75 ricompense (necessarie tra le 75-150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per acquistare i livelli in qualsiasi momento!\n\n • Omega e altri 3 costumi\n • 3 picconi\n • 2 deltaplani\n • 1 Dorso decorativo\n • 4 Scie Skydive\n • 16 spray\n • 1300 V-buck\n • ...e molto altro ancora!", + "fr": "Saison 4 : jusqu'au 9 juillet\n\n Recevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue Carburo\n • Tenue Le Faucon\n • Tenue Graffeuse \n • Pioche Zéphyr\n • Planeur Friandise\n • Accessoire de dos Sac réglementaire\n • 4 aérosols\n • Traînée de condensation Rétrofuturiste\n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 20% pour des amis\n • L'accès aux défis hebdomadaires\n • L'accès aux défis Superproduction\n • L'accès aux défis de Carburo\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\n\n • Oméga plus 3 autres tenues\n • 3 pioches\n • 4 emotes\n • 2 planeurs\n • 1 accessoire de dos\n • 4 traînées de condensation\n • 16 aérosols\n • 1300 V-bucks\n • Et plus !", + "zh-cn": "第4赛季:现在起至7月9日\n\n立即获得这些价值10000V币的物品。\n • 碳化合金服装\n • 战鹰服装\n • 技巧服装\n • 盖尔力量锄头\n • 糖果风暴滑翔伞\n • 制式装备背包\n • 4个涂鸦\n • 复古科幻滑翔轨迹\n • 70% 额外赛季比赛经验\n • 20%额外赛季好友比赛经验\n • 获得每周挑战权限\n • 获得爆红挑战权限\n • 获得碳化合金挑战权限\n • 以及更多!\n\n通过游玩提升英雄季卡战阶,解锁75多个奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\n •欧米伽以及其他3套服装\n •3个锄头\n • 4个姿势\n • 2个滑翔伞\n • 1个背部装饰\n • 4个滑翔轨迹\n • 16个涂鸦\n • 1300V币\n • 以及更多奖励!", + "es": "Temporada 4: Desde ahora hasta el 9 de julio\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje de Carburo\n • Traje de halcón bélico\n • Traje de Téknica \n • Pico fuerza de la tempestad\n • Ala delta subidón de azúcar\n • Accesorio mochilero modelo estándar\n • 4 grafitis\n • Estela de descenso ciencia ficción retro\n • Bonificación de PE de partida de temporada del 70%\n • Bonificación de PE de partida amistosa de temporada del 20%.\n • Acceso a los desafíos semanales.\n • Acceso a los desafíos de Taquillazo.\n • Acceso a los desafíos de Carburo.\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 75 recompensas (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\n\n • Omega más otros 3 trajes.\n • 3 picos.\n • 4 gestos\n • 2 alas delta\n • 1 accesorio mochilero\n • 4 estelas de descenso\n • 16 grafitis\n • 1300 paVos\n • ¡Y mucho más!", + "ar": "Season 4: Now thru July 9\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Carbide Outfit\n • Battlehawk Outfit\n • Teknique Outfit \n • Gale Force Pickaxe\n • Sugar Crash Glider\n • Standard Issue Back Bling\n • 4 Sprays\n • Retro Sci-fi Skydiving Trail\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Access to Weekly Challenges\n • Access to Blockbuster Challenges\n • Access to Carbide Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n\n • Omega plus 3 other outfits\n • 3 Pickaxes\n • 4 Emotes\n • 2 Gliders\n • 1 Back Bling\n • 4 Skydiving Trails\n • 16 Sprays\n • 1300 V-Bucks\n • and so much more!", + "ja": "シーズン4: 7月9日まで\n\n10,000 V-Bucks以上の価値があるアイテムをすぐに手に入れましょう\n ・カーバイドコスチューム\n ・バトルホークコスチューム\n ・テクニークコスチューム\n ・ゲイルフォースツルハシ\n ・シュガークラッシュグライダー\n ・標準仕様バックアクセサリー\n ・スプレー4点\n ・レトロなSFチックスカイダイビングトレイル\n ・シーズンマッチXPの70%ボーナス\n ・シーズンフレンドマッチXPの20%ボーナス\n ・ウィークリーチャレンジへの挑戦権\n ・ブロックバスターチャレンジへの挑戦権\n ・カーバイドチャレンジへの挑戦権\n ・他にも色々!\n\nプレイしてバトルパスのレベルを上げると、75以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。もっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!\n\n ・オメガコスチュームとさらに他のコスチュームx3\n ・ツルハシx3\n ・エモートx4\n ・グライダーx2\n バックアクセサリーx1\n スカイダイビングトレイルx4\n ・スプレーx16\n ・1300 V-Bucks\n 他にも色々!", + "pl": "Sezon 4: potrwa do 9 lipca\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 10 000 V-dolców:\n • Strój: Karbid\n • Strój: Bojowy Jastrząb\n • Strój: Teknique\n • Kilof: Sztormowiec\n • Lotnia: Słodki Spadek\n • Plecak: Standardowe Wyposażenie\n • 4 graffiti\n • Smuga lotni: Retro-SF\n • Sezonowa premia +70% PD za grę\n • Sezonowa premia +20% za grę ze znajomym\n • Dostęp do wyzwań tygodnia\n • Dostęp do wyzwań Hitu Ekranu\n • Dostęp do wyzwań Karbida\n • I jeszcze więcej!\n\nGraj dalej, aby awansować karnet bojowy i zdobyć ponad 75 kolejnych nagród (ich zebranie normalnie zajmuje od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\n\n • Omega plus 3 inne stroje\n • 3 kilofy\n • 4 emotki\n • 2 lotnie\n • 1 sprzęt na plecy\n • 4 smugi lotni\n • 16 graffiti\n • 1300 V-dolców\n • I dużo więcej!", + "es-419": "Temporada 4: Ahora hasta el 9 de julio\n\n¡Obtén al instante estos objetos que cuestan más de 10 000 monedas V!\n • Atuendo Carburo\n • Atuendo Halcón de combate\n • Atuendo Téknica \n • Pico Fuerza huracanada\n • Planeador Bajón de azúcar\n • Mochila retro Edición básica\n • 4 aerosoles\n • Rastro de caída libre Ciencia ficción retro\n • 70 % de PE de bonificación para partidas de la temporada\n • 20 % de PE de bonificación para partidas con amigos en la temporada\n • Acceso a los desafíos semanales\n • Acceso a los desafíos de Taquillazo\n • Acceso a los desafíos de Carburo\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\n\n • Omega más otros 3 atuendos\n • 3 picos\n • 4 gestos\n • 2 planeadores\n • 1 mochila retro\n • 4 rastros de caída libre\n • 16 aerosoles\n • 1300 monedas V\n • ¡Y mucho más!", + "tr": "4. Sezon: Şu andan 9 Temmuz’a kadar\n\n10.000 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\n • Demir Maske Kıyafeti\n • Savaş Şahini Kıyafeti\n • Asi Grafitici Kıyafeti\n • Kraliçenin Gücü Kazması\n • Şeker Koması Planörü\n • Standart Ekipman Sırt Süsü\n • 4 Sprey\n • Retro Bilimkurgu Hava Dalışı İzi\n • %70 Bonus Sezonluk Maç TP’si\n • %20 Bonus Sezonluk Arkadaşlar için Maç TP’si\n • Haftalık Görevlere Erişim\n • Gişe Rekortmeni Görevlerine Erişim\n • Demir Maske Görevlerine Erişim\n • ve fazlası!\n\nBattle Royale oynayarak Savaş Bileti’nin seviyesini yükselt ve 75’ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir). Hepsini daha hızlı almak mı istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!\n\n • Omega artı 3 kıyafet daha\n • 3 Kazma\n • 4 İfade\n • 2 Planör\n • 1 Sırt Süsü\n • 4 Hava Dalışı İzi\n • 16 Sprey\n • 1300 V-Papel\n • ve çok daha fazlası!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season4_BattlePassWithLevels.DA_BR_Season4_BattlePassWithLevels", + "itemGrants": [] + }, + { + "offerId": "76EA7FE9787744B09B79FF3FC5E39D0C", + "devName": "BR.Season4.BattlePass.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 950, + "finalPrice": 950, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 950 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "2B4936F24F3179416FEFD49DA5C4B64A", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 1, + "title": { + "de": "Battle Pass", + "ru": "Боевой пропуск", + "ko": "배틀패스", + "zh-hant": "英雄季卡", + "pt-br": "Passe de Batalha", + "en": "Battle Pass", + "it": "Pass battaglia", + "fr": "Passe de combat", + "zh-cn": "英雄季卡", + "es": "Pase de batalla", + "ar": "Battle Pass", + "ja": "バトルパス", + "pl": "Karnet bojowy", + "es-419": "Pase de batalla", + "tr": "Savaş Bileti" + }, + "shortDescription": { + "de": "Saison 4", + "ru": "Сезон 4", + "ko": "시즌 4", + "zh-hant": "第4賽季", + "pt-br": "Temporada 4", + "en": "Season 4", + "it": "Stagione 4", + "fr": "Saison 4", + "zh-cn": "第4赛季", + "es": "Temporada 4", + "ar": "Season 4", + "ja": "シーズン4", + "pl": "Sezon 4", + "es-419": "Temporada 4", + "tr": "4. Sezon" + }, + "description": { + "de": "Saison 4: Ab sofort bis 9. Juli\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • Carbide (Outfit)\n • Kriegsfalke (Outfit)\n • +50 % Saison-Match-EP\n • +10 % Saison-Match-EP für Freunde\n • Zugang zu Wöchentlichen Herausforderungen\n • Zugang zu Blockbuster-Herausforderungen\n • Zugang zu Carbide-Herausforderungen\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\n • Omega und 4 weitere Outfits\n • 4 Spitzhacken\n • 5 Emotes\n • 3 Hängegleiter\n • 2 Rücken-Accessoires\n • 5 Flugspuren\n • 20 Spraymotive\n • 1.300 V-Bucks\n • und noch eine ganze Menge mehr!", + "ru": "Четвёртый сезон: до 9 июля\n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • экипировка Карбида;\n • экипировка Боевого ястреба;\n • +50% к опыту за матчи сезона;\n • +10% к опыту друзей за матчи сезона;\n • доступ к еженедельным испытаниям;\n • доступ к испытаниям Карбида;\n • доступ к испытаниям события «Убойное кино».\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут до 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\n • экипировка Омеги и ещё 4 костюма;\n • 4 кирки;\n • 5 эмоций;\n • 3 дельтаплана;\n • 2 украшения на спину;\n • 5 воздушных следов;\n • 20 граффити;\n • 1300 В-баксов;\n • и это ещё не всё!", + "ko": "시즌4: 7월 9일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 카바이드 의상\n • 배틀호크 의상\n • 50% 보너스 시즌 매치 XP\n • 10% 보너스 시즌 친구 매치 XP\n • 주간 도전 이용 권한\n • 블록버스터 도전 이용 권한\n • 카바이드 도전 이용 권한\n\n배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요). 더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\n • 오메가 및 다른 의상 4개\n • 곡괭이 4개\n • 이모트 5개\n • 글라이더 3개\n • 등 장신구 2개\n • 스카이다이빙 트레일 5개\n • 스프레이 20개\n • 1,300 V-Bucks\n • 그 외 많은 혜택!", + "zh-hant": "第4賽季:現在起至7月9日\n\n立即獲得這些價值3500V幣的物品。\n • 碳化合金服裝\n • 戰鷹服裝\n • 50% 額外賽季比賽經驗\n • 10%額外賽季好友比賽經驗\n • 獲得每週挑戰許可權\n • 獲得爆紅挑戰許可權\n • 獲得碳化合金挑戰許可權\n\n通過遊玩提升英雄季卡戰階,解鎖100多個獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\n •歐米伽以及其他4套服裝\n •4個鋤頭\n • 5個姿勢\n • 3個滑翔傘\n • 2個背部裝飾\n • 5個滑翔軌跡\n • 20個小塗鴉\n • 1300V幣\n • 以及更多獎勵!", + "pt-br": "Temporada 4: de hoje até 9 de julho\n\nReceba instantaneamente estes itens avaliados em mais de 3.500 V-Bucks.\n • Traje Carboneto\n • Traje Gavião Guerreiro\n • 50% de Bônus de EXP da Temporada em Partidas\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\n • Acesso a Desafios Semanais\n • Acesso a Desafios de Filmaço\n • Acesso a Desafios Carboneto\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\n • O Ômega e mais 4 outros trajes\n • 4 Picaretas\n • 5 Gestos\n • 3 Asas-deltas\n • 2 Acessórios para as Costas\n • 5 Rastros de Queda Livre\n • 20 Sprays\n • 1.300 V-Bucks\n • e muito mais!", + "en": "Season 4: Now thru July 9\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Carbide Outfit\n • Battlehawk Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Access to Weekly Challenges\n • Access to Blockbuster Challenges\n • Access to Carbide Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • Omega plus 4 other outfits\n • 4 Pickaxes\n • 5 Emotes\n • 3 Gliders\n • 2 Back Blings\n • 5 Skydiving Trails\n • 20 Sprays\n • 1300 V-Bucks\n • and so much more!", + "it": "Stagione 4: fino al 9 luglio\n\nOttieni subito questi oggetti dal valore di oltre 3.500 V-buck!\n • Costume Carburo\n • Costume Battlehawk\n • Bonus del 50% dei PE partite stagionali\n • Bonus del 10% dei PE partite amico\n • Accesso alle sfide settimanali\n • Accesso alle sfide spaccatutto\n • Accesso alle sfide Carburo\n\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando fino a 100 ricompense (necessarie tra le 75-150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per acquistare i livelli in qualsiasi momento!\n • Omega e altri 4 costumi\n • 4 picconi\n • 3 deltaplani\n • 2 Dorso decorativo\n • 5 Scie Skydive\n • 20 Spray\n • 1300 V-buck\n • ...e molto altro ancora!", + "fr": "Saison 4 : jusqu'au 9 juillet\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3 500 V-bucks.\n • Tenue Carburo\n • Tenue Le Faucon\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 10% pour des amis\n • L'accès aux défis hebdomadaires\n • L'accès aux défis Superproduction\n • L'accès aux défis de Carburo\n\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\n • Oméga plus 4 autres tenues\n • 4 pioches\n • 5 emotes\n • 3 planeurs\n • 2 accessoires de dos\n • 5 traînées de condensation\n • 20 aérosols\n • 1300 V-bucks\n • Et plus !", + "zh-cn": "第4赛季:现在起至7月9日\n\n立即获得这些价值3500V币的物品。\n • 碳化合金服装\n • 战鹰服装\n • 50% 额外赛季比赛经验\n • 10%额外赛季好友比赛经验\n • 获得每周挑战权限\n • 获得爆红挑战权限\n • 获得碳化合金挑战权限\n\n通过游玩提升英雄季卡战阶,解锁100多个奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\n •欧米伽以及其他4套服装\n •4个锄头\n • 5个姿势\n • 3个滑翔伞\n • 2个背部装饰\n • 5个滑翔轨迹\n • 20个小涂鸦\n • 1300V币\n • 以及更多奖励!", + "es": "Temporada 4: Desde ahora hasta el 9 de julio\n\nConsigue instantáneamente estos objetos valorados en más de 3500 paVos.\n • Traje de Carburo\n • Traje de halcón bélico\n • Bonificación de PE de partida de temporada del 50%.\n • Bonificación de PE de partida amistosa de temporada del 10%.\n • Acceso a los desafíos semanales.\n • Acceso a los desafíos de Taquillazo.\n • Acceso a los desafíos de Carburo.\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 100 recompensas (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\n • Omega más otros 4 trajes.\n • 4 picos.\n • 5 gestos.\n • 3 alas delta.\n • 2 accesorios mochileros.\n • 5 estelas de descenso.\n • 20 grafitis.\n • 1300 paVos\n • ¡Y mucho más!", + "ar": "Season 4: Now thru July 9\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Carbide Outfit\n • Battlehawk Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Access to Weekly Challenges\n • Access to Blockbuster Challenges\n • Access to Carbide Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • Omega plus 4 other outfits\n • 4 Pickaxes\n • 5 Emotes\n • 3 Gliders\n • 2 Back Blings\n • 5 Skydiving Trails\n • 20 Sprays\n • 1300 V-Bucks\n • and so much more!", + "ja": "シーズン4: 7月9日まで\n\n3,500 V-Bucks以上の価値があるアイテムをすぐに手に入れましょう\n ・カーバイドコスチューム\n ・バトルホークコスチューム\n ・シーズンマッチXPの50%ボーナス\n ・シーズンフレンドマッチXPの10%ボーナス\n ・ウィークリーチャレンジへの挑戦権\n ・ブロックバスターチャレンジへの挑戦権\n ・カーバイドチャレンジへの挑戦権\n\nプレイしてバトルパスのレベルを上げると、100個以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。もっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!\n ・オメガコスチュームとさらに他のコスチュームx4\n ・ツルハシx4\n ・エモートx5\n ・グライダーx3\n ・バックアクセサリーx2\n ・スカイダイビングトレイルx5\n ・スプレーx20\n ・1300 V-Bucks\n ・他にも色々!", + "pl": "Sezon 4: potrwa do 9 lipca\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 3 500 V-dolców:\n • Strój: Karbid\n • Strój: Bojowy Jastrząb\n • Sezonowa premia +50% PD za grę\n • Sezonowa premia +10% PD za grę ze znajomym\n • Dostęp do wyzwań tygodnia\n • Dostęp do wyzwań Hitu Ekranu\n • Dostęp do wyzwań Karbida\n\nGraj dalej, aby awansować karnet bojowy i zdobyć łącznie ponad 100 nagród (ich zebranie normalnie zajmuje od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\n • Omega plus 4 inne stroje\n • 4 kilofy\n • 5 emotek\n • 3 lotnie\n • 2 plecaki\n • 5 smug lotni\n • 20 graffiti\n • 1300 V-dolców\n • I dużo więcej!", + "es-419": "Temporada 4: Ahora hasta el 9 de julio\n\n¡Obtén al instante estos objetos que cuestan más de 3500 monedas V!\n • Atuendo Carburo\n • Atuendo Halcón de combate\n • 50 % de PE de bonificación para partidas de la temporada\n • 10 % de PE de bonificación para partidas con amigos en la temporada\n • Acceso a los desafíos semanales\n • Acceso a los desafíos de Taquillazo\n • Acceso a los desafíos de Carburo\n\nJuega para subir de nivel tu pase de batalla y desbloquear más de 100 recompensas (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\n • Omega más otros 4 atuendos\n • 4 picos\n • 5 gestos\n • 3 planeadores\n • 2 mochilas retro\n • 5 rastros de caída libre\n • 20 aerosoles\n • 1300 monedas V\n • ¡Y mucho más!", + "tr": "4. Sezon: Şu andan 9 Temmuz’a kadar\n\n3.500 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\n • Demir Maske Kıyafeti\n • Savaş Şahini Kıyafeti\n • %50 Bonus Sezonluk Maç TP’si\n • %10 Bonus Sezonluk Arkadaşlar için Maç TP’si\n • Haftalık Görevlere Erişim\n • Gişe Rekortmeni Görevlerine Erişim\n • Demir Maske Görevlerine Erişim\n\nBattle Royale oynayarak Savaş Bileti’nin seviyesini yükselt ve 100’den fazla ödülü aç (yaklaşık 75 ila 150 saat oynama gerektirir). Hepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!\n • Omega artı 4 kıyafet daha\n • 4 Kazma\n • 5 İfade\n • 3 Planör\n • 2 Sırt Süsü\n • 5 Hava Dalışı İzi\n • 20 Sprey\n • 1300 V-Papel\n • ve çok daha fazlası!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season4_BattlePass.DA_BR_Season4_BattlePass", + "itemGrants": [] + }, + { + "offerId": "E9527AF46F4B4A9CAE98D91F2AA53CB6", + "devName": "BR.Season4.SingleTier.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 150, + "finalPrice": 150, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 150 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle-Pass-Stufe", + "ru": "Уровень боевого пропуска", + "ko": "배틀패스 티어", + "zh-hant": "英雄季卡戰階", + "pt-br": "Categoria de Passe de Batalha", + "en": "Battle Pass Tier", + "it": "Livello Pass battaglia", + "fr": "Palier du Passe de combat", + "zh-cn": "英雄季卡战阶", + "es": "Nivel del pase de batalla", + "ar": "Battle Pass Tier", + "ja": "バトルパスティア", + "pl": "Stopień karnetu bojowego", + "es-419": "Nivel de pase de batalla", + "tr": "Savaş Bileti Aşaması" + }, + "shortDescription": "", + "description": { + "de": "Hol dir jetzt tolle Belohnungen!", + "ru": "Получите отличные награды!", + "ko": "지금 푸짐한 보상을 얻어보세요!", + "zh-hant": "現在獲得豐厚獎勵!", + "pt-br": "Ganhe recompensas ótimas agora!", + "en": "Get great rewards now!", + "it": "Ricevi subito magnifiche ricompense!", + "fr": "Obtenez de grandes récompenses !", + "zh-cn": "现在获得丰厚奖励!", + "es": "¡Consigue recompensas increíbles!", + "ar": "Get great rewards now!", + "ja": "素晴らしい報酬を今すぐゲット!", + "pl": "Zdobądź super nagrody już teraz!", + "es-419": "¡Consigue grandes recompensas ahora!", + "tr": "Harika ödüllerin sahibi ol!" + }, + "displayAssetPath": "", + "itemGrants": [] + } + ] + }, + { + "name": "BRSeason5", + "catalogEntries": [ + { + "offerId": "FF77356F424644529049280AFC8A795E", + "devName": "BR.Season5.BattleBundle.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 4700, + "finalPrice": 2800, + "saleType": "PercentOff", + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "2B4936F24F3179416FEFD49DA5C4B64E", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle-Pass-Paket", + "ru": "Боевой комплект", + "ko": "배틀번들", + "zh-hant": "戰鬥套組", + "pt-br": "Pacotão de Batalha", + "en": "Battle Bundle", + "it": "Bundle battaglia", + "fr": "Pack de combat", + "zh-cn": "战斗套组", + "es": "Lote de batalla", + "ar": "Battle Bundle", + "ja": "バトルバンドル", + "pl": "Zestaw bojowy", + "es-419": "Paquete de batalla", + "tr": "Savaş Paketi" + }, + "shortDescription": { + "de": "Battle Pass + 25 Stufen!", + "ru": "Боевой пропуск + 25 уровней!", + "ko": "배틀패스 + 25티어!", + "zh-hant": "英雄季卡增加25戰階!", + "pt-br": "Passe de Batalha + 25 categorias!", + "en": "Battle Pass + 25 tiers!", + "it": "Pass battaglia + 25 livelli!", + "fr": "Passe de combat + 25 paliers !", + "zh-cn": "英雄季卡增加25战阶!", + "es": "¡Pase de batalla y 25 niveles!", + "ar": "Battle Pass + 25 tiers!", + "ja": "バトルパス+25ティア!", + "pl": "Karnet bojowy + 25 stopni!", + "es-419": "¡Pase de batalla + 25 niveles!", + "tr": "Savaş Bileti + 25 aşama!" + }, + "description": { + "de": "Saison 5: Ab sofort bis 25. September\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • Jägerin (Outfit)\n • Drift (Outfit)\n • Rotstreifen (Outfit)\n • Ballonhacke (Spitzhacke)\n • Funker (Rücken-Accessoire)\n • Laternen (Flugspur)\n • 2 Hängegleiter\n • 4 Spraymotive\n • +70 % Saison-Match-EP\n • +20 % Saison-Match-EP für Freunde\n • zusätzliche Wöchentliche Herausforderungen • fortschreitende Drift-Herausforderungen\n • und mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\n • Ragnarök und 4 weitere Outfits\n • 3 Spitzhacken\n • 4 Emotes\n • 2 Hängegleiter\n • 4 Rücken-Accessoires\n • 4 Flugspuren\n • 11 Spraymotive\n • 1.300 V-Bucks\n • und noch eine ganze Menge mehr!", + "ru": "Пятый сезон: до 25 сентября\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • экипировка Астрид;\n • экипировка Ронина;\n • экипировка Красной Линии;\n • кирка «Шарики»;\n • украшение на спину «Рюкзак-скрутка»;\n • воздушный след «Фонарики»;\n • 2 дельтаплана;\n • 4 граффити;\n • +70% к опыту за матчи сезона;\n • +20% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания;\n • последовательные испытания Ронина;\n • и многое другое!\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\n • экипировка Рагнарёка и ещё 4 костюма;\n • 3 кирки;\n • 4 эмоции;\n • 2 дельтаплана;\n • 4 украшения на спину;\n • 4 воздушных следа;\n • 11 граффити;\n • 1300 В-баксов;\n • и это ещё не всё!", + "ko": "시즌 5: 9월 25일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 헌트리스 의상\n • 드리프트 의상\n • 레드라인 의상\n • 풍선 도끼 곡괭이\n • 업링크 등 장신구\n • 등불 스카이다이빙 트레일\n • 글라이더 2개\n • 스프레이 4개\n • 70% 보너스 시즌 매치 XP\n • 20% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 드리프트 연속 도전\n • 그 외 혜택!\n\n배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요). 더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\n • 라그나로크 외 의상 4개\n • 곡괭이 3개\n • 이모트 4개\n • 글라이더 2개\n • 등 장신구 4개\n • 스카이다이빙 트레일 4개\n • 스프레이 11개\n • 1,300 V-Bucks\n • 그 외 많은 혜택!", + "zh-hant": "第5賽季:從今天起直到9月25號\n\n立即獲得以下總價值超過1萬V幣的物品。\n •“女獵手”套裝 •“天狐”套裝\n • “紅線”套裝\n • “氣球斧”鋤頭\n • “上傳” 背部裝飾\n •“燈籠” 滑翔軌跡\n • 2種滑翔傘\n • 4種噴漆圖案\n • 70% 額外賽季匹配經驗值\n • 20% 額外賽季好友匹配經驗值\n • 額外的每週挑戰\n • 天狐進度挑戰\n • 以及更多獎勵\n\n玩遊戲以提升你的英雄季卡,解鎖超過75中獎勵(一般情況下全解鎖需要75至150小時的遊玩時間)想要更快解鎖?你隨時可以用V幣購買戰階等級!\n • “諸神黃昏”外加4套其他服裝\n • 3款鋤頭\n • 4種姿勢\n • 2款滑翔傘\n • 4種背部裝飾\n • 4種滑翔軌跡\n • 11款塗鴉\n • 1300V幣\n •以及更多內容!", + "pt-br": "Temporada 5: de hoje até 25 de setembro\n\nReceba instantaneamente estes itens avaliados em mais de 10.000 V-Bucks.\n • Traje Caçadora\n • Traje Atemporal\n • Traje Acelerada\n • Picareta Balãoreta\n • Acessório para as Costas Conexão\n • Rastro de Queda Livre Lanternas\n • 2 Asas-deltas\n • 4 Sprays\n • 70% de Bônus de EXP da Temporada em Partidas\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • Desafios Atemporal Progressivos\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\n • O Ragnarok e mais 4 outros trajes\n • 3 Picaretas\n • 4 Gestos\n • 2 Asas-deltas\n • 4 Acessórios para as Costas\n • 4 Rastros de Queda Livre\n • 11 Sprays\n • 1.300 V-Bucks\n • e muito mais!", + "en": "Season 5: Now thru Sept 25\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • “Huntress” Outfit\n • “Drift” Outfit\n • “Redline” Outfit\n • “Balloon Axe” Pickaxe\n • “Uplink” Back Bling\n • “Lanterns” Skydiving Trail\n • 2 Gliders\n • 4 Sprays\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Drift Progressive Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • “Ragnarok” plus 4 other outfits\n • 3 Pickaxes\n • 4 Emotes\n • 2 Gliders\n • 4 Back Blings\n • 4 Skydiving Trails\n • 11 Sprays\n • 1,300 V-Bucks\n • and so much more!", + "it": "Incrementa di 5 secondi la durata dell'effetto attivo di Allo sbaraglio.", + "fr": "Saison 5 : jusqu'au 25 septembre\n\nRecevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue Chasseresse\n • Tenue Nomade\n • Tenue Ligne rouge\n • Pioche Baudruche\n • Accessoire de dos Radiotransmetteur\n • Traînée de condensation Lanternes\n • 2 planeurs\n • 4 aérosols\n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 20% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Les défis progressifs du Nomade\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\n • Ragnarök plus 4 autres tenues\n • 3 pioches\n • 4 emotes\n • 2 planeurs\n • 4 accessoires de dos\n • 4 traînées de condensation\n • 11 aérosols\n • 1300 V-bucks\n • Et plus !", + "zh-cn": "第5赛季:从今天起直到9月25号\n\n立即获得以下总价值超过1万V币的物品。\n •“女猎手”套装 •“天狐”套装\n • “红线”套装\n • “气球斧”锄头\n • “上传” 背部装饰\n •“灯笼” 滑翔轨迹\n • 2种滑翔伞\n • 4种喷漆图案\n • 70% 额外赛季匹配经验值\n • 20% 额外赛季好友匹配经验值\n • 额外的每周挑战\n • 天狐进度挑战\n • 以及更多奖励\n\n玩游戏以提升你的英雄季卡,解锁超过75中奖励(一般情况下全解锁需要75至150小时的游玩时间)想要更快解锁?你随时可以用V币购买战阶等级!\n • “诸神黄昏”外加4套其他服装\n • 3款锄头\n • 4种姿势\n • 2款滑翔伞\n • 4种背部装饰\n • 4种滑翔轨迹\n • 11款涂鸦\n • 1300V币\n •以及更多内容!", + "es": "Temporada 5: Desde ahora hasta el 25 de septiembre\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje de Cazadora.\n • Traje de Deriva.\n • Traje de Revolucionada.\n • Pico Hacha globo.\n • Accesorio mochilero Enlace ascendente.\n • Estela de descenso Farolillos.\n • 2 alas delta.\n • 4 grafitis.\n • Bonificación de PE de partida de temporada del 70 %.\n • Bonificación de PE de partida amistosa de temporada del 20 %.\n • Desafíos semanales adicionales.\n • Desafíos progresivos de Deriva.\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 75 recompensas adicionales (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\n • Ragnarok más otros 4 trajes.\n • 3 picos.\n • 4 gestos.\n • 2 alas delta.\n • 4 accesorios mochileros.\n • 4 estelas de descenso.\n • 11 grafitis.\n • 1300 paVos\n • ¡Y mucho más!", + "ar": "Season 5: Now thru Sept 25\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • “Huntress” Outfit\n • “Drift” Outfit\n • “Redline” Outfit\n • “Balloon Axe” Pickaxe\n • “Uplink” Back Bling\n • “Lanterns” Skydiving Trail\n • 2 Gliders\n • 4 Sprays\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Drift Progressive Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • “Ragnarok” plus 4 other outfits\n • 3 Pickaxes\n • 4 Emotes\n • 2 Gliders\n • 4 Back Blings\n • 4 Skydiving Trails\n • 11 Sprays\n • 1,300 V-Bucks\n • and so much more!", + "ja": "シーズン5: 9月25日まで\n\n10,000 V-Bucks以上の価値があるアイテムをすぐに手に入れましょう\n ・「ハントレス」コスチューム\n ・「ドリフト」コスチューム\n ・「レッドライン」コスチューム\n ・「バルーンアックス」ツルハシ\n ・「アップリンク」バックアクセサリー\n ・「ランタン」スカイダイビングトレイル\n ・グライダー2個\n ・スプレー4個\n ・シーズンマッチXPの70%ボーナス\n ・シーズンフレンドマッチXPの20%ボーナス\n ・追加のウィークリーチャレンジ\n ・ドリフトプログレッシブチャレンジ\n ・他にも色々!\n\nプレイしてバトルパスのレベルを上げると、75以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。もっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!\n ・「ラグナロク」とさらに他のコスチュームx4\n ・ツルハシx3\n ・エモートx4\n ・グライダーx2\n バックアクセサリーx4\n スカイダイビングトレイルx4\n ・スプレーx11\n ・1,300 V-Bucks\n 他にも色々!", + "pl": "Sezon 5: potrwa do 25 września\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 10 000 V-dolców:\n • Strój: Łowczyni\n • Strój: Drift\n • Strój: Prędkość Graniczna\n • Kilof: Balon\n • Plecak: Łącznik\n • Smuga: Latarnie\n • 2 lotnie\n • 4 graffiti\n • Sezonowa premia +70% PD za grę\n • Sezonowa premia +20% PD za grę ze znajomym\n • Dostęp do dodatkowych wyzwań tygodniowych\n • Dostęp do progresywnych wyzwań Drifta\n • I jeszcze więcej!\n\nGraj, aby awansować karnet bojowy i odkryć do 75 nagród (ich zdobycie zajmuje zwykle od 75 do 150 godz. gry). Chcesz rozwijać się szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\n • Zmierzch Bogów plus 4 inne stroje\n • 3 kilofy\n • 4 emotki\n • 2 lotnie\n • 4 plecaki\n • 4 smugi\n • 11 graffiti\n • 1300 V-dolców\n • I dużo więcej!", + "es-419": "Temporada 5: Ahora hasta el 25 de septiembre\n\nObtén al instante estos objetos que cuestan más de 10 000 monedas V.\n • Atuendo \"Cazadora\"\n • Atuendo \"Deriva\"\n • Atuendo \"Línea roja\"\n • Pico \"Globo\"\n • Mochila retro \"Enlace ascendente\"\n • Rastro de caída libre \"Faroles\"\n • 2 planeadores\n • 4 aerosoles\n • 70 % de bonificación de PE para partidas de la temporada\n • 20% de PE de bonificación para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • Desafíos progresivos de Deriva\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquear más de 75 recompensas adicionales (normalmente toma de 75 a 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\n • \"Ragnarok\" más otros 4 atuendos\n • 3 picos\n • 4 gestos\n • 2 planeadores\n • 4 mochilas retro\n • 4 rastros de caída libre\n • 11 aerosoles\n • 1300 monedas V\n • ¡Y mucho más!", + "tr": "5. Sezon: Şu andan 25 Eylül’e kadar\n\n10.000 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\n • “Avcı Viking” Kıyafeti\n • “Drift” Kıyafeti\n • “Gözüpek Yarışçı” Kıyafeti\n • “Balon Kazma”\n • “Telsizli Çanta” Sırt Süsü\n • “Fenerler” Hava Dalışı İzi\n • 2 Planör\n • 4 Sprey\n • %70 Bonus Sezonluk Maç TP’si\n • %20 Bonus Sezonluk Arkadaşlar için Maç TP’si\n • İlave Haftalık Görevlere Erişim\n • İlerlemeli Drift Görevleri\n • ve çok daha fazlası!\n\nBattle Royale oynayarak Savaş Bileti’nin seviyesini yükselt ve 75’ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir). Hepsini daha hızlı almak mı istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!\n • “Ragnarok” artı 4 kıyafet daha\n • 3 Kazma\n • 4 İfade\n • 2 Planör\n • 4 Sırt Süsü\n • 4 Hava Dalışı İzi\n • 11 Sprey\n • 1.300 V-Papel\n • ve çok daha fazlası!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season5_BattlePassWithLevels.DA_BR_Season5_BattlePassWithLevels", + "itemGrants": [] + }, + { + "offerId": "D51A2F28AAF843C0B208F14197FBFE91", + "devName": "BR.Season5.BattlePass.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 950, + "finalPrice": 950, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 950 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "2B4936F24F3179416FEFD49DA5C4B64E", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 1, + "title": { + "de": "Battle Pass", + "ru": "Боевой пропуск", + "ko": "배틀패스", + "zh-hant": "英雄季卡", + "pt-br": "Passe de Batalha", + "en": "Battle Pass", + "it": "Pass battaglia", + "fr": "Passe de combat", + "zh-cn": "英雄季卡", + "es": "Pase de batalla", + "ar": "Battle Pass", + "ja": "バトルパス", + "pl": "Karnet bojowy", + "es-419": "Pase de batalla", + "tr": "Savaş Bileti" + }, + "shortDescription": { + "de": "Saison 5", + "ru": "Сезон 5", + "ko": "시즌 5", + "zh-hant": "第5賽季", + "pt-br": "Temporada 5", + "en": "Season 5", + "it": "Stagione 5", + "fr": "Saison 5", + "zh-cn": "第5赛季", + "es": "Temporada 5", + "ar": "Season 5", + "ja": "シーズン5", + "pl": "Sezon 5", + "es-419": "Temporada 5", + "tr": "5. Sezon" + }, + "description": { + "de": "Saison 5: Ab sofort bis 25. September\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • Jägerin (Outfit)\n • Drift (Outfit)\n • +50 % Saison-Match-EP\n • +10 % Saison-Match-EP für Freunde\n • zusätzliche Wöchentliche Herausforderungen\n • fortschreitende Drift-Herausforderungen\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\n • Ragnarök und 5 weitere Outfits\n • 4 Spitzhacken\n • 5 Emotes\n • 4 Hängegleiter\n • 5 Rücken-Accessoires\n • 5 Flugspuren\n • 15 Spraymotive\n • 1.300 V-Bucks\n • und noch eine ganze Menge mehr!", + "ru": "Пятый сезон: до 25 сентября\n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • экипировка Астрид;\n • экипировка Ронина;\n • +50% к опыту за матчи сезона;\n • +10% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания;\n • последовательные испытания Ронина.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\n • экипировка Рагнарёка и ещё 5 костюмов;\n • 4 кирки;\n • 5 эмоций;\n • 4 дельтаплана;\n • 5 украшений на спину;\n • 5 воздушных следов;\n • 15 граффити;\n • 1300 В-баксов;\n • и это ещё не всё!", + "ko": "시즌 5: 9월 25일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 헌트리스 의상\n • 드리프트 의상\n • 50% 보너스 시즌 매치 XP\n • 10% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 드리프트 연속 도전\n\n배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요). 더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\n • 라그나로크 외 의상 5개\n • 곡괭이 4개\n • 이모트 5개\n • 글라이더 4개\n • 등 장신구 5개\n • 스카이다이빙 트레일 5개\n • 스프레이 15개\n • 1,300 V-Bucks\n • 그 외 많은 혜택!", + "zh-hant": "第5賽季:從現在起到9月25日\n\n立即獲得這些價值超過3500V幣的物品。\n • 女獵手服裝\n • 天狐服裝\n • 50%額外賽季比賽經驗\n • 10%額外賽季好友比賽經驗\n • 額外的每週挑戰\n • 天狐漸進挑戰\n\n通過遊玩升級你的英雄季卡,解鎖超過100項獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\n • “諸神黃昏”外加5套其他服裝\n • 4個鋤頭\n • 5個姿勢\n • 4個滑翔傘\n • 5個背部裝飾\n • 5個滑翔軌跡\n • 15個塗鴉\n • 1300V幣\n •以及更多!", + "pt-br": "Temporada 5: de hoje até 25 de julho\n\nReceba instantaneamente estes itens avaliados em mais de 3.500 V-Bucks.\n • Traje Caçadora\n • Traje Atemporal\n • 50% de Bônus de EXP da Temporada em Partidas\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • Desafios Atemporal Progressivos\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\n • O Ragnarok e mais 5 outros trajes\n • 4 Picaretas\n • 5 Gestos\n • 4 Asas-deltas\n • 5 Acessórios para as Costas\n • 5 Rastros de Queda Livre\n • 15 Sprays\n • 1.300 V-Bucks\n • e muito mais!", + "en": "Season 5: Now thru Sept 25\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Huntress Outfit\n • Drift Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Drift Progressive Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • “Ragnarok” plus 5 other outfits\n • 4 Pickaxes\n • 5 Emotes\n • 4 Gliders\n • 5 Back Blings\n • 5 Skydiving Trails\n • 15 Sprays\n • 1,300 V-Bucks\n • and so much more!", + "it": "Stagione 5: fino al 25 settembre\n\nOttieni subito questi oggetti dal valore di oltre 3.500 V-buck!\n • Costume Cacciatrice\n • Costume Alla deriva\n • Bonus del 50% dei PE partite stagionali\n • Bonus del 10% dei PE partite amico\n • Sfide settimanali extra\n • Sfide progressive Alla deriva\n\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando fino a 100 ricompense (necessarie tra le 75-150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per acquistare i livelli in qualsiasi momento!\n • \"Ragnarok\" e altri 5 costumi\n • 4 picconi\n • 5 emote\n • 4 deltaplani\n • 5 dorsi decorativi\n • 5 scie Skydive\n • 15 spray\n • 1300 V-buck\n • ...e molto altro ancora!", + "fr": "Saison 5 : jusqu'au 25 septembre\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3500 V-bucks.\n • Tenue Chasseresse\n • Tenue Nomade\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 10% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Les défis progressifs du Nomade\n\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\n • Ragnarök plus 5 autres tenues\n • 4 pioches\n • 5 emotes\n • 4 planeurs\n • 5 accessoires de dos\n • 5 traînées de condensation\n • 15 aérosols\n • 1300 V-bucks\n • Et plus !", + "zh-cn": "第5赛季:从现在起到9月25日\n\n立即获得这些价值超过3500V币的物品。\n • 女猎手服装\n • 天狐服装\n • 50%额外赛季比赛经验\n • 10%额外赛季好友比赛经验\n • 额外的每周挑战\n • 天狐渐进挑战\n\n通过游玩升级你的英雄季卡,解锁超过100项奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\n • “诸神黄昏”外加5套其他服装\n • 4个锄头\n • 5个姿势\n • 4个滑翔伞\n • 5个背部装饰\n • 5个滑翔轨迹\n • 15个涂鸦\n • 1300V币\n •以及更多!", + "es": "Temporada 5: Desde ahora hasta el 25 de septiembre\n\nConsigue instantáneamente estos objetos valorados en más de 3500 paVos.\n • Traje de Cazadora.\n • Traje de Deriva.\n • Bonificación de PE de partida de temporada del 50 %.\n • Bonificación de PE de partida amistosa de temporada del 10 %.\n • Desafíos semanales adicionales.\n • Desafíos progresivos de Deriva.\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 100 recompensas (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\n • Ragnarok más otros 5 trajes.\n • 4 picos.\n • 5 gestos.\n • 4 alas delta.\n • 5 accesorios mochileros.\n • 5 estelas de descenso.\n • 15 grafitis.\n • 1300 paVos\n • ¡Y mucho más!", + "ar": "Season 5: Now thru Sept 25\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Huntress Outfit\n • Drift Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Drift Progressive Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • “Ragnarok” plus 5 other outfits\n • 4 Pickaxes\n • 5 Emotes\n • 4 Gliders\n • 5 Back Blings\n • 5 Skydiving Trails\n • 15 Sprays\n • 1,300 V-Bucks\n • and so much more!", + "ja": "シーズン5: 9月25日まで\n\n3,500 V-Bucks以上の価値があるアイテムをすぐに手に入れましょう\n ・ハントレスコスチューム\n ・ドリフトコスチューム\n ・シーズンマッチXPの50%ボーナス\n ・シーズンフレンドマッチXPの10%ボーナス\n ・追加のウィークリーチャレンジ\n ・ドリフトプログレッシブチャレンジ\n\nプレイしてバトルパスのレベルを上げると、100個以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。もっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!\n ・「ラグナロク」とさらに他のコスチュームx5\n ・ツルハシx4\n ・エモートx5\n ・グライダーx4\n ・バックアクセサリーx5\n ・スカイダイビングトレイルx5\n ・スプレーx15\n ・1,300 V-Bucks\n ・他にも色々!", + "pl": "Sezon 5: potrwa do 25 września\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 3 500 V-dolców:\n • Strój: Łowczyni\n • Strój: Drift\n • Sezonowa premia +50% PD za grę\n • Sezonowa premia +10% PD za grę ze znajomym\n • Dostęp do dodatkowych wyzwań tygodniowych\n • Dostęp do progresywnych wyzwań Drifta\n\nGraj, aby awansować karnet bojowy i zdobyć łącznie ponad 100 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\n • Zmierzch Bogów plus 5 innych strojów\n • 4 kilofy\n • 5 emotek\n • 3 lotnie\n • 5 plecaków\n • 5 smug lotni\n • 15 graffiti\n • 1 300 V-dolców\n • I dużo więcej!", + "es-419": "Temporada 5: Ahora hasta el 25 de septiembre\n\nObtén estos objetos instantáneamente valuados en más de 3500 monedas V.\n • Atuendo de Cazadora\n • Atuendo de Deriva\n • 50 % de bonificación de PE para partidas de la temporada\n • 10% de PE de bonificación para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • Desafíos progresivos de Deriva\n\nJuega para subir de nivel tu pase de batalla, desbloqueando más de 100 recompensas (normalmente toma de 75 a 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\n • “Ragnarok” más otros 5 atuendos\n • 4 picos\n • 5 gestos\n • 4 planeadores\n • 5 mochilas retro\n • 5 rastros de caída libre\n • 15 aerosoles\n • 1300 monedas V\n • ¡Y mucho más!", + "tr": "5. Sezon: 25 Eylül’e kadar sürecek\n\n3.500 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\n • Avcı Viking Kıyafeti\n • Drift Kıyafeti\n • %50 Bonus Sezonluk Maç TP’si\n • %10 Bonus Arkadaşlar için Sezonluk Maç TP’si\n • Fazladan Haftalık Görevler\n • İlerlemeli Drift Görevleri\n\nBattle Royale oynayarak Savaş Bileti’nin seviyesini yükselt, 100’den fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir). Hepsine hemen sahip olmak mı istiyorsun? V-Papel kullanarak aşamaları istediğin zaman açabilirsin!\n • “Ragnarok” artı 5 kıyafet daha\n • 4 Kazma\n • 5 İfade\n • 4 Planör\n • 5 Sırt Süsü\n • 5 Hava Dalışı İzi\n • 15 Sprey\n • 1.300 V-Papel\n • ve daha pek çok şey!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season5_BattlePass.DA_BR_Season5_BattlePass", + "itemGrants": [] + }, + { + "offerId": "4B2E310BC1AE40B292A16D5AAD747E0A", + "devName": "BR.Season5.SingleTier.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 150, + "finalPrice": 150, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 150 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle-Pass-Stufe", + "ru": "Уровень боевого пропуска", + "ko": "배틀패스 티어", + "zh-hant": "英雄季卡戰階", + "pt-br": "Categoria de Passe de Batalha", + "en": "Battle Pass Tier", + "it": "Livello Pass battaglia", + "fr": "Palier du Passe de combat", + "zh-cn": "英雄季卡战阶", + "es": "Nivel del pase de batalla", + "ar": "Battle Pass Tier", + "ja": "バトルパスティア", + "pl": "Stopień karnetu bojowego", + "es-419": "Nivel de pase de batalla", + "tr": "Savaş Bileti Aşaması" + }, + "shortDescription": "", + "description": { + "de": "Hol dir jetzt tolle Belohnungen!", + "ru": "Получите отличные награды!", + "ko": "지금 푸짐한 보상을 얻어보세요!", + "zh-hant": "現在獲得豐厚獎勵!", + "pt-br": "Ganhe recompensas ótimas agora!", + "en": "Get great rewards now!", + "it": "Ricevi subito magnifiche ricompense!", + "fr": "Obtenez de grandes récompenses !", + "zh-cn": "现在获得丰厚奖励!", + "es": "¡Consigue recompensas increíbles!", + "ar": "Get great rewards now!", + "ja": "ステキな報酬を今すぐゲット!", + "pl": "Zdobądź super nagrody już teraz!", + "es-419": "¡Consigue grandes recompensas ahora!", + "tr": "Harika ödüllerin sahibi ol!" + }, + "displayAssetPath": "", + "itemGrants": [] + } + ] + }, + { + "name": "BRSeason6", + "catalogEntries": [ + { + "offerId": "19D4A5ACC90B4CDF88766A0C8A6D13FB", + "devName": "BR.Season6.BattleBundle.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 4700, + "finalPrice": 2800, + "saleType": "PercentOff", + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "854FAED044783BF137181887C325FFD2", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle-Pass-Paket", + "ru": "Боевой комплект", + "ko": "배틀번들", + "zh-hant": "戰鬥套組", + "pt-br": "Pacotão de Batalha", + "en": "Battle Bundle", + "it": "Bundle battaglia", + "fr": "Pack de combat", + "zh-cn": "战斗套组", + "es": "Lote de batalla", + "ar": "Battle Bundle", + "ja": "バトルバンドル", + "pl": "Zestaw bojowy", + "es-419": "Paquete de batalla", + "tr": "Savaş Paketi" + }, + "shortDescription": { + "de": "Battle Pass + 25 Stufen!", + "ru": "Боевой пропуск + 25 уровней!", + "ko": "배틀패스 + 25티어!", + "zh-hant": "英雄季卡增加25戰階!", + "pt-br": "Passe de Batalha + 25 categorias!", + "en": "Battle Pass + 25 tiers!", + "it": "Pass battaglia + 25 livelli!", + "fr": "Passe de combat + 25 paliers !", + "zh-cn": "英雄季卡增加25战阶!", + "es": "¡Pase de batalla y 25 niveles!", + "ar": "Battle Pass + 25 tiers!", + "ja": "バトルパス+25ティア!", + "pl": "Karnet bojowy + 25 stopni!", + "es-419": "¡Pase de batalla + 25 niveles!", + "tr": "Savaş Bileti + 25 aşama!" + }, + "description": { + "de": "Saison 6: Ab sofort bis 6. Dezember\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • Calamity (Outfit)\n • DJ Yonder (Outfit)\n • Aufgesattelt (Outfit)\n • Krachender Mix (Spitzhacke)\n • Picknick (Hängegleiter)\n • Märchenumhang (Rücken-Accessoire)\n • 3 Spraymotive\n • Wuffel (Gefährte)\n • Düsen (Flugspur)\n • +70 % Saison-Match-EP\n • +20 % Saison-Match-EP für Freunde\n • zusätzliche Wöchentliche Herausforderungen\n • Calamity-Herausforderungen • und mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 weitere Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\n • Wolf und 3 weitere Outfits\n • 2 Gefährten\n • 2 Spitzhacken\n • 4 Emotes\n • 2 Hängegleiter\n • 4 Rücken-Accessoires\n • 4 Flugspuren\n • 11 Spraymotive\n • 1.300 V-Bucks\n • und noch eine ganze Menge mehr!", + "ru": "Шестой сезон: до 6 декабря\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • экипировка Тёмного рейнджера;\n • экипировка Эм Си Ламы;\n • экипировка Наездника;\n • кирка «Эквалайзер»;\n • дельтаплан «Гостинец»;\n • украшение на спину «Красный плащ»;\n • 3 граффити;\n • питомец Дружок;\n • воздушный след «Выхлоп»;\n • +70% к опыту за матчи сезона;\n • +20% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания;\n • испытания Тёмного рейнджера;\n • и это ещё не всё!\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\n • экипировка Оборотня и ещё 3 костюма;\n • 2 питомца;\n • 2 кирки;\n • 4 эмоции;\n • 2 дельтаплана;\n • 4 украшения на спину;\n • 4 воздушных следов;\n • 11 граффити;\n • 1 300 В-баксов;\n • и это ещё не всё!", + "ko": "시즌 6: 12월 6일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 캘러미티 의상\n • DJ 욘더 의상\n • 라마 라이더 의상\n • 스매시 업 곡괭이\n • 피크닉 글라이더\n • 빨간 망토 등 장신구\n • 스프레이 3개\n • 보니 애완동물\n • 엔진 불꽃 스카이다이빙 트레일\n • 70% 보너스 시즌 매치 XP\n • 20% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 캘러미티 연속 도전\n • 그 외 혜택!\n\n배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요). 더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\n • 다이어 외 의상 3개\n • 애완동물 2개\n • 곡괭이 2개\n • 이모트 4개\n • 글라이더 2개\n • 등 장신구 4개\n • 스카이다이빙 트레일 4개\n • 스프레이 11개\n • 1,300 V-Bucks\n • 그 외 많은 혜택!", + "zh-hant": "第六賽季:現在起至12月6日\n\n立即獲得以下總價值逾10000V幣的物品。\n • 災厄俠客服裝\n • 金碟鐵馬服裝\n • 策馬奔騰服裝\n • 粉碎鎬\n • 野餐滑翔傘\n • 寓言斗篷背部裝飾\n • 3個塗鴉\n • 犬崽寵物\n • 助力推進滑翔軌跡\n • 70%額外賽季匹配經驗\n • 20%額外賽季好友匹配經驗\n • 額外每週挑戰\n • 災厄俠客挑戰\n • 及其他獎勵!\n\n通過遊玩提升英雄勳章戰階,解鎖百餘獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\n • 驚懼狼人與其他三種服裝\n • 2只寵物\n • 2個鎬\n • 4個姿勢\n • 2個滑翔傘\n • 4個背部裝飾\n • 4個滑翔軌跡\n • 11個塗鴉\n • 1300V幣\n • 及其他獎勵!", + "pt-br": "Temporada 6: de hoje até 6 de dezembro\n\nGanhe instantaneamente esses itens avaliados em mais de 10.000 V-Bucks.\n • Traje Calamidade\n • Traje DJ Além\n • Traje Lhaminha\n • Picareta Quebra Tudo\n • Asa-delta Piquenique\n • Acessório para as Costas Capa Fabulosa\n • 3 Sprays\n • Mascote Ossíneo\n • Rastro de Queda Livre Exaustor\n • 70% de Bônus de EXP da Temporada em Partidas\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • Desafios Calamidade\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\n • Lupino e mais 3 outros trajes\n • 2 Mascotes\n • 2 Picaretas\n • 4 Gestos\n • 2 Asas-deltas\n • 4 Acessórios para as Costas\n • 4 Rastros de Queda Livre\n • 11 Sprays\n • 1.300 V-Bucks\n • e muito mais!", + "en": "Season 6: Now thru Dec 6\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Calamity Outfit\n • DJ Yonder Outfit\n • Giddy-up Outfit\n • Smash-Up Pickaxe\n • Picnic Glider\n • Fabled Cape Back Bling\n • 3 Sprays\n • Bonesy Pet\n • Exhaust Skydiving Trail\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Calamity Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • Dire plus 3 other outfits\n • 2 Pets\n • 2 Pickaxes\n • 4 Emotes\n • 2 Gliders\n • 4 Back Blings\n • 4 Skydiving Trails\n • 11 Sprays\n • 1,300 V-Bucks\n • and so much more!", + "it": "Stagione 6: da ora al 6 dicembre\n\nOttieni subito questi oggetti, per un valore di oltre 10.000 V-buck.\n • Costume Calamity\n • Costume DJ Yonder\n • Costume Giddy-up\n • Piccone Smash-Up\n • Deltaplano Picnic\n • Dorso decorativo Fabled Cape\n • 3 spray\n • Piccolo amico Bonesy\n • Scia skydive Exhaust\n • 70% di bonus ai PE partita stagione\n • 20% di bonus ai PE partita amichevole stagione\n • Sfide settimanali extra\n • Sfide Calamity\n • E altro ancora!\n\nGioca per far salire di livello il tuo Pass battaglia e sblocca fino a 75+ altre ricompense (tipicamente occorrono da 75 a 150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per comprare livelli in qualsiasi momento!\n • Manny più 3 altri costumi\n • 2 Piccoli amici\n • 2 picconi\n • 4 emote\n • 2 deltaplani\n • 4 dorsi decorativi\n • 4 scie skydive\n • 11 spray\n • 1300 V-buck\n • E molto altro ancora!", + "fr": "Saison 6 : jusqu'au 6 décembre\n\nRecevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue Calamité\n • Tenue DJ Lama\n • Tenue Fier destrier\n • Pioche Contrôleur DJ\n • Planeur Pique-nique\n • Accessoire de dos Cape rouge\n • 3 aérosols\n • Le compagnon Ticaillou\n • Traînée de condensation Gaz d'échappement\n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 20% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Les défis progressifs de Calamité\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\n • Lycan plus 3 autres tenues\n • 2 compagnons\n • 2 pioches\n • 4 emotes\n • 2 planeurs\n • 4 accessoires de dos\n • 4 traînées de condensation\n • 11 aérosols\n • 1 300 V-bucks\n • Et plus !", + "zh-cn": "第六赛季:现在起至12月6日\n\n立即获得以下总价值逾10000V币的物品。\n • 灾厄侠客服装\n • 金碟铁马服装\n • 策马奔腾服装\n • 粉碎镐\n • 野餐滑翔伞\n • 寓言斗篷背部装饰\n • 3个涂鸦\n • 犬崽宠物\n • 助力推进滑翔轨迹\n • 70%额外赛季匹配经验\n • 20%额外赛季好友匹配经验\n • 额外每周挑战\n • 灾厄侠客挑战\n • 及其他奖励!\n\n通过游玩提升英雄勋章战阶,解锁百余奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\n • 惊惧狼人与其他三种服装\n • 2只宠物\n • 2个镐\n • 4个姿势\n • 2个滑翔伞\n • 4个背部装饰\n • 4个滑翔轨迹\n • 11个涂鸦\n • 1300V币\n • 及其他奖励!", + "es": "Temporada 6: Desde ahora hasta el 6 de diciembre.\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje de Calamidad.\n • Traje de Llama DJ.\n • Traje de Galopante.\n • Pico Pico de mezclas.\n • Ala delta Picnic.\n • Accesorio mochilero Capa de Fábula.\n • 3 grafitis.\n • Mascota Huesete.\n • Estela de descenso Tubo de escape.\n • Bonificación de PE de partida de temporada del 70 %.\n • Bonificación de PE de partida amistosa de temporada del 20 %.\n • Desafíos semanales adicionales.\n • Desafíos de Calamidad.\n • ¡Y mucho más!\n\nJuega para subir de nivel el pase de batalla y desbloquea más de 75 recompensas adicionales (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\n • Lobuno más otros 3 trajes.\n • 2 mascotas.\n • 2 picos.\n • 4 gestos.\n • 2 alas delta.\n • 4 accesorios mochileros.\n • 4 estelas de descenso.\n • 11 grafitis.\n • 1300 paVos.\n • ¡Y mucho más!", + "ar": "Season 6: Now thru Dec 6\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Calamity Outfit\n • DJ Yonder Outfit\n • Giddy-up Outfit\n • Smash-Up Pickaxe\n • Picnic Glider\n • Fabled Cape Back Bling\n • 3 Sprays\n • Bonesy Pet\n • Exhaust Skydiving Trail\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Calamity Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • Dire plus 3 other outfits\n • 2 Pets\n • 2 Pickaxes\n • 4 Emotes\n • 2 Gliders\n • 4 Back Blings\n • 4 Skydiving Trails\n • 11 Sprays\n • 1,300 V-Bucks\n • and so much more!", + "ja": "シーズン6: 12月6日まで\n\n10,000 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\n • 「カラミティ」コスチューム\n • 「DJ ヨンダー」コスチューム\n • 「ギディーアップ」コスチューム\n • 「スマッシュアップ」ツルハシ\n • 「ピクニック」グライダー\n • 「寓話のケープ」バックアクセサリー\n • スプレーx3\n • 「ボーンジー」ペット\n • 「エグゾースト」スカイダイビングトレイル\n • シーズンマッチXPの70%ボーナス\n • シーズンフレンドマッチXPの20%ボーナス\n • 追加のウィークリーチャレンジ\n • カラミティチャレンジ\n • 他にも色々!\n\nプレイしてバトルパスのレベルを上げると、75個以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。もっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!\n • ダイアとその他コスチュームx3\n • ペットx2\n • ツルハシx2\n • エモートx4\n • グライダーx2\n • バックアクセサリーx4\n • スカイダイビングトレイルx4\n • スプレーx11\n • 1,300 V-Bucks\n • 他にも色々!", + "pl": "Sezon 6: od teraz do 6 grudnia\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 10 000 V-dolców:\n • Strój: Kowbojka\n • Strój: DJ Jak-mu-tam\n • Strój: Jazda\n • Kilof: Ostry Rytm\n • Lotnia: Piknik\n • Plecak: Bajkowy Kapturek\n • 3 graffiti\n • Pupil: Kostek\n • Smuga: Spaliny\n • Sezonowa premia +70% PD za grę\n • Sezonowa premia +20% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodnia\n • Dostęp do wyzwań Kowbojki\n • I nie tylko!\n\nGraj, aby awansować karnet bojowy i zdobyć do 75 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry). Chcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!\n • Straszliwiec plus 3 inne stroje\n • 2 pupile\n • 2 kilofy\n • 4 emotki\n • 2 lotnie\n • 4 plecaki\n • 4 smugi\n • 11 graffiti\n • 1300 V-dolców\n • I dużo więcej!", + "es-419": "Temporada 6: Ahora hasta el 6 de diciembre\n\nObtén al instante estos objetos que cuestan más de 10 000 monedas V.\n • Atuendo Calamidad\n • Atuendo DJ Llama\n • Atuendo Arre llama\n • Pico Mezclador\n • Planeador Pícnic\n • Mochila retro Capa de Fábula\n • 3 Aerosoles\n • Mascota Huesitos\n • Rastro de caída libre Escape\n • 70% de bonificación de PE para partidas de la temporada\n • 20% de PE de bonificación para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • Desafíos de Calamidad\n • ¡y mucho más!\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Usa monedas V para comprar niveles en cualquier momento!\n • Amenaza inminente más otros 3 atuendos\n • 2 mascotas\n • 2 picos\n • 4 gestos\n • 2 planeadores\n • 4 mochilas retro\n • 4 rastros de caída libre\n • 11 aerosoles\n • 1300 monedas V\n • ¡y mucho más!", + "tr": "6. Sezon: Şu andan 6 Aralık’a kadar\n\n10.000 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\n • Belalı Kovboy Kıyafeti\n • DJ Lama Kıyafeti\n • Dıgıdık Kıyafeti\n • Miks Kazması\n • Piknik Sepeti Planörü\n • Masal Pelerini Sırt Süsü\n • 3 Sprey\n • Sadık Dost Şanslı\n • İniş Motoru Hava Dalışı İzi\n • %70 Bonus Sezonluk Maç TP’si\n • %20 Bonus Sezonluk Arkadaşlar için Maç TP’si\n • İlave Haftalık Görevlere Erişim\n • Belalı Kovboy Görevleri\n • ve çok daha fazlası!\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 75’ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir). Hepsini daha hızlı almak mı istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!\n • Kurtadam artı 3 kıyafet daha\n • 2 Sadık Dost\n • 2 Kazma\n • 4 İfade\n • 2 Planör\n • 4 Sırt Süsü\n • 4 Hava Dalışı İzi\n • 11 Sprey\n • 1.300 V-Papel\n • ve çok daha fazlası!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season6_BattlePassWithLevels.DA_BR_Season6_BattlePassWithLevels", + "itemGrants": [] + }, + { + "offerId": "A6FE59C497B844068E1B5D84396F19BA", + "devName": "BR.Season6.SingleTier.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 150, + "finalPrice": 150, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 150 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle-Pass-Stufe", + "ru": "Уровень боевого пропуска", + "ko": "배틀패스 티어", + "zh-hant": "英雄季卡戰階", + "pt-br": "Categoria de Passe de Batalha", + "en": "Battle Pass Tier", + "it": "Livello Pass battaglia", + "fr": "Palier du Passe de combat", + "zh-cn": "英雄季卡战阶", + "es": "Nivel del pase de batalla", + "ar": "Battle Pass Tier", + "ja": "バトルパスティア", + "pl": "Stopień karnetu bojowego", + "es-419": "Nivel de pase de batalla", + "tr": "Savaş Bileti Aşaması" + }, + "shortDescription": "", + "description": { + "de": "Hol dir jetzt tolle Belohnungen!", + "ru": "Получите отличные награды!", + "ko": "지금 푸짐한 보상을 얻어보세요!", + "zh-hant": "現在獲得豐厚獎勵!", + "pt-br": "Ganhe recompensas ótimas agora!", + "en": "Get great rewards now!", + "it": "Ricevi subito magnifiche ricompense!", + "fr": "Obtenez de grandes récompenses !", + "zh-cn": "现在获得丰厚奖励!", + "es": "¡Consigue recompensas increíbles!", + "ar": "Get great rewards now!", + "ja": "素晴らしい報酬を今すぐゲット!", + "pl": "Zdobądź super nagrody już teraz!", + "es-419": "¡Consigue grandes recompensas ahora!", + "tr": "Harika ödüllerin sahibi ol!" + }, + "displayAssetPath": "", + "itemGrants": [] + }, + { + "offerId": "9C8D0323775A4F59A1D4283E3FDB356C", + "devName": "BR.Season6.BattlePass.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 950, + "finalPrice": 950, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 950 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "854FAED044783BF137181887C325FFD2", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 1, + "title": { + "de": "Battle Pass", + "ru": "Боевой пропуск", + "ko": "배틀패스", + "zh-hant": "英雄季卡", + "pt-br": "Passe de Batalha", + "en": "Battle Pass", + "it": "Pass battaglia", + "fr": "Passe de combat", + "zh-cn": "英雄季卡", + "es": "Pase de batalla", + "ar": "Battle Pass", + "ja": "バトルパス", + "pl": "Karnet bojowy", + "es-419": "Pase de batalla", + "tr": "Savaş Bileti" + }, + "shortDescription": { + "de": "Saison 6", + "ru": "Сезон 6", + "ko": "시즌 6", + "zh-hant": "第6賽季", + "pt-br": "Temporada 6", + "en": "Season 6", + "it": "Stagione 6", + "fr": "Saison 6", + "zh-cn": "第6赛季", + "es": "Temporada 6", + "ar": "Season 6", + "ja": "シーズン6", + "pl": "Sezon 6", + "es-419": "Temporada 6", + "tr": "6. Sezon" + }, + "description": { + "de": "Saison 6: Ab sofort bis 6. Dezember\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • Calamity (Outfit)\n • DJ Yonder (Outfit)\n • +50 % Saison-Match-EP\n • +10 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n • fortschreitende Calamity-Herausforderungen\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\n • Wolf und 4 weitere Outfits\n • 3 Gefährten\n • 3 Spitzhacken\n • 5 Emotes\n • 4 Hängegleiter\n • 4 Rücken-Accessoires\n • 5 Flugspuren\n • 14 Spraymotive\n • 2 Spielsachen\n • 3 Songs\n • 1.300 V-Bucks\n • und noch eine ganze Menge mehr!", + "ru": "Шестой сезон: до 6 декабря\n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • экипировка Тёмного рейнджера;\n • экипировка Эм Си Ламы;\n • +50% к опыту за матчи сезона;\n • +10% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания;\n • последовательные испытания Тёмного рейнджера.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\n • экипировка Оборотня и ещё 4 костюма;\n • 3 питомца;\n • 3 кирки;\n • 5 эмоций;\n • 4 дельтаплана;\n • 4 украшения на спину;\n • 5 воздушных следов;\n • 14 граффити;\n • 2 игрушки;\n • 3 музыкальных композиции;\n • 1300 В-баксов;\n • и многое другое!", + "ko": "시즌 6: 12월 6일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 캘러미티 의상\n • DJ 욘더 의상\n • 50% 보너스 시즌 매치 XP\n • 10% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 캘러미티 연속 도전\n\n게임을 플레이하고 배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요). 더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\n • 다이어 외 의상 4개\n • 애완동물 3개\n • 곡괭이 3개\n • 이모트 5개\n • 글라이더 4개\n • 등 장신구 4개\n • 스카이다이빙 트레일 5개\n • 스프레이 14개\n • 장난감 2개\n • 음악 트랙 3개\n • 1,300 V-Bucks\n • 그 외 많은 혜택!", + "zh-hant": "第六賽季:現在起至12月6日\n\n立即獲得這些價值3500V幣的物品。\n • 災厄俠客服裝\n • 金碟鐵馬服裝\n • 50%額外賽季比賽經驗\n • 10%額外賽季好友比賽經驗\n • 額外每週挑戰\n • 災厄俠客可進化挑戰\n\n通過遊玩提升英雄季卡戰階,解鎖百餘獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\n • 驚懼狼人及其他4套服裝\n • 3個寵物\n • 3個鋤頭\n • 5個姿勢\n • 4個滑翔傘\n • 4個背部裝飾\n • 5個滑翔軌跡\n • 14個塗鴉\n • 2個玩具\n • 3個音軌\n • 1300V幣\n • 以及更多獎勵!", + "pt-br": "Temporada 6: de hoje até 6 de dezembro\n\nGanhe instantaneamente esses itens avaliados em mais de 3.500 V-Bucks.\n • Traje Calamidade\n • Traje DJ Além\n • 50% de Bônus de EXP da Temporada em Partidas\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • Desafios Calamidade Progressivos\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\n • Lupino e mais 4 outros trajes\n • 3 Mascotes\n • 3 Picaretas\n • 5 Gestos\n • 4 Asas-deltas\n • 4 Acessórios para as Costas\n • 5 Rastros de Queda Livre\n • 14 Sprays\n • 2 Brinquedos\n • 3 Faixas Musicais\n • 1.300 V-Bucks\n • e muito mais!", + "en": "Season 6: Now thru Dec 6\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Calamity Outfit\n • DJ Yonder Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Calamity Progressive Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • Dire plus 4 other outfits\n • 3 Pets\n • 3 Pickaxes\n • 5 Emotes\n • 4 Gliders\n • 4 Back Blings\n • 5 Skydiving Trails\n • 14 Sprays\n • 2 Toys\n • 3 Music Tracks\n • 1,300 V-Bucks\n • and so much more!", + "it": "Stagione 6: Fino al 6 dicembre\n\nOttieni subito questi oggetti dal valore di oltre 3.500 V-buck!\n• Costume Calamity\n• Costume DJ Yonder\n• Bonus del 50% dei PE partite stagionali\n• Bonus del 10% dei PE partite amico stagionali\n• Sfide settimanali extra\n• Sfide progressive Calamity\n\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando più di 100 ricompense (per un totale indicativo di 75-150 ore di gioco). Vuoi tutto e subito? Puoi usare i V-buck per acquistare livelli in qualsiasi momento!\n• Manny e altri 4 costumi\n• 3 piccoli amici\n• 3 picconi\n• 5 emote\n• 4 deltaplani\n• 4 dorsi decorativi\n• 5 scie skydive\n• 14 spray\n• 2 giocattoli\n• 3 brani musicali\n• 1.300 V-buck\n• E tanto altro!", + "fr": "Saison 6 : jusqu'au 6 décembre\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3500 V-bucks.\n • Tenue Calamité\n • Tenue DJ Lama\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 10% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Les défis progressifs de Calamité\n\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\n • Lycan plus 4 autres tenues\n • 3 compagnons\n • 3 pioches\n • 5 emotes\n • 4 planeurs\n • 4 accessoires de dos\n • 5 traînées de condensation\n • 14 aérosols\n • 2 jouets\n • 3 pistes musicales\n • 1300 V-bucks\n • Et plus !", + "zh-cn": "第六赛季:现在起至12月6日\n\n立即获得这些价值3500V币的物品。\n • 灾厄侠客服装\n • 金碟铁马服装\n • 50%额外赛季比赛经验\n • 10%额外赛季好友比赛经验\n • 额外每周挑战\n • 灾厄侠客可进化挑战\n\n通过游玩提升英雄季卡战阶,解锁百余奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\n • 惊惧狼人及其他4套服装\n • 3个宠物\n • 3个锄头\n • 5个姿势\n • 4个滑翔伞\n • 4个背部装饰\n • 5个滑翔轨迹\n • 14个涂鸦\n • 2个玩具\n • 3个音轨\n • 1300V币\n • 以及更多奖励!", + "es": "Temporada 6: desde ahora hasta el 6 de diciembre.\n\nConsigue instantáneamente estos objetos valorados en más de 3500 paVos.\n • Traje de Calamidad.\n • Traje de Llama DJ.\n • Bonificación de PE de partida de temporada del 50 %.\n • Bonificación de PE de partida amistosa de temporada del 10 %.\n • Desafíos semanales adicionales.\n • Desafíos progresivos de Calamidad.\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 100 recompensas (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\n • Lobuno más otros 4 trajes.\n • 3 mascotas.\n • 3 picos.\n • 5 gestos.\n • 4 alas delta.\n • 4 accesorios mochileros.\n • 5 estelas de descenso.\n • 14 grafitis.\n • 2 juguetes.\n • 3 pistas musicales.\n • 1300 paVos.\n • ¡Y mucho más!", + "ar": "Season 6: Now thru Dec 6\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Calamity Outfit\n • DJ Yonder Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Calamity Progressive Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • Dire plus 4 other outfits\n • 3 Pets\n • 3 Pickaxes\n • 5 Emotes\n • 4 Gliders\n • 4 Back Blings\n • 5 Skydiving Trails\n • 14 Sprays\n • 2 Toys\n • 3 Music Tracks\n • 1,300 V-Bucks\n • and so much more!", + "ja": "シーズン6: 12月6日まで\n\n3,500 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。• 「カラミティ」コスチューム\n • 「DJ ヨンダー」コスチューム\n • シーズンマッチXPの50%ボーナス\n • シーズンフレンドマッチXPの10%ボーナス\n • 追加のウィークリーチャレンジ\n • カラミティプログレッシブチャレンジ\n\nプレイしてバトルパスのレベルを上げると、100以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。もっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!\n • ダイアとその他コスチュームx4\n • ペットx3\n • ツルハシx3\n • エモートx5\n • グライダーx4\n • バックアクセサリーx4\n • スカイダイビングトレイルx5\n • スプレーx14\n • おもちゃx2\n • ミュージックx3\n • 1,300 V-Bucks\n • 他にも色々!", + "pl": "Sezon 6: od teraz do 6 grudnia\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 3500 V-dolców:\n • Strój: Kowbojka\n • Strój: DJ Jak-mu-tam\n • Sezonowa premia +50% PD za grę\n • Sezonowa premia +10% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodnia\n • Dostęp do wyzwań Kowbojki\n\nGraj, aby awansować karnet bojowy i zdobyć łącznie ponad 100 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić stopnie za V-dolce!\n • Straszliwiec plus 4 inne stroje\n • 3 pupile\n • 3 kilofy\n • 5 emotek\n • 4 lotnie\n • 4 plecaki\n • 5 smug\n • 14 graffiti\n • 2 zabawki\n • 3 tła muzyczne\n • 1300 V-dolców\n • I dużo więcej!", + "es-419": "Temporada 6: Ahora hasta el 6 de diciembre\n\nObtén al instante estos objetos que cuestan más de 3500 monedas V.\n • Atuendo Calamidad\n • Atuendo DJ Llama\n • 50% de bonificación de PE para partidas de la temporada\n • 10% de PE de bonificación para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • Desafíos progresivos de Calamidad\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 100 recompensas (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Usa monedas V para comprar niveles en cualquier momento!\n • Amenaza inminente más otros 4 atuendos\n • 3 mascotas\n • 3 picos\n • 5 gestos\n • 4 planeadores\n • 4 mochilas retro\n • 5 rastros de caída libre\n • 14 aerosoles\n • 2 juguetes\n • 3 pistas de música\n • 1300 monedas V\n • ¡y mucho más!", + "tr": "6. Sezon: Şu andan 6 Aralık’a kadar\n\n3.500 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\n • Belalı Kovboy Kıyafeti\n • DJ Lama Kıyafeti\n • %50 Bonus Sezonluk Maç TP’si\n • %10 Bonus Sezonluk Arkadaşlar için Maç TP’si\n • İlave Haftalık Görevler\n • İlerlemeli Belalı Kovboy Görevleri\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 100’den fazla ödülü aç (yaklaşık 75 ila 150 saat oynama gerektirir). Hepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!\n • Kurtadam artı 4 kıyafet daha\n • 3 Sadık Dost\n • 3 Kazma\n • 5 İfade\n • 4 Planör\n • 4 Sırt Süsü\n • 5 Dalış İzi\n • 14 Sprey\n • 2 Oyuncak\n • 3 Müzik Parçası\n • 1.300 V-Papel\n • ve çok daha fazlası!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season6_BattlePass.DA_BR_Season6_BattlePass", + "itemGrants": [] + } + ] + }, + { + "name": "BRSeason7", + "catalogEntries": [ + { + "offerId": "347A90158C64424980E8C1B3DC088F37", + "devName": "BR.Season7.BattleBundle.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 4700, + "finalPrice": 2800, + "saleType": "PercentOff", + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "601C6830460BFED07506F5A6D2C4CE7B", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle-Pass-Paket", + "ru": "Боевой комплект", + "ko": "배틀번들", + "zh-hant": "戰鬥套組", + "pt-br": "Pacotão de Batalha", + "en": "Battle Bundle", + "it": "Bundle battaglia", + "fr": "Pack de combat", + "zh-cn": "战斗套组", + "es": "Lote de batalla", + "ar": "Battle Bundle", + "ja": "バトルバンドル", + "pl": "Zestaw bojowy", + "es-419": "Paquete de batalla", + "tr": "Savaş Paketi" + }, + "shortDescription": { + "de": "Battle Pass + 25 Stufen!", + "ru": "Боевой пропуск + 25 уровней!", + "ko": "배틀패스 + 25티어!", + "zh-hant": "英雄季卡增加25戰階!", + "pt-br": "Passe de Batalha + 25 categorias!", + "en": "Battle Pass + 25 tiers!", + "it": "Pass battaglia + 25 livelli!", + "fr": "Passe de combat + 25 paliers !", + "zh-cn": "英雄季卡增加25战阶!", + "es": "¡Pase de batalla y 25 niveles!", + "ar": "Battle Pass + 25 tiers!", + "ja": "バトルパス+25ティア!", + "pl": "Karnet bojowy + 25 stopni!", + "es-419": "¡Pase de batalla + 25 niveles!", + "tr": "Savaş Bileti + 25 aşama!" + }, + "description": { + "de": "Saison 7: Ab sofort bis 28. Februar\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • Zenit (aufrüstbares Outfit)\n • Luchs (aufrüstbares Outfit)\n • Sgt. Winter (Outfit und Stilherausforderungen)\n • Hamirez (Gefährte)\n • Taktischer Schlitten (Hängegleiter)\n • Arktistarnung (Lackierung)\n • Perfektes Geschenk (Rücken-Accessoire)\n • Lichterkette (Kondensstreifen)\n • 300 V-Bucks\n • 1 Musikstück\n • +70 % Saison-Match-EP\n • +20 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n • und noch mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • 4 weitere Outfits\n • 1.300 V-Bucks\n • 6 Emotes\n • 3 Hängegleiter\n • 4 Rücken-Accessoires\n • 4 Lackierungen\n • 4 Erntwerkzeuge\n • 4 Kondensstreifen\n • 1 Gefährte\n • 12 Spraymotive\n • 2 Musikstücke\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!", + "ru": "Седьмой сезон: до 28 февраля\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • улучшаемая экипировка Снежного снайпера;\n • улучшаемая экипировка Неоновой Рыси;\n • экипировка генерала Мороза и испытания стиля;\n • питомец Хома;\n • дельтаплан «Боевые сани»;\n • обёртка «Арктический камуфляж»;\n • украшение на спину «Подарочки»;\n • воздушный след «Гирлянда»;\n • 300 В-баксов;\n • 1 музыкальная композиция;\n • +70% к опыту за матчи сезона;\n • +20% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания\n и многое другое.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • ещё 4 костюма;\n • 1300 В-баксов;\n • 6 эмоций\n; • 3 дельтаплана;\n • 4 украшения на спину;\n • 4 обёртки;\n • 4 инструмента;\n • 4 воздушных следа;\n • 1 питомец;\n • 12 граффити;\n • 2 музыкальные композиции;\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!", + "ko": "시즌 7: 2월 28일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 제니스 진화형 의상\n • 링스 진화형 의상\n • 윈터 병장 의상 및 스타일 도전\n • 하미레스 애완동물\n • 전술 썰매 글라이더\n • 극지방 위장 패턴 외관\n • 완벽한 선물 등 장신구\n • 줄조명 스카이다이빙 트레일\n • 300 V-Bucks\n • 음악 트랙 1개\n • 70% 보너스 시즌 매치 XP\n • 20% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 기타 보상!\n\n배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 의상 4개\n • 1,300 V-Bucks\n • 이모트 6개\n • 글라이더 3개\n • 등 장신구 4개\n • 외관 4개\n • 수확 도구 4개\n • 스카이다이빙 트레일 4개\n • 애완동물 1개\n • 스프레이 12개\n • 음악 트랙 2개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!", + "zh-hant": "第七賽季:現在起至2月28日\n\n立即獲得這些價值10000V幣的物品。\n • 蒼穹可進化服裝\n • 山貓可進化服裝\n • 冬軍衛士服裝與風格挑戰\n • 竹鼠寵物\n • 戰術雪橇滑翔傘\n • 極地迷彩 皮膚\n• 完美禮物背部裝飾\n • 燈串滑翔軌跡\n • 300 V幣\n • 1個音樂盒\n • 70%額外賽季比賽經驗\n • 20%額外賽季好友比賽經驗\n • 額外每週挑戰\n • 以及更多獎勵!\n\n通過遊玩提升英雄季卡戰階,解鎖至少75個獎勵(通常需要75到150個小時的遊玩時間)。\n • 4個額外服裝\n • 1,300V幣\n • 6個姿勢\n • 3個滑翔傘\n • 4個背包\n • 4 個皮膚\n • 4個稿\n • 4個滑翔軌跡\n • 1個寵物\n • 12個塗鴉\n • 2個音樂盒\n •以及更多獎勵!\n希望更快嗎?你可以隨時使用V幣購買戰階!", + "pt-br": "Temporada 7: De hoje até 28 de fevereiro\n\nReceba instantaneamente estes itens avaliados em mais de 10.000 V-Bucks:\n • Traje Progressivo Zênite\n • Traje Progressivo Lince\n • Traje e Desafios Estilo Sargento Inverno\n • Mascote Hamsterzínea\n • Asa-delta Trenó Tático\n • Envelopamento Camuflagem Ártica\n • Acessório para as Costas Presente Perfeito\n • Rastro de Fumaça Pisca-Pisca\n • 300 V-Bucks\n • 1 Faixa Musical\n • 70% de Bônus de EXP da Temporada em Partidas\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média de 75 a 150 horas de jogo).\n • Mais 4 Trajes\n • 1.300 V-Bucks\n • 6 Gestos\n • 3 Asas-deltas\n • 4 Acessórios para as Costas\n • 4 Envelopamentos\n • 4 Ferramentas de Coleta\n • 4 Rastros de Fumaça\n • 1 Mascote\n • 12 Sprays\n • 2 Faixas Musicais\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!", + "en": "Season 7: Now thru Feb 28\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Zenith Progressive Outfit\n • Lynx Progressive Outfit\n • Sgt. Winter Outfit and Style Challenges\n • Hamirez Pet\n • Tactical Sleigh Glider\n • Arctic Camo Wrap\n • Perfect Present Back Bling\n • String Lights Contrail\n • 300 V-Bucks\n • 1 Music Track\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,300 V-Bucks\n • 6 Emotes\n • 3 Gliders\n • 4 Back Blings\n • 4 Wraps\n • 4 Harvesting Tools\n • 4 Contrails\n • 1 Pet\n • 12 Sprays\n • 2 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "it": "Stagione 7: Fino al 28 febbraio\n\nOttieni subito questi oggetti dal valore di oltre 10.000 V-buck!\n• Costume progressivo Zenith\n• Costume progressivo Lynx\n• Costume e sfide stile sergente Bruma\n• Piccolo amico Hamirez\n• Deltaplano Slitta tattica\n• Copertura mimetica artica\n• Dorso decorativo Regalo perfetto\n• Scia Luci a filo\n• 300 V-buck\n• 1 brano musicale\n• Bonus del 70% dei PE partite stagionali\n• Bonus del 20% dei PE partite amico stagionali\n• Sfide settimanali extra\n• E altro ancora!\n\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando più di 75 ricompense (per un totale indicativo di 75-150 ore di gioco).\n• 4 costumi in più\n• 1.300 V-buck\n• 6 emote\n• 3 deltaplani\n• 4 dorsi decorativi\n• 4 coperture\n• 4 strumenti di raccolta\n• 4 scie\n• 1 piccolo amico\n• 12 spray\n• 2 brani musicali\n• E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!", + "fr": "Saison 7 : jusqu'au 28 février\n\nRecevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue évolutive Zénith\n • Tenue évolutive Lynx\n • Tenue évolutive Sergent Frimas et défis de style\n • Le compagnon Hamirez\n • Planeur Traîneau tactique\n • Revêtement Camouflage arctique\n • Accessoire de dos Cadeau idéal\n • Traînée de condensation Guirlandes électriques\n • 300 V-bucks\n • 1 piste musicale\n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 20% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu).\n • 4 autres tenues\n • 1300 V-bucks\n • 6 emotes\n • 3 planeurs\n • 4 accessoires de dos\n • 4 revêtements\n • 4 pioches\n • 4 traînées de condensation\n • 1 compagnon\n • 12 aérosols\n • 2 pistes musicales\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !", + "zh-cn": "第七赛季:现在起至2月28日\n\n立即获得这些价值10000V币的物品。\n • 苍穹可进化服装\n • 山猫可进化服装\n • 冬军卫士服装与风格挑战\n • 竹鼠宠物\n • 战术雪橇滑翔伞\n • 极地迷彩 皮肤\n• 完美礼物背部装饰\n • 灯串滑翔轨迹\n • 300 V币\n • 1个音乐盒\n • 70%额外赛季比赛经验\n • 20%额外赛季好友比赛经验\n • 额外每周挑战\n • 以及更多奖励!\n\n通过游玩提升英雄季卡战阶,解锁至少75个奖励(通常需要75到150个小时的游玩时间)。\n • 4个额外服装\n • 1,300V币\n • 6个姿势\n • 3个滑翔伞\n • 4个背包\n • 4 个皮肤\n • 4个稿\n • 4个滑翔轨迹\n • 1个宠物\n • 12个涂鸦\n • 2个音乐盒\n •以及更多奖励!\n希望更快吗?你可以随时使用V币购买战阶!", + "es": "Temporada 7: Desde ahora hasta el 28 de febrero\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje progresivo de Cénit.\n • Traje progresivo de Lince.\n • Traje y desafíos de estilo del General Invierno.\n • Mascota Hamírez.\n • Ala delta Trineo táctico.\n • Envoltorio Camuflaje ártico.\n • Accesorio mochilero Presente perfecto.\n • Estela Luces de colores.\n • 300 paVos.\n • 1 pista musical.\n • 70 % adicional de PE de partida de temporada.\n • 20 % adicional de PE de partida amistosa de temporada.\n • Desafíos semanales adicionales.\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 75 recompensas (suele llevar entre 75 y 150 horas de juego).\n • 4 trajes más.\n • 1300 paVos.\n • 6 gestos.\n • 3 alas delta.\n • 4 accesorios mochileros.\n • 4 envoltorios.\n • 4 herramientas de recolección.\n • 4 estelas.\n • 1 mascota.\n • 12 grafitis.\n • 2 pistas musicales.\n • ¡Y muchísimo más!\n¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!", + "ar": "Season 7: Now thru Feb 28\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Zenith Progressive Outfit\n • Lynx Progressive Outfit\n • Sgt. Winter Outfit and Style Challenges\n • Hamirez Pet\n • Tactical Sleigh Glider\n • Arctic Camo Wrap\n • Perfect Present Back Bling\n • String Lights Contrail\n • 300 V-Bucks\n • 1 Music Track\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,300 V-Bucks\n • 6 Emotes\n • 3 Gliders\n • 4 Back Blings\n • 4 Wraps\n • 4 Harvesting Tools\n • 4 Contrails\n • 1 Pet\n • 12 Sprays\n • 2 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "ja": "シーズン7: 2月28日まで\n\n10,000 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\n • 「ゼニス」プログレッシブコスチューム\n • 「リンクス」プログレッシブコスチューム\n • 「サージェント ウィンター」コスチューム及びスタイルチャレンジ\n • 「ハミレス」ペット\n • 「タクティカルスレイ」グライダー\n • 「アークティックカモ」ラップ\n • 「パーフェクトプレゼント」バックアクセサリー\n • 「ストリングライト」コントレイル\n • 300 V-Bucks\n • ミュージックx1\n • シーズンマッチXPの70%ボーナス\n • シーズンフレンドマッチXPの20%ボーナス\n • 追加のウィークリーチャレンジ\n • 他にも色々!\n\nプレイしてバトルパスのレベルを上げると、75個以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n • コスチュームx4以上\n • 1,300 V-Bucks\n • エモートx6\n • グライダーx3\n • バックアクセサリーx4\n • ラップx4\n • 収集ツールx4\n • コントレイルx4\n • ペットx1\n • スプレーx12\n • ミュージックトラックx2\n • 他にも色々!\nもっと早く報酬を全部集めたいなら、V-Bucksでいつでもティアを購入できます!", + "pl": "Sezon 7: od teraz do 28 lutego\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 10 000 V-dolców:\n • Strój progresywny: Zenit\n • Strój progresywny: Puma\n • Strój i wyzwania stylów Sierżant Zima\n • Pupil Chomirez\n • Lotnia Sanie Szturmowe\n • Malowanie Zimowy kamuflaż\n • Plecak Przemyślany Prezent\n • Smuga Sznur lampek\n • 300 V-dolców\n • 1 tło muzyczne\n • Sezonowa premia +70% PD za grę\n • Sezonowa premia +20% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodniowych\n • I nie tylko!\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 75 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • 4 dodatkowe stroje\n • 1300 V-dolców\n • 6 emotek\n • 3 lotnie\n • 4 plecaki\n • 4 malowania\n • 4 zbieraki\n • 4 smugi\n • 1 pupil\n • 12 graffiti\n • 2 tła muzyczne\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!", + "es-419": "Temporada 7: Ahora hasta el 28 de febrero\n\nObtén al instante estos objetos que cuestan más de 10 000 monedas V.\n • Atuendo progresivo Cenit\n • Atuendo progresivo Lince\n • Atuendo y desafíos de estilo de Sargento Invierno\n • Mascota Hamírez\n • Planeador Trineo táctico\n • Papel Camu ártico\n • Mochila retro Regalo perfecto\n • Estela Luces colgantes\n • 300 monedas V\n • 1 pista de música\n • 70 % de bonificación de PE para partidas en la temporada\n • 20 % de bonificación de PE para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • ¡Y mucho más!\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 150 horas de juego).\n • 4 atuendos más\n • 1300 monedas V\n • 6 gestos\n • 3 planeadores\n • 4 mochilas retro\n • 4 papeles\n • 4 herramientas de recolección\n • 4 estelas\n • 1 mascota\n • 12 aerosoles\n • 2 pistas de música\n • ¡Y mucho más!\n¿Lo quieres todo más rápido? ¡Puedes usar las monedas V para comprar niveles cuando quieras!", + "tr": "7. Sezon: Şu andan 28 Şubat’a kadar\n\n10.000 V-Papel’in üzerinde değeri olan bu içerikleri hemen kap.\n • İlerlemeli Karakulak Kıyafeti\n • İlerlemeli Kutup Dağcısı Kıyafeti\n • Kış Çavuşu Kıyafeti ve Tarz Görevleri\n • Sadık Dost Hamirez\n • Roketli Kızak Planörü\n • Kutup Kamuflajı Kaplaması\n • Mükemmel Hediye Sırt Süsü\n • Yılbaşı Işıkları Dalış İzi\n • 300 V-Papel\n • 1 Müzik Parçası\n • %70 Bonus sezonluk Maç TP’si\n • Arkadaşların için %20 Bonus Sezonluk Maç TP’si\n • İlave Haftalık Görevler\n • ve çok daha fazlası!\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 75’ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • 4 Kıyafet daha\n • 1.300 V-Papel\n • 6 İfade\n • 3 Planör\n • 4 Sırt Süsü\n • 4 Kaplama\n • 4 Toplama Aleti\n • 4 Dalış İzi\n • 1 Sadık Dost\n • 12 Sprey\n • 2 Müzik Parçası\n • ve çok daha fazlası!\nHepsini daha hızlı almak mı istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season7_BattlePassWithLevels.DA_BR_Season7_BattlePassWithLevels", + "itemGrants": [] + }, + { + "offerId": "3A3C99847F144AF3A030DB5690477F5A", + "devName": "BR.Season7.BattlePass.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 950, + "finalPrice": 950, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 950 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "601C6830460BFED07506F5A6D2C4CE7B", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 1, + "title": { + "de": "Battle Pass", + "ru": "Боевой пропуск", + "ko": "배틀패스", + "zh-hant": "英雄季卡", + "pt-br": "Passe de Batalha", + "en": "Battle Pass", + "it": "Pass battaglia", + "fr": "Passe de combat", + "zh-cn": "英雄季卡", + "es": "Pase de batalla", + "ar": "Battle Pass", + "ja": "バトルパス", + "pl": "Karnet bojowy", + "es-419": "Pase de batalla", + "tr": "Savaş Bileti" + }, + "shortDescription": { + "de": "Saison 7", + "ru": "Седьмой сезон", + "ko": "시즌 7", + "zh-hant": "第七賽季", + "pt-br": "Temporada 7", + "en": "Season 7", + "it": "Stagione 7", + "fr": "Saison 7", + "zh-cn": "第七赛季", + "es": "Temporada 7", + "ar": "Season 7", + "ja": "シーズン7", + "pl": "Sezon 7", + "es-419": "Temporada 7", + "tr": "7. Sezon" + }, + "description": { + "de": "Saison 7: Ab sofort bis 28. Februar\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • Zenit (aufrüstbares Outfit)\n • Luchs (aufrüstbares Outfit)\n • +50 % Saison-Match-EP\n • +10 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • Sgt. Winter und 4 weitere Outfits\n • 1.300 V-Bucks\n • 2 Gefährten\n • 6 Lackierungen\n • 4 Erntewerkzeuge\n • 7 Emotes\n • 2 Spielsachen\n • 4 Hängegleiter\n • 6 Rücke-Accessoires\n • 5 Kondensstreifen\n • 13 Spraymotive\n • 3 Musikstücke\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!", + "ru": "Седьмой сезон: до 28 февраля\n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • улучшаемая экипировка Снежного снайпера;\n • улучшаемая экипировка Неоновой Рыси;\n • +50% к опыту за матчи сезона;\n • +10% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • экипировка генерала Мороза и ещё 4 костюма;\n • 1300 В-баксов;\n • 2 питомца;\n • 6 обёрток;\n • 4 инструмента;\n • 7 эмоций;\n • 2 игрушки;\n • 4 дельтаплана;\n • 6 украшений на спину;\n • 5 воздушных следов;\n • 13 граффити;\n • 3 музыкальные композиции;\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!", + "ko": "시즌 7: 2월 28일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 제니스 진화형 의상\n • 링스 진화형 의상\n • 50% 보너스 시즌 매치 XP\n • 10% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n\n • 게임을 플레이하고 배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 윈터 병장 외 의상 4개\n • 1,300 V-Bucks\n • 애완동물 2개\n • 외관 6개\n • 수확 도구 4개\n • 이모트 7개\n • 장난감 2개\n • 글라이더 4개\n • 등 장신구 6개\n • 스카이다이빙 트레일 5개\n • 스프레이 13개\n • 음악 트랙 3개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!", + "zh-hant": "第七賽季:現在起至2月28日\n\n立即獲得這些價值3500V幣的物品。\n • 蒼穹可進化服裝\n • 山貓可進化服裝\n • 50%額外賽季比賽經驗\n • 10%額外賽季好友比賽經驗\n • 額外每週挑戰\n\n通過遊玩提升英雄季卡戰階,解鎖百餘獎勵(通常需要75到150個小時的遊玩時間)。\n • 冬軍衛士和至少4套服裝\n • 1300V幣\n • 2個寵物\n • 6個包裝\n • 4個採集工具\n • 7個姿勢\n • 2個玩具\n • 4個滑翔傘\n • 6個背部裝飾\n • 5個滑翔軌跡\n • 13個塗鴉\n • 3個音軌\n • 以及更多獎勵!\n希望更快得到嗎?你可以隨時使用V幣購買戰階!", + "pt-br": "Temporada 7: De hoje até 28 de fevereiro\n\nReceba instantaneamente estes itens avaliados em mais de 3.500 V-Bucks:\n • Traje Progressivo Zênite\n • Traje Progressivo Lince\n • 50% de Bônus de EXP da Temporada em Partidas\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média de 75 a 150 horas de jogo).\n • Sargento Inverno e mais 4 Trajes\n • 1.300 V-Bucks\n • 2 Mascotes\n • 6 Envelopamentos\n • 4 Ferramentas de Coleta\n • 7 Gestos\n • 2 Brinquedos\n • 4 Asas-deltas\n • 6 Acessórios para as Costas\n • 5 Rastros de Fumaça\n • 13 Sprays\n • 3 Faixas Musicais\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!", + "en": "Season 7: Now thru Feb 28\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Zenith Progressive Outfit\n • Lynx Progressive Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Sgt. Winter and 4 more Outfits\n • 1,300 V-Bucks\n • 2 Pets\n • 6 Wraps\n • 4 Harvesting Tools\n • 7 Emotes\n • 2 Toys\n • 4 Gliders\n • 6 Back Blings\n • 5 Contrails\n • 13 Sprays\n • 3 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "it": "Stagione 7: Fino al 28 febbraio\n\nOttieni subito questi oggetti dal valore di oltre 3.500 V-buck!\n• Costume progressivo Zenith\n• Costume progressivo Lynx\n• Bonus del 50% dei PE partite stagionali\n• Bonus del 10% dei PE partite amico stagionali\n• Sfide settimanali extra\n\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando più di 100 ricompense (per un totale indicativo di 75-150 ore di gioco).\nSergente Bruma e altri 4 costumi\n• 1.300 V-buck\n• 2 piccoli amici\n• 6 coperture\n• 4 strumenti di raccolta\n• 7 emote\n• 2 giocattoli\n• 4 deltaplani\n• 6 dorsi decorativi\n• 5 scie\n• 13 spray\n• 3 brani musicali\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!", + "fr": "Saison 7 : jusqu'au 28 février\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3500 V-bucks.\n • Tenue évolutive Zénith\n • Tenue évolutive Lynx\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 10% pour des amis\n • Des défis hebdomadaires supplémentaires\n\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu).\n • Sergent Frimas plus 4 autres tenues\n • 1300 V-bucks\n • 2 compagnons\n • 6 revêtements\n • 4 pioches\n • 7 emotes\n • 2 jouets\n • 4 planeurs\n • 6 accessoires de dos\n • 5 traînées de condensation\n • 13 aérosols\n • 3 pistes musicales\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !", + "zh-cn": "第七赛季:现在起至2月28日\n\n立即获得这些价值3500V币的物品。\n • 苍穹可进化服装\n • 山猫可进化服装\n • 50%额外赛季比赛经验\n • 10%额外赛季好友比赛经验\n • 额外每周挑战\n\n通过游玩提升英雄季卡战阶,解锁百余奖励(通常需要75到150个小时的游玩时间)。\n • 冬军卫士和至少4套服装\n • 1300V币\n • 2个宠物\n • 6个包装\n • 4个采集工具\n • 7个姿势\n • 2个玩具\n • 4个滑翔伞\n • 6个背部装饰\n • 5个滑翔轨迹\n • 13个涂鸦\n • 3个音轨\n • 以及更多奖励!\n希望更快得到吗?你可以随时使用V币购买战阶!", + "es": "Temporada 7: Desde ahora hasta el 28 de febrero\n\nConsigue instantáneamente estos objetos valorados en más de 3500 paVos.\n • Traje progresivo de Cénit.\n • Traje progresivo de Lince.\n • 50 % adicional de PE de partida de temporada.\n • 10 % adicional de PE de partida amistosa de temporada.\n • Desafíos semanales adicionales.\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 100 recompensas (suele llevar entre 75 y 150 horas de juego).\n • General Invierno y 4 trajes más.\n • 1300 paVos.\n • 2 mascotas.\n • 6 envoltorios.\n • 4 herramientas de recolección.\n • 7 gestos.\n • 2 juguetes.\n • 4 alas delta.\n • 6 accesorios mochileros.\n • 5 estelas.\n • 13 grafitis.\n • 3 pistas musicales.\n • ¡Y muchísimo más!\n¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!", + "ar": "Season 7: Now thru Feb 28\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Zenith Progressive Outfit\n • Lynx Progressive Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Sgt. Winter and 4 more Outfits\n • 1,300 V-Bucks\n • 2 Pets\n • 6 Wraps\n • 4 Harvesting Tools\n • 7 Emotes\n • 2 Toys\n • 4 Gliders\n • 6 Back Blings\n • 5 Contrails\n • 13 Sprays\n • 3 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "ja": "シーズン7: 2月28日まで\n\n3,500 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。• 「ゼニス」プログレッシブコスチューム\n • 「リンクス」プログレッシブコスチューム\n • シーズンマッチXPの50%ボーナス\n • シーズンフレンドマッチXPの10%ボーナス\n • 追加のウィークリーチャレンジ\n\nプレイしてバトルパスのレベルを上げると、100以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n •「サージェント ウィンター」及びコスチュームx4以上\n • 1,300 V-Bucks\n • ペットx2\n • ラップx6\n • 収集ツールx4\n • エモートx7\n • おもちゃx2\n • グライダーx4\n • バックアクセサリーx6\n • コントレイルx5\n • スプレーx13\n • ミュージックトラックx3\n • 他にも色々!\nもっと早く報酬を全部集めたいなら、V-Bucksでいつでもティアを購入できます!", + "pl": "Sezon 7: od teraz do 28 lutego\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 3500 V-dolców:\n • Strój progresywny: Zenit\n • Strój progresywny: Puma\n • Sezonowa premia +50% PD za grę\n • Sezonowa premia +10% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodniowych\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 100 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • Sierżant Zima i 4 inne stroje\n • 1300 V-dolców\n • 2 pupile\n • 6 malowań\n • 4 zbieraki\n • 7 emotek\n • 2 zabawki\n • 4 lotnie\n • 6 plecaków\n • 5 smug\n • 13 graffiti\n • 3 tła muzyczne\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!", + "es-419": "Temporada 7: Ahora hasta el 28 de febrero\n\nObtén al instante estos objetos que cuestan más de 3500 monedas V.\n • Atuendo progresivo Cenit\n • Atuendo progresivo Lince\n • 50 % de bonificación de PE para partidas de la temporada\n • 10 % de bonificación de PE para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 100 recompensas (esto lleva entre 75 y 150 horas de juego).\n • Sargento Invierno y 4 atuendos más\n • 1300 monedas V\n • 2 mascotas\n • 6 papeles\n • 4 herramientas de recolección\n • 7 gestos\n • 2 juguetes\n • 4 planeadores\n • 6 mochilas retro\n • 5 estelas\n • 13 aerosoles\n • 3 pistas de música\n • ¡Y mucho más!\n¿Lo quieres todo más rápido? ¡Puedes usar las monedas V para comprar niveles cuando quieras!", + "tr": "7. Sezon: Şu andan 28 Şubat’a kadar\n\n3.500 V-Papel’in üzerinde değeri olan bu içerikleri hemen kap.\n • İlerlemeli Kutup Dağcısı Kıyafeti\n • İlerlemeli Karakulak Kıyafeti\n • %50 Bonus Sezonluk Maç TP’si\n • Arkadaşların için %10 Bonus Sezonluk Maç TP’si\n • İlave Haftalık Görevler\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 100’den fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • Kış Çavuşu ve 4 Kıyafet daha\n • 1,300 V-Papel\n • 2 Sadık Dost\n • 6 Kaplama\n • 4 Toplama Aleti\n • 7 İfade\n • 2 Oyuncak\n • 4 Planör\n • 6 Sırt Süsü\n • 5 Dalış İzi\n • 13 Sprey\n • 3 Müzik Parçası\n • ve çok daha fazlası!\nHepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season7_BattlePass.DA_BR_Season7_BattlePass", + "itemGrants": [] + }, + { + "offerId": "64A3020B098841A7805EE257D68C554F", + "devName": "BR.Season7.SingleTier.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 150, + "finalPrice": 150, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 150 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle-Pass-Stufe", + "ru": "Уровень боевого пропуска", + "ko": "배틀패스 티어", + "zh-hant": "英雄季卡戰階", + "pt-br": "Categoria de Passe de Batalha", + "en": "Battle Pass Tier", + "it": "Livello Pass battaglia", + "fr": "Palier du Passe de combat", + "zh-cn": "英雄季卡战阶", + "es": "Nivel del pase de batalla", + "ar": "Battle Pass Tier", + "ja": "バトルパスティア", + "pl": "Stopień karnetu bojowego", + "es-419": "Nivel de pase de batalla", + "tr": "Savaş Bileti Aşaması" + }, + "shortDescription": "", + "description": { + "de": "Hol dir jetzt tolle Belohnungen!", + "ru": "Получите отличные награды!", + "ko": "지금 푸짐한 보상을 얻어보세요!", + "zh-hant": "現在獲得豐厚獎勵!", + "pt-br": "Ganhe recompensas ótimas agora!", + "en": "Get great rewards now!", + "it": "Ricevi subito magnifiche ricompense!", + "fr": "Obtenez de grandes récompenses !", + "zh-cn": "现在获得丰厚奖励!", + "es": "¡Consigue recompensas increíbles!", + "ar": "Get great rewards now!", + "ja": "ステキな報酬を今すぐゲット!", + "pl": "Zdobądź super nagrody już teraz!", + "es-419": "¡Consigue grandes recompensas ahora!", + "tr": "Harika ödüllerin sahibi ol!" + }, + "displayAssetPath": "", + "itemGrants": [] + } + ] + }, + { + "name": "BRSeason8", + "catalogEntries": [ + { + "offerId": "18D9DA48000A40BFAEBAC55A99C55221", + "devName": "BR.Season8.BattleBundle.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 4700, + "finalPrice": 2800, + "saleType": "PercentOff", + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "9DF02EA14FB15E475EBBEBBFDBB988DB", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle Pass-Paket", + "ru": "Боевой комплект", + "ko": "배틀번들", + "zh-hant": "戰鬥套組", + "pt-br": "Pacotão de Batalha", + "en": "Battle Bundle", + "it": "Bundle battaglia", + "fr": "Pack de combat", + "zh-cn": "战斗套组", + "es": "Lote de batalla", + "ar": "Battle Bundle", + "ja": "バトルバンドル", + "pl": "Zestaw bojowy", + "es-419": "Paquete de batalla", + "tr": "Savaş Paketi" + }, + "shortDescription": { + "de": "Battle Pass + 25 Stufen!", + "ru": "Боевой пропуск + 25 уровней!", + "ko": "배틀패스 + 25티어!", + "zh-hant": "英雄季卡增加25戰階!", + "pt-br": "Passe de Batalha + 25 categorias!", + "en": "Battle Pass + 25 tiers!", + "it": "Pass battaglia + 25 livelli!", + "fr": "Passe de combat + 25 paliers !", + "zh-cn": "英雄季卡增加25战阶!", + "es": "¡Pase de batalla y 25 niveles!", + "ar": "Battle Pass + 25 tiers!", + "ja": "バトルパス+25ティア!", + "pl": "Karnet bojowy + 25 stopni!", + "es-419": "¡Pase de batalla + 25 niveles!", + "tr": "Savaş Bileti + 25 aşama!" + }, + "description": { + "de": "Saison 8 – Ab sofort bis einschließlich 8. Mai\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • Schwarzherz (aufrüstbares Outfit)\n • Hybrid (aufrüstbares Outfit)\n • Klapperschlange (Outfit)\n • Tropentarnung (Lackierung)\n • Stöckchen (Gefährte)\n • Himmelsschlangen (Hängegleiter)\n • Kobra (Rücken-Accessoire)\n • Wehende Standarte (Kondensstreifen)\n • 300 V-Bucks\n • 1 Musikstück\n • +70 % Saison-Match-EP\n • +20 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n • und noch mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • 4 weitere Outfits\n • 1.000 V-Bucks\n • 6 Emotes\n • 5 Lackierungen\n • 3 Hängegleiter\n • 3 Rücken-Accessoires\n • 4 Erntewerkzeuge\n • 4 Kondensstreifen\n • 1 Gefährte\n • 12 Spraymotive\n • 2 Musikstücke\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!", + "ru": "Восьмой сезон: до 8 мая\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • Улучшающаяся экипировка Флибустьера;\n • улучшающаяся экипировка Гибрида;\n • экипировка Горгоны;\n • обёртка «Тропики»;\n • питомец Псиноккио;\n • дельтаплан «Воздушные змеи»;\n • украшение на спину «Кобра»;\n • воздушный след «Чёрный флаг»;\n • 300 В-баксов;\n • 1 музыкальная композиция;\n • +70% к опыту за матчи сезона;\n • +20% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания\n и многое другое.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • ещё 4 костюма;\n • 1000 В-баксов;\n • 6 эмоций;\n • 5 обёрток;\n • 3 дельтаплана;\n • 3 украшения на спину;\n • 4 инструмента;\n • 4 воздушных следа;\n • 1 питомец;\n • 12 граффити;\n • 2 музыкальные композиции\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!", + "ko": "시즌 8: 5월 8일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 블랙하트 진화형 의상\n • 하이브리드 진화형 의상\n • 사이드와인더 의상\n • 열대 지방 위장 패턴 외관\n • 우지 애완동물\n • 하늘뱀 글라이더\n • 코브라 등 장신구\n • 공중 깃발 트레일\n • 300 V-Bucks\n • 음악 트랙 1개\n • 70% 보너스 시즌 매치 XP\n • 20% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 그 외 더 많은 혜택!\n\n게임을 플레이하고 배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 추가 의상 4개\n • 1,000 V-Bucks\n • 이모트 6개\n • 외관 5개\n • 글라이더 3개\n • 등 장신구 3개\n • 수확 도구 4개\n • 트레일 4개\n • 애완동물 1마리\n • 스프레이 12개\n • 음악 트랙 2개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!", + "zh-hant": "第八賽季:現在起至5月8日\n\n立即獲得這些價值逾10000V幣的物品。\n • 黑鬍子可進化服裝\n • 忍者龍可進化服裝\n • 響尾蛇服裝\n • 熱帶迷彩皮膚\n • 木雕汪寵物\n • 空中飛蛇滑翔傘\n • 眼鏡蛇背部裝飾\n • 飛行掛旗滑翔軌跡\n • 300V幣\n • 1個音軌\n • 70%額外賽季匹配經驗\n • 20%額外賽季好友匹配經驗\n • 額外每週挑戰\n • 以及更多獎勵!\n\n通過遊玩提升英雄季卡戰階,解鎖至少75個獎勵(通常需要75到150個小時的遊玩時間)。\n • 4個額外服裝\n • 1000V幣\n • 6個姿勢\n • 5個皮膚\n • 3個滑翔傘\n • 3個背部裝飾\n • 4個鎬\n • 4個滑翔軌跡\n • 1個寵物\n • 12個塗鴉\n • 2個音軌\n • 以及更多獎勵!\n希望更快得到所有獎勵嗎?你可以隨時使用V幣購買戰階!", + "pt-br": "Temporada 8: de hoje até 8 de maio\n\nReceba instantaneamente estes itens avaliados em mais de 10.000 V-Bucks.\n • Traje Progressivo Coração Negro\n • Traje Progressivo Híbrido\n • Traje Cascavel\n • Envelopamento Camuflagem Tropical\n • Mascote Madeiríneo\n • Asa-delta Serpentes dos Céus\n • Acessório para as Costas Naja\n • Rastro de Fumaça Estandarte de Voo\n • 300 V-Bucks\n • 1 Faixa Musical\n • 70% de Bônus de EXP da Temporada em Partidas\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média de 75 a 150 horas de jogo).\n • Mais 4 Trajes\n • 1.000 V-Bucks\n • 6 Gestos\n • 5 Envelopamentos\n • 3 Asas-deltas\n • 3 Acessórios para as Costas\n • 4 Ferramentas de Coleta\n • 4 Rastros de Fumaça\n • 1 Mascote\n • 12 Sprays\n • 2 Faixas Musicais\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!", + "en": "Season 8 Now thru May 8\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Blackheart Progressive Outfit\n • Hybrid Progressive Outfit\n • Sidewinder Outfit\n • Tropical Camo Wrap\n • Woodsy Pet\n • Sky Serpents Glider\n • Cobra Back Bling\n • Flying Standard Contrail\n • 300 V-Bucks\n • 1 Music Track\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,000 V-Bucks\n • 6 Emotes\n • 5 Wraps\n • 3 Gliders\n • 3 Back Blings\n • 4 Harvesting Tools\n • 4 Contrails\n • 1 Pet\n • 12 Sprays\n • 2 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "it": "Stagione 8, da ora fino all'8 maggio\n\nOttieni subito questi oggetti dal valore di oltre 10.000 V-buck!\n • Costume progressivo Cuore nero\n • Costume progressivo Ibrido\n • Costume Sidewinder\n • Copertura Mimetica tropicale\n • Piccolo amico Woodsy\n • Deltaplano Serpenti dei cieli\n • Dorso decorativo Cobra\n • Scia Stendardo volante\n • 300 V-Buck\n • 1 brano musicale\n • Bonus 70% Bonus PE partite stagionali\n • Bonus 20% PE amici partite stagionali\n • Sfide settimanali extra\n • e altro ancora!\n\nGioca per aumentare il livello del tuo Pass battaglia, sbloccando più di 75 ricompense (per un totale indicativo di 75-150 ore di gioco).\n • 4 costumi in più\n • 1.000 V-Buck\n • 6 emote\n • 5 coperture\n • 3 deltaplani\n • 3 dorsi decorativi\n • 4 strumenti raccolta\n • 4 scie\n • 1 piccolo amico\n • 12 spray\n • 2 brani musicali\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!", + "fr": "Saison 8 : jusqu'au 8 mai\n\nRecevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue évolutive Cœur Noir\n • Tenue évolutive Hybride\n • Tenue Vipère\n • Revêtement Camouflage tropical\n • Le compagnon Tilleul\n • Planeur Serpents célestes\n • Accessoire de dos Cobra\n • Traînée de condensation Drapeau volant\n • 300 V-bucks\n • 1 piste musicale\n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 20% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu).\n • 4 autres tenues\n • 1000 V-bucks\n • 6 emotes\n • 5 revêtements\n • 3 planeurs\n • 3 accessoires de dos\n • 4 pioches\n • 4 traînées de condensation\n • 1 compagnon\n • 12 aérosols\n • 2 pistes musicales\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !", + "zh-cn": "第八赛季:现在起至5月8日\n\n立即获得这些价值逾10000V币的物品。\n • 黑胡子可进化服装\n • 忍者龙可进化服装\n • 响尾蛇服装\n • 热带迷彩皮肤\n • 木雕汪宠物\n • 空中飞蛇滑翔伞\n • 眼镜蛇背部装饰\n • 飞行挂旗滑翔轨迹\n • 300V币\n • 1个音轨\n • 70%额外赛季匹配经验\n • 20%额外赛季好友匹配经验\n • 额外每周挑战\n • 以及更多奖励!\n\n通过游玩提升英雄季卡战阶,解锁至少75个奖励(通常需要75到150个小时的游玩时间)。\n • 4个额外服装\n • 1000V币\n • 6个姿势\n • 5个皮肤\n • 3个滑翔伞\n • 3个背部装饰\n • 4个镐\n • 4个滑翔轨迹\n • 1个宠物\n • 12个涂鸦\n • 2个音轨\n • 以及更多奖励!\n希望更快得到所有奖励吗?你可以随时使用V币购买战阶!", + "es": "Temporada 8, desde ahora hasta el 8 de mayo\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje progresivo de Parchenegro\n • Traje progresivo de Híbrido\n • Traje de Áspid\n • Envoltorio Camuflaje tropical\n • Mascota Maderito\n • Ala deltaCarroza de cascabel\n • Accesorio mochileroCobra\n • Estela A toda vela\n • 300 paVos\n • 1 Tema musical\n • Bonificación del 70 % de PE por partida de temporada\n • Bonificación del 20 % de PE de partida con amigos de temporada\n • Desafíos semanales adicionales\n • ¡y mucho más!\n\nJugad para subir de nivel el pase de batalla, que desbloquea más de 75 recompensas (suele dar para entre 75 y 150 horas de juego).\n • 4 trajes más\n • 1000 paVos\n • 6 gestos\n • 5 envoltorios\n • 3 alas delta\n • 3 accesorios mochileros\n • 4 herramientas de recolección\n • 4 estelas\n • 1 mascota\n • 12 grafitis\n • 2 temas musicales\n • ¡y mucho más!\n¿Lo queréis más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!", + "ar": "Season 8 Now thru May 8\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Blackheart Progressive Outfit\n • Hybrid Progressive Outfit\n • Sidewinder Outfit\n • Tropical Camo Wrap\n • Woodsy Pet\n • Sky Serpents Glider\n • Cobra Back Bling\n • Flying Standard Contrail\n • 300 V-Bucks\n • 1 Music Track\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,000 V-Bucks\n • 6 Emotes\n • 5 Wraps\n • 3 Gliders\n • 3 Back Blings\n • 4 Harvesting Tools\n • 4 Contrails\n • 1 Pet\n • 12 Sprays\n • 2 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "ja": "シーズン8: 5月8日まで\n\n10,000 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\n • プログレッシブコスチューム「ブラックハート」\n • プログレッシブコスチューム「ハイブリッド」\n • コスチューム「サイドワインダー」\n • ラップ「トロピカルカモ」\n • ペット「ウッドゥジー」\n • グライダー「スカイサーペント」\n • バックアクセサリー「コブラ」\n • コントレイル「フライングスタンダード」\n • 300 V-Bucks\n • ミュージックx1\n • シーズンマッチXPの70%ボーナス\n • シーズンフレンドマッチXPの20%ボーナス\n • 追加のウィークリーチャレンジ\n • 他にも盛りだくさん!\n\nプレイしてバトルパスのレベルを上げると、75個以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n • コスチュームx4以上\n • 1,000 V-Bucks\n • エモートx6\n • ラップx5\n • グライダーx3\n • バックアクセサリーx3\n • 収集ツールx4\n • コントレイルx4\n • ペットx1\n • スプレーx12\n • ミュージックトラックx2\n • 他にも盛りだくさん!\nもっと早く報酬を全部集めたいという方は、V-Bucksでいつでもティアを購入できます!", + "pl": "Sezon 8: od teraz do 8 maja\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 10 000 V-dolców:\n • Strój progresywny: Czarnosercy\n • Strój progresywny: Hybryda\n • Strój progresywny: Grzechotnica\n • Malowanie: Tropikalny kamuflaż\n • Pupil: Drewniak\n • Lotnia: Podniebne Węże\n • Plecak: Kobra\n • Smuga: Powiewający Sztandar\n • 300 V-dolców • 1 tło muzyczne\n • Sezonowa premia +70% PD za grę\n • Sezonowa premia +20% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodnia\n • I nie tylko!\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 75 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • 4 kolejne stroje\n • 1000 V-dolców\n • 6 emotek\n • 5 malowań\n • 3 lotnie\n • 3 plecaki\n • 4 zbieraki\n • 4 smugi\n • 1 pupil\n • 12 graffiti\n • 2 tła muzyczne\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!", + "es-419": "Temporada 8: ahora hasta el 8 de mayo\n\nObtén al instante estos objetos que cuestan más de 10 000 monedas V.\n • Atuendo progresivo Parche Negro\n • Atuendo progresivo Híbrido\n • Atuendo Cascabel\n • Papel Camuflaje tropical\n • Mascota Maderín\n • Planeador Serpientes del cielo\n • Mochila retro Cobra \n • Estela Viento en popa\n • 300 monedas V\n • 1 pista de música\n • 70 % de bonificación de PE para partidas en la temporada\n • 20 % de bonificación de PE para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • ¡Y mucho más!\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 150 horas de juego).\n • 4 atuendos más\n • 1000 monedas V\n • 6 gestos\n • 5 papeles\n • 3 planeadores\n • 3 mochilas retro\n • 4 herramientas de recolección\n • 4 estelas\n • 1 mascota\n • 12 aerosoles\n • 2 pistas de música\n • ¡Y mucho más!\n¿Lo quieres todo más rápido? ¡Puedes usar las monedas V para comprar niveles cuando quieras!", + "tr": "8. Sezon: Şu andan 8 Mayıs’a kadar\n\n10.000 V-Papel’in üzerinde değeri olan bu içerikleri hemen kap.\n • İlerlemeli Karasakal Kıyafeti\n • İlerlemeli Melez Kıyafeti\n • Engerek Kıyafeti\n • Tropik Kamuflaj Kaplaması\n • Sadık Dost Gofret\n • Yılanör Planörü\n • Kobra Sırt Süsü\n • Kara Bayrak Dalış İzi\n • 300 V-Papel\n • 1 Müzik Parçası\n • %70 Bonus Sezonluk Maç TP’si\n • Arkadaşların için %20 Bonus Sezonluk Maç TP’si\n • İlave Haftalık Görevler\n • ve çok daha fazlası!\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 75’ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • 4 Kıyafet daha\n • 1.000 V-Papel\n • 6 İfade\n • 5 Kaplama\n • 3 Planör\n • 3 Sırt Süsü\n • 4 Toplama Aleti\n • 4 Dalış İzi\n • 1 Sadık Dost\n • 12 Sprey\n • 2 Müzik Parçası\n • ve çok daha fazlası!\nHepsini daha hızlı almak mı istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season8_BattlePassWithLevels.DA_BR_Season8_BattlePassWithLevels", + "itemGrants": [] + }, + { + "offerId": "E07E41D52D4A425F8DC6592496B75301", + "devName": "BR.Season8.SingleTier.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 150, + "finalPrice": 150, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 150 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle Pass-Stufe", + "ru": "Уровень боевого пропуска", + "ko": "배틀패스 티어", + "zh-hant": "英雄季卡戰階", + "pt-br": "Categoria de Passe de Batalha", + "en": "Battle Pass Tier", + "it": "Livello Pass battaglia", + "fr": "Palier du Passe de combat", + "zh-cn": "英雄季卡战阶", + "es": "Nivel del pase de batalla", + "ar": "Battle Pass Tier", + "ja": "バトルパスティア", + "pl": "Stopień karnetu bojowego", + "es-419": "Nivel de pase de batalla", + "tr": "Savaş Bileti Aşaması" + }, + "shortDescription": "", + "description": { + "de": "Hol dir jetzt tolle Belohnungen!", + "ru": "Получите отличные награды!", + "ko": "지금 푸짐한 보상을 얻어보세요!", + "zh-hant": "現在獲得豐厚獎勵!", + "pt-br": "Ganhe recompensas ótimas agora!", + "en": "Get great rewards now!", + "it": "Ricevi subito magnifiche ricompense!", + "fr": "Obtenez de grandes récompenses !", + "zh-cn": "现在获得丰厚奖励!", + "es": "¡Consigue recompensas increíbles!", + "ar": "Get great rewards now!", + "ja": "ステキな報酬を今すぐゲット!", + "pl": "Zdobądź super nagrody już teraz!", + "es-419": "¡Consigue grandes recompensas ahora!", + "tr": "Harika ödüllerin sahibi ol!" + }, + "displayAssetPath": "", + "itemGrants": [] + }, + { + "offerId": "77F31B7F83FB422195DA60CDE683671D", + "devName": "BR.Season8.BattlePass.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 950, + "finalPrice": 950, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 950 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "9DF02EA14FB15E475EBBEBBFDBB988DB", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 1, + "title": { + "de": "Battle Pass", + "ru": "Боевой пропуск", + "ko": "배틀패스", + "zh-hant": "英雄季卡", + "pt-br": "Passe de Batalha", + "en": "Battle Pass", + "it": "Pass battaglia", + "fr": "Passe de combat", + "zh-cn": "英雄季卡", + "es": "Pase de batalla", + "ar": "Battle Pass", + "ja": "バトルパス", + "pl": "Karnet bojowy", + "es-419": "Pase de batalla", + "tr": "Savaş Bileti" + }, + "shortDescription": { + "de": "Saison 8", + "ru": "Сезон 8", + "ko": "시즌 8", + "zh-hant": "第8賽季", + "pt-br": "Temporada 8", + "en": "Season 8", + "it": "Stagione 8", + "fr": "Saison 8", + "zh-cn": "第8赛季", + "es": "Temporada 8", + "ar": "Season 8", + "ja": "シーズン8", + "pl": "Sezon 8", + "es-419": "Temporada 8", + "tr": "8. Sezon" + }, + "description": { + "de": "Saison 8 – Ab sofort bis einschließlich 8. Mai\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • Schwarzherz (aufrüstbares Outfit)\n • Hybrid (aufrüstbares Outfit)\n • +50 % Saison-Match-EP\n • +10 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • Klapperschlange und 4 weitere Outfits\n • 1.300 V-Bucks\n • 7 Emotes\n • 6 Lackierungen\n • 2 Gefährten\n • 5 Erntewerkzeuge\n • 4 Hängegleiter\n • 4 Rücken-Accessoires\n • 5 Kondensstreifen\n • 14 Spraymotive\n • 3 Musikstücke\n • 1 Spielzeug\n • 20 Ladebildschirme\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!", + "ru": "Восьмой сезон: до 8 мая \n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • Улучшающаяся экипировка Флибустьера;\n • улучшающаяся экипировка Гибрида;\n • +50% к опыту за матчи сезона;\n • +10% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • экипировка Горгоны и ещё 4 костюма;\n • 1300 В-баксов;\n • 7 эмоций;\n • 6 обёрток;\n • 2 питомца;\n • 5 инструментов;\n • 4 дельтаплана;\n • 4 украшения на спину;\n • 5 воздушных следов;\n • 14 граффити;\n • 3 музыкальные композиции;\n • 1 игрушка;\n • 20 экранов загрузки\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!", + "ko": "시즌 8: 5월 8일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 블랙하트 진화형 의상\n • 하이브리드 진화형 의상\n • 50% 보너스 시즌 매치 XP\n • 10% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n\n게임을 플레이하고 배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 사이드와인더 외 의상 4개\n • 1,300 V-Bucks\n • 이모트 7개\n • 외관 6개\n • 애완동물 2마리\n • 수확 도구 5개\n • 글라이더 4개\n • 등 장신구 4개\n • 트레일 5개\n • 스프레이 14개\n • 음악 트랙 3개\n • 장난감 1개\n • 로딩 화면 20개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!", + "zh-hant": "第八賽季:現在起至5月8日\n\n立即獲得這些價值逾3500V幣的物品。\n • 黑鬍子可進化服裝\n • 忍者龍可進化服裝\n • 50%額外賽季匹配經驗\n • 10%額外賽季好友匹配經驗\n • 額外每週挑戰\n\n通過遊玩提升英雄季卡戰階,解鎖百餘獎勵(通常需要75到150個小時的遊玩時間)。\n • 響尾蛇和4個額外服裝\n • 1300V幣\n • 7個姿勢\n • 6個皮膚\n • 2個寵物\n • 5個鎬\n • 4個滑翔傘\n • 4個背部裝飾\n • 5個滑翔軌跡\n • 14個塗鴉\n • 3個音軌\n • 1個玩具\n • 20張載入介面\n • 以及更多獎勵!\n希望更快得到所有獎勵嗎?你可以隨時使用V幣購買戰階!", + "pt-br": "Temporada 8: de hoje até 8 de maio \n\nReceba instantaneamente estes itens avaliados em mais de 3.500 V-Bucks.\n • Traje Progressivo Coração Negro\n • Traje Progressivo Híbrido\n • 50% de Bônus de EXP da Temporada em Partidas\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média de 75 a 150 horas de jogo).\n • Cascavel e mais 4 Trajes\n • 1.300 V-Bucks\n • 7 Gestos\n • 6 Envelopamentos\n • 2 Mascotes\n • 5 Ferramentas de Coleta\n • 4 Asas-deltas\n • 4 Acessórios para as Costas\n • 5 Rastros de Fumaça\n • 14 Sprays\n • 3 Faixas Musicais\n • 1 Brinquedo\n • 20 Telas de Carregamento\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!", + "en": "Season 8 Now thru May 8 \n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Blackheart Progressive Outfit\n • Hybrid Progressive Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Sidewinder and 4 more Outfits\n • 1,300 V-Bucks\n • 7 Emotes\n • 6 Wraps\n • 2 Pets\n • 5 Harvesting Tools\n • 4 Gliders\n • 4 Back Blings\n • 5 Contrails\n • 14 Sprays\n • 3 Music Tracks\n • 1 Toy\n • 20 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "it": "Stagione 8, da ora fino all'8 maggio\n\nOttieni subito questi oggetti dal valore di oltre 3.500 V-buck!\n • Costume progressivo Cuore nero\n • Costume progressivo Ibrido\n • Bonus del 50% dei PE partite stagionali\n • Bonus del 10% dei PE partite amico stagionali\n • Sfide settimanali extra\n\nGioca per aumentare il livello del tuo Pass battaglia, sbloccando più di 100 ricompense (per un totale indicativo di 75-150 ore di gioco).\n • Sidewinder e altri 4 costumi\n • 1.300 V-buck\n • 7 emote\n • 6 coperture\n • 2 piccoli amici\n • 5 strumenti raccolta\n • 4 deltaplani\n • 4 dorsi decorativi\n • 5 scie\n • 14 spray\n • 3 brani musicali\n • 1 giocattolo\n • 20 schermate di caricamento\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!", + "fr": "Saison 8 : jusqu'au 8 mai\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3500 V-bucks.\n • Tenue évolutive Cœur Noir\n • Tenue évolutive Hybride\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 10% pour des amis\n • Des défis hebdomadaires supplémentaires\n\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu).\n • Vipère plus 4 autres tenues\n • 1300 V-bucks\n • 7 emotes\n • 6 revêtements\n • 2 compagnons\n • 5 pioches\n • 4 planeurs\n • 4 accessoires de dos\n • 5 traînées de condensation\n • 14 aérosols\n • 3 pistes musicales\n • 1 jouet\n • 20 écrans de chargement\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !", + "zh-cn": "第八赛季:现在起至5月8日\n\n立即获得这些价值逾3500V币的物品。\n • 黑胡子可进化服装\n • 忍者龙可进化服装\n • 50%额外赛季匹配经验\n • 10%额外赛季好友匹配经验\n • 额外每周挑战\n\n通过游玩提升英雄季卡战阶,解锁百余奖励(通常需要75到150个小时的游玩时间)。\n • 响尾蛇和4个额外服装\n • 1300V币\n • 7个姿势\n • 6个皮肤\n • 2个宠物\n • 5个镐\n • 4个滑翔伞\n • 4个背部装饰\n • 5个滑翔轨迹\n • 14个涂鸦\n • 3个音轨\n • 1个玩具\n • 20张载入界面\n • 以及更多奖励!\n希望更快得到所有奖励吗?你可以随时使用V币购买战阶!", + "es": "Desde ahora hasta el 8 de mayo \n\nConsigue instantáneamente estos objetos valorados en más de 3.500 paVos.\n • Traje progresivo de Parchenegro\n • Traje progresivo deHíbrido\n • Bonificación del 50 % de PE por partida de temporada\n • Bonificación del 10 % de PE de partida amistosa de temporada\n • Desafíos semanales adicionales\n\nJugad para subir de nivel el pase de batalla, que desbloquea más de 100 recompensas (suele dar para entre 75 y 150 horas de juego).\n • Áspid y 4 trajes más\n • 1300 paVos\n • 7 gestos\n • 6 envoltorios\n • 2 mascotas\n • 5 herramientas de recolección\n • 4 alas delta\n • 4 accesorios mochileros\n • 5 estelas\n • 14 grafitis\n • 3 temas musicales\n • 1 juguete\n • 20 pantallas de carga\n • ¡y mucho más!\n¿Lo queréis más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!", + "ar": "Season 8 Now thru May 8 \n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Blackheart Progressive Outfit\n • Hybrid Progressive Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Sidewinder and 4 more Outfits\n • 1,300 V-Bucks\n • 7 Emotes\n • 6 Wraps\n • 2 Pets\n • 5 Harvesting Tools\n • 4 Gliders\n • 4 Back Blings\n • 5 Contrails\n • 14 Sprays\n • 3 Music Tracks\n • 1 Toy\n • 20 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "ja": "シーズン8: 5月8日まで\n\n3,500 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\n • プログレッシブコスチューム「ブラックハート」\n • プログレッシブコスチューム「ハイブリッド」\n • シーズンマッチXPの50%ボーナス\n • シーズンフレンドマッチXPの10%ボーナス\n • 追加のウィークリーチャレンジ\n\nプレイしてバトルパスのレベルを上げると、100以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n • 「サイドワインダー」及びコスチュームx4以上\n • 1,300 V-Bucks\n • エモートx7\n • ラップx6\n • ペットx2\n • 収集ツールx5\n • グライダーx4\n • バックアクセサリーx4\n • コントレイルx5\n • スプレーx14\n • ミュージックトラックx3\n • おもちゃx1\n • ロード画面x20\n • 他にも盛りだくさん!\nもっと早く報酬を全部集めたいという方は、V-Bucksでいつでもティアを購入できます!", + "pl": "Sezon 8: od teraz do 8 maja\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 3500 V-dolców:\n • Strój progresywny: Czarnosercy\n • Strój progresywny: Hybryda\n • Sezonowa premia +50% PD za grę\n • Sezonowa premia +10% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodnia\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 100 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • Grzechotnica i 4 inne stroje\n • 1300 V-dolców\n • 7 emotek\n • 6 malowań\n • 2 pupile\n • 5 zbieraków\n • 4 lotnie\n • 4 plecaki\n • 5 smug\n • 14 graffiti\n • 3 tła muzyczne\n • 1 zabawka\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!", + "es-419": "Temporada 8: ahora hasta el 8 de mayo\n\nObtén al instante estos objetos que cuestan más de 3500 monedas V.\n • Atuendo progresivo Parche Negro\n • Atuendo progresivo Híbrido\n • 50 % de bonificación de PE para partidas en la temporada\n • 10 % de bonificación de PE para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 100 recompensas (esto lleva entre 75 y 150 horas de juego).\n • Cascabel y 4 atuendos más\n • 1300 monedas V\n • 7 gestos\n • 6 papeles\n • 2 mascotas\n • 5 herramientas de recolección\n • 4 planeadores\n • 4 mochilas retro\n • 5 estelas\n • 14 aerosoles\n • 3 pistas de música\n • 1 juguete\n • 20 pantallas de carga\n • ¡Y mucho más!\n¿Lo quieres todo más rápido? ¡Puedes usar las monedas V para comprar niveles cuando quieras!", + "tr": "8. Sezon: Şu andan 8 Mayıs’a kadar \n\n3.500 V-Papel’in üzerinde değeri olan bu içerikleri hemen kap.\n • İlerlemeli Karasakal Kıyafeti\n • İlerlemeli Melez Kıyafeti\n • %50 Bonus Sezonluk Maç TP’si\n • Arkadaşların için %10 Bonus Sezonluk Maç TP’si\n • İlave Haftalık Görevler\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 100’den fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • Engerek ve 4 Kıyafet daha\n • 1.300 V-Papel\n • 7 İfade\n • 6 Kaplama\n • 2 Sadık Dost\n • 5 Toplama Aleti\n • 4 Planör\n • 4 Sırt Süsü\n • 5 Dalış İzi\n • 14 Sprey\n • 3 Müzik Parçası\n • 1 Oyuncak\n • 20 Yükleme Ekranı\n • ve çok daha fazlası!\nHepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season8_BattlePass.DA_BR_Season8_BattlePass", + "itemGrants": [] + } + ] + }, + { + "name": "BRSeason9", + "catalogEntries": [ + { + "offerId": "C7190ACA4E5E228A94CA3CB9C3FC7AE9", + "devName": "BR.Season9.BattleBundle.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 4700, + "finalPrice": 2800, + "saleType": "PercentOff", + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "73E6EE6F4526EF97450D1592C3DB0EF5", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle Pass-Paket", + "ru": "Боевой комплект", + "ko": "배틀번들", + "zh-hant": "戰鬥套組", + "pt-br": "Pacotão de Batalha", + "en": "Battle Bundle", + "it": "Bundle battaglia", + "fr": "Pack de combat", + "zh-cn": "战斗套组", + "es": "Lote de batalla", + "ar": "Battle Bundle", + "ja": "バトルバンドル", + "pl": "Zestaw bojowy", + "es-419": "Paquete de batalla", + "tr": "Savaş Paketi" + }, + "shortDescription": { + "de": "Battle Pass + 25 Stufen!", + "ru": "Боевой пропуск + 25 уровней!", + "ko": "배틀패스 + 25티어!", + "zh-hant": "英雄季卡增加25戰階!", + "pt-br": "Passe de Batalha + 25 categorias!", + "en": "Battle Pass + 25 tiers!", + "it": "Pass battaglia + 25 livelli!", + "fr": "Passe de combat + 25 paliers !", + "zh-cn": "英雄季卡增加25战阶!", + "es": "¡Pase de batalla y 25 niveles!", + "ar": "Battle Pass + 25 tiers!", + "ja": "バトルパス+25ティア!", + "pl": "Karnet bojowy + 25 stopni!", + "es-419": "¡Pase de batalla + 25 niveles!", + "tr": "Savaş Bileti + 25 aşama!" + }, + "description": { + "de": "Saison 9 – Ab sofort bis einschließlich 1. August.\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • Rox (aufrüstbares Outfit)\n • Hüter (Outfit)\n • Bunker-Jonesy (Outfit)\n • Hüter (Lackierung)\n • Reife Ripper (Erntewerkzeug)\n • Turbodrall (Hängegleiter)\n • Reifeprüfung (Lackierung)\n • 300 V-Bucks\n • 1 Musikstück\n • +70 % Saison-Match-EP\n • +20 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n • und noch mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • 4 weitere Outfits\n • 1.000 V-Bucks\n • 6 Emotes\n • 4 Lackierungen\n • 2 Hängegleiter\n • 6 Rücken-Accessoires\n • 6 Erntewerkzeuge\n • 4 Kondensstreifen\n • 1 Gefährte\n • 2 Musikstücke\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!", + "ru": "Девятый сезон: до 1 августа\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • Улучшающаяся экипировка Рокси;\n • экипировка Стража;\n • экипировка Затворника Джоунси;\n • обёртка «Страж»;\n • кирка «Самодельный топорик»;\n • дельтаплан «Футуризм»;\n • обёртка «Банановая кожура»;\n • 300 В-баксов;\n • 1 музыкальная композиция;\n • +70% к опыту за матчи сезона;\n • +20% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания\n и многое другое.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • ещё 4 костюма;\n • 1000 В-баксов;\n • 6 эмоций;\n • 4 обёртки;\n • 2 дельтаплана;\n • 6 украшений на спину;\n • 6 инструментов;\n • 4 воздушных следа;\n • 1 питомец;\n • 2 музыкальные композиции\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!", + "ko": "시즌 9: 8월 1일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 록스 진화형 의상\n • 센티널 진화형 의상\n • 벙커 존시 의상\n • 센티널 외관\n • 바나나 껍질 도끼 수확 도구\n • 터보 스핀 글라이더\n • 바나나 껍질 외관\n • 300 V-Bucks\n • 음악 트랙 1개\n • 70% 보너스 시즌 매치 XP\n • 20% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 그 외 더 많은 혜택!\n\n게임을 플레이하고 배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 추가 의상 4개\n • 1,000 V-Bucks\n • 이모트 6개\n • 외관 4개\n • 글라이더 2개\n • 등 장신구 6개\n • 수확 도구 6개\n • 트레일 4개\n • 애완동물 1마리\n • 음악 트랙 2개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!", + "zh-hant": "第九賽季:現在起至8月1日\n\n立即獲得這些價值逾10000V幣的物品。\n • 草莓飛行員可進化服裝\n • 裝甲雄雞服裝\n • 地堡鐘斯服裝\n • 裝甲雄雞皮膚\n • 老練撕裂者採集工具\n • 加速旋轉滑翔傘\n • 老練皮膚\n • 300V幣\n • 1個音軌\n • 70%額外賽季匹配經驗\n • 20%額外賽季好友匹配經驗\n • 額外每週挑戰\n • 以及更多獎勵!\n\n通過遊玩提升英雄季卡戰階,解鎖超過75個獎勵(通常需要75到150個小時的遊玩時間)。\n • 4個額外服裝\n • 1000V幣\n • 6個姿勢\n • 4個皮膚\n • 2個滑翔傘\n • 6個背部裝飾\n • 6個採集工具\n • 4個滑翔軌跡\n • 1個寵物\n • 12個塗鴉\n • 2個音軌\n • 以及更多獎勵!\n希望更快得到所有獎勵嗎?你可以隨時使用V幣購買戰階!", + "pt-br": "Temporada 9: de hoje até 1.º de agosto\n\nReceba instantaneamente estes itens avaliados em mais de 10.000 V-Bucks.\n • Traje Progressivo Rox\n • Traje Progressivo Sentinela\n • Traje Jonesy — Bunker\n • Envelopamento Sentinela\n • Ferramenta de Coleta Mutiladores Maduros\n • Asa-delta Voadora Turbinada\n • Envelopamento Maduro\n • 300 V-Bucks\n • 1 Faixa Musical\n • 70% de Bônus de EXP da Temporada em Partidas\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média de 75 a 150 horas de jogo).\n • Mais 4 Trajes\n • 1.000 V-Bucks\n • 6 Gestos\n • 4 Envelopamentos\n • 2 Asas-deltas\n • 6 Acessórios para as Costas\n • 6 Ferramentas de Coleta\n • 4 Rastros de Fumaça\n • 1 Mascote\n • 2 Faixas Musicais\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!", + "en": "Season 9 Now through August 1.\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Rox Progressive Outfit\n • Sentinel Outfit\n • Bunker Jonesy Outfit\n • Sentinel Wrap\n • Ripe Rippers Harvesting Tool\n • Turbo Spin Glider\n • Ripe Wrap\n • 300 V-Bucks\n • 1 Music Track\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,000 V-Bucks\n • 6 Emotes\n • 4 Wraps\n • 2 Gliders\n • 6 Back Blings\n • 6 Harvesting Tools\n • 4 Contrails\n • 1 Pet\n • 2 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "it": "Stagione 9, da ora fino al 1° agosto\n\nOttieni subito questi oggetti dal valore di oltre 10.000 V-buck!\n • Costume progressivo Rox\n • Costume progressivo Sentinella\n • Costume Jonesy Bunker\n • Copertura Sentinella\n • Strumento raccolta Fauci feroci\n • Deltaplano Rotazione turbo\n • Copertura Maturo\n • 300 V-buck\n • 1 brano musicale\n • Bonus 70% PE partite stagionali\n • Bonus 20% PE amici partite stagionali\n • Sfide settimanali extra\n • e altro ancora!\n\nGioca per aumentare il livello del tuo Pass battaglia, sbloccando più di 75 ricompense (per un totale indicativo di 75-150 ore di gioco).\n • 4 costumi in più\n • 1000 V-Buck\n • 6 emote\n • 4 coperture\n • 2 deltaplani\n • 6 dorsi decorativi\n • 6 strumenti raccolta\n • 4 scie\n • 1 piccolo amico\n • 2 brani musicali\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!", + "fr": "Saison 9 : jusqu'au 1er août\n\nRecevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue évolutive Rox\n • Tenue Sentinelle\n • Tenue Jonesy du bunker\n • Revêtement Sentinelle\n • Outil de collecte Haches mûres\n • Planeur Aile turbo\n • Revêtement Mûr\n • 300 V-bucks\n • 1 piste musicale\n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 20% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu).\n • 4 autres tenues\n • 1000 V-bucks\n • 6 emotes\n • 4 revêtements\n • 2 planeurs\n • 6 accessoires de dos\n • 6 outils de collecte\n • 4 traînées de condensation\n • 1 compagnon\n • 2 pistes musicales\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !", + "zh-cn": "第九赛季:现在起至8月1日\n\n立即获得这些价值逾10000V币的物品。\n • 草莓飞行员可进化服装\n • 装甲雄鸡服装\n • 地堡琼斯服装\n • 装甲雄鸡皮肤\n • 蕉战斧采集工具\n • 动力尾旋滑翔伞\n • 香蕉皮皮肤\n • 300V币\n • 1个音轨\n • 70%额外赛季匹配经验\n • 20%额外赛季好友匹配经验\n • 额外每周挑战\n • 以及更多奖励!\n\n通过游玩提升英雄季卡战阶,解锁超过75个奖励(通常需要75到150个小时的游玩时间)。\n • 4个额外服装\n • 1000V币\n • 6个姿势\n • 4个皮肤\n • 2个滑翔伞\n • 6个背部装饰\n • 6个采集工具\n • 4个滑翔轨迹\n • 1个宠物\n • 12个涂鸦\n • 2个音轨\n • 以及更多奖励!\n希望更快得到所有奖励吗?你可以随时使用V币购买战阶!", + "es": "Temporada 9: desde ahora hasta el 1 de agosto.\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje progresivo de Rox\n • Traje de Centinela\n • Traje de Jonesy del búnker\n • Envoltorio Centinela\n • Herramienta de recolección Machete maduro\n • Ala delta Turbogiro\n • Envoltorio Maduro\n • 300 paVos\n • 1 tema musical\n • Bonificación del 70 % de PE por partida de temporada\n • Bonificación del 20 % de PE de partida amistosa de temporada\n • Desafíos semanales adicionales\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 75 recompensas (suele llevar entre 75 y 150 horas de juego).\n • 4 trajes más\n • 1000 paVos\n • 6 gestos\n • 4 envoltorios\n • 2 alas delta\n • 6 accesorios mochileros\n • 6 herramientas de recolección\n • 4 estelas\n • 1 mascota\n • 2 temas musicales\n • ¡Y muchísimo más!\n¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!", + "ar": "Season 9 Now through August 1.\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Rox Progressive Outfit\n • Sentinel Outfit\n • Bunker Jonesy Outfit\n • Sentinel Wrap\n • Ripe Rippers Harvesting Tool\n • Turbo Spin Glider\n • Ripe Wrap\n • 300 V-Bucks\n • 1 Music Track\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,000 V-Bucks\n • 6 Emotes\n • 4 Wraps\n • 2 Gliders\n • 6 Back Blings\n • 6 Harvesting Tools\n • 4 Contrails\n • 1 Pet\n • 2 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "ja": "シーズン9: 8月1日まで\n\n10,000 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\n• ロックスプログレッシブコスチューム\n • センチネルコスチューム\n • バンカージョンジーコスチューム\n • センチネルラップ\n • 「ライプリッパーズ」収集ツール\n • 「ターボスピン」グライダー\n • 「バナナ」 ラップ\n • 300 V-Bucks\n • ミュージックトラックx1\n • シーズンマッチXPの70%ボーナス\n • シーズンフレンドマッチXPの20%ボーナス\n • 追加のウィークリーチャレンジ\n • 他にも色々!\n\nプレイしてバトルパスのレベルを上げると、75以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n • 追加のコスチュームx4\n • 1,000 V-Bucks\n • エモートx6\n • ラップx4\n • グライダーx2\n • バックアクセサリーx6\n • 収集ツールx6\n • コントレイルx4\n • ペットx1\n • ミュージックトラックx2\n • 他にも色々!\nもっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!", + "pl": "Sezon 9: od teraz do 1 sierpnia.\n\nZgarnij od razu poniższe przedmioty o wartości ponad 10 000 V-dolców:\n • Strój progresywny: Roxi\n • Strój progresywny: K0gut\n • Strój: Jonesy z Bunkra\n • Strój: K0gut\n • Malowanie: K0gut\n • Zbierak: Dojrzały Rozpruwacz\n • Lotnia: Turboskrętka\n • Malowanie: Dojrzałe\n • 300 V-dolców • 1 tło muzyczne\n • Sezonowa premia +70% PD za grę\n • Sezonowa premia +20% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodnia\n • I nie tylko!\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 75 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • 4 kolejne stroje\n • 1000 V-dolców\n • 6 emotek\n • 4 malowania\n • 2 lotnie\n • 6 plecaków\n • 6 zbieraków\n • 4 smugi\n • 1 pupil\n • 2 tła muzyczne\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!", + "es-419": "Temporada 9: ahora y hasta el 1 de agosto.\n\nObtén al instante estos objetos que cuestan más de 10 000 monedas V..\n • Atuendo progresivo Rox\n • Atuendo Centinela\n • Atuendo Jonesy del búnker\n • Papel Centinela\n • Herramienta de recolección Destripamaduros\n • PlaneadorVuelta turbo\n • Papel Maduro\n • 300 monedas V\n • 1 pista de música\n • 70 % de bonificación de PE para partidas de la temporada\n • 20 % de bonificación de PE para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • ¡Y mucho más!\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 100 horas de juego).\n • 4 atuendos más\n • 1000 monedas V\n • 6 gestos\n • 4 papeles\n • 2 planeadores\n • 6 mochilas retro\n • 6 herramientas de recolección\n • 4 estelas\n • 1 mascota\n • 2 pistas de música\n • ¡Y muchísimo más!\n¿Quieres todo más rápido? ¡Usa las monedas V para comprar niveles cuando quieras!", + "tr": "9. Sezon: Şu andan 1 Ağustos’a kadar\n\n10.000 V-Papel’in üzerinde değeri olan bu içerikleri hemen kap.\n • İlerlemeli Pembeli Savaşçı Kıyafeti\n • Savaş Kuşu Kıyafeti\n • Sığınak Kaçkını Jonesy Kıyafeti\n • Savaş Kuşu Kaplaması\n • Kabuktan Kazma Toplama Aleti\n • Pembe Kanat Planörü\n • Olgunlaşmış Kaplaması\n • 300 V-Papel\n • 1 Müzik Parçası\n • %70 Bonus Sezonluk Maç TP’si\n • Arkadaşların için %20 Bonus Sezonluk Maç TP’si\n • İlave Haftalık Görevler\n • ve çok daha fazlası!\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 75’ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • 4 Kıyafet daha\n • 1.000 V-Papel\n • 6 İfade\n • 4 Kaplama\n • 2 Planör\n • 6 Sırt Süsü\n • 6 Toplama Aleti\n • 4 Dalış İzi\n • 1 Sadık Dost\n • 2 Müzik Parçası\n • ve çok daha fazlası!\nHepsini daha hızlı almak mı istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season9_BattlePassWithLevels.DA_BR_Season9_BattlePassWithLevels", + "itemGrants": [] + }, + { + "offerId": "73E6EE6F4526EF97450D1592C3DB0EF5", + "devName": "BR.Season9.BattlePass.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 950, + "finalPrice": 950, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 950 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "73E6EE6F4526EF97450D1592C3DB0EF5", + "minQuantity": 1 + } + ], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 1, + "title": { + "de": "Battle Pass", + "ru": "Боевой пропуск", + "ko": "배틀패스", + "zh-hant": "英雄季卡", + "pt-br": "Passe de Batalha", + "en": "Battle Pass", + "it": "Pass battaglia", + "fr": "Passe de combat", + "zh-cn": "英雄季卡", + "es": "Pase de batalla", + "ar": "Battle Pass", + "ja": "バトルパス", + "pl": "Karnet bojowy", + "es-419": "Pase de batalla", + "tr": "Savaş Bileti" + }, + "shortDescription": { + "de": "Saison 9", + "ru": "Девятый сезон", + "ko": "시즌 9", + "zh-hant": "第九賽季", + "pt-br": "Temporada 9", + "en": "Season 9", + "it": "Stagione 9", + "fr": "Saison 9", + "zh-cn": "第九赛季", + "es": "Temporada 9", + "ar": "Season 9", + "ja": "シーズン9", + "pl": "Sezon 9", + "es-419": "Temporada 9", + "tr": "9. Sezon" + }, + "description": { + "de": "Saison 9 – Ab sofort bis einschließlich 1. August.\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • Rox (aufrüstbares Outfit)\n • Hüter (Outfit)\n • +50 % Saison-Match-EP\n • +60 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • Bunker-Jonesy und 4 weitere Outfits\n • 1.300 V-Bucks\n • 7 Emotes\n • 6 Lackierungen\n • 7 Erntewerkzeuge\n • 1 Gefährte\n • 4 Hängegleiter\n • 6 Rücken-Accessoires\n • 5 Kondensstreifen\n • 13 Spraymotive\n • 3 Musikstücke\n • 1 Spielzeug\n • 20 Ladebildschirme\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!", + "ru": "Девятый сезон: до 1 августа\n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • Улучшающаяся экипировка Рокси;\n • экипировка Стража;\n • +50% к опыту за матчи сезона;\n • +60% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • экипировка Затворника Джоунси и ещё 4 костюма;\n • 1300 В-баксов;\n • 7 эмоций;\n • 6 обёрток;\n • 7 инструментов;\n • 1 питомец;\n • 4 дельтаплана;\n • 6 украшений на спину;\n • 5 воздушных следов;\n • 13 граффити;\n • 3 музыкальные композиции;\n • 1 игрушка;\n • 20 экранов загрузки\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!", + "ko": "시즌 9: 8월 1일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 록스 진화형 의상\n • 센티널 진화형 의상\n • 50% 보너스 시즌 매치 XP\n • 60% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n\n게임을 플레이하고 배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 벙커 존시 외 의상 4개\n • 1,300 V-Bucks\n • 이모트 7개\n • 외관 6개\n • 수확 도구 7개\n • 애완동물 1마리\n • 글라이더 4개\n • 등 장신구 6개\n • 트레일 5개\n • 스프레이 13개\n • 음악 트랙 3개\n • 장난감 1개\n • 로딩 화면 20개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!", + "zh-hant": "第九賽季:現在起至8月1日\n\n立即獲得這些價值逾3500V幣的物品。\n • 草莓飛行員可進化服裝\n • 裝甲雄雞服裝\n • 50%額外賽季匹配經驗\n • 60%額外賽季好友匹配經驗\n • 額外每週挑戰\n\n通過遊玩提升英雄季卡戰階,解鎖百餘獎勵(通常需要75到150個小時的遊玩時間)。\n • 地堡鐘斯和4個額外服裝\n • 1300V幣\n • 7個姿勢\n • 6個皮膚\n • 7個採集工具\n • 1個寵物\n • 4個滑翔傘\n • 6個背部裝飾\n • 5個滑翔軌跡\n • 13個塗鴉\n • 3個音軌\n • 1個玩具\n • 20張載入介面\n • 以及更多獎勵!\n希望更快得到所有獎勵嗎?你可以隨時使用V幣購買戰階!", + "pt-br": "Temporada 9: de hoje até 1.º de agosto\n\nReceba instantaneamente estes itens avaliados em mais de 3.500 V-Bucks.\n • Traje Progressivo Rox\n • Traje Progressivo Sentinela\n • 50% de Bônus de EXP da Temporada em Partidas\n • 60% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média de 75 a 150 horas de jogo).\n • Jonesy — Bunker e mais 4 Trajes\n • 1.300 V-Bucks\n • 7 Gestos\n • 6 Envelopamentos\n • 7 Ferramentas de Coleta\n • 1 Mascote\n • 4 Asas-deltas\n • 6 Acessórios para as Costas\n • 5 Rastros de Fumaça\n • 13 Sprays\n • 3 Faixas Musicais\n • 1 Brinquedo\n • 20 Telas de Carregamento\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!", + "en": "Season 9 Now through August 1.\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Rox Progressive Outfit\n • Sentinel Outfit\n • 50% Bonus Season Match XP\n • 60% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Bunker Jonesy and 4 more Outfits\n • 1,300 V-Bucks\n • 7 Emotes\n • 6 Wraps\n • 7 Harvesting Tools\n • 1 Pet\n • 4 Gliders\n • 6 Back Blings\n • 5 Contrails\n • 13 Sprays\n • 3 Music Tracks\n • 1 Toy\n • 20 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "it": "Stagione 9, da ora fino a 1° agosto\n\nOttieni subito questi oggetti dal valore di oltre 3500 V-buck!\n • Costume progressivo Rox\n • Costume progressivo Sentinella\n • Bonus del 50% dei PE partite stagionali\n • Bonus del 60% dei PE partite amico stagionali\n • Sfide settimanali extra\n\nGioca per aumentare il livello del tuo Pass battaglia, sbloccando più di 100 ricompense (per un totale indicativo di 75-150 ore di gioco).\n • Jonesy Bunker e altri 4 costumi\n • 1300 V-buck\n • 7 emote\n • 6 coperture\n • 7 strumenti raccolta\n • 1 piccolo amico\n • 4 deltaplani\n • 6 dorsi decorativi\n • 5 scie\n • 13 spray\n • 3 brani musicali\n • 1 giocattolo\n • 20 schermate di caricamento\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!", + "fr": "Saison 9 : jusqu'au 1er août\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3500 V-bucks.\n • Tenue évolutive Rox\n • Tenue Sentinelle\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 10% pour des amis\n • Des défis hebdomadaires supplémentaires\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu).\n • Jonesy du bunker plus 4 autres tenues\n • 1300 V-bucks\n • 7 emotes\n • 6 revêtements\n • 7 outils de collecte\n • 1 compagnon\n • 4 planeurs\n • 6 accessoires de dos\n • 5 traînées de condensation\n • 13 aérosols\n • 3 pistes musicales\n • 1 jouet\n • 20 écrans de chargement\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !", + "zh-cn": "第九赛季:现在起至8月1日\n\n立即获得这些价值逾3500V币的物品。\n • 草莓飞行员可进化服装\n • 装甲雄鸡服装\n • 50%额外赛季匹配经验\n • 60%额外赛季好友匹配经验\n • 额外每周挑战\n\n通过游玩提升英雄季卡战阶,解锁百余奖励(通常需要75到150个小时的游玩时间)。\n • 地堡琼斯和4个额外服装\n • 1300V币\n • 7个姿势\n • 6个皮肤\n • 7个采集工具\n • 1个宠物\n • 4个滑翔伞\n • 6个背部装饰\n • 5个滑翔轨迹\n • 13个涂鸦\n • 3个音轨\n • 1个玩具\n • 20张载入界面\n • 以及更多奖励!\n希望更快得到所有奖励吗?你可以随时使用V币购买战阶!", + "es": "Temporada 9: desde ahora hasta el 1 de agosto.\n\nConsigue instantáneamente estos objetos valorados en más de 3500 paVos.\n • Traje progresivo de Rox\n • Traje de Centinela\n • Bonificación del 50 % de PE por partida de temporada\n • Bonificación del 60 % de PE de partida amistosa de temporada\n • Desafíos semanales adicionales\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 100 recompensas (suele llevar entre 75 y 150 horas de juego).\n • Jonesy del búnker y 4 trajes más\n • 1300 paVos\n • 7 gestos\n • 6 envoltorios\n • 7 herramientas de recolección\n • 1 mascota\n • 4 alas delta\n • 6 accesorios mochileros\n • 5 estelas\n • 13 grafitis\n • 3 temas musicales\n • 1 juguete\n • 20 pantallas de carga\n • ¡Y muchísimo más!\n¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!", + "ar": "Season 9 Now through August 1.\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Rox Progressive Outfit\n • Sentinel Outfit\n • 50% Bonus Season Match XP\n • 60% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Bunker Jonesy and 4 more Outfits\n • 1,300 V-Bucks\n • 7 Emotes\n • 6 Wraps\n • 7 Harvesting Tools\n • 1 Pet\n • 4 Gliders\n • 6 Back Blings\n • 5 Contrails\n • 13 Sprays\n • 3 Music Tracks\n • 1 Toy\n • 20 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "ja": "シーズン9: 8月1日まで\n\n3,500 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\n• ロックスプログレッシブコスチューム\n • センチネルコスチューム\n • シーズンマッチXPの50%ボーナス\n • シーズンフレンドマッチXPの60%ボーナス\n • 追加のウィークリーチャレンジ\n\nプレイしてバトルパスのレベルを上げると、100以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n • バンカージョンジーおよびその他コスチュームx4\n • 1,300 V-Bucks\n • エモートx7\n • ラップx6\n • 収集ツールx7\n • ペットx1\n • グライダーx4\n • バックアクセサリーx6\n • コントレイルx5\n • スプレーx13\n • ミュージックトラックx3\n • おもちゃx1\n • ロード画面x20\n •他にも色々!\nもっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!", + "pl": "Sezon 9: od teraz do 1 sierpnia.\n\nZgarnij od razu poniższe przedmioty o wartości ponad 3500 V-dolców:\n • Strój progresywny: Roxi\n • Strój progresywny: K0gut\n • Sezonowa premia +50% PD za grę\n • Sezonowa premia +60% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodnia\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 100 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • Jonesy z Bunkra i 4 inne stroje\n • 1300 V-dolców\n • 7 emotek\n • 6 malowań\n • 1 pupil\n • 7 zbieraków\n • 4 lotnie\n • 6 plecaków\n • 5 smug\n • 13 graffiti\n • 3 tła muzyczne\n • 1 zabawka\n • 20 ekranów ładowania\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!", + "es-419": "Temporada 9: ahora y hasta el 1 de agosto.\n\nObtén al instante estos objetos que cuestan más de 3500 monedas V.\n • Atuendo progresivo Rox\n • Atuendo Centinela\n • 50 % de bonificación de PE para partidas de la temporada\n • 60 % de bonificación de PE para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 100 recompensas (esto lleva entre 75 y 100 horas de juego).\n • Atuendo Jonesy del búnker y 4 atuendos más\n • 1300 monedas V\n • 7 gestos\n • 6 papeles\n • 7 herramientas de recolección\n • 1 mascota\n • 4 planeadores\n • 6 mochilas retro\n • 5 estelas\n • 13 aerosoles\n • 3 pistas de música\n • 1 juguete\n • 20 pantallas de carga\n • ¡Y muchísimo más!\n¿Quieres todo más rápido? ¡Usa las monedas V para comprar niveles cuando quieras!", + "tr": "9. Sezon: Şu andan 1 Ağustos’a kadar \n\n3.500 V-Papel’in üzerinde değeri olan bu içerikleri hemen kap.\n • İlerlemeli Pembeli Savaşçı Kıyafeti\n • Savaş Kuşu Kıyafeti\n • %50 Bonus Sezonluk Maç TP’si\n • Arkadaşların için %60 Bonus Sezonluk Maç TP’si\n • İlave Haftalık Görevler\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 100’den fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • Sığınak Kaçkını Jonesy ve 4 Kıyafet daha\n • 1.300 V-Papel\n • 7 İfade\n • 6 Kaplama\n • 7 Toplama Aleti\n • 1 Sadık Dost\n • 4 Planör\n • 6 Sırt Süsü\n • 5 Dalış İzi\n • 13 Sprey\n • 3 Müzik Parçası\n • 1 Oyuncak\n • 20 Yükleme Ekranı\n • ve çok daha fazlası!\nHepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season9_BattlePass.DA_BR_Season9_BattlePass", + "itemGrants": [] + }, + { + "offerId": "33E185A84ED7B64F2856E69AADFD092C", + "devName": "BR.Season9.SingleTier.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 150, + "finalPrice": 150, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 150 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [], + "metaInfo": [], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle Pass-Stufe", + "ru": "Уровень боевого пропуска", + "ko": "배틀패스 티어", + "zh-hant": "英雄季卡戰階", + "pt-br": "Categoria de Passe de Batalha", + "en": "Battle Pass Tier", + "it": "Livello Pass battaglia", + "fr": "Palier du Passe de combat", + "zh-cn": "英雄季卡战阶", + "es": "Nivel del pase de batalla", + "ar": "Battle Pass Tier", + "ja": "バトルパスティア", + "pl": "Stopień karnetu bojowego", + "es-419": "Nivel de pase de batalla", + "tr": "Savaş Bileti Aşaması" + }, + "shortDescription": "", + "description": { + "de": "Hol dir jetzt tolle Belohnungen!", + "ru": "Получите отличные награды!", + "ko": "지금 푸짐한 보상을 받으세요!", + "zh-hant": "現在獲得豐厚獎勵!", + "pt-br": "Ganhe recompensas ótimas agora!", + "en": "Get great rewards now!", + "it": "Ricevi subito magnifiche ricompense!", + "fr": "Obtenez de grandes récompenses !", + "zh-cn": "现在获得丰厚奖励!", + "es": "¡Consigue recompensas increíbles!", + "ar": "Get great rewards now!", + "ja": "ステキな報酬を今すぐゲット!", + "pl": "Zdobądź super nagrody już teraz!", + "es-419": "¡Consigue grandes recompensas ahora!", + "tr": "Harika ödülleri kap!" + }, + "displayAssetPath": "", + "itemGrants": [] + } + ] + }, + { + "name": "BRSeason10", + "catalogEntries": [ + { + "offerId": "2E43CCD24C3BE8F5ABBDF28E233B9350", + "devName": "BR.Season10.BattlePass.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 950, + "dynamicRegularPrice": -1, + "finalPrice": 950, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 950 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "refundable": false, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "2E43CCD24C3BE8F5ABBDF28E233B9350", + "minQuantity": 1 + } + ], + "metaInfo": [ + { + "key": "Preroll", + "value": "False" + } + ], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 1, + "title": { + "de": "Battle Pass", + "ru": "Боевой пропуск", + "ko": "배틀패스", + "zh-hant": "英雄季卡", + "pt-br": "Passe de Batalha", + "en": "Battle Pass", + "it": "Pass battaglia", + "fr": "Passe de combat", + "zh-cn": "英雄季卡", + "es": "Pase de batalla", + "ar": "Battle Pass", + "ja": "バトルパス", + "pl": "Karnet bojowy", + "es-419": "Pase de batalla", + "tr": "Savaş Bileti" + }, + "shortDescription": { + "de": "Saison X", + "ru": "Десятый сезон", + "ko": "시즌 X", + "zh-hant": "第十賽季", + "pt-br": "Temporada X", + "en": "Season X", + "it": "Stagione X", + "fr": "Saison X", + "zh-cn": "第X赛季", + "es": "Temporada X", + "ar": "Season X", + "ja": "シーズンX", + "pl": "Sezon X", + "es-419": "Temporada X", + "tr": "X. Sezon" + }, + "description": { + "de": "Saison X – Ab sofort bis einschließlich 6. Oktober.\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • X-Meister (Outfit)\n • Catalyst (Outfit)\n • +50 % Saison-Match-EP\n • +60 % Saison-Match-EP für Freunde\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • Ultimaritter und 4 weitere Outfits\n • 1.300 V-Bucks\n • 7 Emotes\n • 6 Lackierungen\n • 6 Erntewerkzeuge\n • 1 Gefährte\n • 7 Hängegleiter\n • 7 Rücken-Accessoires\n • 5 Kondensstreifen\n • 17 Spraymotive\n • 3 Musikstücke\n • 1 Spielzeug\n • 27 Ladebildschirme\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!", + "ru": "Десятый сезон: до 6 октября\n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • Экипировка Повелителя шипов;\n • экипировка Тануки;\n • +50% к опыту за матчи сезона;\n • +60% к опыту друзей за матчи сезона.\n \nИграйте, повышайте уровень боевого пропуска — вас ждут более 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • Экипировка Несокрушимого рыцаря и ещё 4 костюма;\n • 1300 В-баксов;\n • 7 эмоций;\n • 6 обёрток;\n • 6 инструментов;\n • 1 питомец;\n • 7 дельтапланов;\n • 7 украшений на спину;\n • 5 воздушных следов;\n • 17 граффити;\n • 3 музыкальные композиции;\n • 1 игрушка;\n • 27 экранов загрузки\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!", + "ko": "시즌 X: 10월 6일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 엑스로드 진화형 의상\n • 카탈리스트 진화형 의상\n • 50% 보너스 시즌 매치 XP\n • 60% 보너스 시즌 친구 매치 XP\n\n게임을 플레이하고 배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 최후의 기사 외 의상 4개\n • 1,300 V-Bucks\n • 이모트 7개\n • 외관 6개\n • 수확 도구 6개\n • 애완동물 1마리\n • 글라이더 7개\n • 등 장신구 6개\n • 트레일 5개\n • 스프레이 17개\n • 음악 트랙 3개\n • 장난감 1개\n • 로딩 화면 27개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!", + "zh-hant": "第十賽季:從現在開始至10月6日。\n\n立即獲得以下價值逾3500V幣的物品。\n • 廢土領主-X服裝\n • 靈狸服裝\n • 50%額外賽季匹配經驗\n • 60%額外賽季好友匹配經驗\n\n通過遊玩提升英雄季卡戰階,解鎖至少75個獎勵(通常需要75到150個小時的遊玩時間)。\n • 終極騎士和4個額外服裝\n • 1300V幣\n • 7個姿勢\n • 6個皮膚\n • 6個採集工具\n • 一個寵物\n • 7個滑翔傘\n • 7個背部裝飾\n • 5滑翔軌跡\n • 17個塗鴉\n • 3個音軌\n • 一個玩具\n • 27個載入介面\n • 以及更多獎勵!\nWant it all faster? You can useV幣 to buy tiers any time!", + "pt-br": "Temporada X: de hoje até 6 de outubro.\n\nReceba instantaneamente estes itens avaliados em mais de 3.500 V-Bucks.\n • Traje Lorde X\n • Traje Transcendental\n • 50% de Bônus de EXP da Temporada em Partidas\n • 60% de Bônus de EXP da Temporada em Partidas com Amigos\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média de 75 a 150 horas de jogo).\n • Cavaleiro Supremo e mais 4 Trajes\n • 1.300 V-Bucks\n • 7 Gestos\n • 6 Envelopamentos\n • 6 Ferramentas de Coleta\n • 1 Mascote\n • 7 Asas-deltas\n • 7 Acessórios para as Costas\n • 5 Rastros de Fumaça\n • 17 Sprays\n • 3 Faixas Musicais\n • 1 Brinquedo\n • 27 Telas de Carregamento\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!", + "en": "Season X Now through October 6.\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • X-Lord Outfit\n • Catalyst Outfit\n • 50% Bonus Season Match XP\n • 60% Bonus Season Friend Match XP\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Ultima Knight and 4 more Outfits\n • 1,300 V-Bucks\n • 7 Emotes\n • 6 Wraps\n • 6 Harvesting Tools\n • 1 Pet\n • 7 Gliders\n • 7 Back Blings\n • 5 Contrails\n • 17 Sprays\n • 3 Music Tracks\n • 1 Toy\n • 27 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "it": "Stagione X, da ora fino al 6 ottobre\n\nOttieni subito questi oggetti dal valore di oltre 3.500 V-buck!\n • Costume Lord-X\n • Costume Catalizzatore\n • Bonus 50% PE partite stagionali\n • Bonus 60% PE amici partite stagionali\n\nGioca per aumentare il livello del tuo Pass battaglia, sbloccando più di 100 ricompense (per un totale indicativo di 75-150 ore di gioco).\n • Cavaliere Ultima e 4 costumi in più\n • 1.300 V-Buck\n • 7 emote\n • 6 coperture\n • 6 strumenti raccolta\n • 1 piccolo amico\n • 7 deltaplani\n • 7 dorsi decorativi\n • 5 scie\n • 17 spray\n • 3 brani musicali\n • 1 giocattolo\n • 27 schermate di caricamento\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!", + "fr": "Saison X : jusqu'au 6 octobre.\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3500 V-bucks.\n • Tenue Maître occulte\n • Tenue Déclic\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 60% pour des amis\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu).\n • Chevalier ultime et 4 autres tenues\n • 1300 V-bucks\n • 7 emotes\n • 6 revêtements\n • 6 outils de collecte\n • 1 compagnon\n • 7 planeurs\n • 7 accessoires de dos\n • 5 traînées de condensation\n • 17 aérosols\n • 3 pistes musicales\n • 1 jouet\n • 27 écrans de chargement\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !", + "zh-cn": "第X赛季:从现在开始至10月6日。\n\n立即获得以下价值逾3500V币的物品。\n • 废土领主-X服装\n • 灵狸服装\n • 50%额外赛季匹配经验\n • 60%额外赛季好友匹配经验\n\n通过游玩提升英雄季卡战阶,解锁至少75个奖励(通常需要75到150个小时的游玩时间)。\n • 终极骑士和4个额外服装\n • 1300V币\n • 7个姿势\n • 6个皮肤\n • 6个采集工具\n • 一个宠物\n • 7个滑翔伞\n • 7个背部装饰\n • 5滑翔轨迹\n • 17个涂鸦\n • 3个音轨\n • 一个玩具\n • 27个载入界面\n • 以及更多奖励!\n希望更快吗?你可以随时使用V币购买战阶!", + "es": "Temporada X: desde ahora hasta el 6 de octubre.\n\nConsigue instantáneamente estos objetos valorados en más de 3500 paVos.\n • Traje de Señor X\n • Traje de Catalizadora\n • Bonificación del 50 % de PE por partida de temporada\n • Bonificación del 60 % de PE de partida amistosa de temporada\n\\Juega para subir de nivel tu pase de batalla y desbloquea más de 100 recompensas (suele llevar entre 75 y 150 horas de juego).\n • Caballero Ultima y 4 trajes más\n • 1300 paVos\n • 7 gestos\n • 6 envoltorios\n • 6 herramientas de recolección\n • 1 mascota\n • 7 alas delta\n • 7 accesorios mochileros\n • 5 estelas\n • 17 grafitis\n • 3 temas musicales\n • 1 juguete\n • 27 pantallas de carga\n • ¡Y muchísimo más!\n¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!", + "ar": "Season X Now through October 6.\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • X-Lord Outfit\n • Catalyst Outfit\n • 50% Bonus Season Match XP\n • 60% Bonus Season Friend Match XP\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Ultima Knight and 4 more Outfits\n • 1,300 V-Bucks\n • 7 Emotes\n • 6 Wraps\n • 6 Harvesting Tools\n • 1 Pet\n • 7 Gliders\n • 7 Back Blings\n • 5 Contrails\n • 17 Sprays\n • 3 Music Tracks\n • 1 Toy\n • 27 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "ja": "シーズンX: 10月6日まで。\r\n\r\n3,500 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\r\n • コスチューム「Xロード」\r\n • コスチューム「カタリスト」\r\n • シーズンマッチXPの50%ボーナス\r\n • シーズンフレンドマッチXPの60%ボーナス\r\n\r\nプレイしてバトルパスのレベルを上げると、100以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\r\n • 「アルティマナイト」及びさらなるコスチュームx4\r\n • 1,300 V-Bucks\r\n • エモートx7\r\n • ラップx6\r\n • 収集ツールx6\r\n • ペットx1\r\n • グライダーx7\r\n • バックアクセサリーx7\r\n • コントレイルx5\r\n • スプレーx17\r\n • ミュージックトラックx3\r\n • おもちゃx1\r\n • ロード画面x27\r\n • 他にも盛りだくさん!\r\nもっと早く報酬を全部集めたいという方は、V-Bucksでいつでもティアを購入できます!", + "pl": "Season X: od teraz do 6 października.\n\nZgarnij od razu poniższe przedmioty o wartości ponad 3500 V-dolców.\n • Strój X-Lord\n • Strój Katalizator\n • Sezonowa premia 50% PD za grę\n • Sezonowa premia 60% PD za grę ze znajomym\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 100 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • Rycerz Ultima i 4 inne stroje\n • 1300 V-dolców\n • 7 emotek\n • 6 malowań\n • 6 zbieraków\n • 1 pupil\n • 7 lotni\n • 7 plecaków\n • 5 smug\n • 17 graffiti\n • 3 tła muzyczne\n • 1 zabawka\n • 27 ekranów wczytywania\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!", + "es-419": "Desde la temporada X hasta el 6 de octubre.\n\\Obtén al instante estos objetos que cuestan más de 3500 monedas V.\n • Atuendo Señor X\n • Atuendo Catalizadora\n • 50 % de bonificación de PE para partidas de la temporada\n • 60 % de bonificación de PE para partidas con amigos en la temporada\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 100 recompensas (esto lleva entre 75 y 150 horas de juego).\n • Caballero Ultima y 4 atuendos más\n • 1300 monedas V\n • 7 gestos\n • 6 papeles\n • 6 herramientas de recolección\n • 1 mascota\n • 7 planeadores\n • 7 mochilas retro\n • 5 estelas\n • 17 aerosoles\n • 3 pistas de música\n • 1 juguete\n • 27 pantallas de carga\n • ¡Y mucho más!\n¿Lo quieres todo más rápido? ¡Puedes usar las monedas V para comprar niveles cuando quieras!", + "tr": "X. Sezon: Şu andan 6 Ekim'e kadar.\n\n3.500 V-Papel'in üzerinde değeri olan bu içerikleri hemen kap.\n • X Lordu Kıyafeti\n • Düz Kontak Kıyafeti\n • %50 Bonus Sezonluk Maç TP'si\n • Arkadaşların için %60 Bonus Sezonluk Maç TP'si\n\nBattle Royale oynayarak Savaş Bileti'nin aşamasını yükselt ve 100'den fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • Kızıl Şövalye ve 4 Kıyafet daha\n • 1.300 V-Papel\n • 7 İfade\n • 6 Kaplama\n • 6 Toplama Aleti\n • 1 Sadık Dost\n • 7 Planör\n • 7 Sırt Süsü\n • 5 Dalış İzi\n • 17 Sprey\n • 3 Müzik Parçası\n • 1 Oyuncak\n • 27 Yükleme Ekranı\n • ve çok daha fazlası!\nHepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season10_BattlePass.DA_BR_Season10_BattlePass", + "itemGrants": [] + }, + { + "offerId": "259920BC42F0AAC7C8672D856C9B622C", + "devName": "BR.Season10.BattleBundle.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 4700, + "dynamicRegularPrice": -1, + "finalPrice": 2800, + "saleType": "PercentOff", + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 2800 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "refundable": false, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [ + { + "requirementType": "DenyOnFulfillment", + "requiredId": "2E43CCD24C3BE8F5ABBDF28E233B9350", + "minQuantity": 1 + } + ], + "metaInfo": [ + { + "key": "Preroll", + "value": "False" + } + ], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle Pass-Paket", + "ru": "Боевой комплект", + "ko": "배틀번들", + "zh-hant": "戰鬥套組", + "pt-br": "Pacotão de Batalha", + "en": "Battle Bundle", + "it": "Bundle battaglia", + "fr": "Pack de combat", + "zh-cn": "战斗套组", + "es": "Lote de batalla", + "ar": "Battle Bundle", + "ja": "バトルバンドル", + "pl": "Zestaw bojowy", + "es-419": "Paquete de batalla", + "tr": "Savaş Paketi" + }, + "shortDescription": { + "de": "Battle Pass + 25 Stufen!", + "ru": "Боевой пропуск + 25 уровней!", + "ko": "배틀패스 + 25티어!", + "zh-hant": "英雄季卡增加25戰階!", + "pt-br": "Passe de Batalha + 25 categorias!", + "en": "Battle Pass + 25 tiers!", + "it": "Pass battaglia + 25 livelli!", + "fr": "Passe de combat + 25 paliers !", + "zh-cn": "英雄季卡增加25战阶!", + "es": "¡Pase de batalla y 25 niveles!", + "ar": "Battle Pass + 25 tiers!", + "ja": "バトルパス+25ティア!", + "pl": "Karnet bojowy + 25 stopni!", + "es-419": "¡Pase de batalla + 25 niveles!", + "tr": "Savaş Bileti + 25 aşama!" + }, + "description": { + "de": "Saison X – Ab sofort bis einschließlich 6. Oktober.\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • X-Meister (Outfit)\n • Catalyst (Outfit)\n • Tilted-Teknique (Outfit)\n • Rostkiste (Hängegleiter)\n • Emote-Tarnung (Lackierung)\n • Rissblitze (Kondensstreifen)\n • 300 V-Bucks\n • The Final Showdown (Musikstück)\n • +70 % Saison-Match-EP\n • +80 % Saison-Match-EP für Freunde\n • und noch mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • 4 weitere Outfits\n • 1.000 V-Bucks\n • 6 Emotes\n • 4 Lackierungen\n • 5 Erntewerkzeuge\n • 1 Gefährte\n • 6 Hängegleiter\n • 7 Rücken-Accessoires\n • 3 Kondensstreifen\n • 13 Spraymotive\n • 2 Musikstücke\n • 1 Spielzeug\n • 23 Ladebildschirme\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!", + "ru": "Десятый сезон: до 6 октября\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • Экипировка Повелителя шипов;\n • экипировка Тануки;\n • экипировка Мисс Будущее;\n • дельтаплан «Драндулет»;\n • обёртка «Танцы»;\n • воздушный след «Сияние разлома»;\n • 300 В-баксов;\n • музыкальная композиция «Решающая битва»;\n • +70% к опыту за матчи сезона;\n • +80% к опыту друзей за матчи сезона;\n • и многое другое.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • Ещё 4 костюма;\n • 1000 В-баксов;\n • 6 эмоций;\n • 4 обёртки;\n • 5 инструментов;\n • 1 питомец;\n • 6 дельтапланов;\n • 7 украшений на спину;\n • 3 воздушных следа;\n • 13 граффити;\n • 2 музыкальные композиции;\n • 1 игрушка;\n • 23 экрана загрузки\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!", + "ko": "시즌 X: 10월 6일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 엑스로드 의상\n • 카탈리스트 의상\n • 틸티드 테크니크 아티스트 의상\n • 고철통 글라이더\n • 이모트 위장 패턴 외관\n • 균열 번갯불 스카이다이빙 트레일\n • 300 V-Bucks\n • 마지막 결전 음악 트랙\n • 70% 보너스 시즌 매치 XP\n • 80% 보너스 시즌 친구 매치 XP\n • 그 외 더 많은 혜택!\n\n게임을 플레이하고 배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 추가 의상 4개\n • 1,000 V-Bucks\n • 이모트 6개\n • 외관 4개\n • 수확 도구 5개\n • 애완동물 1마리\n • 글라이더 6개\n • 등 장신구 7개\n • 트레일 3개\n • 스프레이 13개\n • 음악 트랙 2개\n • 장난감 1개\n • 로딩 화면 23개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!", + "zh-hant": "第十賽季:從現在開始至10月6日。\n\n立即獲得以下價值逾10000V幣的物品。\n • 廢土領主-X服裝\n • 靈狸服裝\n • 斜塔塗鴉大師服裝\n • 垃圾鏟鬥滑翔傘\n • 姿勢迷彩 皮膚\n • 裂隙閃電滑翔軌跡\n • 300V幣\n • 最終決戰 音軌\n • 70%額外賽季匹配經驗\n • 80%額外賽季好友匹配經驗\n • 以及更多獎勵!\n\n通過遊玩提升英雄季卡戰階,解鎖至少75個獎勵(通常需要75到150個小時的遊玩時間)。\n • 4個額外服裝\n • 1000V幣\n • 6個姿勢\n • 4個皮膚\n • 5個採集工具\n • 1個寵物\n • 6個滑翔傘\n • 7個背部裝飾\n • 3個滑翔軌跡\n • 13個塗鴉\n • 2個音軌\n • 1個玩具\n • 23個載入介面\n • 以及更多獎勵!\n希望更快嗎?你可以隨時使用V幣購買戰階!", + "pt-br": "Temporada X: de hoje até 6 de outubro.\n\nReceba instantaneamente estes itens avaliados em mais de 10.000 V-Bucks.\n • Traje Lorde X\n • Traje Transcendental\n • Traje Téknica Torta\n • Asa-delta Carcaça de Ferro-velho\n • Envelopamento Camuflagem de Gesto\n • Rastro de Fumaça Relâmpago de Fenda\n • 300 V-Bucks\n • Faixa MusicalO Confronto Final\n • 70% de Bônus de EXP da Temporada em Partidas\n • 80% de Bônus de EXP da Temporada em Partidas com Amigos\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média de 75 a 150 horas de jogo).\n • Mais 4 Trajes\n • 1.000 V-Bucks\n • 6 Gestos\n • 4 Envelopamentos\n • 5 Ferramentas de Coleta\n • 1 Mascote\n • 6 Asas-deltas\n • 7 Acessórios para as Costas\n • 3 Rastros de Fumaça\n • 13 Sprays\n • 2 Faixas Musicais\n • 1 Brinquedo\n • 23 Telas de Carregamento\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!", + "en": "Season X Now through October 6.\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • X-Lord Outfit\n • Catalyst Outfit\n • Tilted Teknique Outfit\n • Junk Bucket Glider\n • Emote Camo Wrap\n • Rift Lightning Contrails\n • 300 V-Bucks\n • The Final Showdown Music Track\n • 70% Bonus Season Match XP\n • 80% Bonus Season Friend Match XP\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,000 V-Bucks\n • 6 Emotes\n • 4 Wraps\n • 5 Harvesting Tools\n • 1 Pet\n • 6 Gliders\n • 7 Back Blings\n • 3 Contrails\n • 13 Sprays\n • 2 Music Tracks\n • 1 Toy\n • 23 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "it": "Stagione X, da ora fino al 6 ottobre\n\nOttieni subito questi oggetti dal valore di oltre 10.000 V-buck!\n • Costume Lord-X\n • Costume Catalizzatore\n • Costume PinnacoTeknica\n • Deltaplano Secchio di ciarpame\n • Copertura Mimetica emote\n • Scia Fulmine della fenditura\n • 300 V-buck\n • Brano musicale Il Duello finale\n • Bonus 70% PE partite stagionali\n • Bonus 80% PE amici partite stagionali\n • E altro ancora!\n\nGioca per aumentare il livello del tuo Pass battaglia, sbloccando più di 75 ricompense (per un totale indicativo di 75-150 ore di gioco).\n • 4 costumi in più\n • 1.000 V-Buck\n • 6 emote\n • 4 coperture\n • 5 strumenti raccolta\n • 1 piccolo amico\n • 6 deltaplani\n • 7 dorsi decorativi\n • 3 scie\n • 13 spray\n • 2 brani musicali\n • 1 giocattolo\n • 23 schermate di caricamento\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!", + "fr": "Saison X : jusqu'au 6 octobre.\n\nRecevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue Maître occulte\n • Tenue Déclic\n • Tenue Graffeuse de Tilted\n • Planeur Ferrailleur\n • Revêtement Camouflage emote\n • Traînée de condensation Faille fulgurante\n • 300 V-bucks\n • Musique Bataille finale \n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 80% pour des amis\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu).\n • 4 autres tenues\n • 1000 V-bucks\n • 6 emotes\n • 4 revêtements\n • 5 outils de collecte\n • 1 compagnon\n • 6 planeurs\n • 7 accessoires de dos\n • 3 traînées de condensation\n • 13 aérosols\n • 2 musiques\n • 1 jouet\n • 23 écrans de chargement\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !", + "zh-cn": "第X赛季:从现在开始至10月6日。\n\n立即获得以下价值逾10000V币的物品。\n • 废土领主-X服装\n • 灵狸服装\n • 斜塔涂鸦大师服装\n • 垃圾铲斗滑翔伞\n • 尬舞迷彩 皮肤\n • 裂隙闪电滑翔轨迹\n • 300V币\n • 最终决战 音轨\n • 70%额外赛季匹配经验\n • 80%额外赛季好友匹配经验\n • 以及更多奖励!\n\n通过游玩提升英雄季卡战阶,解锁至少75个奖励(通常需要75到150个小时的游玩时间)。\n • 4个额外服装\n • 1000V币\n • 6个姿势\n • 4个皮肤\n • 5个采集工具\n • 1个宠物\n • 6个滑翔伞\n • 7个背部装饰\n • 3个滑翔轨迹\n • 13个涂鸦\n • 2个音轨\n • 1个玩具\n • 23个载入界面\n • 以及更多奖励!\n希望更快吗?你可以随时使用V币购买战阶!", + "es": "Temporada X: desde ahora hasta el 6 de octubre.\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje de Señor X\n • Traje de Catalizadora\n • Traje de Neotéknica\n • Ala delta Cubo de chatarra\n • Envoltorio Gesto Cami\n • Estela Relámpago de la grieta\n • 300 paVos\n • Tema musical El enfrentamiento final\n • Bonificación del 70 % de PE por partida de temporada\n • Bonificación del 80 % de PE de partida amistosa de temporada\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 75 recompensas (suele llevar entre 75 y 150 horas de juego).\n • 4 trajes más\n • 1000 paVos\n • 6 gestos\n • 4 envoltorios\n • 5 herramientas de recolección\n • 1 mascota\n • 6 alas delta\n • 7 accesorios mochileros\\ • 3 estelas\n • 13 grafitis\n • 2 temas musicales\n • 1 juguete\n • 23 pantallas de carga\n • ¡Y muchísimo más!\n¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!", + "ar": "Season X Now through October 6.\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • X-Lord Outfit\n • Catalyst Outfit\n • Tilted Teknique Outfit\n • Junk Bucket Glider\n • Emote Camo Wrap\n • Rift Lightning Contrails\n • 300 V-Bucks\n • The Final Showdown Music Track\n • 70% Bonus Season Match XP\n • 80% Bonus Season Friend Match XP\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,000 V-Bucks\n • 6 Emotes\n • 4 Wraps\n • 5 Harvesting Tools\n • 1 Pet\n • 6 Gliders\n • 7 Back Blings\n • 3 Contrails\n • 13 Sprays\n • 2 Music Tracks\n • 1 Toy\n • 23 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!", + "ja": "シーズンX: 10月6日まで。\n\n10,000 V-Bucks以上の価値がある以下のアイテムをすぐに入手できます。\n • コスチューム「Xロード」\n • コスチューム「カタリスト」\n • コスチューム「ティルテッドテクニーク」\n • グライダー「 ジャンクバケット」\n • ラップ「エモートカモ」\n • コントレイル「リフトライトニング」\n • 300 V-Bucks\n • ミュージックトラック「最終決戦」\n • シーズンマッチXPの70%ボーナス\n • シーズンフレンドマッチXPの80%ボーナス\n • 他にも盛りだくさん!\n\nプレイしてバトルパスのレベルを上げると、75個以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n • さらなるコスチュームx4\n • 1,000 V-Bucks\n • エモートx6\n • ラップx4\n • 収集ツールx5\n • ペットx1\n • グライダーx6\n • バックアクセサリーx7\n • コントレイルx3\n • スプレーx13\n \n • 2 ミュージックトラックx2\n • おもちゃx1\n • ロード画面x23 • 他にも盛りだくさん!\nもっと早く報酬を全部集めたいという方は、V-Bucksでいつでもティアを購入できます!", + "pl": "Sezon X: od teraz do 6 października.\n\nZgarnij od razu poniższe przedmioty o wartości ponad 10 000 V-dolców.\n • Strój X-Lord\n • Strój Katalizator\n • Strój Wykrzywiona Teknique\n • Lotnia Złomolot\n • Malowanie Kamuflaż emotkowy\n • Smuga Błyskawica szczeliny\n • 300 V-dolców\n • Tło muzyczne Ostatnie Starcie\n • Sezonowa premia 70% PD za grę\n • Sezonowa premia 80% PD za grę ze znajomym\n • I nie tylko!\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 75 nagród (ich zebranie zajmuje zwykle od 75 do 150 godzin gry).\n • 4 inne stroje\n • 1000 V-dolców\n • 6 emotek\n • 4 malowania\n • 5 zbieraków\n • 1 pupil\n • 6 lotni\n • 7 plecaków\n • 3 smugi\n • 13 graffiti\n • 2 tła muzyczne\n • 1 zabawka\n • 23 ekrany wczytywania\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!", + "es-419": "Desde la temporada X hasta el 6 de octubre.\n\nObtén al instante estos objetos que cuestan más de 10 000 monedas V.\n • Atuendo Señor X\n • Atuendo Catalizadora\n • Atuendo Neotéknica\n • Planeador Montón de chatarra\n • Papel Camuflaje de gestos \n • Estela Relámpago de la grieta \n • 300 monedas V\n • Pista de música El enfrentamiento final \n • 70% de bonificación de PE para partidas de la temporada\n • 80% de bonificación de PE para partidas con amigos en la temporada\n • ¡Y mucho más!\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 150 horas de juego).\n • 4 atuendos más\n • 1000 monedas V\n • 6 gestos\n • 4 papeles\n • 5 herramientas de recolección\n • 1 mascota\n • 6 planeadores\n • 7 mochilas retro\n • 3 estelas\n • 13 aerosoles\n • 2 pistas de música\n • 1 juguete\n • 23 pantallas de carga\n • ¡Y mucho más!\n¿Lo quieres todo más rápido? ¡Puedes usar las monedas V para comprar niveles cuando quieras!", + "tr": "X. Sezon: Şu andan 6 Ekim'e kadar.\n\n10.000 V-Papel'in üzerinde değeri olan bu içerikleri hemen kap.\n • X Lordu Kıyafeti\n • Düz Kontak Kıyafeti\n • Serseri Grafitici Kıyafeti\n • Eski Toprak Planörü\n • İfadeli Kamuflaj Kaplaması\n • Yırtık Yıldırımı Dalış İzi\n • 300 V-Papel\n • Nihai Hesaplaşma Müzik Parçası\n • %70 Bonus Sezonluk Maç TP'si\n • Arkadaşların için %80 Bonus Sezonluk Maç TP'si\n • ve daha fazlası!\n\nBattle Royale oynayarak Savaş Bileti'nin aşamasını yükselt ve 75'ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • 4 Kıyafet daha\n • 1.000 V-Papel\n • 6 İfade\n • 4 Kaplama\n • 5 Toplama Aleti\n • 1 Sadık Dost\n • 6 Planör\n • 7 Sırt Süsü\n • 3 Dalış İzi\n • 13 Sprey\n • 2 Müzik Parçası\n • 1 Oyuncak\n • 23 Yükleme Ekranı\n • ve çok daha fazlası!\nHepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!" + }, + "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season10_BattlePassWithLevels.DA_BR_Season10_BattlePassWithLevels", + "itemGrants": [] + }, + { + "offerId": "AF1B7AC14A5F6A9ED255B88902120757", + "devName": "BR.Season10.SingleTier.01", + "offerType": "StaticPrice", + "prices": [ + { + "currencyType": "MtxCurrency", + "currencySubType": "", + "regularPrice": 150, + "dynamicRegularPrice": -1, + "finalPrice": 150, + "saleExpiration": "9999-12-31T23:59:59.999Z", + "basePrice": 150 + } + ], + "categories": [], + "dailyLimit": -1, + "weeklyLimit": -1, + "monthlyLimit": -1, + "refundable": false, + "appStoreId": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "requirements": [], + "metaInfo": [ + { + "key": "Preroll", + "value": "False" + } + ], + "catalogGroup": "", + "catalogGroupPriority": 0, + "sortPriority": 0, + "title": { + "de": "Battle Pass-Stufe", + "ru": "Уровень боевого пропуска", + "ko": "배틀패스 티어", + "zh-hant": "英雄季卡戰階", + "pt-br": "Categoria de Passe de Batalha", + "en": "Battle Pass Tier", + "it": "Livello Pass battaglia", + "fr": "Palier du Passe de combat", + "zh-cn": "英雄季卡战阶", + "es": "Nivel del pase de batalla", + "ar": "Battle Pass Tier", + "ja": "バトルパスティア", + "pl": "Stopień karnetu bojowego", + "es-419": "Nivel de pase de batalla", + "tr": "Savaş Bileti Aşaması" + }, + "shortDescription": "", + "description": { + "de": "Hol dir jetzt tolle Belohnungen!", + "ru": "Получите отличные награды!", + "ko": "지금 푸짐한 보상을 받아보세요!", + "zh-hant": "現在獲得豐厚獎勵!", + "pt-br": "Ganhe recompensas ótimas agora!", + "en": "Get great rewards now!", + "it": "Ricevi subito magnifiche ricompense!", + "fr": "Obtenez de grandes récompenses !", + "zh-cn": "现在获得丰厚奖励!", + "es": "¡Consigue recompensas increíbles!", + "ar": "Get great rewards now!", + "ja": "ステキな報酬を今すぐゲット!", + "pl": "Zgarnij świetne nagrody już teraz!", + "es-419": "¡Consigue grandes recompensas ahora!", + "tr": "Harika ödülleri kap!" + }, + "displayAssetPath": "", + "itemGrants": [] + } + ] + } + ] +} \ No newline at end of file diff --git a/lawin/responses/contentpages.json b/lawin/responses/contentpages.json new file mode 100644 index 0000000..cdf1a4b --- /dev/null +++ b/lawin/responses/contentpages.json @@ -0,0 +1,6354 @@ +{ + "_title": "Fortnite Game", + "_activeDate": "2017-08-30T03:20:48.050Z", + "lastModified": "2019-11-01T17:33:35.346Z", + "_locale": "en-US", + "loginmessage": { + "_title": "LoginMessage", + "loginmessage": { + "_type": "CommonUI Simple Message", + "message": { + "_type": "CommonUI Simple Message Base", + "title": "LawinServer", + "body": "Join our discord: https://discord.gg/KJ8UaHZ\nYouTube: Lawin\nTwitter: @lawin_010" + } + }, + "_activeDate": "2017-07-19T13:14:04.490Z", + "lastModified": "2018-03-15T07:10:22.222Z", + "_locale": "en-US" + }, + "survivalmessage": { + "_title": "survivalmessage", + "overrideablemessage": { + "_type": "CommonUI Simple Message", + "message": { + "_type": "CommonUI Simple Message Base", + "title": "The Survive the Storm event is now live!", + "body": "Take the pledge:\nSelect a target survival time of 3 or 7 nights.\n\nSend Feedback:\nSurvive the Storm is still in development. We’d love to hear what you think." + } + }, + "_activeDate": "2017-08-25T20:35:56.304Z", + "lastModified": "2017-12-12T17:14:26.597Z", + "_locale": "en-US" + }, + "athenamessage": { + "_title": "athenamessage", + "overrideablemessage": { + "_type": "CommonUI Simple Message", + "message": { + "image": "https://cdn2.unrealengine.com/Fortnite/RUS-Axe-1921x1082-fb41e51e9a280b9752b42e2b94b31e34d5758870.png", + "_type": "CommonUI Simple Message Base", + "title": "Test", + "body": "Test" + } + }, + "_activeDate": "2017-08-30T03:08:31.687Z", + "lastModified": "2017-11-10T15:38:47.250Z", + "_locale": "en-US" + }, + "subgameselectdata": { + "saveTheWorldUnowned": { + "_type": "CommonUI Simple Message", + "message": { + "image": "", + "hidden": false, + "messagetype": "normal", + "_type": "CommonUI Simple Message Base", + "title": { + "de": "Koop-PvE", + "ru": "Сюжетная PvE-кампания", + "ko": "팀과 함께 플레이하는 PvE", + "en": "Co-op PvE", + "it": "PvE co-op", + "fr": "JcE coopératif", + "es": "JcE cooperativo", + "ar": "Co-op PvE", + "ja": "協力PvE", + "pl": "Kooperacyjny tryb PvE", + "es-419": "JcE cooperativo", + "tr": "Oyuncularla Birlikte PvE" + }, + "body": { + "de": "PVE-Modus, in dem du den Sturm kooperativ bekämpfst!", + "ru": "Совместное сражение с Бурей!", + "ko": "배틀로얄을 플레이하려면 상단의 \"배틀로얄\" 버튼을 클릭하세요.\n\n팀과 함께하는 PvE 모드, 폭풍과 싸우는 어드벤처!", + "en": "Cooperative PvE storm-fighting adventure!", + "it": "Avventura tempestosa cooperativa PvE!", + "fr": "Une aventure en JcE coopératif pour combattre la tempête !", + "es": "¡Aventura cooperativa JcE de lucha contra la tormenta!", + "ar": "Cooperative PvE storm-fighting adventure!", + "ja": "PvE協力プレイでストームに立ち向かえ!", + "pl": "Kooperacyjne zmagania PvE z burzą i pustakami!", + "es-419": "¡Aventura de lucha contra la tormenta en un JcE cooperativo!", + "tr": "Diğer oyuncularla birlikte PvE fırtınayla savaşma macerası!" + }, + "spotlight": false + } + }, + "_title": "subgameselectdata", + "battleRoyale": { + "_type": "CommonUI Simple Message", + "message": { + "image": "", + "hidden": false, + "messagetype": "normal", + "_type": "CommonUI Simple Message Base", + "title": { + "de": "100-Spieler-PvP", + "ru": "PvP-режим на 100 игроков", + "ko": "100명의 플레이어와 함께하는 PvP", + "en": "100 Player PvP", + "it": "PvP a 100 giocatori", + "fr": "JcJ à 100 joueurs", + "es": "JcJ de 100 jugadores", + "ar": "100 Player PvP", + "ja": "100人参加のPvP", + "pl": "PvP dla 100 graczy", + "es-419": "JcJ de 100 jugadores", + "tr": "100 Oyunculu PvP" + }, + "body": { + "de": "Battle Royale, 100-Spieler-PvP.\n\nFortschritte im PvE haben keinen Einfluss auf Battle Royale.", + "ru": "PvP-режим на 100 игроков «Королевская битва».\n\nПрогресс в кампании не затрагивает «Королевскую битву».", + "ko": "100명의 플레이어와 함께하는 PvP 모드, 배틀로얄.\n\nPvE 모드의 진행 상황은 배틀로얄 플레이에 영향을 주지 않습니다.", + "en": "100 Player PvP Battle Royale.\n\nPvE progress does not affect Battle Royale.", + "it": "Battaglia reale PvP a 100 giocatori.\n\nI progressi in PvE non sono trasferiti nella Battaglia reale.", + "fr": "Un Battle Royale à 100 en JcJ.\n\nLa progression du mode JcE n'affecte pas Battle Royale.", + "es": "Battle Royale JcJ de 100 jugadores.\n\nEl progreso JcE no afecta a Battle Royale.", + "ar": "100 Player PvP Battle Royale.\n\nPvE progress does not affect Battle Royale.", + "ja": "100人参加のPvPバトルロイヤル。\n\nPvEモードの進行状況はバトルロイヤルに影響しません。", + "pl": "Battle Royale: PvP dla 100 graczy\n\nPostępy w kampanii nie wpływają na grę w Battle Royale.", + "es-419": "Batalla campal JcJ de 100 jugadores.\n\nEl progreso de JcE no afecta Batalla campal.", + "tr": "100 Oyunculu PvP Battle Royale. PvE ilerlemesi Battle Royale'i etkilemez." + }, + "spotlight": false + } + }, + "creative": { + "_type": "CommonUI Simple Message", + "message": { + "image": "", + "hidden": false, + "messagetype": "normal", + "_type": "CommonUI Simple Message Base", + "title": { + "de": "Neue vorgestellte Inseln!", + "ru": "Новые рекомендованные острова!", + "ko": "새로운 추천 섬!", + "en": "New Featured Islands!", + "it": "Nuove isole in evidenza!", + "fr": "Nouvelles îles à la Une !", + "es": "¡Nuevas islas destacadas!", + "ar": "New Featured Islands!", + "ja": "新しいおすすめの島!", + "pl": "Nowe wyróżnione wyspy!", + "es-419": "¡Nuevas islas destacadas!", + "tr": "Yeni Öne Çıkan Adalar!" + }, + "body": { + "de": "Deine Insel. Deine Freunde. Deine Regeln. \n\nEntdecke neue Arten, Fortnite zu spielen. Zocke von der Community erstellte Spiele mit Freunden und erschaffe deine Trauminsel.", + "ru": "Ваш остров. Ваши друзья. Ваши правила. \n\nПробуйте новые развлечения в Fortnite: играйте с друзьями в игры, созданные участниками сообщества, и стройте что угодно на собственном острове.", + "ko": "내가 만든 게임, 내가 세운 규칙, 이제 나만의 섬에서 즐긴다! \n포트나이트 게임을 완전히 새로운 방식으로 플레이해 보세요. 커뮤니티가 만든 게임을 친구들과 플레이해 보고, 여러분의 꿈의 섬을 만들어보세요.", + "en": "Your Island. Your Friends. Your Rules.\n\nDiscover new ways to play Fortnite, play community made games with friends and build your dream island.", + "it": "La tua isola. I tuoi amici. Le tue regole. \n\nScopri nuovi modi per giocare a Fortnite, divertiti insieme ai tuoi amici con i giochi creati dalla community e costruisci la tua isola da sogno.", + "fr": "Votre île. Vos amis. Vos règles.\n\nJouez à Fortnite autrement, éclatez-vous entre amis dans les jeux créés par la communauté et construisez l'île de vos rêves.", + "es": "Vuestra isla. Vuestros amigos. Vuestras reglas. \n\nDescubre nuevas formas de jugar a Fortnite, participa con tus amigos en juegos diseñados por la comunidad y construye la isla de tus sueños.", + "ar": "Your Island. Your Friends. Your Rules.\n\nDiscover new ways to play Fortnite, play community made games with friends and build your dream island.", + "ja": "コミュニティによって作られた島で遊んだり、夢に描いた自分に島を創り、フォートナイトの新しい楽しみ方を発掘しよう。", + "pl": "Twoja wyspa. Twoi znajomi. Twoje zasady. \n\nPoznajcie nowe sposoby na zabawę w Fortnite, zagrajcie ze znajomymi w gry stworzone przez innych graczy i zbudujcie wyspę swoich marzeń.", + "es-419": "Tu isla. Tus amigos. Tus reglas. \n\nDescubre nuevas maneras de jugar Fortnite: juega con tus amigos a juegos diseñados por la comunidad y construye la isla de tus sueños.", + "tr": "Fortnite’ı oynamanın yepyeni yollarını keşfet, topluluğun yaptığı oyunlarda arkadaşlarınla eğlen ve hayalindeki adayı inşa et." + }, + "spotlight": false + } + }, + "saveTheWorld": { + "_type": "CommonUI Simple Message", + "message": { + "image": "", + "hidden": false, + "messagetype": "normal", + "_type": "CommonUI Simple Message Base", + "title": { + "de": "Koop-PvE", + "ru": "Сюжетная PvE-кампания", + "ko": "팀과 함께 플레이하는 PvE", + "en": "Co-op PvE", + "it": "PvE co-op", + "fr": "JcE coopératif", + "es": "JcE cooperativo", + "ar": "Co-op PvE", + "ja": "協力PvE", + "pl": "Kooperacyjny tryb PvE", + "es-419": "JcE cooperativo", + "tr": "Oyuncularla Birlikte PvE" + }, + "body": { + "de": "PVE-Modus, in dem du den Sturm kooperativ bekämpfst!", + "ru": "Совместное сражение с Бурей!", + "ko": "배틀로얄을 플레이하려면 상단의 \"배틀로얄\" 버튼을 클릭하세요.\n\n팀과 함께하는 PvE 모드, 폭풍과 싸우는 어드벤처!", + "en": "Cooperative PvE storm-fighting adventure!", + "it": "Avventura tempestosa cooperativa PvE!", + "fr": "Une aventure en JcE coopératif pour combattre la tempête !", + "es": "¡Aventura cooperativa JcE de lucha contra la tormenta!", + "ar": "Cooperative PvE storm-fighting adventure!", + "ja": "PvE協力プレイでストームに立ち向かえ!", + "pl": "Kooperacyjne zmagania PvE z burzą i pustakami!", + "es-419": "¡Aventura de lucha contra la tormenta en un JcE cooperativo!", + "tr": "Diğer oyuncularla birlikte PvE fırtınayla savaşma macerası!" + }, + "spotlight": false + } + }, + "_activeDate": "2017-10-11T18:37:23.145Z", + "lastModified": "2019-05-06T12:59:15.974Z", + "_locale": "en-US" + }, + "savetheworldnews": { + "news": { + "_type": "Battle Royale News", + "messages": [ + { + "image": "https://fortnite-public-service-prod11.ol.epicgames.com/images/discord.png", + "hidden": false, + "_type": "CommonUI Simple Message Base", + "adspace": "DISCORD!", + "title": "Join our discord server!", + "body": "https://discord.gg/KJ8UaHZ", + "spotlight": false + }, + { + "image": "https://fortnite-public-service-prod11.ol.epicgames.com/images/lawin.jpg", + "hidden": false, + "_type": "CommonUI Simple Message Base", + "adspace": "ENJOY!", + "title": "LawinServer", + "body": "Enjoy LawinServer!", + "spotlight": false + } + ] + }, + "_title": "SaveTheWorldNews", + "_noIndex": false, + "alwaysShow": false, + "_activeDate": "2018-08-06T18:25:46.770Z", + "lastModified": "2019-10-30T20:17:48.789Z", + "_locale": "en-US" + }, + "battlepassaboutmessages": { + "news": { + "_type": "Battle Royale News", + "messages": [ + { + "layout": "Right Image", + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/battle-pass-about/Season_8/11BR_Launch_Upsell_HowDoesItWork-1024x1024-faa688dad8111f0a944c351dd7b11e4bff3562aa.png", + "hidden": false, + "_type": "CommonUI Simple Message Base", + "title": "HOW DOES IT WORK?", + "body": "Play to level up your Battle Pass. Earn XP from a variety of in-game activities like searching chests, eliminating opponents, completing challenges, and more! Level up to unlock over 100 rewards including 1500 V-Bucks!. You can purchase the Battle Pass any time during the season for 950 V-Bucks and retroactively unlock any rewards up to your current level.", + "spotlight": false + }, + { + "layout": "Left Image", + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/battle-pass-about/Season_8/11BR_Launch_Upsell_WhatsInside-(1)-1024x1024-68356adb3844b46ada633ace2d168af74b446f35.png", + "hidden": false, + "_type": "CommonUI Simple Message Base", + "title": "WHAT’S INSIDE?", + "body": "When you buy the Battle Pass, you’ll instantly receive two exclusive outfits - Turk and Journey! You can earn more exclusive rewards including Emotes, Outfits, Wraps, Pickaxes, Loading Screens and more. You’ll receive a reward each time you level up and for the first time, you can keep leveling up beyond level 100!", + "spotlight": false + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/battle-pass-about/Season_8/11BR_Launch_Upsell_Badges-1024x1024-94b54a7e241b5747d83095feb1e6fc330c49689f.png", + "hidden": false, + "_type": "CommonUI Simple Message Base", + "title": "New This Season: Medals! ", + "body": "Battle Pass progression has been entirely reworked this Season. Advance your Battle Pass by completing challenges and earning in-game Medals! Earn daily medals and fill out your punch card to maximize your XP.", + "spotlight": false + } + ] + }, + "_title": "BattlePassAboutMessages", + "_noIndex": false, + "_activeDate": "2018-06-20T18:15:07.002Z", + "lastModified": "2019-10-14T20:42:20.253Z", + "_locale": "en-US" + }, + "playlistinformation": { + "frontend_matchmaking_header_style": "None", + "_title": "playlistinformation", + "frontend_matchmaking_header_text": "", + "playlist_info": { + "_type": "Playlist Information", + "playlists": [ + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/11BR_2v2_GunFright_LTM-1024x512-f3b0f0157e8652a23db8abc23814d97893179e20.jpg", + "playlist_name": "Playlist_Creative_Hyena_G", + "violator": "COMMUNITY CREATION", + "_type": "FortPlaylistInfo", + "description": "Code BluDrive \r\n\r\nIt's 2 vs 2 in a battle of champions, which duo will come out on top? \r\n\r\nAt the beginning of each round, all players will be granted the same random kit. The duo that has the most wins after 5 rounds are completed will be crowned the victors! \r\n\r\nCreated By: BluDrive" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/11BR_LTM_ModeTile-1024x512-aae4d5b5eb1ea4eeb31f852c8b98516681bfe769.jpg", + "playlist_name": "Playlist_DADBRO_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/11BR_LTM_ModeTile-1024x512-aae4d5b5eb1ea4eeb31f852c8b98516681bfe769.jpg", + "playlist_name": "Playlist_DADBRO_Squads_12", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/11BR_LTM_ModeTile-1024x512-aae4d5b5eb1ea4eeb31f852c8b98516681bfe769.jpg", + "playlist_name": "Playlist_DADBRO_Squads_8", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_ZoneWars_In-Game_ModeTile_Red-1024x512-2e1c5e38b652093029befb6a86a44db844474af8.jpg", + "playlist_name": "Playlist_Creative_ZebraWallet_Random2", + "violator": "COMMUNITY CREATION", + "_type": "FortPlaylistInfo", + "description": "A solo queue, FFA simulation of the end-game scenario in Battle Royale with a quick moving zone. Randomized spawns and inventory items make each round unique. Stick around after the first game. there are multiple rounds in each session. Zone Wars is a collection of games made by the community. The four maps included in this playlist are: Desert created by JotaPeGame. Code: jotapegame Downhill River created by Enigma. Code: enigma Vortex created by Zeroyahero. Code: zeroyahero Colosseum created by Jesgran. Code: jesgran", + "display_name": "SOLO FFA" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_ZoneWars_In-Game_ModeTile_Blue-1024x512-0f76af6296545de1b2d9da766e76475418bc5940.jpg", + "playlist_name": "Playlist_Creative_ZebraWallet_Random", + "violator": "COMMUNITY CREATION", + "_type": "FortPlaylistInfo", + "description": "A party queue, FFA simulation of the end-game scenario in Battle Royale with a quick moving zone. Randomized spawns and inventory items make each round unique. Stick around after the first game. there are multiple rounds in each session. Zone Wars is a collection of games made by the community. The four maps included in this playlist are: Desert created by JotaPeGame. Code: jotapegame Downhill River created by Enigma. Code: enigma Vortex created by Zeroyahero. Code: zeroyahero Colosseum created by Jesgran. Code: jesgran", + "display_name": "PARTY FFA" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/FORT_Tile_Tutorial-1024x512-72a618fa185a0bbc26ab6a290bc0a45cf460c576.png", + "playlist_name": "Playlist_Tutorial_1", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_ZoneWars_In-Game_ModeTile-1024x512-a2741f113a7178ca15d71d281dcc2b614ff90754.jpg", + "playlist_name": "Playlist_Creative_ZebraWallet_A", + "violator": "PARTY FFA", + "_type": "FortPlaylistInfo", + "description": "Code jesgran Zone Wars - Arena A party, FFA simulation of the end-game scenario in Battle Royale with a quick-moving zone. Eliminate the competition as you avoid the Storm. Randomized spawns and inventory items make each round unique. Stick around after the first game. There are multiple rounds in each session. Become the ultimate gladiator in this Colosseum style island. An open style island demands quick building. Created by Jesgran.", + "display_name": "Colosseum" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_ZoneWars_In-Game_ModeTile_Red-1024x512-2e1c5e38b652093029befb6a86a44db844474af8.jpg", + "playlist_name": "Playlist_Creative_ZebraWallet_D", + "violator": "SOLO FFA", + "_type": "FortPlaylistInfo", + "description": "Code jotapegame Desert Zone Wars 4.1 \r\n\r\nA solo, FFA simulation of the end-game scenario in Battle Royale with a quick-moving zone. Eliminate the competition as you avoid the Storm. Randomized spawns and inventory items make each round unique. Stick around after the first game. There are multiple rounds in each session. \r\n\r\nMake your way through a small desert town to the final circle. A diverse set of weapons and mobility allows for unique gameplay and lots of replayability. \r\n\r\nCreated by JotaPeGame.", + "display_name": "Desert" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_ZoneWars_In-Game_ModeTile_Blue-1024x512-0f76af6296545de1b2d9da766e76475418bc5940.jpg", + "playlist_name": "Playlist_Creative_ZebraWallet_DH", + "violator": "PARTY FFA", + "_type": "FortPlaylistInfo", + "description": "Code enigma S10 Enigmas Downhill River Zonewars X A party, FFA simulation of the end-game scenario in Battle Royale with a quick-moving zone. Eliminate the competition as you avoid the Storm. Randomized spawns and inventory items make each round unique. Stick around after the first game. There are multiple rounds in each session. Stay out of the storm as you move downhill through a river in this original style Zone Wars island. Community launch pads and a consistent Storm path allows for familiarity after a few rounds. Created by Enigma.", + "display_name": "Downhill River" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_ZoneWars_In-Game_ModeTile_Black-1024x512-23ba95e82931361ce535a643fdac54e120254374.jpg", + "playlist_name": "Playlist_Creative_ZebraWallet_V", + "violator": "PARTY FFA", + "_type": "FortPlaylistInfo", + "description": "Code zeroyahero Vortex Zone Wars A party, FFA simulation of the end-game scenario in Battle Royale with a quick-moving zone. Eliminate the competition as you avoid the Storm. Randomized spawns and inventory items make each round unique. Stick around after the first game. There are multiple rounds in each session. This island puts a unique twist on the Zone Wars game with mountainous terrain to traverse. The elevation change from zone to zone can be quite drastic! Created by Zeroyahero", + "display_name": "Vortex" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_TheCombine_ModeTile-1024x512-3aa8ebdfe1df7d9995e824a781eacdb954ee9615.jpg", + "playlist_name": "Playlist_Crucible_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR_LTM-Tile_Playground-1024x512-53db8a4b5fb41251af279eaf923bc00ecbc17792.jpg", + "playlist_name": "Playlist_Creative_PlayOnly_40", + "special_border": "None", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10CM_LTM_KnockTown_Playlist-1024x512-72e32b88b332b4d3ee3ee5255eff9522b660485c.jpg", + "playlist_name": "Playlist_Creative_KaleTofu", + "violator": "COMMUNITY CREATION", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_Bounty_LTM_ModeTile-1024x512-57ae30f0c598acda4be4975930ad30e210debb61.jpg", + "playlist_name": "Playlist_Bounty_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_Bounty_LTM_ModeTile-1024x512-57ae30f0c598acda4be4975930ad30e210debb61.jpg", + "playlist_name": "Playlist_Bounty_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_Bounty_LTM_ModeTile-1024x512-57ae30f0c598acda4be4975930ad30e210debb61.jpg", + "playlist_name": "Playlist_Bounty_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09CM_WorldCup_FeatIsland_WorldRun_ModeTile-1024x512-34d66c90603f4e64ebd56054b889c4ec163abea5.jpg", + "playlist_name": "Playlist_Creative_Squad_Battle_16_B", + "violator": "COMMUNITY CREATION", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_SneakySilencers-1024x512-1669e2eeddca63b61e9b94cc19c3ec502fd33f29.jpg", + "playlist_name": "Playlist_Sneaky_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09CM_WorldCup_FeatIsland_JunkyardJuke_ModeTile-1024x512-7a2585ce248f1efa438674c368b37116dc5514de.jpg", + "playlist_name": "Playlist_Creative_Squad_Battle_16_A", + "violator": "COMMUNITY CREATION", + "_type": "FortPlaylistInfo", + "description": "" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/09CM_WorldCup_FeatIsland_SkyStation_ModeTile-1024x512-a5424f9ac27626a73646c9fd158901c4c363ec0c.jpg", + "playlist_name": "Playlist_Creative_Squad_Battle_32_A", + "violator": "COMMUNITY CREATION", + "_type": "FortPlaylistInfo", + "description": "Created by Team Evolve. Featured in the Fortnite World Cup Creative Finals. Battle other squads to capture zones and score points! Any player can capture a zone and score points for your team. Use impulse grenades to blast other teams out of the capture zones. Players can now earn XP after each game and the top three teams will earn bonus XP." + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_OneShot-1024x512-9914c2c88b21f72f9628681e0cbcd20bb7311a3f.jpg", + "playlist_name": "Playlist_Low_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_HeavyMetal_ModeTile-1024x512-4db8223707fb313220eef577dafde5c14106e49d.jpg", + "playlist_name": "Playlist_Heavy_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09CM_In-Game_PropHunt_ModeTile-1024x512-1510311027a93a720b42ed22e711c7e478931adb.jpg", + "playlist_name": "Playlist_Creative_PuppyHugs", + "violator": "PLAYER MADE!", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Unvaulted-1024x512-d3cbe3c4a756190279af4ce98773d6599f7aab4f.jpg", + "playlist_name": "Playlist_Unvaulted_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/br06-teamrumble-800x450-800x450-a2265b85af06.jpg", + "playlist_name": "Playlist_Creative_TDM_v1", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/EN_CM09_BeachAssaultCreativeLTM_ContestWinner_ModeTile-1024x512-9cdeb2e0ea37179a37d3384cf73c9949d2d19546.jpg", + "playlist_name": "Playlist_Creative_BeachAssault", + "violator": "PLAYER MADE", + "_type": "FortPlaylistInfo", + "display_name": "BEACH ASSAULT BY PRUDIZ" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Barebones-1024x512-4a29337febb04e9043d57c9e61afe849f8a9e9c7.jpg", + "playlist_name": "Playlist_Hard_Solo", + "_type": "FortPlaylistInfo", + "description": "This mode has the map, compass, storm timer and many other elements of the Heads Up Display turned off." + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_BlueWeapons_ModeTile-1024x512-0c38f1bc3b991943e3f6650bf7acfbcdd8739b1e.jpg", + "playlist_name": "Playlist_Blue_Squads", + "_type": "FortPlaylistInfo", + "description": "", + "display_name": "" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SolidGold-1024x512-36e202c36d3ef3bd151a97c060401d33ac6f549a.png", + "playlist_name": "Playlist_SolidGold_Squads", + "_type": "FortPlaylistInfo", + "description": "", + "display_name": "" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_PurpleReign_ModeTile-1024x512-c5a7e2bd3f32b83f17e4fa28817312ab6210133c.jpg", + "playlist_name": "Playlist_Purple_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_FullAuto_ModeTile-1024x512-d1532221d738ba3aed434512b7c670e72b89f474.jpg", + "playlist_name": "Playlist_Auto_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_HeavyMetal_ModeTile-1024x512-4db8223707fb313220eef577dafde5c14106e49d.jpg", + "playlist_name": "Playlist_Heavy_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_GunGame_ModeTile-1024x512-409bcc8860d5bd4342f61b9ce0e9f39da7e05ddf.jpg", + "playlist_name": "Playlist_Gungame_Reverse", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_Surfin_ModeTile-1024x512-ebff23e30b121cfe3eecf173949c055325522090.jpg", + "playlist_name": "Playlist_Race_12", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_DeaglesandHeadshots_ModeTile-1024x512-4d969f5a9126ba71b7ee77088fd22df5b4c7caba.jpg", + "playlist_name": "Playlist_Beagles_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_LeaveNoneBehind_ModeTile-1024x512-bfe65d02a5d42577d22c133d25ad9c9fb62a35a0.jpg", + "playlist_name": "Playlist_Behind_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_LoadoutSwap_ModeTile-1024x512-f73c146f8ccc7998aab14f8c1957f0ad01faa933.jpg", + "playlist_name": "Playlist_Swap_Squads_Respawn", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_TankBattle_ModeTile-1024x512-48554aae511d9c5a7ac1a5d4fd54e0f5a37bd66d.jpg", + "playlist_name": "Playlist_Tank_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_StrategicStructures_ModeTile-1024x512-4f6f448375284fef60fe2a2c15f292115ebec558.jpg", + "playlist_name": "Playlist_Strategic_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_BuildersParadise_ModeTile-1024x512-730a5ffe51c8f0420b91529d1fc05e081aa2071c.jpg", + "playlist_name": "Playlist_Paradise_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_PowerUp_ModeTile-1024x512-7e1824071133f9eac4ca44c701605923893c85bf.jpg", + "playlist_name": "Playlist_Pow_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_BuilttoLast_ModeTile-1024x512-cf95f4701f41c608ae8590fe588a5a0ea25ed68a.jpg", + "playlist_name": "Playlist_Care_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_Tag_ModeTile-1024x512-d4471981ccdc8d9f444d1f416b3f4458612da006.jpg", + "playlist_name": "Playlist_Tag_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_WaterBalloons_ModeTile-1024x512-ea418e1a4fb6ce21d5f01f2ac18ae60e41e9ef74.jpg", + "playlist_name": "Playlist_Bison_Respawn_Squads", + "_type": "FortPlaylistInfo", + "description": "" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_WaterBalloons_ModeTile-1024x512-ea418e1a4fb6ce21d5f01f2ac18ae60e41e9ef74.jpg", + "playlist_name": "Playlist_Bison_Respawn", + "_type": "FortPlaylistInfo", + "description": "" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_SiphonRumble_ModeTile-1024x512-02ad3c97e4cdc7172f6ea59140b89b004f95886a.jpg", + "playlist_name": "Playlist_Respawn_20_Sif", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_LavaRumble_ModeTile-1024x512-29cc6ad680519d8f792bf1fa4053cf9191f84b6e.jpg", + "playlist_name": "Playlist_Respawn_20_Lava", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_ModeTile_TDM-1024x512-878ba9f92deb153ec85f2bcbce925e185344290e.jpg", + "playlist_name": "Playlist_Respawn_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/09BR_LTM_HordeRush_Mode_Tile-1024x512-a844840eb58db868b6abfbe18fc8a8f483e18c60.jpg", + "playlist_name": "Playlist_Mash_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/09BR_LTM_DowntownDrop_Screenshot_ModeTile-1024x512-d8ce0a16ae59e2a2f501813ddf540a00e60098b5.jpg", + "playlist_name": "Playlist_Creative_Vigilante", + "violator": "PLAYER MADE!", + "_type": "FortPlaylistInfo", + "description": "Created by NotNellaf & Tollmolia in collaboration with Jordan Brand. \r\n\r\nShow off your moves in the Downtown Drop LTM. Launch off massive jumps, grind down city streets and collect coins to win! \r\n\r\nProve you deserve the title of G.O.A.T." + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/09BR_Social_LTM_WicksBounty_Announce_PlaylistTile-1024x512-df3870c355530a7591c7a3fa453c15686c862989.jpg", + "playlist_name": "Playlist_Wax_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/09BR_Social_LTM_WicksBounty_Announce_PlaylistTile-1024x512-df3870c355530a7591c7a3fa453c15686c862989.jpg", + "playlist_name": "Playlist_Wax_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/09BR_Social_LTM_WicksBounty_Announce_PlaylistTile-1024x512-df3870c355530a7591c7a3fa453c15686c862989.jpg", + "playlist_name": "Playlist_Wax_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09BR_RobotFight_ModeTile-1024x512-2a5383ab45d733d276100a14092da01c5db66fb7.jpg", + "playlist_name": "Playlist_Music_Highest ", + "violator": "LIVE EVENT!", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09BR_RobotFight_ModeTile-1024x512-2a5383ab45d733d276100a14092da01c5db66fb7.jpg", + "playlist_name": "Playlist_Music_Higher", + "violator": "LIVE EVENT!", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_In-Game_Farewell_ModeTile-1024x512-3c6326529cb23dbe465594a4266f2054ba52e4ad.jpg", + "playlist_name": "Playlist_Music_High", + "violator": "LIVE EVENT!", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09BR_RobotFight_ModeTile-1024x512-2a5383ab45d733d276100a14092da01c5db66fb7.jpg", + "playlist_name": "Playlist_Music_Med", + "violator": "LIVE EVENT!", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09BR_RobotFight_ModeTile-1024x512-2a5383ab45d733d276100a14092da01c5db66fb7.jpg", + "playlist_name": "Playlist_Music_Low", + "violator": "LIVE EVENT!", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_Endgame_InGame_Mode-Tile-1024x512-03bb0dc121ae8b2dcd27b8b386670737093d0c83.jpg", + "playlist_name": "Playlist_Ashton_Sm", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/EN_08BR_DeepFried_Mode_Tile-1024x512-227979fa27053f858066a1a47d68b55f792fded1.jpg", + "playlist_name": "Playlist_Barrier_16_B_Lava", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_AirRoyale_Mode-Tile-1024x512-e071f542b7e0ce2cfc34c208e14604815b76439c.jpg", + "playlist_name": "Playlist_Goose_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_AirRoyale_Mode-Tile-1024x512-e071f542b7e0ce2cfc34c208e14604815b76439c.jpg", + "playlist_name": "Playlist_Goose_Duos_24", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_AirRoyale_Mode-Tile-1024x512-e071f542b7e0ce2cfc34c208e14604815b76439c.jpg", + "playlist_name": "Playlist_Goose_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/CM_LobbyTileArt-1024x512-fbcd48db36552ccb1ab4021b722ea29d515377cc.jpg", + "playlist_name": "Playlist_PlaygroundV2", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR_LTM-Tile_Playground-1024x512-53db8a4b5fb41251af279eaf923bc00ecbc17792.jpg", + "playlist_name": "Playlist_Playground", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_FloorIsLava_ModeTile-1024x512-f1af4cd98c7ff0ce4058f4e3b65a853641d0a35e.jpg", + "playlist_name": "Playlist_Fill_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_FloorIsLava_ModeTile-1024x512-f1af4cd98c7ff0ce4058f4e3b65a853641d0a35e.jpg", + "playlist_name": "Playlist_Fill_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_FloorIsLava_ModeTile-1024x512-f1af4cd98c7ff0ce4058f4e3b65a853641d0a35e.jpg", + "playlist_name": "Playlist_Fill_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_SolidGreen_ModeTile_Squads-1024x512-f0d931472907d54ffaa52ef81f78bf9d5fcfaa2d.jpg", + "playlist_name": "Playlist_Green_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_SolidGreen_ModeTile_Squads-1024x512-f0d931472907d54ffaa52ef81f78bf9d5fcfaa2d.jpg", + "playlist_name": "Playlist_Green_Squad", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_SolidGreen_ModeTile_Squads-1024x512-f0d931472907d54ffaa52ef81f78bf9d5fcfaa2d.jpg", + "playlist_name": "Playlist_Green_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Slide-1024x512-189625349e80dc81e225691aa952ffd280996058.jpg", + "playlist_name": "Playlist_Slide_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Unvaulted-1024x512-d3cbe3c4a756190279af4ce98773d6599f7aab4f.jpg", + "playlist_name": "Playlist_Classic_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_Drifting50s_Powder-1024x512-5fb24cfd4d83e4cd3a3589b126313beba9cc69a7.jpg", + "playlist_name": "Playlist_Hover", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_Drifting50s_Powder-1024x512-5fb24cfd4d83e4cd3a3589b126313beba9cc69a7.jpg", + "playlist_name": "Playlist_Hover_64", + "violator": "Large Team Mode", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_Drifting50s_Powder-1024x512-5fb24cfd4d83e4cd3a3589b126313beba9cc69a7.jpg", + "playlist_name": "Playlist_Hover_48", + "violator": "Large Team Mode", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_InfinityBlade_v2-1024x512-475608c25c288f7d5c884eeebc47fb565f6f5803.jpg", + "playlist_name": "Playlist_Sword_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_InfinityBlade_v2-1024x512-475608c25c288f7d5c884eeebc47fb565f6f5803.jpg", + "playlist_name": "Playlist_Sword_Duos", + "_type": "FortPlaylistInfo" + }, + { + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_InfinityBlade_v2-1024x512-475608c25c288f7d5c884eeebc47fb565f6f5803.jpg", + "playlist_name": "Playlist_Sword_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_LoveShot_v2-1024x512-cd7b917157be2472bebc3db3b125e9b20174c748.jpg", + "playlist_name": "Playlist_Love_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_LoveShot_v2-1024x512-cd7b917157be2472bebc3db3b125e9b20174c748.jpg", + "playlist_name": "Playlist_Love_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_LoveShot_v2-1024x512-cd7b917157be2472bebc3db3b125e9b20174c748.jpg", + "playlist_name": "Playlist_Love_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_CatchSquads-1024x512-7289222d56b08ef8de20c7187af2670496dca3df.jpg", + "playlist_name": "Playlist_Toss_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_CatchSquads-1024x512-7289222d56b08ef8de20c7187af2670496dca3df.jpg", + "playlist_name": "Playlist_Toss_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_CatchSquads-1024x512-7289222d56b08ef8de20c7187af2670496dca3df.jpg", + "playlist_name": "Playlist_Toss_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_NFL_TeamRumble-1024x512-6facfc07214965dc2211d703904607a30c68d08a.jpg", + "playlist_name": "Playlist_Omaha", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_WinterDeimos_Squads-1024x512-cf4323aa9c2cfd027484cf4da14544128e3d4c7e.jpg", + "playlist_name": "Playlist_Deimos_Squad_Winter", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_WinterDeimos_Duos_-1024x512-84315aac8d1fcfb840deba46c4dafda8e9005b2a.jpg", + "playlist_name": "Playlist_Deimos_Duo_Winter", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_WinterDeimos_Solo-1024x512-5c759fe60ec85988f35c729b5fb6a7993d8dbb58.jpg", + "playlist_name": "Playlist_Deimos_Solo_Winter", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_OneShot-1024x512-9914c2c88b21f72f9628681e0cbcd20bb7311a3f.jpg", + "playlist_name": "Playlist_Low_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_GroundGame-1024x512-37a4d1d335b4c9427bdc672db0f335f4df813874.jpg", + "playlist_name": "Playlist_Ground_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_WildWest-1024x512-42779242a5a73d654332d9d0afe0983f9d8401d0.jpg", + "playlist_name": "Playlist_WW_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Slide-1024x512-189625349e80dc81e225691aa952ffd280996058.jpg", + "playlist_name": "Playlist_Slide_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_GroundGame-1024x512-37a4d1d335b4c9427bdc672db0f335f4df813874.jpg", + "playlist_name": "Playlist_Ground_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_GroundGame-1024x512-37a4d1d335b4c9427bdc672db0f335f4df813874.jpg", + "playlist_name": "Ground_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_OneShot-1024x512-9914c2c88b21f72f9628681e0cbcd20bb7311a3f.jpg", + "playlist_name": "Playlist_Low_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_HighExplosives50s-1024x512-3a8d44af3c2718b5aaaaebbd4627258a657bf0bf.jpg", + "playlist_name": "Playlist_50v50HE", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_HighExplosives-1024x512-4afc4219531db710e56f3b038e7cd84ca2be7675.jpg", + "playlist_name": "Playlist_HighExplosives_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_HighExplosives-1024x512-4afc4219531db710e56f3b038e7cd84ca2be7675.jpg", + "playlist_name": "Playlist_HighExplosives_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_HighExplosives-1024x512-4afc4219531db710e56f3b038e7cd84ca2be7675.jpg", + "playlist_name": "Playlist_HighExplosives_Squads / Event 24", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_WildWest-1024x512-42779242a5a73d654332d9d0afe0983f9d8401d0.jpg", + "playlist_name": "Playlist_WW_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_SneakySilencers-1024x512-1669e2eeddca63b61e9b94cc19c3ec502fd33f29.jpg", + "playlist_name": "Playlist_Sneaky_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_FoodFight16-1024x512-309538a1b961b5ab0c22417ab34170cc302bbab8.jpg", + "playlist_name": "Playlist_Barrier_16", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_CloseEncounters50s-1024x512-03dcc058e1bec3e853b3ee20594128805223b5a3.jpg", + "playlist_name": "Playlist_Close_50", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_HolidayDisco-1024x512-684bd4b41613e59d895a477389515a8b4878da6a.jpg", + "playlist_name": "Playlist_Disco_32_Alt", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Slide-1024x512-189625349e80dc81e225691aa952ffd280996058.jpg", + "playlist_name": "Playlist_Slide_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Barebones-1024x512-4a29337febb04e9043d57c9e61afe849f8a9e9c7.jpg", + "playlist_name": "Playlist_Hard_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Siphon-1024x512-66cb27084be50387682989b50a01dbc9e42f5a5d.jpg", + "playlist_name": "Playlist_Vamp_Squad", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_14-DoF_Social-1024x512-5fa7dd4752d1f0cc1a101f09cb170d0f5b2a31cf.jpg", + "playlist_name": "Playlist_33", + "violator": "", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Unvaulted-1024x512-d3cbe3c4a756190279af4ce98773d6599f7aab4f.jpg", + "playlist_name": "Playlist_Unvaulted_Squads", + "violator": "", + "_type": "FortPlaylistInfo", + "description": "", + "display_name": "" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_ModeTile_TDM-1024x512-878ba9f92deb153ec85f2bcbce925e185344290e.jpg", + "playlist_name": "Playlist_Respawn_24", + "_type": "FortPlaylistInfo", + "description": "" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_ModeTile_LTM_WildWest-1024x512-f67d9d1dd2ca0b290c92b1380240429f0f257a10.jpg", + "playlist_name": "Playlist_WW_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_LobbyTile_FoodFight-1024x512-5e1540a0a2ba0a1f663d32c60cfec3a360278672.png", + "playlist_name": "Playlist_Barrier_12", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_In-GamePlaylist_TeamTerror-1024x512-310430bdaf1b1dd0ecb4d3b180bb6409b7ff6e27.jpg", + "playlist_name": "playlist_deimos_50", + "_type": "FortPlaylistInfo", + "description": "", + "display_name": "" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_Fortnitemares_In-GamePlaylist_1024x512_-Solo-1024x512-7e7fe76e48beb3a06da0592cb26e412265986e4d.jpg", + "playlist_name": "Playlist_Deimos_Solo", + "violator": "", + "_type": "FortPlaylistInfo", + "display_name": "" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_Fortnitemares_In-GamePlaylist_1024x512_Squads-1024x512-783a0812f6acf1f5931c8015e6ad13c0b76c5a9c.jpg", + "playlist_name": "Playlist_Deimos_Squad", + "violator": "", + "_type": "FortPlaylistInfo", + "display_name": "" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_Fortnitemares_In-GamePlaylist_1024x512_Duos-1024x512-1eadb7cfab62c9eb5c90c65577c676d5d0bb15c2.jpg", + "playlist_name": "Playlist_Deimos_Duo", + "violator": "", + "_type": "FortPlaylistInfo", + "display_name": "" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_LobbyTile_LTM_DiscoDomination-1024x512-c79f07de78d8283656fcf4d1ee757f880911d775.jpg", + "playlist_name": "Playlist_Disco_32", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_LobbyTile_LTM_DiscoDomination-1024x512-c79f07de78d8283656fcf4d1ee757f880911d775.jpg", + "playlist_name": "Playlist_Disco", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_Soaring50s-1024x512-80762dcc260cc959c11dac2ca2f6ae176eb63ef3.jpg", + "playlist_name": "Playlist_Soaring_Squads", + "special_border": "None", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_Soaring50s-1024x512-80762dcc260cc959c11dac2ca2f6ae176eb63ef3.jpg", + "playlist_name": "Playlist_Soaring_Duos", + "special_border": "None", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_Soaring50s-1024x512-80762dcc260cc959c11dac2ca2f6ae176eb63ef3.jpg", + "playlist_name": "Playlist_Soaring_Solo", + "special_border": "None", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_HighStakes_ModeTile-1024x512-741e576e8ae2e30c256ff3508011760ace890711.jpg", + "playlist_name": "Playlist_Bling_Squads", + "violator": "", + "special_border": "HighStakes", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_HighStakes_ModeTile-1024x512-741e576e8ae2e30c256ff3508011760ace890711.jpg", + "playlist_name": "Playlist_Bling_Duos", + "violator": "", + "special_border": "HighStakes", + "_type": "FortPlaylistInfo", + "description": "" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_HighStakes_ModeTile-1024x512-741e576e8ae2e30c256ff3508011760ace890711.jpg", + "playlist_name": "Playlist_Bling_Solo", + "violator": "", + "special_border": "HighStakes", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SolidGold-1024x512-36e202c36d3ef3bd151a97c060401d33ac6f549a.png", + "playlist_name": "Playlist_50v50SAU", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LobbyTile_LTM_ScoreRoyale-1024x512-b608aaf7840cdf6b7a702c5cbe1848a2247516d6.jpg", + "playlist_name": "Playlist_Score_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LobbyTile_LTM_ScoreRoyale-1024x512-b608aaf7840cdf6b7a702c5cbe1848a2247516d6.jpg", + "playlist_name": "Playlist_Score_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LobbyTile_LTM_ScoreRoyale-1024x512-b608aaf7840cdf6b7a702c5cbe1848a2247516d6.jpg", + "playlist_name": "Playlist_Score_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_Soaring50s-1024x512-80762dcc260cc959c11dac2ca2f6ae176eb63ef3.jpg", + "playlist_name": "Playlist_Soaring_50s", + "special_border": "None", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LobbyTile_LTM-Steady-Storm-1024x512-f38e603ed9c80b6210a25c4737d3d8b675b8d28e.jpg", + "playlist_name": "Playlist_Steady_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LobbyTile_LTM-Steady-Storm-1024x512-f38e603ed9c80b6210a25c4737d3d8b675b8d28e.jpg", + "playlist_name": "Playlist_Steady_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LobbyTile_LTM-Steady-Storm-1024x512-f38e603ed9c80b6210a25c4737d3d8b675b8d28e.jpg", + "playlist_name": "Playlist_Steady_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_FlyExplosives-1024x512-6283e3392b3aa44794dac64423b22606f8773503.png", + "playlist_name": "Playlist_FlyExplosives_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_FlyExplosives-1024x512-6283e3392b3aa44794dac64423b22606f8773503.png", + "playlist_name": "Playlist_FlyExplosives_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_FlyExplosives-1024x512-6283e3392b3aa44794dac64423b22606f8773503.png", + "playlist_name": "Playlist_FlyExplosives_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/LTM_Tile_FinalFight-1024x576-5af82788940faeef422ad204aaa241e36e7c9c56.jpg", + "playlist_name": "Playlist_Final_12", + "_type": "FortPlaylistInfo" + }, + { + "image": "", + "playlist_name": "Playlist_Creative_PlayOnly", + "special_border": "None", + "_type": "FortPlaylistInfo", + "display_subname": "-" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistimages/BR_LTM-Tile_Tactics-Showdown-1024x512-a84753f49eb70d8751a99b4db83cdb5eb8290166.jpg", + "playlist_name": "Playlist_Taxes_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistimages/BR_LTM-Tile_Tactics-Showdown-1024x512-a84753f49eb70d8751a99b4db83cdb5eb8290166.jpg", + "playlist_name": "Playlist_Taxes_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistimages/BR_LTM-Tile_Tactics-Showdown-1024x512-a84753f49eb70d8751a99b4db83cdb5eb8290166.jpg", + "playlist_name": "Playlist_Taxes_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/LTM_Tile_FinalFight-1024x576-5af82788940faeef422ad204aaa241e36e7c9c56.jpg", + "playlist_name": "Playlist_Final_20", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SniperShootout-1024x512-bcaf8004961e4e374d0603813f840f4b575d230b.jpg", + "playlist_name": "Playlist_Snipers_Squads", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SniperShootout-1024x512-bcaf8004961e4e374d0603813f840f4b575d230b.jpg", + "playlist_name": "Playlist_Snipers_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SniperShootout-1024x512-bcaf8004961e4e374d0603813f840f4b575d230b.jpg", + "playlist_name": "Playlist_Snipers_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_BlitzShowdown-1024x512-7eccbc505214ac522cc5dde7b3ceaa3a5f99e754.png", + "playlist_name": "Playlist_Comp_Blitz_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_5x20-1024x512-451b402db5751c25a1e7616930c5ae37d8b20710.png", + "playlist_name": "Playlist_5x20", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_Blitz-1024x512-98c63417095442c210177ee9b5f3463d0003cd5a.png", + "playlist_name": "Playlist_Blitz_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_Blitz-1024x512-98c63417095442c210177ee9b5f3463d0003cd5a.png", + "playlist_name": "Playlist_Blitz_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_Blitz-1024x512-98c63417095442c210177ee9b5f3463d0003cd5a.png", + "playlist_name": "Playlist_Blitz_Squad", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_CloseEncounters-1024x512-e617b7603adb59353ba81ed392174859c0c6807b.jpg", + "playlist_name": "Playlist_Close_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_CloseEncounters-1024x512-e617b7603adb59353ba81ed392174859c0c6807b.jpg", + "playlist_name": "Playlist_Close_Squad", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_CloseEncounters-1024x512-e617b7603adb59353ba81ed392174859c0c6807b.jpg", + "playlist_name": "Playlist_Close_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_SoloShowdown-1024x512-0f522b0881adebfe241c6527f03c9140f70b88a7.png", + "playlist_name": "Playlist_Comp_Solo", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SolidGold-1024x512-36e202c36d3ef3bd151a97c060401d33ac6f549a.png", + "playlist_name": "Playlist_SolidGold_Solo", + "violator": "", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SolidGold-1024x512-36e202c36d3ef3bd151a97c060401d33ac6f549a.png", + "playlist_name": "Playlist_SolidGold_Duos", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/LTM_50v50-1024x512-788bf1a67426f54307c4296123ac2d3ff8cc0d6c.png", + "playlist_name": "Playlist_50v50", + "_type": "FortPlaylistInfo" + }, + { + "image": "", + "playlist_name": "Playlist_Carmine", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR_LobbyTileArt_Solo-512x512-24446ea2a54612c5604ecf0e30475b4dec81c3bc.png", + "playlist_name": "Playlist_DefaultSolo", + "hidden": false, + "special_border": "None", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR_LobbyTileArt_Duo-512x512-5dea8dfae97bddcd4e204dd47bfb245d3f68fc7b.png", + "playlist_name": "Playlist_DefaultDuo", + "hidden": false, + "special_border": "None", + "_type": "FortPlaylistInfo" + }, + { + "playlist_name": "Playlist_Trios", + "hidden": false, + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR_LobbyTileArt_Squad-512x512-5225ec6ca3265611957834c2c549754fe1778449.png", + "playlist_name": "Playlist_DefaultSquad", + "hidden": false, + "special_border": "None", + "_type": "FortPlaylistInfo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v12/partyroyaleupdated/EN_12PR_In-Game_Launch_ModeTile-1024x512-13cf734f07363d61f6fec3a2f5486a3550035c32.jpg", + "playlist_name": "Playlist_Papaya", + "hidden": false, + "special_border": "None", + "_type": "FortPlaylistInfo" + } + ] + }, + "_noIndex": false, + "_activeDate": "2018-04-25T15:05:39.956Z", + "lastModified": "2019-10-29T14:05:17.030Z", + "_locale": "en-US" + }, + "playlistimages": { + "playlistimages": { + "images": [ + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_SolidGold-1024x512-36e202c36d3ef3bd151a97c060401d33ac6f549a.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_50v50SAU" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_SolidGold-1024x512-36e202c36d3ef3bd151a97c060401d33ac6f549a.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_SolidGold_Duos" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR05_LobbyTile_LTM_ScoreRoyale-1024x512-b608aaf7840cdf6b7a702c5cbe1848a2247516d6.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Score_Squads" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR05_LobbyTile_LTM_ScoreRoyale-1024x512-b608aaf7840cdf6b7a702c5cbe1848a2247516d6.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Score_Duos" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR05_LobbyTile_LTM_ScoreRoyale-1024x512-b608aaf7840cdf6b7a702c5cbe1848a2247516d6.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Score_Solo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR05_LTM_Soaring50s-1024x512-80762dcc260cc959c11dac2ca2f6ae176eb63ef3.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Soaring_50s" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR05_LobbyTile_LTM-Steady-Storm-1024x512-f38e603ed9c80b6210a25c4737d3d8b675b8d28e.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Steady_Squads" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR05_LobbyTile_LTM-Steady-Storm-1024x512-f38e603ed9c80b6210a25c4737d3d8b675b8d28e.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Steady_Duos" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR05_LobbyTile_LTM-Steady-Storm-1024x512-f38e603ed9c80b6210a25c4737d3d8b675b8d28e.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Steady_Solo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR05_LTM_FlyExplosives-1024x512-6283e3392b3aa44794dac64423b22606f8773503.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_FlyExplosives_Squads" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR05_LTM_FlyExplosives-1024x512-6283e3392b3aa44794dac64423b22606f8773503.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_FlyExplosives_Duos" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR05_LTM_FlyExplosives-1024x512-6283e3392b3aa44794dac64423b22606f8773503.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_FlyExplosives_Solo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_SniperShootout-1024x512-bcaf8004961e4e374d0603813f840f4b575d230b.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Snipers_Squads" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_SniperShootout-1024x512-bcaf8004961e4e374d0603813f840f4b575d230b.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Snipers_Duos" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_SniperShootout-1024x512-bcaf8004961e4e374d0603813f840f4b575d230b.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Snipers_Solo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_5x20-1024x512-451b402db5751c25a1e7616930c5ae37d8b20710.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_5x20" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_Blitz-1024x512-98c63417095442c210177ee9b5f3463d0003cd5a.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Blitz_Solo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_Blitz-1024x512-98c63417095442c210177ee9b5f3463d0003cd5a.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Blitz_Duos" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_Blitz-1024x512-98c63417095442c210177ee9b5f3463d0003cd5a.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Blitz_Squad" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_CloseEncounters-1024x512-e617b7603adb59353ba81ed392174859c0c6807b.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Close_Solo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_CloseEncounters-1024x512-e617b7603adb59353ba81ed392174859c0c6807b.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Close_Squad" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_CloseEncounters-1024x512-e617b7603adb59353ba81ed392174859c0c6807b.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Close_Duos" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_SolidGold-1024x512-36e202c36d3ef3bd151a97c060401d33ac6f549a.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_SolidGold_Solo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_SolidGold-1024x512-36e202c36d3ef3bd151a97c060401d33ac6f549a.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_SolidGold_Squads" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR_LTM-Tile_Playground-1024x512-53db8a4b5fb41251af279eaf923bc00ecbc17792.jpg", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_Playground" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/LTM_50v50-1024x512-788bf1a67426f54307c4296123ac2d3ff8cc0d6c.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_50v50" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR_LobbyTileArt_Solo-512x512-24446ea2a54612c5604ecf0e30475b4dec81c3bc.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_DefaultSolo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR_LobbyTileArt_Duo-512x512-5dea8dfae97bddcd4e204dd47bfb245d3f68fc7b.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_DefaultDuo" + }, + { + "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR_LobbyTileArt_Squad-512x512-5225ec6ca3265611957834c2c549754fe1778449.png", + "_type": "PlaylistImageEntry", + "playlistname": "Playlist_DefaultSquad" + } + ], + "_type": "PlaylistImageList" + }, + "_title": "playlistimages", + "_activeDate": "2018-08-07T02:14:56.108Z", + "lastModified": "2018-08-28T15:50:37.174Z", + "_locale": "en-US" + }, + "tournamentinformation": { + "tournament_info": { + "tournaments": [ + { + "title_color": "FFFFFF", + "loading_screen_image": "https://fortnite-public-service-prod11.ol.epicgames.com/images/lawin.jpg", + "background_text_color": "1B1B1B", + "background_right_color": "DD091A", + "poster_back_image": "https://fortnite-public-service-prod11.ol.epicgames.com/images/lawin.jpg", + "_type": "Tournament Display Info", + "pin_earned_text": "lawin is the winner!", + "tournament_display_id": "s11_switchcup", + "highlight_color": "FFFFFF", + "schedule_info": "November 2nd & 3rd: 2pm - 5pm JST", + "primary_color": "FFFFFF", + "flavor_description": "cool", + "poster_front_image": "https://fortnite-public-service-prod11.ol.epicgames.com/images/lawin.jpg", + "short_format_title": "Event Sessions", + "title_line_2": "boomer", + "title_line_1": "Solo", + "shadow_color": "1B1B1B", + "details_description": "ok", + "background_left_color": "F81B2D", + "long_format_title": "nice", + "poster_fade_color": "DD091A", + "secondary_color": "1B1B1B", + "playlist_tile_image": "https://fortnite-public-service-prod11.ol.epicgames.com/images/lawin.jpg", + "base_color": "FFFFFF" + } + ], + "_type": "Tournaments Info" + }, + "_title": "tournamentinformation", + "_noIndex": false, + "_activeDate": "2018-11-13T22:32:47.734Z", + "lastModified": "2019-11-01T17:33:35.346Z", + "_locale": "en-US" + }, + "emergencynotice": { + "news": { + "_type": "Battle Royale News", + "messages": [ + { + "hidden": false, + "_type": "CommonUI Simple Message Base", + "title": "LawinServer", + "body": "Server created by Lawin (Twitter: @lawin_010)\nDiscord: https://discord.gg/KJ8UaHZ", + "spotlight": true + } + ] + }, + "_title": "emergencynotice", + "_noIndex": false, + "alwaysShow": false, + "_activeDate": "2018-08-06T19:00:26.217Z", + "lastModified": "2019-10-29T22:32:52.686Z", + "_locale": "en-US" + }, + "emergencynoticev2": { + "jcr:isCheckedOut": true, + "_title": "emergencynoticev2", + "_noIndex": false, + "jcr:baseVersion": "a7ca237317f1e771e921e2-7f15-4485-b2e2-553b809fa363", + "emergencynotices": { + "_type": "Emergency Notices", + "emergencynotices": [ + { + "gamemodes": [], + "hidden": false, + "_type": "CommonUI Emergency Notice Base", + "title": "LawinServer", + "body": "Server created by Lawin (Twitter: @lawin_010)\nDiscord: https://discord.gg/KJ8UaHZ" + } + ] + }, + "_activeDate": "2018-08-06T19:00:26.217Z", + "lastModified": "2021-12-01T15:55:56.012Z", + "_locale": "en-US" + }, + "koreancafe": { + "_title": "KoreanCafe", + "cafe_info": { + "cafes": [ + { + "korean_cafe": "PCB.Partner.Neowiz", + "korean_cafe_description": "ON", + "_type": "PCB Info", + "korean_cafe_header": "PC CAFE BENEFITS" + }, + { + "korean_cafe": "PCB.Partner.Other", + "korean_cafe_description": "ON", + "_type": "PCB Info", + "korean_cafe_header": "PC CAFE BENEFITS" + } + ], + "_type": "PCBs" + }, + "_activeDate": "2018-10-25T18:35:49.659Z", + "lastModified": "2018-11-07T06:37:42.201Z", + "_locale": "en-US" + }, + "creativeAds": { + "ad_info": { + "ads": [], + "_type": "Creative Ad Info" + }, + "_title": "creative-ads", + "_activeDate": "2018-11-09T20:00:42.300Z", + "lastModified": "2019-09-25T15:55:44.830Z", + "_locale": "en-US" + }, + "playersurvey": { + "s": { + "s": [ + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Not Motivated", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Motivated", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate how motivated you feel to complete the Chapter 2 - Season 1 Battle Pass", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + }, + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Not Motivated", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Motivated", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate how motivated you feel to complete the Missions and Challenges in Chapter 2 - Season 1", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + }, + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Not Motivated", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Motivated", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate how motivated you feel to complete the Medal Punchcard in Chapter 2 - Season 1", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "sg": [ + "a" + ], + "t": "We want your feedback!", + "id": "191015BattlePassMotivation", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Low", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very High", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate the value of the Chapter 2 - Season 1 Battle Pass", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + }, + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Low", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very High", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate the quality of the content in the Chapter 2 - Season 1 Battle Pass", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + }, + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Low", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very High", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate the variety of the content in the Chapter 2 - Season 1 Battle Pass", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "sg": [ + "a" + ], + "t": "We want your feedback!", + "id": "191015BattlePassSentiment", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about carrying knocked players in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "sg": [ + "a" + ], + "t": "We want your feedback!", + "id": "190924_ITEMC_Carrying_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about swimming in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "sg": [ + "a" + ], + "t": "We want your feedback!", + "id": "190924_ITEMC_Swimming_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about fishing in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "sg": [ + "a" + ], + "t": "We want your feedback!", + "id": "190924_ITEMC_Fishing_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Slurpy Swamp point of interest in Fortnite Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_POIC_Slurpy Swamp_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Holly Hedges point of interest in Fortnite Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_POIC_Holly Hedges_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Salty Springs point of interest in Fortnite Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_POIC_Salty Springs_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Steamy Stacks point of interest in Fortnite Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_POIC_Steamy Stacks_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Dirty Docks point of interest in Fortnite Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_POIC_Dirty Docks_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Misty Meadows point of interest in Fortnite Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_POIC_Misty Meadows_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Frenzy Farm point of interest in Fortnite Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_POIC_Frenzy Farm_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Pleasant Park point of interest in Fortnite Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_POIC_Pleasant Park_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Retail Row point of interest in Fortnite Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_POIC_Retail Row_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Lazy Lake point of interest in Fortnite Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_POIC_Lazy Lake_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Weeping Woods point of interest in Fortnite Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_POIC_Weeping Woods_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Craggy Cliffs point of interest in Fortnite Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_POIC_Craggy Cliffs_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Sweaty Sands point of interest in Fortnite Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_POIC_Sweaty Sands_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Hideouts (Haystacks, Dumpsters, etc) in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_ITEMC_Hideouts_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Fishing Rod in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_ITEMC_Fishing Rod_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Upgrade Bench in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_ITEMC_Upgrade Bench_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Bandage Bazooka in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_ITEMC_Bandage Bazooka_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Motorboat in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190924_ITEMC_Motorboat_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Submachine Gun in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Submachine Gun_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Bolt-Action Sniper Rifle in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Bolt-Action Sniper Rifle_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Pump Shotgun in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Pump Shotgun_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Burst Assault Rifle in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Burst Assault Rifle_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Damage Trap in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Damage Trap_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Small Shield Potion in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Small Shield Potion_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Shield Potion in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Shield Potion_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Medkit in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Medkit_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Grenade in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Grenade_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Bandage in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Bandage_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Tactical Shotgun in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Tactical Shotgun_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Pistol in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Pistol_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Rocket Launcher in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Rocket Launcher_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, how do you feel about the Assault Rifle in Fortnite: Battle Royale?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190619_ITEMC_Assault Rifle_FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_FirstGame" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate your experience in the last game", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190612Game1-HeartbeatNegativePositve-FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Creative_Heartbeats_2000_30d" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate your experience in the last game", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "pc" + ], + "id": "190417HeartbeatNegativePositve-FNC", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Creative_Heartbeats_2000_30d" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Mostly Creating", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Mostly Playing", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "How did you spend your time in the last game?", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "pc" + ], + "id": "190405_TimeSpent_FNC", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Overall, do you feel the addition of the Reboot Van to the game is:", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190405RebootVan-FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": true, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_Statless" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Much Too Slow", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Much Too Fast", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate the pace of the last game", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190308Pace-FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message", + "m": "" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Much Easier", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Much Harder", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Recently do you feel the game is Much Easier (1), the Same (3), or Much Harder (5)", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190308OverallDifficulty-FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": true, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Difficult", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Easy", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate how difficult or easy it is to use the controls for Building", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + }, + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Difficult", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Easy", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate how difficult or easy it is to use the controls for Combat", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + }, + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Difficult", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Easy", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate how difficult or easy it is to use the controls for Moving", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "c" + ], + "id": "190308Controls-StW", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": true, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_Statless" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Difficult", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Easy", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate how difficult or easy it is to use the controls for Building", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + }, + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Difficult", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Easy", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate how difficult or easy it is to use the controls for Combat", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + }, + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Difficult", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Easy", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate how difficult or easy it is to use the controls for Moving", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190308Controls-FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "StW_Probabilities_1000_30dCD" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate how you feel about Building in Fortnite Save the World", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + }, + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Difficult", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Easy", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate how difficult or easy it is to use the Building controls", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "c" + ], + "id": "190308Building-StW", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate how you feel about Building in Fortnite Battle Royale", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + }, + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Difficult", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Easy", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate how difficult or easy it is to use the Building controls", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190308Building-FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "StW_Probabilities_1000_30dCD" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate your experience in the last game", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "c" + ], + "id": "190308HeartbeatNegativePositve-StW", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "StW_Probabilities_1000_30dCD" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Dissatisfied", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Satisfied", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate your satisfaction with the last game", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "c" + ], + "id": "190308HeartbeatSatisfaction-StW", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Dissatisfied", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Satisfied", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate your satisfaction with the last game", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190308HeartbeatSatisfaction-FNBR", + "po": { + "_type": "Player Survey - Message" + } + }, + { + "rt": false, + "pr": { + "t": "", + "_type": "Player Survey - Message" + }, + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + } + ], + "hidden": false, + "e": false, + "_type": "Player Survey - Survey", + "cm": { + "_type": "Player Survey - Message" + }, + "q": [ + { + "mc": { + "s": "rating", + "c": [ + { + "t": "Very Negative", + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "_type": "Player Survey - Multiple Choice Question Choice" + }, + { + "t": "Very Positive", + "_type": "Player Survey - Multiple Choice Question Choice" + } + ], + "t": "Please rate your experience in the last game", + "_type": "Player Survey - Multiple Choice Question" + }, + "_type": "Player Survey - Question Container" + } + ], + "r": "rm", + "t": "We want your feedback!", + "sg": [ + "a" + ], + "id": "190308HeartbeatNegativePositve-FNBR", + "po": { + "_type": "Player Survey - Message" + } + } + ], + "cg": [ + { + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Creative_Heartbeats_2000_Platform" + }, + "_type": "Player Survey - Condition Container" + }, + { + "mc": { + "s": { + "t": "a", + "_type": "Player Survey - Metadata Survey ID" + }, + "t": 30, + "_type": "Player Survey - Condition - Most Recently Completed", + "o": "g" + }, + "_type": "Player Survey - Condition Container" + } + ], + "_type": "Player Survey - Condition Group", + "id": "FNBR_Creative_Heartbeats_2000_30d" + }, + { + "c": [ + { + "_type": "Player Survey - Condition Container", + "o": { + "c": [ + { + "a": { + "c": [ + { + "rd": { + "p": 0.015667324, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Android" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.00226297, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "IOS" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.000181053, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "PS4" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.000979775, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Switch" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.000772231, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Windows" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.000375674, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "XboxOne" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + } + ], + "_type": "Player Survey - Condition - Or" + } + } + ], + "_type": "Player Survey - Condition Group", + "id": "FNBR_Creative_Heartbeats_2000_Platform" + }, + { + "c": [ + { + "mc": { + "s": { + "t": "a", + "_type": "Player Survey - Metadata Survey ID" + }, + "t": 14, + "_type": "Player Survey - Condition - Most Recently Completed", + "o": "g" + }, + "_type": "Player Survey - Condition Container" + }, + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Probabilities_1000_OldPlayers" + }, + "_type": "Player Survey - Condition Container" + } + ], + "_type": "Player Survey - Condition Group", + "id": "FNBR_Heartbeats_30dCD_Statless" + }, + { + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + }, + { + "ss": { + "s": "bl", + "t": 9, + "_type": "Player Survey - Condition - BR Season Stat", + "o": "e" + }, + "_type": "Player Survey - Condition Container" + }, + { + "ab": { + "t": true, + "_type": "Player Survey - Condition - BR Battle Pass Owned" + }, + "_type": "Player Survey - Condition Container" + } + ], + "_type": "Player Survey - Condition Group", + "id": "BPOwnerHeartbeats" + }, + { + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + }, + { + "_type": "Player Survey - Condition Container", + "pi": { + "q": { + "t": "s", + "_type": "Player Survey - Gameplay Tag Query", + "n": [ + "Athena.Location.POI.TheBlock" + ] + }, + "_type": "Player Survey - Condition - BR POI" + } + } + ], + "_type": "Player Survey - Condition Group", + "id": "BlockVisitHeartbeats" + }, + { + "c": [ + { + "_type": "Player Survey - Condition Container", + "o": { + "c": [ + { + "a": { + "c": [ + { + "rd": { + "p": 0.06772773450728073, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "XboxOne" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.11253657438667566, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Switch" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.03493083694285315, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "PS4" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.060595043325455976, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Windows" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.028816782894357674, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "IOS" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.11500862564692352, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Android" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + } + ], + "_type": "Player Survey - Condition - Or" + } + } + ], + "_type": "Player Survey - Condition Group", + "id": "FNBR_FirstGame_1000_Platform" + }, + { + "c": [ + { + "_type": "Player Survey - Condition Container", + "o": { + "c": [ + { + "a": { + "c": [ + { + "as": { + "s": "MatchesPlayed", + "pt": [ + "a" + ], + "t": 1, + "ag": "s", + "_type": "Player Survey - Condition - BR Match Stat", + "i": [ + "gamepad", + "touch", + "keyboardmouse" + ], + "o": "e" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_FirstGame_1000_Platform" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "mc": { + "s": { + "t": "a", + "_type": "Player Survey - Metadata Survey ID" + }, + "t": 30, + "_type": "Player Survey - Condition - Most Recently Completed", + "o": "g" + }, + "_type": "Player Survey - Condition Container OA" + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + } + ], + "_type": "Player Survey - Condition - Or" + } + } + ], + "_type": "Player Survey - Condition Group", + "id": "FNBR_FirstGame" + }, + { + "c": [ + { + "_type": "Player Survey - Condition Container", + "o": { + "c": [ + { + "a": { + "c": [ + { + "rd": { + "p": 0.002751011, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "PS4" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.008374035, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Windows" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.006566055, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "XboxOne" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + } + ], + "_type": "Player Survey - Condition - Or" + } + } + ], + "_type": "Player Survey - Condition Group", + "id": "StW_Probabilities_1000_Platform" + }, + { + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Heartbeats_SplitAt20" + }, + "_type": "Player Survey - Condition Container" + }, + { + "mc": { + "s": { + "t": "a", + "_type": "Player Survey - Metadata Survey ID" + }, + "t": 14, + "_type": "Player Survey - Condition - Most Recently Completed", + "o": "g" + }, + "_type": "Player Survey - Condition Container" + } + ], + "_type": "Player Survey - Condition Group", + "id": "FNBR_Heartbeats_30dCD_SplitAt20" + }, + { + "c": [ + { + "_type": "Player Survey - Condition Container", + "o": { + "c": [ + { + "a": { + "c": [ + { + "as": { + "s": "MatchesPlayed", + "pt": [ + "a" + ], + "t": 1, + "ag": "s", + "_type": "Player Survey - Condition - BR Match Stat", + "i": [ + "gamepad", + "touch", + "keyboardmouse" + ], + "o": "ge" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "as": { + "s": "MatchesPlayed", + "pt": [ + "a" + ], + "t": 20, + "ag": "s", + "_type": "Player Survey - Condition - BR Match Stat", + "i": [ + "gamepad", + "touch", + "keyboardmouse" + ], + "o": "l" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Probabilities_1000_NewPlayers" + }, + "_type": "Player Survey - Condition Container OA" + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "as": { + "s": "MatchesPlayed", + "pt": [ + "a" + ], + "t": 20, + "ag": "s", + "_type": "Player Survey - Condition - BR Match Stat", + "i": [ + "gamepad", + "touch", + "keyboardmouse" + ], + "o": "ge" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "FNBR_Probabilities_1000_OldPlayers" + }, + "_type": "Player Survey - Condition Container OA" + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + } + ], + "_type": "Player Survey - Condition - Or" + } + } + ], + "_type": "Player Survey - Condition Group", + "id": "FNBR_Heartbeats_SplitAt20" + }, + { + "c": [ + { + "_type": "Player Survey - Condition Container", + "o": { + "c": [ + { + "a": { + "c": [ + { + "rd": { + "p": 0.007833662, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Android" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.001131485, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "IOS" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.0000905266885133352, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "PS4" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.000489887477101219, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Switch" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.000386115312824342, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Windows" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.000187837, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "XboxOne" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + } + ], + "_type": "Player Survey - Condition - Or" + } + } + ], + "_type": "Player Survey - Condition Group", + "id": "FNBR_Probabilities_1000_OldPlayers" + }, + { + "c": [ + { + "_type": "Player Survey - Condition Container", + "o": { + "c": [ + { + "a": { + "c": [ + { + "rd": { + "p": 0.002188906, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "XboxOne" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.002041152, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Windows" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.002933814, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Switch" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.000678885, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "PS4" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.002164533, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "IOS" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.008357813, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Android" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + } + ], + "_type": "Player Survey - Condition - Or" + } + } + ], + "_type": "Player Survey - Condition Group", + "id": "FNBR_Probabilities_1000_NewPlayers" + }, + { + "c": [ + { + "mc": { + "s": { + "t": "a", + "_type": "Player Survey - Metadata Survey ID" + }, + "t": 30, + "_type": "Player Survey - Condition - Most Recently Completed", + "o": "g" + }, + "_type": "Player Survey - Condition Container" + }, + { + "_type": "Player Survey - Condition Container", + "o": { + "c": [ + { + "a": { + "c": [ + { + "rd": { + "p": 0.007833662, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Android" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.001131485, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "IOS" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.0000905266885133352, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "PS4" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.000489887477101219, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Switch" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.000386115312824342, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "Windows", + "Mac" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + }, + { + "a": { + "c": [ + { + "rd": { + "p": 0.000187837, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container OA" + }, + { + "_type": "Player Survey - Condition Container OA", + "pl": { + "p": [ + "XboxOne" + ], + "_type": "Player Survey - Condition - Platform" + } + } + ], + "_type": "Player Survey - Condition - And" + }, + "_type": "Player Survey - Condition Container O" + } + ], + "_type": "Player Survey - Condition - Or" + } + } + ], + "_type": "Player Survey - Condition Group", + "id": "FNBR_Probabilities_1000_30dCD" + }, + { + "c": [ + { + "cg": { + "_type": "Player Survey - Condition - Condition Group", + "id": "StW_Probabilities_1000_Platform" + }, + "_type": "Player Survey - Condition Container" + }, + { + "mc": { + "s": { + "t": "a", + "_type": "Player Survey - Metadata Survey ID" + }, + "t": 30, + "_type": "Player Survey - Condition - Most Recently Completed", + "o": "g" + }, + "_type": "Player Survey - Condition Container" + } + ], + "_type": "Player Survey - Condition Group", + "id": "StW_Probabilities_1000_30dCD" + }, + { + "c": [ + { + "rd": { + "p": 0.5, + "_type": "Player Survey - Condition - Random" + }, + "_type": "Player Survey - Condition Container" + } + ], + "_type": "Player Survey - Condition Group", + "id": "Percent50" + } + ], + "e": true, + "_type": "Player Survey - Survey Root" + }, + "_title": "playersurvey", + "_noIndex": false, + "_activeDate": "2019-10-15T07:50:00.000Z", + "lastModified": "2019-10-15T22:00:24.726Z", + "_locale": "en-US" + }, + "creativeFeatures": { + "ad_info": { + "_type": "Creative Ad Info" + }, + "_title": "Creative Features", + "_activeDate": "2019-03-27T14:47:20.426Z", + "lastModified": "2019-06-20T22:06:24.590Z", + "_locale": "en-US" + }, + "specialoffervideo": { + "_activeDate": "2021-08-14T23:58:00.000Z", + "_locale": "pl", + "_noIndex": false, + "_title": "specialoffervideo", + "bSpecialOfferEnabled": false, + "jcr:baseVersion": "a7ca237317f1e78e4627c4-c68f-4a12-9480-066c92dd14e5", + "jcr:isCheckedOut": true, + "lastModified": "2021-07-12T16:08:40.485Z", + "specialoffervideo": { + "_type": "SpecialOfferVideoConfig", + "bCheckAutoPlay": true, + "bStreamingEnabled": true, + "videoString": "", + "videoUID": "" + } + }, + "subgameinfo": { + "battleroyale": { + "image": "", + "color": "1164c1", + "_type": "Subgame Info", + "description": { + "de": "100 Spieler PvP", + "ru": "PVP-режим на 100 игроков", + "ko": "100인 플레이어 PvP", + "en": "100 Player PvP", + "it": "PvP a 100 giocatori", + "fr": "JcJ à 100 joueurs", + "es": "JcJ de 100 jugadores", + "ar": "100 لاعب ضد لاعب", + "ja": "プレイヤー100人によるPvP", + "pl": "PvP dla 100 graczy", + "es-419": "JcJ de 100 jugadores", + "tr": "100 Oyunculu PVP" + }, + "subgame": "battleroyale", + "standardMessageLine2": "", + "title": { + "de": "Battle Royale", + "ru": "Battle Royale", + "ko": "Battle Royale", + "en": "Battle Royale", + "it": "Battaglia reale", + "fr": "Battle Royale", + "es": "Battle Royale", + "ar": "Battle Royale", + "ja": "Battle Royale", + "pl": "Battle Royale", + "es-419": "Batalla campal", + "tr": "Battle Royale" + }, + "standardMessageLine1": "" + }, + "savetheworld": { + "image": "", + "color": "7615E9FF", + "specialMessage": "", + "_type": "Subgame Info", + "description": { + "de": "Kooperatives PvE-Abenteuer!", + "ru": "Совместное сражение с Бурей!", + "ko": "협동 PvE 어드벤처!", + "en": "Cooperative PvE Adventure", + "it": "Avventura cooperativa PvE!", + "fr": "Aventure en JcE coopératif !", + "es": "¡Aventura cooperativa JcE!", + "ar": "مشروع تعاوني للاعب ضد البيئة!", + "ja": "協力プレイが楽しめるPvE!", + "pl": "Kooperacyjne zmagania PvE z pustakami!", + "es-419": "¡Aventura de JcE cooperativa!", + "tr": "Diğer oyuncularla birlikte PvE macerası!" + }, + "subgame": "savetheworld", + "title": { + "de": "Rette die Welt", + "ru": "Сражениес Бурей", + "ko": "세이브 더 월드", + "en": "Save The World", + "it": "Salva il mondo", + "fr": "Sauver le monde", + "es": "Salvar elmundo", + "ar": "Save The World", + "ja": "世界を救え", + "pl": "Ratowanie Świata", + "es-419": "Salva el mundo", + "tr": "Dünyayı Kurtar" + } + }, + "_title": "SubgameInfo", + "_noIndex": false, + "creative": { + "image": "", + "color": "13BDA1FF", + "_type": "Subgame Info", + "description": { + "de": "Deine Inseln. Deine Freunde. Deine Regeln.", + "ru": "Ваши острова. Ваши друзья. Ваши правила.", + "ko": "나의 섬. 나의 친구. 나의 규칙.", + "en": "Your Islands. Your Friends. Your Rules.", + "it": "Le tue isole. I tuoi amici. Le tue regole.", + "fr": "Vos îles, vos amis, vos règles.", + "es": "Tus islas. Tus amigos. Tus reglas.", + "ar": "جزرك. أصدقاؤك. قواعدك.", + "ja": "自分の島。自分のフレンド。自分のルール。", + "pl": "Twoje wyspa, twoi znajomi, twoje zasady.", + "es-419": "Tus islas. Tus amigos. Tus reglas.", + "tr": "Senin Adaların. Senin Dostların. Senin Kuralların." + }, + "subgame": "creative", + "title": { + "de": "Kreativmodus", + "ru": "Творческийрежим", + "ko": "포크리", + "en": "Creative", + "it": "Modalità creativa", + "fr": "Mode Créatif", + "es": "Modo Creativo", + "ar": "Creative", + "ja": "クリエイティブ", + "pl": "Tryb kreatywny", + "es-419": "Modo Creativo", + "tr": "Kreatif" + }, + "standardMessageLine1": "" + }, + "_activeDate": "2019-05-02T16:48:47.429Z", + "lastModified": "2019-10-29T12:44:06.577Z", + "_locale": "en-US" + }, + "lobby": { + "backgroundimage": "https://fortnite-public-service-prod11.ol.epicgames.com/images/seasonx.png", + "stage": "seasonx", + "_title": "lobby", + "_activeDate": "2019-05-31T21:24:39.892Z", + "lastModified": "2019-07-31T21:24:17.119Z", + "_locale": "en-US" + }, + "battleroyalenews": { + "news": { + "_type": "Battle Royale News", + "motds": [ + { + "entryType": "Website", + "image": "https://fortnite-public-service-prod11.ol.epicgames.com/images/motd.png", + "tileImage": "https://fortnite-public-service-prod11.ol.epicgames.com/images/motd-s.png", + "videoMute": false, + "hidden": false, + "tabTitleOverride": "LawinServer", + "_type": "CommonUI Simple Message MOTD", + "title": { + "ar": "مرحبًا بك في LawinServer!", + "en": "Welcome to LawinServer!", + "de": "Willkommen bei LawinServer!", + "es": "¡Bienvenidos a LawinServer!", + "es-419": "¡Bienvenidos a LawinServer!", + "fr": "Bienvenue sur LawinServer !", + "it": "Benvenuto in LawinServer!", + "ja": "LawinServerへようこそ!", + "ko": "LawinServer에 오신 것을 환영합니다!", + "pl": "Witaj w LawinServerze!", + "pt-BR": "Bem-vindo ao LawinServer!", + "ru": "Добро пожаловать в LawinServer!", + "tr": "LavinServer'a Hoş Geldiniz!" + }, + "body": { + "ar": "استمتع بتجربة لعب استثنائية!", + "en": "Have a phenomenal gaming experience!", + "de": "Wünsche allen ein wunderbares Spielerlebnis!", + "es": "¡Que disfrutes de tu experiencia de videojuegos!", + "es-419": "¡Ten una experiencia de juego espectacular!", + "fr": "Un bon jeu à toutes et à tous !", + "it": "Ti auguriamo un'esperienza di gioco fenomenale!", + "ja": "驚きの体験をしよう!", + "ko": "게임에서 환상적인 경험을 해보세요!", + "pl": "Życzymy fenomenalnej gry!", + "pt-BR": "Tenha uma experiência de jogo fenomenal!", + "ru": "Желаю невероятно приятной игры!", + "tr": "Muhteşem bir oyun deneyimi yaşamanı dileriz!" + }, + "offerAction": "ShowOfferDetails", + "videoLoop": false, + "videoStreamingEnabled": false, + "sortingPriority": 90, + "websiteButtonText": "Discord", + "websiteURL": "https://discord.gg/KJ8UaHZ", + "id": "61fb3dd8-f23d-45cc-9058-058ab223ba5c", + "videoAutoplay": false, + "videoFullscreen": false, + "spotlight": false + } + ], + "messages": [ + { + "image": "https://fortnite-public-service-prod11.ol.epicgames.com/images/discord.png", + "hidden": false, + "_type": "CommonUI Simple Message Base", + "adspace": "DISCORD!", + "title": "Join our discord server!", + "body": "https://discord.gg/KJ8UaHZ", + "spotlight": false + }, + { + "image": "https://fortnite-public-service-prod11.ol.epicgames.com/images/lawin.jpg", + "hidden": false, + "_type": "CommonUI Simple Message Base", + "adspace": "ENJOY!", + "title": "LawinServer", + "body": "Enjoy LawinServer!", + "spotlight": false + } + ] + }, + "_title": "battleroyalenews", + "header": "", + "style": "SpecialEvent", + "_noIndex": false, + "alwaysShow": false, + "_activeDate": "2018-08-17T16:00:00.000Z", + "lastModified": "2019-10-31T20:29:39.334Z", + "_locale": "en-US" + }, + "battleroyalenewsv2": { + "news": { + "motds": [ + { + "entryType": "Website", + "image": "https://fortnite-public-service-prod11.ol.epicgames.com/images/motd.png", + "tileImage": "https://fortnite-public-service-prod11.ol.epicgames.com/images/motd-s.png", + "videoMute": false, + "hidden": false, + "tabTitleOverride": "LawinServer", + "_type": "CommonUI Simple Message MOTD", + "title": { + "ar": "مرحبًا بك في LawinServer!", + "en": "Welcome to LawinServer!", + "de": "Willkommen bei LawinServer!", + "es": "¡Bienvenidos a LawinServer!", + "es-419": "¡Bienvenidos a LawinServer!", + "fr": "Bienvenue sur LawinServer !", + "it": "Benvenuto in LawinServer!", + "ja": "LawinServerへようこそ!", + "ko": "LawinServer에 오신 것을 환영합니다!", + "pl": "Witaj w LawinServerze!", + "pt-BR": "Bem-vindo ao LawinServer!", + "ru": "Добро пожаловать в LawinServer!", + "tr": "LavinServer'a Hoş Geldiniz!" + }, + "body": { + "ar": "استمتع بتجربة لعب استثنائية!", + "en": "Have a phenomenal gaming experience!", + "de": "Wünsche allen ein wunderbares Spielerlebnis!", + "es": "¡Que disfrutes de tu experiencia de videojuegos!", + "es-419": "¡Ten una experiencia de juego espectacular!", + "fr": "Un bon jeu à toutes et à tous !", + "it": "Ti auguriamo un'esperienza di gioco fenomenale!", + "ja": "驚きの体験をしよう!", + "ko": "게임에서 환상적인 경험을 해보세요!", + "pl": "Życzymy fenomenalnej gry!", + "pt-BR": "Tenha uma experiência de jogo fenomenal!", + "ru": "Желаю невероятно приятной игры!", + "tr": "Muhteşem bir oyun deneyimi yaşamanı dileriz!" + }, + "offerAction": "ShowOfferDetails", + "videoLoop": false, + "videoStreamingEnabled": false, + "sortingPriority": 90, + "websiteButtonText": "Discord", + "websiteURL": "https://discord.gg/KJ8UaHZ", + "id": "61fb3dd8-f23d-45cc-9058-058ab223ba5c", + "videoAutoplay": false, + "videoFullscreen": false, + "spotlight": false + } + ], + "_type": "Battle Royale News v2" + }, + "jcr:isCheckedOut": true, + "_title": "battleroyalenewsv2", + "_noIndex": false, + "alwaysShow": false, + "jcr:baseVersion": "a7ca237317f1e7721def6e-9f96-4c43-b429-30c794953b04", + "_activeDate": "2020-01-21T14:00:00.000Z", + "lastModified": "2021-09-14T16:31:00.888Z", + "_locale": "en-US" + }, + "dynamicbackgrounds": { + "backgrounds": { + "backgrounds": [ + { + "stage": "fortnitemares", + "_type": "DynamicBackground", + "key": "lobby" + }, + { + "stage": "fortnitemares", + "_type": "DynamicBackground", + "key": "vault" + } + ], + "_type": "DynamicBackgroundList" + }, + "_title": "dynamicbackgrounds", + "_noIndex": false, + "_activeDate": "2019-08-21T15:59:59.342Z", + "lastModified": "2019-10-29T13:07:27.936Z", + "_locale": "en-US", + "_templateName": "FortniteGameDynamicBackgrounds" + }, + "creativenews": { + "news": { + "_type": "Battle Royale News", + "messages": [ + { + "image": "https://fortnite-public-service-prod11.ol.epicgames.com/images/discord.png", + "hidden": false, + "_type": "CommonUI Simple Message Base", + "adspace": "DISCORD!", + "title": "Join our discord server!", + "body": "https://discord.gg/KJ8UaHZ", + "spotlight": false + }, + { + "image": "https://fortnite-public-service-prod11.ol.epicgames.com/images/lawin.jpg", + "hidden": false, + "_type": "CommonUI Simple Message Base", + "adspace": "ENJOY!", + "title": "LawinServer", + "body": "Enjoy LawinServer!", + "spotlight": false + } + ] + }, + "_title": "Creativenews", + "header": "", + "style": "None", + "_noIndex": false, + "alwaysShow": false, + "_activeDate": "2018-08-17T16:00:00.000Z", + "lastModified": "2019-10-31T20:35:52.569Z", + "_locale": "en-US" + }, + "shopSections": { + "_title": "shop-sections", + "sectionList": { + "_type": "ShopSectionList", + "sections": [ + { + "bSortOffersByOwnership": false, + "bShowIneligibleOffersIfGiftable": false, + "bEnableToastNotification": true, + "background": { + "stage": "default", + "_type": "DynamicBackground", + "key": "vault" + }, + "_type": "ShopSection", + "landingPriority": 70, + "bHidden": false, + "sectionId": "Featured", + "bShowTimer": true, + "sectionDisplayName": "LawinServer Item Shop", + "bShowIneligibleOffers": true + } + ] + }, + "_noIndex": false, + "_activeDate": "2022-12-01T23:45:00.000Z", + "lastModified": "2022-12-01T21:50:44.089Z", + "_locale": "en-US", + "_templateName": "FortniteGameShopSections" + }, + "_suggestedPrefetch": [] +} \ No newline at end of file diff --git a/lawin/responses/friendslist.json b/lawin/responses/friendslist.json new file mode 100644 index 0000000..4e3682a --- /dev/null +++ b/lawin/responses/friendslist.json @@ -0,0 +1,79 @@ +[ + { + "accountId": "Player123", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T13:38:39.614Z", + "favorite": false + }, + { + "accountId": "Player857", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T13:38:45.823Z", + "favorite": false + }, + { + "accountId": "Player955", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T13:42:38.200Z", + "favorite": false + }, + { + "accountId": "Player444", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T13:47:15.982Z", + "favorite": false + }, + { + "accountId": "Player742", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T13:57:03.026Z", + "favorite": false + }, + { + "accountId": "abc", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T13:57:32.044Z", + "favorite": false + }, + { + "accountId": "Player", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T14:35:00.802Z", + "favorite": false + }, + { + "accountId": "Player260", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T18:41:47.035Z", + "favorite": false + }, + { + "accountId": "abce1", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-23T19:36:22.635Z", + "favorite": false + }, + { + "accountId": "Player809", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-31T19:09:47.089Z", + "favorite": false + }, + { + "accountId": "Player153", + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": "2024-05-31T19:50:04.738Z", + "favorite": false + } +] \ No newline at end of file diff --git a/lawin/responses/friendslist2.json b/lawin/responses/friendslist2.json new file mode 100644 index 0000000..f7e36d3 --- /dev/null +++ b/lawin/responses/friendslist2.json @@ -0,0 +1,110 @@ +{ + "friends": [ + { + "accountId": "Player123", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T13:38:39.614Z" + }, + { + "accountId": "Player857", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T13:38:45.823Z" + }, + { + "accountId": "Player955", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T13:42:38.200Z" + }, + { + "accountId": "Player444", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T13:47:15.982Z" + }, + { + "accountId": "Player742", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T13:57:03.026Z" + }, + { + "accountId": "abc", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T13:57:32.044Z" + }, + { + "accountId": "Player", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T14:35:00.802Z" + }, + { + "accountId": "Player260", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T18:41:47.035Z" + }, + { + "accountId": "abce1", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-23T19:36:22.635Z" + }, + { + "accountId": "Player809", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-31T19:09:47.089Z" + }, + { + "accountId": "Player153", + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": "2024-05-31T19:50:04.738Z" + } + ], + "incoming": [], + "outgoing": [], + "suggested": [], + "blocklist": [], + "settings": { + "acceptInvites": "public" + } +} \ No newline at end of file diff --git a/lawin/responses/keychain.json b/lawin/responses/keychain.json new file mode 100644 index 0000000..567d73c --- /dev/null +++ b/lawin/responses/keychain.json @@ -0,0 +1,1314 @@ +[ + "46159C748694298198A52DC07476FDA3:4CLHOBqSrmS1RkG/SxZYi8Rc0zCmAKxXIBMMUHDl2ag=", + "8DA867A3B1F0E3A0985B0AB812C3582A:vS8S10ETj2TxdtD57p/iNINbMj4mfumCT6q3eV/jhdU=", + "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:BID_737_Alchemy_1WW0D", + "024641850664615E97BE1533A4F3365E:Ut4/ICU0gseFN8MGgYyUTmWidRtj9yeo/NNBp4y/7hs=", + "457F39EA51FB4C723B442810750CDA4A:V3d05mcuS4uXMBRpy63TIZDLt5hg9njVD0SGhZDsmBw=:Backpack_Sahara", + "688022C4193EA6D9DF1EDC7F6CF826DA:lOR338TzQ75G7R81RCKTdjYmYCjhSKJIB+ScPYanNow=", + "46FC5EBAD39CE53EFB215A2E05A915FC:H3gtdkEzT3Dk8vkwTTZE9oUDoJEy6vmfQj1jDo453gY=:Glider_ID_140_ShatterFly", + "1F5D9EEE331B5E84D6A7AEFF4E80768E:2X6Gzwp+PQOeejP7HwJp98aO9pTVDnX/t5pe5Wa4WyE=", + "5776BD1A9BFC4EEEB7DD1FCA71B9C39C:jkYOI3VSLqXBCMYyxpfl/soGCBdplmqs8C2AOg1pcGU=", + "7C04002177805455CCA13E61F418D117:cacqp05gISCHgiULNDksrFNlUbhz6NxeW7pEr+xp2FQ=", + "8F6ACF5D43BC4BC272D72EBC072BDB4F:rsT5K8O82gjB/BWAR7zl6cBstk0xxiu/E0AK/RQNUjE=:CID_246_Athena_Commando_F_Grave", + "4A8216304A1A18CB9583BC8CFF99EE26:QF3nHCFt1vhELoU4q1VKTmpxnk20c2iAiBEBzlbzQAY=:CID_184_Athena_Commando_M_DurrburgerWorker", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_949_Athena_Commando_M_Football20Referee_C_SMMEY", + "F2A5D91602A7C130FA1FB30A050E98A2:MrhEh24cVikkhJJUX/LBAaNtgYV20VBiR5oaMDJ2nA8=:BID_946_Galactic_S1CVQ", + "30A11EE8EB62BEFD4E9B09611DB13857:YVeVPXcP7UoJTp71ZXpGNdPVzmjnRyymcUpsNWYXfRs=:BID_508_DonutDish", + "4C3B1FC20956AE8C3C29A85446D013F4:dVksVi55yMPvgmuA2rjvlyDlySrQOK8wmH3aa69wtZo=:BID_A_003_Ultralight", + "D85DFC0115FC3C75A6AD9C5D15B0DBF4:KFp5kuqdJIex+SS95mCy4nETnpzlaY8UHe8X7BSjGxY=:Wrap_080_Blackout1", + "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:EID_BasketballDribble_E6OJV", + "DB982042FC23E63A912CF079BB11B4D7:XxSdF8FvU6TPmMg2ZFLcxPXFyom3s5IcDpSFz8rcdfQ=:EID_Devotion", + "7F2E96A8331098ACD5BB8DC29D4A3F57:kDTbN2yRZAIwEEQsF2zoJwdhtsK0lcb5zEuon7vziuk=", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage", + "010E6ACF85E4A58BF6F551EFE7B85F61:DwCIH5Dw/1wdiS6gFGmWe4HUgD9kMOEzjbzM/1QshM4=:Pickaxe_ID_178_SpeedyMidnight", + "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=:EID_Noble", + "A92DE306E5174C82739D774151D7B661:RF9sTh7l2tp+ypCb/Lp3WeMfBExvk2LSUbim04xsCJo=", + "471CA05DCEE84890F9287E4E0DB31C08:cclx9Dp+FcphJfVZLUAdo21nLGn8pQ7GutQgY4LCOts=:Pickaxe_WinterHunterFNCS", + "8335E3DF8B0DFBCB0C05EFB5FF1B8A81:shx/UPd2PJpGZtpddRmoS7RosbEO0MlsaNb+9aaQR9g=:Pickaxe_ID_204_Miner", + "DC487286E8C1CD5FE18AC3FE76034EF2:3h9IwK2qQP8PHVuO1aZI1C34JrJxKBnXJOFcSDSj99M=:CID_478_Athena_Commando_F_WorldCup", + "CB2F74DD1C6D7FB4560BF4AA6B7460EE:1MXyB7YDAZC+p/2Fl+tefE6s3cCdKs+5tXDHEg1JLfg=:MusicPack_178_S24FNCSDrops", + "8A6DABC9AF8B5FE521D365DB605D0AE0:T721SqBTncYsd8Gej01RnLX6sEaCgJoILnRauHaJz+g=:BID_284_NeonLines", + "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=", + "B9E8BA33F3FF6F9DB4CA35F51437B433:6gLG1UQHcMeCErfTl6ZNA78CzF2boBxzxfF1GPqnPSE=:EID_Iconic", + "73997D156EB0408D62DFD6C98F37F153:sCkek0K/q2DJt8RTMG09RpU0wnr+JWtslnn8Zds4qEM=", + "DE4CBA7A27B818D6B299767036C671A9:o7axeOYDdjXZ4MTWM4Io4XRNfQG2WH9qwPvBSJk8vJM=:Wrap_508_ApexWild", + "5E15C5486CE8E539552D4D3E7682F9E2:+L/tTz+woDFZJEvtxfq8m8tNI1R72sYK7rnYr7sHTis=:EID_TeamRobot", + "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=:LSID_325_RiftTourMKTG1_18M49", + "BF344823BEE88FA8760A410311A30150:mcfE7CGJQLRE5dWZTCNPCCPgSBV7CMLl6lvpF+nzqzw=:LSID_479_Astral", + "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Pickaxe_EmeraldGlassGreen", + "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=:BID_945_SleekGlasses_GKUD9", + "5A33986E8C23E664BD8A70D41697A93F:nFqFG2z7mnQhf4Q3iR6zQ2eWykiuwy0af+ga9QWnU6o=", + "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:Pickaxe_ID_788_LyricalMale", + "0FA46244428655D55790A980B59745AD:fEzJj2anX6D4HyOhaXyNar9oFa+L2/ob/RIXLnxWc7Y=:CID_328_Athena_Commando_F_Tennis", + "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:MusicPack_030_BlackMonday_X91ZH", + "4009CB877085F3B3B0D76A686465A140:gMLJXUbFcIrqqUlAuoMI1b27KdWHBVJJeJWdYV1Iiro=:EID_KeplerFemale_C98JD", + "F73156B85666DAE88D9359504D1F7C85:bOvve/ewsWhDoK6S3QIpVI7QwUel31Vv5aS4tvdUVaY=", + "6DD6F574BA76BD6B68E14FF19181F2B6:Z/OnCtvolWJSaChHeIIVFXB8fptk8QBW8JQD1Gk2w+Y=:EID_Shaka", + "D47524F6F863DCCBB2455472F0FEFE2C:cRoiHZin2Lnv6yQ4Zt2WoIpQc1ZjLbfl1Ogid24ydZM=:CID_A_416_Athena_Commando_M_Armadillo", + "F60CFFFA32CF6A877B50DA7F0A88326E:OWIopbB4fxaobofPI9lF9hn6BPG9NVLp4Od61uQppfo=:CID_392_Athena_Commando_F_BountyBunny", + "AEE3BAAED938060FA62CF46437980785:AB2FJfGGyKH35KJnl2p6t/85sZYO5gSgbS+ilBA2mX4=:EID_HeavyRoarDance", + "6CED8B5F648ED1ACCC8F1194901775AF:qjfCT39FVniEjPj+CvZu5Qz8XHHtdnH8kCsV3P1OaJw=:BID_252_EvilBunny", + "6CFF02B6F01FBC306D428E8EE2CA6232:1BaXCMF6dJeORZditLbWRLFKVlvYZerZdvifZuvNTfk=", + "20366C09DB19030DD8169A4D7560FCC1:Bt750bLY8a84ai95EQ3JWESQj5jz5Bf5LItpADksD5o=", + "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisGooseberry", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Wrap_Comp26", + "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:BID_988_Rumble", + "80B01346D82C75E9165D30C8D4670D67:vUSIr4/Ld2SstnhJMcWOWEbtPeQ0EOY5g1XV9OWFBW0=", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:Pickaxe_ID_734_SlitherMale_762K0", + "216D955070ADAF10973BD156897472C3:MjQh55OvnJCoVMQzMU4C/1NF3FWiXDXnJ6G/EcHfUzo=:EID_AshtonBoardwalk", + "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_081_Athena_Commando_M_Hardwood_B_JRP29", + "FD0C3696948675DC3C2CBF5098D57D0D:rBWyTh/AVyZxi2oiQxM/OeD/HYZOSdVidEQeKoowV6U=:BID_744_CavernMale_CF6JE", + "25E4BA752FB1328DA3E5EDB5FFAA47C3:Mrh9sFIpmcD6xhM2zQjHjqzV5QuJBXS29x0fS5IFcFk=:BID_789_CavernArmored", + "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:EID_Galileo4_PXPE0", + "C779C5126616BE8EA5FF851D2FF1FF34:uK97yLbZmBvrWhlMlQmYfVWq2l4mRy/CEm5H/zczFDI=", + "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=:EID_Sleek_S20CU", + "7313591AB9F0A7E46AB016065DE8F65A:NAL0bLW1p+ceLF4lhxfm1vQPaMlv8eNPP6tTizTZEN0=:CID_398_Athena_Commando_M_TreasureHunterFashion", + "DC060EA83FE6F9729B19150E40C7987E:zW3d3QhtvhE+q3x/P7/BA9JvyoruVmeACdKt6RPxyLY=:Glider_ID_357_JourneyFemale", + "2A236A35ED4833924DF975CEBE4282AF:e4NpefIqezxUVeH+2INzCV08eK4NvFrojB8z1awxm6Q=:Backpack_BrainMatter", + "929B82B3454DF80CC45B11A55400B6E7:jl/KsmshfBxKKnPDHyHNTHOzTE3buCIrBpSUpXJQdL4=:BID_180_IceMaiden", + "6BE73A630C01192C39807CEDA006C77C:3MYDxjacnNgSQwxc68DknO3e6TKXSw4tG5TVdSxGdFE=:Pickaxe_ID_327_GalileoKayak_50NFG", + "AFCCB7C08EC6957EEDDAAD676C3D3513:MuovEXob241ie6/RP76ImUk+MExLdl+bszvxCHNtg0U=", + "605CA1F4F68E09A4A0784DE3D6E9FB88:TKaxKxc1yoVFdUqQNWdG3bofE78hwuma5x5Go2dnLxQ=:Pickaxe_IonVial", + "9261CD0F921EAA3CD6AA8C0716FB042B:W+yzeWWxWnA530lwV8nLi2BE+TD5MCXS11th7UphmPQ=:Pickaxe_ID_542_TyphoonFemale1H_CTEVQ", + "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:Glider_ID_153_Banner", + "E242355FF51310B9E4D8C595E9933F91:vLuGAIIz3ZtzLhJV0Qqka3VuhSZ7nB/URRMCoSRKrbM=", + "FD0C3696948675DC3C2CBF5098D57D0D:rBWyTh/AVyZxi2oiQxM/OeD/HYZOSdVidEQeKoowV6U=:Pickaxe_ID_589_CavernMale_9U0A8", + "001B8CDAE8386ACB5DFE26FA59C10B40:XA9kqeHyWLK/xsRzYLCkooN/dBRNTyjy5sw9Jv+8nRs=", + "8AE56A5795250C959CD4357AF32DA563:GL9+gTLkh5vnyzImLDdxGYFksrHsmmJSUfZB9mP9fdM=", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Wrap_Pencil", + "4C3B1FC20956AE8C3C29A85446D013F4:dVksVi55yMPvgmuA2rjvlyDlySrQOK8wmH3aa69wtZo=:Pickaxe_ID_800_UltralightFemale", + "C624A3D18A8A2494288EE915D11518B7:/q+bDo9akBx2JId6QvLQW1YoN4jBEEn+QdzBXjB3OpQ=", + "35C2B057E5168DCA74B6F1DDAC745E60:73haJlY3S0TVmH0ELxyw6p5FzFRrITWqOmobH9F2Mq8=:BID_937_KeenMale_YT098", + "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:Wrap_395_TextileBlack_DBVU2", + "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:BID_953_Gimmick_1I059", + "1937F4ADBC2C38EF4F189DC2B1AE58AB:tWzxKwKEDzI0RsQGl2GvOVqZwxOSOiZaCQkyK1hE+lA=:EID_InspireSpell", + "4C8D53A32D85124D08A3DCE6D3474A30:gam5sVciLPzKr+wmWOoctLo5HFqBvBLKKcxh6ZV1kn0=:Pickaxe_ID_532_WombatFemale_CWE2D", + "7F2E96A8331098ACD5BB8DC29D4A3F57:kDTbN2yRZAIwEEQsF2zoJwdhtsK0lcb5zEuon7vziuk=:Pickaxe_FolkEvening", + "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=", + "AC22C5B2B654FE15BDCC8B664D033140:zE2ddgoXrJ7X0UEkphUtys0CeoTzIDpAZ58beqOkx4M=:CID_A_232_Athena_Commando_F_CritterStreak_YILHR", + "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=:Pickaxe_ID_747_ZestMale_3KAEG", + "010E6ACF85E4A58BF6F551EFE7B85F61:DwCIH5Dw/1wdiS6gFGmWe4HUgD9kMOEzjbzM/1QshM4=:Glider_ID_131_SpeedyMidnight", + "BDB9B53603F92D55B57E8DB38FCEB570:gPrhs5YAEFh9OzYY0tSw8MPRFr/aS0cdRLp41tjsU3Y=:EID_Goodbye", + "471CA05DCEE84890F9287E4E0DB31C08:cclx9Dp+FcphJfVZLUAdo21nLGn8pQ7GutQgY4LCOts=", + "7FA066BD68EDBE54C44CEAF5FDE591AA:MqrhrL7xbe11CZPwz1pJTx8M8yUHGe/VHL29VKlKVKg=", + "A0926AD8C6EDE29250AC4A0A93156E7B:keN/yZ7qnvcPZeIflsked9TAT867gbPgmnG1QdlSn3E=:Pickaxe_ID_382_Donut1H", + "C2216794035D5FC95DCC07FA72E1EC86:4CS9WyhB+tpbl/w4bd+9cnjWZTf0NCO8zl1/6TmIQeM=:EID_HNYGoodRiddance", + "C0AD693BD109852AFC71C988E5C3589A:oTfNfTILozJvyHrE98zPpUgw4m7MTS9na29b0CswpNc=", + "8AB2A1D47937F30D49879F4043164045:Mwur5341qGGuZkJb6aGqo7oPYGS5RIaLu3lgf5n6eRg=", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:EID_FootballTD_U2HZI", + "D49757E2D55451A0D5B341906FE2ABE4:PWMwnjgi/wUDV+yxg02QsU33jA529fxVTRHyqnkv21c=:Glider_ID_142_AshtonSaltLake", + "0C2DFF3432352A23684E05B0794DFFC7:FG55cmgdBnszsr5pS0aBC44NVl7OyI+AuOXxALyaNKA=", + "2D24182706636A7BD3E96AD37605BAD6:jEZJE+EAU7VDo6p6Y84e4+p3AHxYBWin144H4MhzaSQ=:Pickaxe_ID_427_Seaweed1H_CZ9HA", + "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:BID_A_060_WayfareMale", + "4E7938F1FAC98BDF378823116712AC7A:jbZVgprILTQomUdGeJF0PsAFAJxsSCs5cKcXweZMAg0=:EID_Tar_S9YVE", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_299_Athena_Commando_M_Slither_B_1X28D", + "2FE8DBD09F14AAF7D195AA73B9613792:KwIehLEKaCSJb5X/WcQ9IULKkz3G3M9f9Z5Jgi9hYUU=:Pickaxe_ID_297_FlowerSkeletonFemale1H", + "8B9DC1A32A4081596F0AE60926CF6846:4O/n/4TAJpnQ3BvcadiKLHRNSmZQQbr+15RSrDHnrQ4=", + "F395571A36D2BD888861E61EEBD45AF8:D/35GPTIOKbdfmpxRJmHTkjNXcWv+XdSmTxQt6z1hvI=:Pickaxe_ID_554_SkirmishMale_ML78Q", + "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_353_Athena_Commando_F_TreyCozy_E_JRL60", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:EID_Grasshopper_8D51K", + "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:EID_Spiral", + "E0AEF4894E1283946745F7902F7E105A:7MXKJEs903nNbT1oFzykxoHbQNDnOBm6yfadj+mtBDA=:BID_954_Rover_0FV73", + "ED088B11311A599D6225CE85545F019A:1NMRh4JMXRL9XW8Kb6zo4/F10dwLJC1+kPm6D6DudCE=:Pickaxe_ID_653_LavishMale1H_SWKJB", + "A0926AD8C6EDE29250AC4A0A93156E7B:keN/yZ7qnvcPZeIflsked9TAT867gbPgmnG1QdlSn3E=:Glider_ID_206_Donut", + "566C4D92AF66F45DF5E2D7EB43CC27AE:EuAYwU5tQBXzGoSj5BMc7S5yFfe9wZ2qrzx/hIHpnqw=", + "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:LSID_428_Lyrical", + "163D68B009421CA82956BDD63659F7C0:SAE6Yruow/8IPkoOuzYEnjJFyvBuwLNI11z9/5EfyL0=:EID_TwistWasp_T2I4J", + "BF344823BEE88FA8760A410311A30150:mcfE7CGJQLRE5dWZTCNPCCPgSBV7CMLl6lvpF+nzqzw=:BID_A_067_AstralFemale", + "74AF07F9A2908BB2C32C9B07BC998560:V0Oqo/JGdPq3K1fX3JQRzwjCQMK7bV4QoyqQQFsIf0k=:BID_302_Hairy", + "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:BID_361_BlackMondayFemale_R0P2N", + "5869B4D27CF6766E4047DB0636CB6D72:bFnq5n5S+PRZZFp/dGhAmy63liDVz7wufMqMm65B0FE=", + "5AD068EB1D56D87706E44EEB3198CF1B:o9Gp08KD/vgq3RTrUbfGJk7rlfUqZMxoRKPiwvdVkXY=:EID_LogarithmWhoa_T3PF9", + "D8FDE5644FE474C7C3D476AA18426FEB:orzs/Wp9XxE5vpybtd0tOxX6hrMyZZheFZusAw1c+6A=:BID_126_DarkBomber", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:BID_635_York_Male", + "E36F7DC3B2ECE987FC956C3CF7E71F21:+Y1iPDRR7adeEjebuo6DzBiHkgK0c4ZOwgmrnYYx43w=", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Pickaxe_BraveBuild", + "28CBBF705C9DB5A88BEC70DAA005E02E:FvtzBBvDkyj8PRLW76169bMFvg65VojYrSmkjUAi4Bc=:Pickaxe_ID_259_CupidFemale1H", + "210726DF9DCD78AD95B4D407D5D9157B:cXzvTrgNBBmsa8jR8E4q9NFBasv/zdQSSPQmnKznkJE=:EID_SecurityGuard", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_236_Athena_Commando_M_Grasshopper_C_47TZ8", + "87F01091E4DA4FE3FFC9AD92A20A8DCE:p+5QvlQEV5QW2QQrIWrDnnthhNN9V0wXK+Zdmiw71u0=", + "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_A_001_Athena_Commando_F_GlobalFB_HDL2W", + "88FA70760D757D80F661FA53B4762EC2:7OtV76cpyOq9dNeM5PVD8TOdRcPx1K3weEPXzlCugu0=:BID_877_BistroAstronaut_LWL45", + "4009CB877085F3B3B0D76A686465A140:gMLJXUbFcIrqqUlAuoMI1b27KdWHBVJJeJWdYV1Iiro=:BID_704_KeplerFemale_C0L25", + "D7EDE7B4CE393235BF4EB8779C55D5AE:tvYJfExMmwMpbWXSe8bxfGkpl1wcJv4B/RBjd8qWcZ4=:BID_928_OrbitTeal_R54N6", + "7DA161D7F5AB6AF6582AE0A40C803E35:LSL2m9TCTyHRII5NJx3KmYr/Zfohz2nWUbRUKPqAkOU=", + "F6838AF4144E8386A184FBB0823C15D0:IjzqnnHjZ+r6WC4He/JawOyR7LxeMbm5880cDGDr2eU=:BID_229_LuckyRiderMale", + "80FC6D214CD513415CB0A54044683293:fXY1Xojrg1HpH6ZF0xNrhF9XZKS15GmaBidF9kSAbME=", + "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:BID_289_Banner", + "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_996_Athena_Commando_M_GlobalFB_B_RVED4", + "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Backpack_InstantGravel", + "EBA3BC7F0023BE91CE5EFB7E1BC001A8:MdKbawNIe4qCuGaB4q7+4cy8keyDnJnxZLa7HLC0W4A=:EID_Feral", + "C5188047D9661347FC4483CCB04ACD4C:TlesZ5LgoEoJqkJaz7N2QB43zNWIJdOpx8rOpsbGC48=", + "C76299772B1BE272260BF3396F83FC1E:uiBDMtwYhdxktbqTrhYkzEZErlBp5gBtkLM+QFDouT4=:Pickaxe_ID_668_ClashVMale1H_5TA18", + "C76299772B1BE272260BF3396F83FC1E:uiBDMtwYhdxktbqTrhYkzEZErlBp5gBtkLM+QFDouT4=:Glider_ID_317_VertigoMale_E3F81", + "E0FB7B394449CE6450EA90C93D710EB8:NrXwNX6lKuu/kyQuvE74+6Uo04FODoV4ZqxToj/jS6I=:Pickaxe_ID_230_Drift1H", + "9078B5331B187C32C649D4B1E5530EEC:l1U0jw2fdShRIHGNl1NYmG8YDAJEUSIfhI46nJgSt30=", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_911_Athena_Commando_F_York_B", + "1655272875DB718493BB6B09032657D7:xQLpNTDeYJCcQOUQS2ICyfByvhPU3nC5cfJRbPSugdY=:EID_Survivorsault_NJ7WC", + "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:Pickaxe_ID_675_TextilePupMale_96JZF", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Pear", + "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:Pickaxe_ID_691_RelishMale_FVCA7", + "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=:LoadingScreen_Sunburst_KeyArt", + "C7623A35411F3D5FBDE2688C7E4A69EB:qAi49mUKsB2dbfbtJWDf3yO2DfRStA+Ed9XgDjC8Zaw=:Glider_ID_109_StreetGoth", + "ECC8CCC7C241C9B739143FE703D69DDA:AvNIyTB6kImt6X7YtGzzIBC3mPIZNXcMn8B9U2B/dx0=:EID_Hoist", + "4755D9C0E2D1DE1C09B77DEA8B830471:9tUO5yVhvp+/sp7icZaEDw05nMAdS6bYAWYyfQNsxBc=:Pickaxe_ID_387_DonutCup", + "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:LSID_294_Alchemy_09U3R", + "2E03F4DA95202509D578A5960D35A8A3:UrLxBerp5zeoMJHaXjYqAevNSNP2Jce8sG2zqnvO+NQ=:EID_OilPaint", + "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:Pickaxe_ID_690_RelishFemale_DC74M", + "7F0F5EB44D49E7563DD5A196121D49E1:CBIvm8gTJLCz6sD05GKbQo6u/Nk4Poni/7wlp724KWc=:BID_146_AnimalJacketsFemale", + "D14FDB2BB2FB7746797F25470913BFF1:CQDgIxcNnAoUboQnjafZAYvV7UqX+NefGTXFd3m+oFc=:Glider_ID_327_NucleusMale_55HFK", + "D83FAFF508200C47DF03BDFF2F801FEC:s9P7AOkoCuPm/506hyAKzuRaIh0xzV9YZON4oDs7GoY=:BID_665_Jupiter_XD7AK", + "B76B4F80113A2C0EBD320FC79DE5F441:Kyys3PlFyTng4GWryKbiN1BQ2eIaJK7dI/ZMNn5LRYE=:EID_Interstellar", + "EB16EA013B751792698E05435797C1ED:y9JgD812Io4mbaJ5i533Ts5SSfyXaGM4JyoimjP+i4M=:Pickaxe_ID_183_BaseballBat2018", + "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_A_003_Athena_Commando_F_GlobalFB_C_J4H5J", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:Pickaxe_ID_696_Grasshopper_Male_24OGH", + "56FE93367C8B62ADE2A8A1653077C98B:OevQYyBvnT5vwQhOJhu74k5TNwE6pe4gu6okYYBepGc=:BID_989_CroissantMale", + "8566FD040AC2B245597E11D1F85DB4E5:SEoqoweofxmXfxu848wKn1UJhwU7oQ2w2F0lBst+FnU=:Pickaxe_ID_508_HistorianMale_6BQSW", + "738C0E8B5DAB633906DC77FE4C4E48F9:qr1ZfbWRp+uqwBMvEhY1XBj7Sr7SxRsWHN7jqYPaZfU=", + "A92DE306E5174C82739D774151D7B661:RF9sTh7l2tp+ypCb/Lp3WeMfBExvk2LSUbim04xsCJo=:LSID_374_GuavaKey_IY0H9", + "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Backpack_EmeraldGlassStandAlone", + "1BEED2926C38652D7287878CB2724D6D:njsOPcs6lEFCruh/YjfHTdcoUJRtIh2hnzHwdkAYQFA=:EID_Viral", + "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:EID_Wayfare", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=", + "3E89561331A72D226FBF962DA29DBB82:qzWv2zubDSSrpTt3tKc4ZsReqR3QBKjhU1cGzVe7KH4=:CID_387_Athena_Commando_F_Golf", + "B3D2793477E5D467475BE403774360E5:HNj5inGk1/2h9f0r4+SGPPY9t69eOwS6w0XGxpTVOTM=", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_300_Athena_Commando_M_Slither_C_IJ94B", + "78FA1DF9C04F25EC129AA57492626563:AZT1/Asa4CuxdTtvLrw9nlEcxfOuoTnLbSLztfs7QQ4=", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:BID_653_Football20_1BS75", + "276E65E4041C467319534B14EAEA338A:Ib7KJMP8Q9if+P6x2bYZ0dC538B4LL3J1TcIy3rBlHk=", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_242_Athena_Commando_F_Grasshopper_D_EIQ7X", + "96FD474CBA52137DC5ABF658BE17C792:ZLWvbUR7Xow1GUNjC9Mxg7DHVoJAnBr4b9gSzmyFcxU=:BID_862_BigBucksBattleship_1JA5G", + "BB26302A83A2B42228EF6A731E598360:q6GH+OJutjEXL5wKuJnbLKAan9V/AXRxIkqg6WgSzUU=:Wrap_084_4thofJuly", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Mango", + "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:Glider_ID_349_GimmickMale_MC92O", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_239_Athena_Commando_F_Grasshopper_H6LB7", + "204D49F063979C3AF87EF896D074D1CF:SaYFk+GEE7mL4dsgs0v0VGR5ER4TwH8uTNX5XqSglu8=", + "7F0F5EB44D49E7563DD5A196121D49E1:CBIvm8gTJLCz6sD05GKbQo6u/Nk4Poni/7wlp724KWc=:CID_265_Athena_Commando_F_AnimalJackets", + "0A43BFE2D06B46248FC6598C0371D5EC:+U/nWLs0mNQue0yVc9tTaRF+2qrvzdKZyxUR+MzTvMc=:Glider_ID_347_PeachMale", + "545BD59335CA43AC4481A621226B4E81:4lYAxO0wSzKarpiMl4b+bWQOjDkXdJKactoCetH65WY=", + "419008D696C27533DFEDB08BE4F6C8F8:5I7VZNrdz8oZdzk1TTNCKkZXokilbXLFy7dQPPPlpuo=", + "91C415954BF27B6E43970FB8A75FE8BB:YhHyxIA+Ru33r3pThiWqKNYdvDbL05yXSxKarRuMSxw=:BID_176_NautilusMale", + "8566FD040AC2B245597E11D1F85DB4E5:SEoqoweofxmXfxu848wKn1UJhwU7oQ2w2F0lBst+FnU=:Glider_ID_257_Historian_VS0BJ", + "22B8405FC3BE153C8148422C3F2D3A8A:d/ATMDztVZxwHLUCwOcJWP1/7oPKKGqbBWUBRNZ6dnM=:BID_837_Dragonfruit_0IZM3", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_942_Athena_Commando_F_Football20_YQUPK", + "32F8552040D83320E998654666873931:izPPgPIvrxfBXPaI/LJzO5lxOZtzjOXQJBuk9kPdKe0=:BID_338_StarWalker", + "7F863227B67DD0D99A7A4BBEE0682666:29bfvaQcZUswF3vrHMntLKfmknWKDf65FCbxbJghisg=", + "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Backpack_EmeraldGlassPink", + "57D2C065461284F546C48C971A44C6D0:EOfb/g0hZdMhd5biYOZR69B/mqPU7X+sgQQrp2gQ/s0=:BID_178_Angel", + "AC86B4636DC6A3B6D2DF6DA8B5632796:VHknYzsodjamhC3oVkulL7sMpsRkw9ZcCcSguv9bZSM=", + "E4873B9E0B86905E8654D93E9279743E:4xhNKoSupk5mLXYkktaWYWM3NIl1s1iSdmfVIwy9Me0=", + "23213D7D8F739DE37BCA56557073DA51:hmmf08PTLeIAJgxwHIFI131jzcy1SbirW6EzJtm1teM=:BID_979_CactusRockerFemale_IF1QA", + "514364A06F8C12C3398C5F63D909EF7D:D8/bj3etFg8eJOVZ26L+pMrsdlTusbgvR2CL4WqKl3E=", + "8E1887D55A60F69B33B234242FF49653:YofZaW+CRl0jhVhkp9z2CQWhTPwyjQ6dbHtISkLDfVU=:Glider_ID_367_AlfredoMale", + "DE4CBA7A27B818D6B299767036C671A9:o7axeOYDdjXZ4MTWM4Io4XRNfQG2WH9qwPvBSJk8vJM=:BID_A_064_ApexWild_RedMale", + "E28AF2E3BB7EBBB69D962A15879E696E:hJE3fnZPwRmG8XIw+RJvVsCh9dOHDD82VAhvMbi+nvs=:Character_DualParadox", + "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:Pickaxe_ID_735_FoeMale_2T3KB", + "8E1887D55A60F69B33B234242FF49653:YofZaW+CRl0jhVhkp9z2CQWhTPwyjQ6dbHtISkLDfVU=:EID_Alfredo", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_306_Athena_Commando_F_Slither_D_I6D2O", + "A9AFB4A346420DB1399A2FB2065528F5:Zjzo+CaLNmCygplzQo2wUL4LT33DEiL6qZWE2R0EYMg=", + "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:Pickaxe_ID_720_RustyBoltMale_UZ5E5", + "3F21B0363A2CF6D94F7D789118D73595:Eq7VViwD0CoHAE0Y2grOZ/FZ5xGPjC8g78EpaH0385w=", + "1AABA3FE6C5410551302A08A3787F5AA:o7Dsys2BQuUgASRBM63wL29ULpkCEp5Q5JNgzvoKl1w=", + "919FDAB2FDB531820404333B27DC7B06:W9Csp0y6agsgcQXlRGvYUpPGPImNdFfBsZ8yQoUEdGg=:BID_296_Sarong", + "A7D34E80FA70CDD2F367DBEF93B98467:KVErbMXsQqx7dxrZp5Ara4OVlA17pc29E2SZlFNipPU=:BID_283_StormSoldier", + "6D85E82539341B90944E84FFAAD872FB:mAiBk7KbE2Dnr+yVFyJK1yAwv2eWb+yANFH0z2krQkw=:BID_299_BriteBomberSummer", + "8D44654E9EA2AAC35E489476B1948E58:Dwb/irSIIGd3tLLPEP5OqJY1D4KfjdP4+uP4+Ht4YOo=:Wrap_ShinyStar", + "2FF619685EC983B800018ECBFF377ABB:Dn5ZlXEhBAhXP0RbkDskEQwOK4RUKTwAIls6cvVOr0g=:EID_SpeedRun", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_303_Athena_Commando_F_Slither_D0YX9", + "4C3B1FC20956AE8C3C29A85446D013F4:dVksVi55yMPvgmuA2rjvlyDlySrQOK8wmH3aa69wtZo=:LSID_432_SCRN_Ultralight", + "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_446_Athena_Commando_M_BannerA", + "23213D7D8F739DE37BCA56557073DA51:hmmf08PTLeIAJgxwHIFI131jzcy1SbirW6EzJtm1teM=:Pickaxe_ID_777_CactusRockerFemale", + "54FD9ABD65879452DCB8CE11C1D7F1AF:nV0Vm4NCBl+MkGX8wiqfFrg0viDriL3I2xc4KS7n7fg=:CID_421_Athena_Commando_M_MaskedWarrior", + "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Backpack_RedOasis", + "E1B1A5908EF6377D7FB29F776486A6A0:qaZB3Q+6kKTtlO4aGWBsnjSxCwX3kmr8oOF/2QDZ2qc=:EID_BasilStrong", + "3E89561331A72D226FBF962DA29DBB82:qzWv2zubDSSrpTt3tKc4ZsReqR3QBKjhU1cGzVe7KH4=:Pickaxe_ID_190_GolfClub", + "726DD9BDA97CE92DFF162668027518BE:/QdzaWcoVhInSz0Oa0qk+NV3XxRt9WlXwcAu766Y6aY=", + "AF3080C00CB8CB301C167B00E9671CD4:wLmQDoGeYBN8Og/IMDoGxuuQNy7M+RQkKtajSZiOebE=:BID_710_SmallFry_GDE1J", + "AF3080C00CB8CB301C167B00E9671CD4:wLmQDoGeYBN8Og/IMDoGxuuQNy7M+RQkKtajSZiOebE=:Pickaxe_ID_558_SmallFryMale_YBD34", + "59AF6C46ABB214024067564F69D6EA37:NtUgzeFVvkbyZQGRVdteWV61HjED9MXquqlVKHo3c/M=:Glider_ID_238_Soy_RWO5D", + "4009CB877085F3B3B0D76A686465A140:gMLJXUbFcIrqqUlAuoMI1b27KdWHBVJJeJWdYV1Iiro=:Glider_ID_276_Kepler_BEUUP", + "C811FB0357FAC2A923E8DE46507A2D92:IjM7BWHvhr+4YcndrbmbTh96802H/CWrs364yB1Mg7w=", + "B229884F839295B4B9EDC380B045C64B:SVmPvZenzQ5Si17i8daUFyKoOGDtaH4YZtsF1s2XkxE=:BID_745_BuffCatComic_AB1AX", + "0242DBD83576CC7E4A6F228D02216147:Yfycn3jciR/FCYQx42W2GMzMp3pA3rgbL6WnVmJStxQ=:EID_Tonal_51QI9", + "B0894F58B3D7DEA37D3432AB32B78EB4:gKD8R847p9z0mbZ/euClocy1Z9Gg1daZjk/gDqc34a4=:BID_950_Solstice_APTB0", + "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:Wrap_466_CactusDancer_A", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Apple", + "DFE6C0504C061EEF0E77A43EE3B613E6:ympNAeN/2VbM7CJbFyVv2stK9oBU4htW//P5CMAMIu8=", + "EDF724493161095DB54E9613C243A355:Yp7dsOYO778G7uRZNYhGag2diT70vhu2hAWvkzvtHjg=:BID_A_002_IndigoMale", + "C97E930BC95DC795F4416A7B93E3B9CC:KxRPbXqD3ytwLLbZMbZmn+G+gjwOUljg/7HPjj8xP0o=", + "713D64294CD1C40F60DEEB805E3A2D87:CJOOHtEX7q4CELcZ96oZjrmSZd7pyJ2fMaFX912GDl8=:BID_193_TeriyakiFishMale", + "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_085_Athena_Commando_F_Hardwood_K7ZZ1", + "599668A98461E4D89196E0189C32C4D2:8MqQjC52vWK/VwX4SfYC1wu9eiUTXdqq/xWODcW9dQ4=:CID_468_Athena_Commando_F_TennisWhite", + "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_088_Athena_Commando_F_Hardwood_D_WPHX2", + "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=:Wrap_SunBurst", + "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:Season17_Magesty_Backbling_Schedule", + "F533FEDB46B06F324383349BDBC825D1:Z7b6780R78xFbYRbQehW/VZVDftI02RqvKe7XIYiOBc=:BID_184_SnowFairyFemale", + "B66EED5CA4F4ED75170872E30B9B0E23:rHT8/uzcZZ0ENxU9dxKpr+cdAajZ5L5U0geHt6NoZhI=:Pickaxe_ID_420_CandyAppleSour_JXBZA", + "BC3890EAABBF03778EE82AD7DD4F9C12:RvtEdiKkxLJDnXKUaUK933vzLK04veYzbdp8yN8wmxY=:BID_A_034_ChiselMale", + "5B26536B2ACB973C651C0D1A285C0E37:n4j7xWZ1HfwSGb9ixE7YMFyRsTjl3gjJVDZJj7Wy4rs=:CID_397_Athena_Commando_F_TreasureHunterFashion", + "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_083_Athena_Commando_M_Hardwood_D_7S0PN", + "F33B69585B65C333655C545A038BCEE5:0+gUoAUkiBbY5uqO9rIehUDkvrr/PY3vBY16AMHQASw=", + "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_084_Athena_Commando_M_Hardwood_E_II9YS", + "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:BID_A_031_EnsembleFemale", + "A7D34E80FA70CDD2F367DBEF93B98467:KVErbMXsQqx7dxrZp5Ara4OVlA17pc29E2SZlFNipPU=:Glider_ID_151_StormSoldier", + "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:EID_Textile_3O8QG", + "95EE98AB79EAA4E2871EFA0E4BA9CD7E:LJCJ2kW7AQoni1spB+sLcir3NXBEE7zOC0JGKKhn0ZY=:EID_Butter_1R26Q", + "B0ACC6254D42350D124727B035C9CE55:ZDFVEa7yau61hc1ba5xNGtYdZ+yif7XgE79BBWIlPJ0=:CID_299_Athena_Commando_M_SnowNinja", + "B229884F839295B4B9EDC380B045C64B:SVmPvZenzQ5Si17i8daUFyKoOGDtaH4YZtsF1s2XkxE=:LSID_287_BuffCatComic_JBE9O", + "F71D60AE5231E90CEA7F53D90DC4F007:ver8B06IS0up7tNYy03zkhCl+CrTl3czgmXPYYONcM8=", + "8DCAE39C7D9690E19F52655F02C613B2:ZZHbiVsbXquLlrtNVHtryLS3Vd1Ego8/8tlDpeUCgfc=:Pickaxe_ID_252_MascotMilitiaTomato", + "59AF6C46ABB214024067564F69D6EA37:NtUgzeFVvkbyZQGRVdteWV61HjED9MXquqlVKHo3c/M=", + "9261CD0F921EAA3CD6AA8C0716FB042B:W+yzeWWxWnA530lwV8nLi2BE+TD5MCXS11th7UphmPQ=:BID_689_TyphoonRobot_SMLZ7", + "91C415954BF27B6E43970FB8A75FE8BB:YhHyxIA+Ru33r3pThiWqKNYdvDbL05yXSxKarRuMSxw=:Pickaxe_ID_131_Nautilus", + "BA490514EFDA436A2679E381BD558AA3:3KBKxBOi/52H0feJ/ijKxRHk+lF1zID0uIpjd0T7/Bc=:EID_Haste1_T98Z9", + "32F8552040D83320E998654666873931:izPPgPIvrxfBXPaI/LJzO5lxOZtzjOXQJBuk9kPdKe0=:Pickaxe_ID_253_StarWalker", + "5581F333809DD14FA591F17B6C071687:/gEEJhUVQMVyFP7JR0jT4RM99Wj7hnIp2ZitAVdwAYc=", + "45261C72DCA170BBF0BDB129B9FC0BAF:5db2NWibvzXoFGVIbg//HklLwxuGUFWO7tKGPStOM2U=:EID_SecretSplit_7FOGY", + "DC060EA83FE6F9729B19150E40C7987E:zW3d3QhtvhE+q3x/P7/BA9JvyoruVmeACdKt6RPxyLY=:LSID_421_SCRN_JourneyMentor", + "A7FAF0883F9147F93079F3A40413A83C:+wNde9ex5o3zvdjqgJUGhqcxmecYiQW3W1QuO00NUbc=", + "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=", + "E4C183B0EF31ADF061F175068046568E:AF+fNwseLnjCsPKzbFkYDkZE4gyYfGEaifyJjdsMjp0=", + "65000C27C3BC5B9B904A0D20050D6B36:JFwQi7tWgJDr+E4GzYU/rgasjjk+1BKRB/N88e7rVvI=", + "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:Backpack_GalaxyLevel", + "99B0F5AFB03FFA1BC3B8AFF75267CAD2:d4GffGn7ENqL9SpO5wnhKZzqzpr8S/4LQS2P+QD2wy4=", + "457F39EA51FB4C723B442810750CDA4A:V3d05mcuS4uXMBRpy63TIZDLt5hg9njVD0SGhZDsmBw=:EID_Sahara", + "63722D44ECCA0F4178B85F5A6BC4C31B:j42UL0bmfBkli6Aj92wWABwFby5rAplP/Ac6nh9kRvA=:EID_Vivid_I434X", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_938_Athena_Commando_M_Football20_B_I18W6", + "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:Backpack_SpeedDialBattle", + "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:EID_Majesty_49JWY", + "17F31F416B1B0A73F14F0A7973DDBD76:+hUk8/wD736u5sylQPXcKKREoo5vSPaWPG+3xxT5nFM=:Pickaxe_ID_157_Dumpling", + "59AF6C46ABB214024067564F69D6EA37:NtUgzeFVvkbyZQGRVdteWV61HjED9MXquqlVKHo3c/M=:Pickaxe_ID_462_Soy_4CW52", + "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:LoadingScreen_TigerRoot", + "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:LSID_328_Quarrel_K4C12", + "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:Glider_ID_316_TextileMale_3S90R", + "02421097082555483CA9524F79EF7687:e9wZT5/2KHmpbw6KjR8u4uo3iG00O92+PAZMbk09a3w=:BID_545_RenegadeRaiderFire", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Character_BraveBuildSuper", + "2981826DE79FF29E18E71842E259C429:8ZvDzw8wgo2ogkeqTm4pYe6fh7ghrOxdZXEwkpaPGOU=", + "D49757E2D55451A0D5B341906FE2ABE4:PWMwnjgi/wUDV+yxg02QsU33jA529fxVTRHyqnkv21c=:EID_AshtonSaltLake", + "02743CF33556232CE2CDE4BAAE108E2B:fEeB1cPrmwILnnMkELOaIMVfGJXixlOZSzby0xhKPHk=", + "B1B800E199A6D4649287C11AE89F67CA:3udFXffIw3c7eM5hljF5mJQA36FbW2PeF8Gx1TcD1vc=:Pickaxe_ID_201_Swashbuckler", + "F2E3A44428F24B0E4F481938A8E3D8EE:Vgb58eI7kGPp+Ecr8lhE2RMoKeCLFG0sWAEugWV295A=:LSID_305_Downpour_CHB8O", + "23280A6FC0902B6420BB82522AE16D2C:C7o6m2vJJY+XWKd0t1YLBPVLYCMgNbt10d/itx5Wjnc=", + "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:Pickaxe_LastVoiceSteel", + "DC953387B24FC2DCBECCD2CCF61BB973:GT4tz78+PbkMtjcHnlkhmwLG7lQAr7EwMEWIgn59PV0=", + "BF344823BEE88FA8760A410311A30150:mcfE7CGJQLRE5dWZTCNPCCPgSBV7CMLl6lvpF+nzqzw=:EID_Astral", + "8AE930B0D623C1C2B3926C52ECF6250B:uwtZv87e9DU/Z1ZvYB7Pv4TdRQ4/ZRT9nYJCwYSmlbI=", + "CBFF239A1792F25920D863F223368B54:J3N3cUH3M0R3uyzkE0qVK/SouxC/X6VEswcoWb6ViL8=:Pickaxe_ID_215_Pug", + "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=:Pickaxe_ID_808_NobleMale", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_235_Athena_Commando_M_Grasshopper_B_RHQUY", + "6838E4BB35C0449D4F66F7E92A960D1F:KOKH3JA+OMliB+f17Pd8OFEtooaCZjehz3CvfqaSbtU=", + "389F29133F5BF2F060F614459FB40A33:QJeT6Tn8kANHABraLv3bT4U+4DU9axx8n7AjG97WvbE=:EID_PrivateJet", + "54746F2A874802B87CC5E9307EA76399:nOaYcOb6cOggqwc+mRiJ7LJEs0qvaiMhxH/yWXou+Q4=:EID_LimaBean", + "AC74E15ED1B7D4C09EE43D611C96282F:AE5miomI93bx4PzortiojpqTb928k7cf1PqC6YPjvz4=:EID_Prance", + "CCFB247DE6ED8DB4856E039A5AE681B8:Z8ixoqcCEiFqUH1qec+yUNQTP1+D1xQjYw6FDpUQa9c=:EID_RhymeLock_5B2Y3", + "B7E28BEF6DBEF8710E68B66900B42430:sHtuRWXH9yrWnwjLhWISF+7+FWXyahhu96R9nTbjlSw=:EID_BankNotes", + "82669F5A2F9B703D1A6BEA3BCB922D7D:Leu9rrDPaqZd3izIU+IKpFcP/NNcqSncLkV2lapQL6k=", + "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=:Pickaxe_ID_744_SleekGlassesMale_ID69U", + "7EE5B905919FC30BA533A9B72266C37D:kAD28wIO613FRtg5cfGz+jb0Ofed2l3NonVGSmeqCAU=", + "F33B69585B65C333655C545A038BCEE5:0+gUoAUkiBbY5uqO9rIehUDkvrr/PY3vBY16AMHQASw=:Glider_StallionSmoke", + "476EE53C2EAA24FD1950A9875FB4CF59:LQMwgWwsoSqGyYbBouYaMaN8NZ38Vy5r3Tqa7KA71oQ=:Backpack_FallValleyBlink", + "605CA1F4F68E09A4A0784DE3D6E9FB88:TKaxKxc1yoVFdUqQNWdG3bofE78hwuma5x5Go2dnLxQ=:Character_IonVial", + "566C4D92AF66F45DF5E2D7EB43CC27AE:EuAYwU5tQBXzGoSj5BMc7S5yFfe9wZ2qrzx/hIHpnqw=:Pickaxe_ID_479_LunchBox1H", + "EBFE6788D367D741AF0A4FD098CDFD39:FAeJTGyT49P+dQOmKx+lMYVAxu7qtIPlqSaLAR85zqI=:EID_AssassinVest", + "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:BID_428_GalileoFerry_28UZ3", + "907E8D93213A838738E26D30AE3A5DCB:Is1Z/2TjgM6jWr9R/zd1E4bjKhDnWmae7rjW+UIU5Yc=", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Lime", + "FA393ED7DFD20657B9C8659CB0295F64:G5wmtVhL0E8/+gpxHPK3HGJJ5RvfoWyeYrLJ3Awm9f4=", + "3DFEA395156D835B86EB22801411ED08:cG8Q2VOqa9d+9J4QEvdBWe5hjbIayC4HtRp7svIWZ9g=", + "4F365EB12B55EB9A6BDD99DFC3D02E61:JFApzAook6DV1rLMngEwoo0pprP17X6gjpNc79NQ43A=", + "6A2047910081947B9A5DCF542A9AEBE5:V/jMTWL+zbqeIlKCE9+SM3+X69aYbt/cN0+G1D0GBQU=", + "23213D7D8F739DE37BCA56557073DA51:hmmf08PTLeIAJgxwHIFI131jzcy1SbirW6EzJtm1teM=:Wrap_460_CactusRocker_92JZ7", + "E3D0A604B93651DDC6779B14F21D0FDA:8gPR3gZwEJxfkZBkXk0QAlpnJ7q5mXzVc0DN3lzpJ5k=:Pickaxe_ID_114_BadassCowboyCowSkull", + "A6130F4077B928D41D298463C61C0F34:oW3GkVlIb8uiNl0CzqrwVZeGfnEujp2O3O3tnw2zFOs=:Wrap_094_Watermelon", + "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=:Pickaxe_ID_745_SleekMale_ECRL0", + "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:BID_A_030_EnsembleMaskMale", + "91C415954BF27B6E43970FB8A75FE8BB:YhHyxIA+Ru33r3pThiWqKNYdvDbL05yXSxKarRuMSxw=:BID_177_NautilusFemale", + "4E7938F1FAC98BDF378823116712AC7A:jbZVgprILTQomUdGeJF0PsAFAJxsSCs5cKcXweZMAg0=:LSID_273_Tar_ITJ9S", + "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=", + "D49757E2D55451A0D5B341906FE2ABE4:PWMwnjgi/wUDV+yxg02QsU33jA529fxVTRHyqnkv21c=:Pickaxe_ID_203_AshtonSaltLake", + "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:Glider_ID_186_GalileoFerry_48L4V", + "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:BID_429_GalileoRocket_ZD0AF", + "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:Glider_ID_305_QuarrelMale_ZTHTQ", + "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:BID_955_Trey_18FU6", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_909_Athena_Commando_M_York_E", + "14AADCCB14231F83A0FF5E13EEF676AD:E3AdIm3VavVg7FwK7HBEFr6e3sE52IUL6rZjGFm9QCo=:EID_Nimble", + "510BE1093533EDED92752C0B90A80895:vaI8rYMUPwx+M61tvfJ0pf+dMK/96pnzKOQluAPmjU0=:CID_424_Athena_Commando_M_Vigilante", + "4C3B1FC20956AE8C3C29A85446D013F4:dVksVi55yMPvgmuA2rjvlyDlySrQOK8wmH3aa69wtZo=:EID_Ultralight", + "45261C72DCA170BBF0BDB129B9FC0BAF:5db2NWibvzXoFGVIbg//HklLwxuGUFWO7tKGPStOM2U=:EID_SecretSlash_UJT33", + "F60CFFFA32CF6A877B50DA7F0A88326E:OWIopbB4fxaobofPI9lF9hn6BPG9NVLp4Od61uQppfo=:Pickaxe_ID_198_BountyBunny", + "B4BE2A5487426AFF06CB7089EA9B75BE:w7Hbt5PsQ4MDg9EjvOU8WdtL/BrWxZNp9NM2UrHSjRg=", + "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:Pickaxe_ID_848_WayfareFemale", + "E3D0A604B93651DDC6779B14F21D0FDA:8gPR3gZwEJxfkZBkXk0QAlpnJ7q5mXzVc0DN3lzpJ5k=:BID_329_WildWestFemale", + "6EA156BE3D18E1D649D7D4B3F8C0FACA:qAKD9oM8u4IvUcKbReHTMaLg7GtHLBcnmz8++vwwB6o=", + "F33B69585B65C333655C545A038BCEE5:0+gUoAUkiBbY5uqO9rIehUDkvrr/PY3vBY16AMHQASw=:LoadingScreen_Stallion", + "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=", + "63516700C5CFA6F1BE71B29214957E33:eR9Otw83jJyrj808CkqElVYzlXztuc14/u2pDtPtooQ=:Glider_ID_155_Jellyfish", + "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:BID_801_MajestyTaco_FFH31", + "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:Glider_ID_341_FoeMale_P8JE8", + "5E15C5486CE8E539552D4D3E7682F9E2:+L/tTz+woDFZJEvtxfq8m8tNI1R72sYK7rnYr7sHTis=:BID_311_Multibot", + "2A12750AF48FB5468105F255DC537CC1:lKjAansupIjoXjT3/0vH9XeOzVp9S+fBGtyP90Gve60=", + "2F426D86C7E7EDE779E8D62108AB49F4:zVh0R7wazvQUgucmS9AYYNnN2g+oFYv8ZMlhD3WnH0U=:EID_Hurrah", + "591DF838AC4B3A6350E40E026B26D5C0:MBvGoHxJQBTxCm2V82s2yHqRWPsYdFyj8xKUhFsUkyE=:CID_745_Athena_Commando_M_RavenQuill", + "7E9FAC0F2BFC4AE3A2ED4C87D1A57DBF:xaR/8qp7kFAbILx9i6ANnoam0rZ/tP8Xy3yysuqt8BA=:Pickaxe_ID_231_Flamingo2", + "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Wrap_CoyoteTrail", + "1D02A6E14FDF53655E818CEF9E57B1BF:ekG/6DFEYOaCYi5hruGoY/o1KzC/O5+9hJbdMyti8Gk=", + "3FCDA1185C56B6A5FDC57AF760566A51:9I7HsUJTcd0EMjpuwQmyno0jbrJon+nZePI6IuQBmtk=:BID_983_ScrawlDino_AD541", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Raspberry", + "E0FB7B394449CE6450EA90C93D710EB8:NrXwNX6lKuu/kyQuvE74+6Uo04FODoV4ZqxToj/jS6I=:Glider_ID_157_Drift", + "1234642F4676A00CE54CA7B32D78AF0C:Nd8vhYp296C+C0TqSIGxu0nBYOFGQ5xBNK5MFjHS8IA=:Glider_ID_115_SnowNinja", + "E48EFA857D8E6914B2505B05AADFB193:4AUdytefPzWNT8c11iGtU4xcGNWEgzpMJbxTjUq3NS0=:Pickaxe_ID_465_BackspinMale1H_R40E7", + "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisJackfruit", + "A31042B93988941EE77BC1E2DA6AA05E:pDUufUGsOVTv3LuXoq56xwz8HRnzlrHTvTLWbzBaPcU=", + "715D5B8D89F01C804C2ED33648157A6C:GbMcQmdpv3ju/P36UQIlDFZ0Q5jr0he7O2oTJ702McY=:BID_446_Barefoot", + "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:Character_SpeedDialBattle", + "286270CA017B478C6FF6B5B815428F93:OUbNW00OmQLCd9iLA13soMU4wYtd0RTc+lEkoPdvF4U=", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:EID_Slither_DAXD6", + "7C13D9408B7434500647EEDFE55A63D9:vea6GIIHMHtDB/mVGTp1bTW3tfCM6tLlpI9LiP3bxTo=", + "053E7EE2FE8B6EB117A01D1E0AF82AD1:SDqBD0e/4fAyf3WCPqwUQD/gDhMWPtbdTZt5j/p3M2A=", + "5AD068EB1D56D87706E44EEB3198CF1B:o9Gp08KD/vgq3RTrUbfGJk7rlfUqZMxoRKPiwvdVkXY=:EID_LogarithmKick_NJVD8", + "35C2B057E5168DCA74B6F1DDAC745E60:73haJlY3S0TVmH0ELxyw6p5FzFRrITWqOmobH9F2Mq8=:Glider_ID_343_KeenMale_97P8M", + "F8E2B9191F948DBBEC6F6688BBA7DB41:0Rv3StsHC9OvC6UDR+L+CLgz63E+qGme+zw6sebd2uc=:EID_Swish", + "CE9D023C0D7DBF7634F2AEF6200BDB36:JyhTmjJnosQmLeGMQXhCtkl/auX+mde5P11MsWEwIqw=", + "F33B69585B65C333655C545A038BCEE5:0+gUoAUkiBbY5uqO9rIehUDkvrr/PY3vBY16AMHQASw=:EID_Stallion", + "91BEC79063CD316E69E79215E0CE6437:uE56sTOQozw4kZfj70CQIEFqQOFORE1+mZhMhccG1z4=:EID_ModerateAmount_9LUN1", + "71BEC74046C6920A467E57B69FA3835A:q6m1xB4+mCmXL3g7eRGykDO6ZKrXS8M7m8SqbqIKzkI=:BID_201_WavyManMale", + "E6CB9B5FE721FB85529A6558D32987CA:aKSiHv73+80I2NZ8lFAbV7CRyRGO4LN9J7a6gjh51b4=", + "72CC2893A6B672F3854F36629B770774:0BgQgKZRRuPFEoqn7CxZVhLBOfpCE3qLKGQlZc+SA80=", + "22B8405FC3BE153C8148422C3F2D3A8A:d/ATMDztVZxwHLUCwOcJWP1/7oPKKGqbBWUBRNZ6dnM=:Pickaxe_ID_664_DragonfruitMale1H_4BIXL", + "23280A6FC0902B6420BB82522AE16D2C:C7o6m2vJJY+XWKd0t1YLBPVLYCMgNbt10d/itx5Wjnc=:LSID_367_Paperbag_3WGO8", + "E59B013651F078E718F08ECF9E1559EE:rTGy9at5kTfQtu8EwVrUihfzuN8vkFPl3XNyGvqbZX4=:Pickaxe_ID_194_TheBomb", + "D2FAE1D098B2B4695EB59FAAD504798D:ZUDIqDvGVcpCVuA3h67vdkVbZwLuC0Z1zX33JLyi5xE=:Pickaxe_ID_727_LateralFemale_D9XJG", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Backpack_FNCS26", + "EDF724493161095DB54E9613C243A355:Yp7dsOYO778G7uRZNYhGag2diT70vhu2hAWvkzvtHjg=:EID_Indigo", + "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:EID_Lyrical", + "8D578CF915DB851F9BE73C937D3565E4:Xk8kUK9cut4tXr0VQjufZdoepp+TzGmlDA7fzYA1rAc=", + "17F31F416B1B0A73F14F0A7973DDBD76:+hUk8/wD736u5sylQPXcKKREoo5vSPaWPG+3xxT5nFM=:BID_207_DumplingMan", + "1A9B01B59F609C0D7E9EF7887DA23087:EkQdXhPD9Je6Bp7dlwZdlkX2S0har6vqUOjMIF9ndfc=", + "682BB8BC5B0BBE6318CF2164E074E7E8:NA4nCwFqo95pvsqkLXWO2WDdLY+MQGcj97N6t881BQE=:EID_Socks_XA9HM", + "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_447_Athena_Commando_M_BannerB", + "B3A4B83DA3274522D4B9F117DCF9A0B3:y5n7vfr0uucr+psZzb2F3g45pWUsv3i3j/M6bl78Z9A=", + "010E6ACF85E4A58BF6F551EFE7B85F61:DwCIH5Dw/1wdiS6gFGmWe4HUgD9kMOEzjbzM/1QshM4=:CID_371_Athena_Commando_M_SpeedyMidnight", + "488F01C34A9A24115776EA801A6E7E1B:WB1TFXsB2Cywzb16hZ2HdBc8X1FsTVqzlDwhyJO8Pcc=", + "B66A53100DFB8F33CD5D55E2F66FE10E:wz7DApgadJnBQyHgJCqTiXYQARH8NWpaIT8zSJiIJUg=", + "D01F7B7A687A459D3F28B8A3BD96E31D:siHFCRzefGjIJSV1g3Iw6At3HdCRf6ZbtgZyNVQXPq8=", + "1937F4ADBC2C38EF4F189DC2B1AE58AB:tWzxKwKEDzI0RsQGl2GvOVqZwxOSOiZaCQkyK1hE+lA=:Pickaxe_InspireSpell", + "E7D27A42770632B7A50BED813D9B1696:bxADNk9dmPNeKEuSvJl44teif6sHvs36yBZ55E9fhwQ=:Glider_ID_363_SnowfallFemale", + "DC060EA83FE6F9729B19150E40C7987E:zW3d3QhtvhE+q3x/P7/BA9JvyoruVmeACdKt6RPxyLY=", + "B1EB196DD39D0736E7E08F99B07D8B9A:1fDhBY8uhi++l6QQPL2YtxZgUv04OZoMGBrH+yN8yKM=:EID_JanuaryBop", + "6B0D17A04F83AAF1E4EC1D0D481D7B03:fgSAnECppKmZD1eolFEZOuOpUDPbt1MmvGroMQ0sPFU=:EID_CrabDance", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_941_Athena_Commando_M_Football20_E_KNWUY", + "E1B1A5908EF6377D7FB29F776486A6A0:qaZB3Q+6kKTtlO4aGWBsnjSxCwX3kmr8oOF/2QDZ2qc=:Spray_BasilStrong_Pickaxe", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Pickaxe_HeavyRoar", + "BE2C3EF59AB81D812AF5B8153325998F:W7NoICLZt9L2d7XZ5dT9gtI80MyOizk7uA9LtwA/Edw=:Pickaxe_ID_687_GiggleMale_YCQ4S", + "C5E60B749B12EE642D011809C151C105:3beN3XlxtcpmaTa1O6669UmAZ7HHs8UFOzUQSAOSWv4=:EID_SunMelt", + "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:LSID_457_Ensemble_Characters", + "8E1887D55A60F69B33B234242FF49653:YofZaW+CRl0jhVhkp9z2CQWhTPwyjQ6dbHtISkLDfVU=:AlfredoSet", + "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=:Backpack_PowerFarmer", + "B4585A36D49CF15E1E236775B8C659C1:Ced0+UTeTBbDhnHM9mLTk5qxlz3YZK6dEn1U+NTxOko=", + "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_997_Athena_Commando_M_GlobalFB_C_N6I4H", + "3AA9D1B5DCC39A932C9D6FC201C5F327:kCoO2Hxq4V1uHM9pIfqlMOFRTyGqSeW8MYEiFEen6mc=", + "8C4383893F90632D5516AD37E0CD5173:JUTInt9XDGH6gUbZ040d4ptJRsuhNppIKKIw+IiYo8k=:Glider_Headset", + "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_087_Athena_Commando_F_Hardwood_C_AOU16", + "280F643808DE5EAB39E77B23E2193CE9:lYbsbCLMwjFvdalNxsBUj+PZiJmtoa/wclz2sAOQxuM=", + "49034BA1606B1672C8B634D2C6186807:5ujMnF4IKuvumpfNcUA1yi1mXjy5zBGPg00TJkHlG04=", + "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=:LSID_440_Noble", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_301_Athena_Commando_M_Slither_D_O7BM2", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Wrap_InstantGravel", + "58388BA7BD1643A85EFD49BF26EF5912:Aru327JJHsGKCD2YlQT+Ejy63//vly9ChTdKsfgL75o=", + "BA490514EFDA436A2679E381BD558AA3:3KBKxBOi/52H0feJ/ijKxRHk+lF1zID0uIpjd0T7/Bc=", + "1A10A7700C3780E2B1A03037D64E1EE5:IvQikWqraVuMzt8eP1B0cxW5Dcaiv7njo2QHFfZFmY8=:Trails_ID_081_MissingLink", + "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:BID_850_TextileRamFemale_2R9WR", + "AE9F7B3419C7FBD2414D72E2E1C8A7BA:kpIotniLp60tWfbBitDUrjw6gmJ2Swl+YT3QAkecpRA=:EID_ProVisitorProtest", + "F395571A36D2BD888861E61EEBD45AF8:D/35GPTIOKbdfmpxRJmHTkjNXcWv+XdSmTxQt6z1hvI=:BID_701_SkirmishMale_5LH4I", + "91181AD6BCB9443F7F6479DA8BA9B7A4:ckv0KEQuDpca5cP5JLUH8K1f+tVYvZptoMsGYR7fxDU=", + "027FFBB49E4285146DA1C5238EBB7DB3:yjcsOd6x9bWnX36cFx2Q3/zgHrCrnuWwiuZexrdcM8s=:BID_939_Uproar_8Q6E0", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_906_Athena_Commando_M_York_B", + "0F810ABB0DB8672A438B14169C048145:9vfFUEaEveznaEvyq+mhGagh3w98fRdZ5BpwQgNzMzg=:Glider_ID_133_BandageNinja", + "EBFE6788D367D741AF0A4FD098CDFD39:FAeJTGyT49P+dQOmKx+lMYVAxu7qtIPlqSaLAR85zqI=:BID_271_AssassinSuitMale", + "E0AEF4894E1283946745F7902F7E105A:7MXKJEs903nNbT1oFzykxoHbQNDnOBm6yfadj+mtBDA=:EID_Rover_98BFX", + "A25DFB2C9EBAECE22F893DAA48A7138F:d5KZse0g/v9xySiDWLhNw3kCvlWXZKWMKUjDzW8/SIg=:Pickaxe_ID_435_TeriyakiAtlantisMale1H", + "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:Wrap_495_Ensemble", + "4009CB877085F3B3B0D76A686465A140:gMLJXUbFcIrqqUlAuoMI1b27KdWHBVJJeJWdYV1Iiro=:BID_703_KeplerMale_ZTFJU", + "7ADE21079D27D9CA3931F676358A0F72:jWtbxcYHNph24P0SKVvPEuGDIdFpq+wZAEIlGXhSpj4=", + "488F01C34A9A24115776EA801A6E7E1B:WB1TFXsB2Cywzb16hZ2HdBc8X1FsTVqzlDwhyJO8Pcc=:Pickaxe_ID_538_GrilledCheeseMale_Z7YMW", + "F60CFFFA32CF6A877B50DA7F0A88326E:OWIopbB4fxaobofPI9lF9hn6BPG9NVLp4Od61uQppfo=:Wrap_048_Bunny2", + "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=:EID_Zest_Q1K5V", + "027FFBB49E4285146DA1C5238EBB7DB3:yjcsOd6x9bWnX36cFx2Q3/zgHrCrnuWwiuZexrdcM8s=:EID_Uproar_496SC", + "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=", + "8D336ADD3E862004534F4D310F0A681F:Oh4kuy+66NB6gPNkix+oKng0QTO1Dju8k6SxT3HXxe0=", + "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:Pickaxe_ID_693_SunriseCastle1H_5XE1U", + "EBB742679C34C9D4E056A5EAADF325B9:ousld0RIkeu9L9aTDwr9aNCIt+wOwB7KxGPY9BTfQ7s=", + "6ED300E6401C02B19FDF5F82D945C661:OVr0GWPGv86nzWikKzrw2SC4aS+4ApgKKLvQ7d0Nkn0=:CID_336_Athena_Commando_M_DragonMask", + "0A16F03E8DD9C4DAE4F04B2C5D6F829F:5o23YPFPMqv+KS4E4/ybDC25GkBt8ZU52xW7WF4tZbY=:EID_Bulletproof", + "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:Wrap_179_HolidayPJs", + "9E9072AA036FB1FF6B2AAD7BEFE7BF17:ORHgZOt4Zrtc8dLSx6jCsWZ3Z6AwPJiSiFAkZRMK3kM=:Pickaxe_ID_649_AntiquePalMale1H_GBT24", + "63B2E664F9DEE5B42299191174C3B3C3:U1GOSBqPUDAFq3pjEdJg8nHb321IH6571dkhF0nEMss=", + "4C8D53A32D85124D08A3DCE6D3474A30:gam5sVciLPzKr+wmWOoctLo5HFqBvBLKKcxh6ZV1kn0=:Pickaxe_ID_533_WombatMale_L7QPQ", + "C7623A35411F3D5FBDE2688C7E4A69EB:qAi49mUKsB2dbfbtJWDf3yO2DfRStA+Ed9XgDjC8Zaw=:BID_189_StreetGothMale", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_240_Athena_Commando_F_Grasshopper_B_9RSI1", + "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:BID_917_RustyBoltMale_1DGTV", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_953_Athena_Commando_F_Football20Referee_B_5SV7Q", + "9904FE82E1630F9BF753E5AA195B4E1E:ScugOdDnT2N47PETOZ8B3MoDlg9elYb+ePzsZGA3ryI=:BID_A_027_SpectacleWebMale", + "F6E92DDBC70C8184E837D31905B2F2A7:UCSPatT+yv3YH2x0Ks+2GSXhSSu+3ZvZs6Lai3oOi0Y=:BID_826_RuckusMini_4EP8L", + "A6E44EB3DA45A5323BF1FEB33C6421F6:l9NQzTVH+MNDjQ8Z2gSvxDnNFyvECNwp61JOHFAWWvc=", + "FBAC0AD8C03AAB2DC3BC077597517179:5oj8B4R53plPxRictMN6QkQ741CibMbmzRJYIDIQ5iM=", + "A10B1E27AF53CDC331BF4797C97B6B9B:fy5fTzL7HXpOBRg49CHm/E8Iptd4X12eYNBAeSa5CY4=", + "BAEF248980269F569C6E1FFF2B885DF6:2b6DQGIcab1r7zsw5j3MR84iDmt0g1XBquxJVR/8GxM=:EID_TourBus", + "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:EID_RustyBolt_ZMR13", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_945_Athena_Commando_F_Football20_D_G1UYT", + "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:Glider_ID_333_RustyBolt_13IXR", + "BAEF248980269F569C6E1FFF2B885DF6:2b6DQGIcab1r7zsw5j3MR84iDmt0g1XBquxJVR/8GxM=", + "E5C19AD4D84758F8B943DA9A9D608712:qYxz7kOHjgf5SSa18F5bcIL1nLD0n6MD1vUE1+SwP08=:EID_Bargain_Y5KHN", + "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_443_Athena_Commando_F_BannerB", + "335BDA9AA7DA27137CB7F1DA56FA2E6B:GJEyHEl3Q+8h2k2Cbe5sfG1lNLmXHSts3n+0QYH4Kjg=", + "BC3890EAABBF03778EE82AD7DD4F9C12:RvtEdiKkxLJDnXKUaUK933vzLK04veYzbdp8yN8wmxY=:Wrap_496_Chisel", + "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_089_Athena_Commando_F_Hardwood_E_4TDWH", + "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=:EID_SunBurstHeart", + "7A8E25F664219ED6CCF3AB1658D0E557:TV+yyWpI3iHJoaK3o1t6+/uhN/sFZ1OixoAx0n7MtjM=:Wrap_118_AstronautEvil", + "A6855B699FE10FE50301AFE1A4FA74CB:fKXFbKW6dUWHLSC8M4KLAg1elVXH+wYouFbpvvtiIcY=", + "E4143E437DE7481237AFAB40C59D96E6:a35NCp3zTY2AhSsZWy09BJaXJDU0LMJbiiP1u0dOl0Q=", + "4755D9C0E2D1DE1C09B77DEA8B830471:9tUO5yVhvp+/sp7icZaEDw05nMAdS6bYAWYyfQNsxBc=:Pickaxe_ID_388_DonutDish1H", + "099F6A310406E06EEE5B011F57E8ADC5:eN0n2GvhVfW8LKPVA+LvlegACOXLQLyOxt24wFERaio=:EID_OverUnder_K3T0G", + "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_345_Athena_Commando_M_TreyCozy_B_4EP38", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_238_Athena_Commando_M_Grasshopper_E_Q14K1", + "1C8FA86241B2E4D084F7548529629CF6:pmXOfd+NEXcLhZX5YqDLjHu8/yzZoo4dWPcCM8ccXoI=:Glider_ID_118_Squishy", + "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_442_Athena_Commando_F_BannerA", + "B7D9219AF6290146AAFF711E464C5849:iwGv47bJtl/Tm8oJGdnta9aDA86nY0IyjDmJWjQYdQo=:EID_TrophyCelebration", + "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:Pickaxe_ID_721_RustyBoltSliceMale_V3A4N", + "E7D27A42770632B7A50BED813D9B1696:bxADNk9dmPNeKEuSvJl44teif6sHvs36yBZ55E9fhwQ=:BID_977_SnowfallFemale_VRIU0", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_908_Athena_Commando_M_York_D", + "CCFB247DE6ED8DB4856E039A5AE681B8:Z8ixoqcCEiFqUH1qec+yUNQTP1+D1xQjYw6FDpUQa9c=", + "9E9072AA036FB1FF6B2AAD7BEFE7BF17:ORHgZOt4Zrtc8dLSx6jCsWZ3Z6AwPJiSiFAkZRMK3kM=:BID_827_AntiquePal_BL5ER", + "F7CAA8D040108722FFA35FAA63DFD63E:WNwYWakPoe/BGxI8+xsB446zHv4R9A1krz8SK2y8Pmc=:BID_164_SnowmanMale", + "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=", + "D7EDE7B4CE393235BF4EB8779C55D5AE:tvYJfExMmwMpbWXSe8bxfGkpl1wcJv4B/RBjd8qWcZ4=:Glider_ID_336_OrbitTealMale_VCPM0", + "E45BD1CD4B6669367E57AFB5DC2B4478:EXfrtfslMES/Z2M/wWCEYeQoWzI1GTRaElXhaHBw8YM=:CID_229_Athena_Commando_F_DarkBomber", + "204D49F063979C3AF87EF896D074D1CF:SaYFk+GEE7mL4dsgs0v0VGR5ER4TwH8uTNX5XqSglu8=:BID_643_Tapdance", + "5471C1F8E35769AD4220BA02258BC5EC:uQVQxaCRJdmeLB4Y37GxewfPtXo3XX4NZJmA9C0z98E=", + "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:BID_987_Rumble_Female", + "D47524F6F863DCCBB2455472F0FEFE2C:cRoiHZin2Lnv6yQ4Zt2WoIpQc1ZjLbfl1Ogid24ydZM=:CID_A_417_Athena_Commando_F_Armadillo", + "7FE6E196D4EF15F90CF5FCD812543E7C:hAr9lKRtiDVeJSn5j/kXuFTGiKYTIEHwhe6VzS5FnYs=", + "457F39EA51FB4C723B442810750CDA4A:V3d05mcuS4uXMBRpy63TIZDLt5hg9njVD0SGhZDsmBw=", + "1937F4ADBC2C38EF4F189DC2B1AE58AB:tWzxKwKEDzI0RsQGl2GvOVqZwxOSOiZaCQkyK1hE+lA=", + "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:Pickaxe_ID_581_Alchemy_HKAS0", + "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:Pickaxe_ID_719_RustyBoltFemale_0VJ7J", + "27D6556F776B2BDA97B480C1141DDDCA:uvUqb5LuwRFWQnA4oCRW3LNdorYcGtOmJ8PvBeCwBKg=:CID_467_Athena_Commando_M_WeirdObjectsPolice", + "A93064DA8BDA456CADD2CD316BE64EE5:nziBPQTfuEl4IRK6pOaovQpqQC6nsMQZFTx+DEg62q4=:EID_Bunnyhop", + "3AC8A6B5089F55E17E00AAD8AC3C6406:TlUSkJe3y85fW83rHMy+XuqcZxQduXcB8yftpPoiDvo=:EID_Loofah", + "6EA156BE3D18E1D649D7D4B3F8C0FACA:qAKD9oM8u4IvUcKbReHTMaLg7GtHLBcnmz8++vwwB6o=:BID_906_GrandeurMale_4JIZO", + "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=:Glider_ID_304_BuffetFemale_AOF61", + "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:BID_990_LyricalMale", + "A25DFB2C9EBAECE22F893DAA48A7138F:d5KZse0g/v9xySiDWLhNw3kCvlWXZKWMKUjDzW8/SIg=:BID_566_TeriyakiAtlantis", + "B0030ECDA329A8B589D249F794EA90B3:BfF0FYJQJ71DMUBmClT0DppsOy+1Syn8fGu6qNtTgXE=:CID_A_094_Athena_Commando_F_Cavern_33LMC", + "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=:MusicPack_122_Sleek_3ST6M", + "110D116208C62834812C2EDF2F305E49:MwuF5zX7GpQCGL2w+CwkPmGzH3q05YUoLo5udhVMNPg=:BID_488_LuckyHero", + "40E9F547033360DFC0DD09743229B87C:x0/WK54ohwsadmVGHIisJNyHC8MqlU8bg2H+BsaEBtc=:EID_Kilo_VD0PK", + "2E539CD42E0594ED4D217ABE4E2B616F:9zdoLMrIZomTGmvDId1RMEGSfktV9gBGgcD2diSSMw4=:EID_NeverGonna", + "5AD8A96807B87D5E2D91EF7714A5432A:FHE540WbcHsqROMXt1E3RQIbKEguG+TVTdOr4IGSslo=:EID_Cottontail", + "EB16EA013B751792698E05435797C1ED:y9JgD812Io4mbaJ5i533Ts5SSfyXaGM4JyoimjP+i4M=:Glider_ID_135_Baseball", + "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:Wrap_394_TextileSilver_ZUH63", + "488F01C34A9A24115776EA801A6E7E1B:WB1TFXsB2Cywzb16hZ2HdBc8X1FsTVqzlDwhyJO8Pcc=:EID_GrilledCheese_N31C9", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_237_Athena_Commando_M_Grasshopper_D_5OEIK", + "E7D27A42770632B7A50BED813D9B1696:bxADNk9dmPNeKEuSvJl44teif6sHvs36yBZ55E9fhwQ=", + "47668DCAEC0AE101E0402B6105A6DDF5:rSOpMue5liEBVSvy/0JZZGTPsP2QeA7Yw9GdicJHs7Y=:EID_Macaroon_45LHE", + "13F1DD5EC796B357B6085D50BBDA3C18:7NRW9FQONfoNEwOJARayC1upKkjg3obxAWICvcXfUWs=:BID_426_GalileoKayak_NS67T", + "E7C565B86445735863B8080B9BE651F7:7M3P/+is0y8muF7/0N2dJo96J3P/k991Vast/lb7Xec=", + "BE9040B1851D0A64B7F061CB66EA9203:5MNas9JBbj90Lqq6RcfyUEE3lZjfXZhiDzn/FCcLiSY=:EID_FlipIt", + "6DEBEC4266A3BC248F8A8FD4B76878BF:wjCAJ9VaThgTfbvUetCEWQFii5GmdfPwFCvxLv5ip/g=:EID_Eerie_8WGYK", + "2E5F91AEF58F310AE2044EA39C43BB81:pNy1GtfVzymqacOqXRY14EZEvI5ZSVD5AFxlhxXC5qk=:BID_870_CritterManiac_8Y8KK", + "F2A5D91602A7C130FA1FB30A050E98A2:MrhEh24cVikkhJJUX/LBAaNtgYV20VBiR5oaMDJ2nA8=:Glider_ID_346_GalacticFemale_LXRL3", + "6CED8B5F648ED1ACCC8F1194901775AF:qjfCT39FVniEjPj+CvZu5Qz8XHHtdnH8kCsV3P1OaJw=:Pickaxe_ID_196_EvilBunny", + "488F01C34A9A24115776EA801A6E7E1B:WB1TFXsB2Cywzb16hZ2HdBc8X1FsTVqzlDwhyJO8Pcc=:BID_687_GrilledCheese_C9FB6", + "BFE1F518C16A9F061B140D829ADDB0ED:bHkPYjXd71vacoJ4IisL//zEyVLFh+Di8MUqV9KkpFU=:CID_A_138_Athena_Commando_F_Foray_YQPB0", + "57C0A809F1C608D62307954035E3DFCD:FuMI1S1xM1U7UrdX4qZhPq77674JV+EV4HWsn59bmbE=", + "F395571A36D2BD888861E61EEBD45AF8:D/35GPTIOKbdfmpxRJmHTkjNXcWv+XdSmTxQt6z1hvI=:Pickaxe_ID_553_SkirmishFemale_J2JXX", + "CB3D84444FF0E551D18939AA7226B17F:U4GIAd4fGYWy9tySw3iVb92+6ZX3rQ3FsiBCXMT4TSo=:Glider_ID_108_Krampus", + "2DCD2E2A9A816AA9035999F8E6F85F6E:6xM4ZYt0UAylyuIgFrmOgq4fYVH2ChEzQNcl8KGQF0o=:Pickaxe_ID_406_HardcoreSportzFemale", + "6EA156BE3D18E1D649D7D4B3F8C0FACA:qAKD9oM8u4IvUcKbReHTMaLg7GtHLBcnmz8++vwwB6o=:LSID_372_Grandeur_UOK4E", + "A0C6985E7B2D24E0A3F68456F221258F:CI8iRftaQe7Ncch+18hxD3hcd0CFGOA9QvEszAAsFMs=", + "975414A2AAC78A3710C3A47A8E3B7A57:LQWa9K05LB13Fn7Brzi8R3vsMRmFcNyJaoAcmBFZNjg=", + "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:Pickaxe_ID_328_GalileoRocket_SNC0L", + "4C838738CDC4946786DD7BE341AB05DD:eyjCm9OcFQSvVRVBZizNVyF+8kb9OlNFrvDy8d1QDfo=:Pickaxe_ID_197_HoppityHeist", + "2A236A35ED4833924DF975CEBE4282AF:e4NpefIqezxUVeH+2INzCV08eK4NvFrojB8z1awxm6Q=:Pickaxe_BrainMatter", + "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_995_Athena_Commando_M_GlobalFB_H5OIJ", + "B66EED5CA4F4ED75170872E30B9B0E23:rHT8/uzcZZ0ENxU9dxKpr+cdAajZ5L5U0geHt6NoZhI=:EID_Fireworks_WKX2W", + "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:Pickaxe_TigerRootFame", + "6A3F6093DECACCD1F78CF802DE7AFF84:Skd0CfmqkmJAUqDFE6Qy/adL2MSN4IuAndXZ0SepEXw=", + "7E9FAC0F2BFC4AE3A2ED4C87D1A57DBF:xaR/8qp7kFAbILx9i6ANnoam0rZ/tP8Xy3yysuqt8BA=:CID_464_Athena_Commando_M_Flamingo", + "4E7938F1FAC98BDF378823116712AC7A:jbZVgprILTQomUdGeJF0PsAFAJxsSCs5cKcXweZMAg0=:Pickaxe_ID_548_TarMale_8X3BY", + "F44BDB2A36AC4B617C7F6421713C656E:SgzCqior1619O71w2yToU+h1Qakb9PXHXYIQN/2UIgc=", + "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:BID_986_CactusDancerFemale", + "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:BID_991_LyricalFemale", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=", + "56FE93367C8B62ADE2A8A1653077C98B:OevQYyBvnT5vwQhOJhu74k5TNwE6pe4gu6okYYBepGc=:Pickaxe_ID_784_CroissantMale", + "B4D5B451ED92972585CC2F14FBD89BEA:W5OvELdQtcX+ob61JryiUFRMmKWphagg20Z84qg4auc=", + "63516700C5CFA6F1BE71B29214957E33:eR9Otw83jJyrj808CkqElVYzlXztuc14/u2pDtPtooQ=:BID_295_Jellyfish", + "1CE4B8636E40B4AF8858511CE01A98E3:+vewfAbMTec/enBaWVzzCxiHw8WLTJvfAWzFmcOJT4Y=:EID_TheShow", + "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_086_Athena_Commando_F_Hardwood_B_B7ZQA", + "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:Pickaxe_ID_821_EnsembleFemale", + "2CB7CC414F921DD774957AAF4AD5F8FE:vi2xluuUw+pFj/tqqfvh7cS9Qnr8gQPEGX0IHyjZVp4=:BID_185_GnomeMale", + "476EE53C2EAA24FD1950A9875FB4CF59:LQMwgWwsoSqGyYbBouYaMaN8NZ38Vy5r3Tqa7KA71oQ=:Pickaxe_FallValleyCharge", + "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:Spray_GalaxyLevel", + "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:Pickaxe_LastVoiceDive", + "B229884F839295B4B9EDC380B045C64B:SVmPvZenzQ5Si17i8daUFyKoOGDtaH4YZtsF1s2XkxE=:MusicPack_084_BuffCatComic_5JC9Y", + "5950552B5A52A97A433715A1FF107BC4:p9RBdPmk5295pRSg0+Ybfwy/kqY6HBYiJEAkvy650O4=:BID_171_Rhino", + "7AEE99564551FF8EE98E6887410AE8E2:Cumd3/0knsdwt4bl7zNQw8MKmmIuC/4wYVfVtQq5d2o=", + "23213D7D8F739DE37BCA56557073DA51:hmmf08PTLeIAJgxwHIFI131jzcy1SbirW6EzJtm1teM=:BID_980_CactusRockerMale_7FLSJ", + "E48EFA857D8E6914B2505B05AADFB193:4AUdytefPzWNT8c11iGtU4xcGNWEgzpMJbxTjUq3NS0=:Glider_ID_241_BackspinMale_97LM4", + "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=:Pickaxe_ID_644_BuffetFemale_TOH8A", + "027FFBB49E4285146DA1C5238EBB7DB3:yjcsOd6x9bWnX36cFx2Q3/zgHrCrnuWwiuZexrdcM8s=:Pickaxe_ID_741_UproarFemale_NDHS3", + "59299ADA0CB5BE70955E952C119CAFA1:MgFBow48P8D6E6wpzAu6Wk04y5ZYsYlZ0V9FK3hIQBM=:EID_Alliteration", + "F395571A36D2BD888861E61EEBD45AF8:D/35GPTIOKbdfmpxRJmHTkjNXcWv+XdSmTxQt6z1hvI=:LSID_274_Skirmish_PJ9TZ", + "1B8A454D42FF2E63D828ABF3B4A303C1:mWm/IpMJQylR4iuTbfEyjjj3TvMNGvPpLNVd1RGrHHI=:MusicPack_139_BG", + "DE4CBA7A27B818D6B299767036C671A9:o7axeOYDdjXZ4MTWM4Io4XRNfQG2WH9qwPvBSJk8vJM=:Pickaxe_ID_841_ApexWildMale", + "7FA066BD68EDBE54C44CEAF5FDE591AA:MqrhrL7xbe11CZPwz1pJTx8M8yUHGe/VHL29VKlKVKg=:Pickaxe_ID_771_LittleEggFemale", + "0EC19805A48534C8892FA21C75024971:WcebSI5r6bMgSAbNd8Ob187rYmIJFJciobdyQciRiSc=:Pickaxe_ID_268_ToxicKitty1H", + "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:BID_876_SunrisePalace_7JPK6", + "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:Glider_ID_176_BlackMondayCape_4P79K", + "F6838AF4144E8386A184FBB0823C15D0:IjzqnnHjZ+r6WC4He/JawOyR7LxeMbm5880cDGDr2eU=:Pickaxe_ID_174_LuckyRider", + "B8F307A56B6EEFACD6250B2E60A24A4C:ayYSM667dKzMIvm8ZUY0F+FNlvNsg4G2RMIgi2fPf8k=", + "09D84C411F2EFF940F5D462000CA5BE0:6Djlf6/XCCTMpI4KbNEHN4X6prgcnfQtru+z+RTHs2s=:BID_736_DayTrader_QS4PD", + "C6F7AEC922E28FB25AFBC50442F57877:qJNZNWzxSxvlrklYDsNkZek9OD8kGV6lI+Hfmm+k0gE=:EID_BluePhoto_JSG4D", + "552DB214510DE1E24F08920F80B0AEC5:GP2CYv9xYYDf6bOnpgm0fnOXa3iI0acXH02ZIaHAElg=:Glider_ID_306_StereoFemale_0ZZCF", + "F0257C3CA050371B68517D5B0476A24D:EPU6cULjz63viMmdjtRwy6TagWogzeVnVX5nsa/leLw=:EID_Punctual", + "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:Wrap_TigerRootHue", + "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:Pickaxe_ID_326_GalileoFerry1H_F5IUA", + "16FC688AE41A3E3C518F4DD9F9612EE7:Jd7nRLx/FoonA2dUjtbvJVk3nJoNq9LTedk3u4EdFS8=:Wrap_044_BattlePlane", + "D517F2A448CCB9B47E5004894BC62ACF:qOdQUR91sysqDRELOgz/YVZ7Piae8hqcrnYW90fXtvU=:Pickaxe_ID_680_TomcatMale_LOSMX", + "7B1151E3094646DFFD37B6492B117FDB:4WxNHdTgHDEpGjzIV2XIjGO41kyiwggFQpdq8y+o1jY=:Pickaxe_ID_577_TheGoldenSkeletonFemale1H_Y6VJG", + "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=:EID_Fishbowl", + "57199980522FCA9E80C75A826BEA92ED:aR3U2OO9uGBqAYnJeTrUBFk6Q+OkpdmBavBU26DP0m0=", + "6686344942A2886FC4FD4D3763A4890D:CphngqSvpV+b2+WsrC6THVlHtrbln/Gmei4th7IO6VU=", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Pickaxe_InstantGravelNoble", + "E1B1A5908EF6377D7FB29F776486A6A0:qaZB3Q+6kKTtlO4aGWBsnjSxCwX3kmr8oOF/2QDZ2qc=:Backpack_Basil", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_950_Athena_Commando_M_Football20Referee_D_MIHME", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_944_Athena_Commando_F_Football20_C_FO6IY", + "98BA4AE4D7202053DB73B55D8DE72248:6UYqlPIbGSNPZBQWhHR4xZ/l3mJCnJ2O/7SEqRRInLY=", + "DC953387B24FC2DCBECCD2CCF61BB973:GT4tz78+PbkMtjcHnlkhmwLG7lQAr7EwMEWIgn59PV0=:Pickaxe_RollerBlade", + "5738A14C7E45E1B405CEF920829CB255:xZHlPTz/dxNahrp9IqTZ+tjOZSYMxQb9KZFXlg9N638=:Pickaxe_ID_330_HolidayTimeMale", + "4C546A04EB0E91B7EB4449B672B63900:RhtdrUqq3N21E77X7YatI4oX3wLYyvFH5Wm+eaUX8+w=", + "A0926AD8C6EDE29250AC4A0A93156E7B:keN/yZ7qnvcPZeIflsked9TAT867gbPgmnG1QdlSn3E=:EID_Donut1", + "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Pickaxe_CoyoteTrailDark", + "A0926AD8C6EDE29250AC4A0A93156E7B:keN/yZ7qnvcPZeIflsked9TAT867gbPgmnG1QdlSn3E=:EID_Donut2", + "F4729DF9DB149229267F9389E3C95851:DCXGOUUTWG8jFuEryO+32mXKJsQgQe+Fp82u7mHiYFU=", + "36126C339CEBD31F23562CDCC5DFDD4D:cuLUN7oD/p5BSxuk6pKGY6KtlhGInVti36sV6zSv1n4=", + "EDF724493161095DB54E9613C243A355:Yp7dsOYO778G7uRZNYhGag2diT70vhu2hAWvkzvtHjg=:Pickaxe_ID_796_IndigoMale", + "8C4383893F90632D5516AD37E0CD5173:JUTInt9XDGH6gUbZ040d4ptJRsuhNppIKKIw+IiYo8k=", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl_C", + "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl_D", + "566C4D92AF66F45DF5E2D7EB43CC27AE:EuAYwU5tQBXzGoSj5BMc7S5yFfe9wZ2qrzx/hIHpnqw=:BID_629_LunchBox", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl_B", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl_E", + "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:BID_427_GalileoSled_ZDWOV", + "BF344823BEE88FA8760A410311A30150:mcfE7CGJQLRE5dWZTCNPCCPgSBV7CMLl6lvpF+nzqzw=:Pickaxe_ID_851_AstralFemale", + "F6E92DDBC70C8184E837D31905B2F2A7:UCSPatT+yv3YH2x0Ks+2GSXhSSu+3ZvZs6Lai3oOi0Y=:EID_RuckusMini_HW9YF", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_234_Athena_Commando_M_Grasshopper_A_57ARK", + "020DE538FBEA2DA5CB1242DDBE527264:N8vfE8tdV6D+CX+hVEPFmOqM82o3lA3k/I/LhZHOh0I=", + "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=:Wrap_298_Embers", + "BE2C3EF59AB81D812AF5B8153325998F:W7NoICLZt9L2d7XZ5dT9gtI80MyOizk7uA9LtwA/Edw=", + "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisBlackberry", + "10B79AACE97810A1DD02E8A0E6093294:mgf5coTA3W8a87B7ZbnK8dMcRwToBBDjOH4qZoWLw9s=:EID_Adoration", + "919FDAB2FDB531820404333B27DC7B06:W9Csp0y6agsgcQXlRGvYUpPGPImNdFfBsZ8yQoUEdGg=:Wrap_092_Sarong", + "28C5CD0467F2271365DA8AC4DE122672:I1ujTTKWOz0A5LcFiCwKJXQl9bnMpW9yhvY13UaWo1Y=", + "BFE1F518C16A9F061B140D829ADDB0ED:bHkPYjXd71vacoJ4IisL//zEyVLFh+Di8MUqV9KkpFU=:CID_A_139_Athena_Commando_M_Foray_SD8AA", + "C348806ECD35F176A5C50306B0A07DB9:x8+m/v+Cn55R+CIZrsqqSKxa5JpkQyQGeLVTJ8evrpw=", + "0DD695EB05DDF1067D46B2F758160F3E:H8eacvW3rgmZFvWGGwXfojcIBMrQUL+FJQ1x3dzzVm0=", + "857A238C0BA80D892571ACE78CD3187C:eLLEqOAgRjz78Z4YT6dLxL3DetAW1c2BM4oTPp912ak=", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage_B", + "3064E7FF7FD15A1F40230918DF236352:mMcGmrZBjxlJBFmWKqZHgcrcRvZKcHDIn9ampMMA9R4=:EID_Jockey", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage_D", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage_C", + "BAEF248980269F569C6E1FFF2B885DF6:2b6DQGIcab1r7zsw5j3MR84iDmt0g1XBquxJVR/8GxM=:Pickaxe_ID_302_TourBus1H", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage_E", + "D47DF51158673BE6CD4D32E84C91DF7F:+EzQK4ojNk1DqxceQeArAGZhQPQyuQBKX4gVuGEqSxM=:CID_632_Athena_Commando_F_GalileoZeppelin_SJKPW", + "6537263AA4E53B6A7B7D4AE3DE12826C:6WOQR0kXJWBJ4miykyUSj/hcH4u5JTSFpBTwaIeIFxQ=", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Cherry", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_955_Athena_Commando_F_Football20Referee_D_OFZIL", + "172B237342C2165A212FEEAC80584DD5:7bGmK+J89yojl49SMoQKA+Zf7ZZ0W3OatE6KZYlGPnU=:CID_254_Athena_Commando_M_Zombie", + "504BC0A80EE72DFEEF9CB7EE3FFCE163:eToIGihi0lTVTcHietksl1e6cHBf5h30aYO5YXpWXY4=", + "E003ABE22717994943D06FA3F41D1CB1:Z0MoyJ24D89oC5rAOJK09jo5/TLV30z2f+IwDeJ/4GQ=", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Character_BraveBuild", + "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:LSID_404_Gimmick_GXP4P", + "CBFF239A1792F25920D863F223368B54:J3N3cUH3M0R3uyzkE0qVK/SouxC/X6VEswcoWb6ViL8=:Wrap_071_Pug", + "ED088B11311A599D6225CE85545F019A:1NMRh4JMXRL9XW8Kb6zo4/F10dwLJC1+kPm6D6DudCE=:BID_832_Lavish_TV630", + "8ED082067AC31EE587FE16E5507E95D3:/uvcdfyt+d1foHxwO3zz+Y0PUr5Jzz/yES0FyaLelc4=", + "03DFE957E1454D5A0486358ED5DE9C56:xz1aeE5HU0Ej/4kp/WXnsZhLBh7+z+aWVz0G1xOrTB8=:EID_Promenade", + "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=", + "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:Backpack_TigerRootFame", + "D47DF51158673BE6CD4D32E84C91DF7F:+EzQK4ojNk1DqxceQeArAGZhQPQyuQBKX4gVuGEqSxM=:Glider_ID_189_GalileoZeppelinFemale_353IC", + "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Backpack_EmeraldGlassGreen", + "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:CID_649_Athena_Commando_F_HolidayPJ", + "BC3890EAABBF03778EE82AD7DD4F9C12:RvtEdiKkxLJDnXKUaUK933vzLK04veYzbdp8yN8wmxY=:Glider_ID_376_ChiselMale", + "5950552B5A52A97A433715A1FF107BC4:p9RBdPmk5295pRSg0+Ybfwy/kqY6HBYiJEAkvy650O4=:Glider_ID_102_Rhino", + "E7D27A42770632B7A50BED813D9B1696:bxADNk9dmPNeKEuSvJl44teif6sHvs36yBZ55E9fhwQ=:Pickaxe_ID_775_SnowfallFemale", + "B3D2793477E5D467475BE403774360E5:HNj5inGk1/2h9f0r4+SGPPY9t69eOwS6w0XGxpTVOTM=:EID_FearlessFlight", + "F395571A36D2BD888861E61EEBD45AF8:D/35GPTIOKbdfmpxRJmHTkjNXcWv+XdSmTxQt6z1hvI=:BID_702_SkirmishFemale_P9FE3", + "DC060EA83FE6F9729B19150E40C7987E:zW3d3QhtvhE+q3x/P7/BA9JvyoruVmeACdKt6RPxyLY=:Pickaxe_ID_769_JourneyMentorFemale", + "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=:Pickaxe_FishBowl", + "9E6F84C908A6CEE29032FB050FBC2EBA:GXZFI6Jhfg/HnSTK1cqbpa5Ay1GzLco5sYtY5RPTcfM=", + "7F5ACEFE3F67BC0CCEB59A4E8EB82BAF:iDG2HB2LypEtzw5/EjKVpJmQ1o30BE3nVv01rOTyq64=", + "63722D44ECCA0F4178B85F5A6BC4C31B:j42UL0bmfBkli6Aj92wWABwFby5rAplP/Ac6nh9kRvA=:Pickaxe_ID_661_VividMale1H_ZN6Q0", + "EBFE6788D367D741AF0A4FD098CDFD39:FAeJTGyT49P+dQOmKx+lMYVAxu7qtIPlqSaLAR85zqI=:EID_AssassinSalute", + "3AC8A6B5089F55E17E00AAD8AC3C6406:TlUSkJe3y85fW83rHMy+XuqcZxQduXcB8yftpPoiDvo=:Pickaxe_ID_399_LoofahFemale1H", + "1A9B01B59F609C0D7E9EF7887DA23087:EkQdXhPD9Je6Bp7dlwZdlkX2S0har6vqUOjMIF9ndfc=:EID_Ohana", + "ECE91B4E506E33C16FA440F4B4313824:dGr4XbhLD3sf28Y3Tawke4Gr/TpwEA5xPOjhgi+ZAKk=", + "8DCAE39C7D9690E19F52655F02C613B2:ZZHbiVsbXquLlrtNVHtryLS3Vd1Ego8/8tlDpeUCgfc=:BID_336_MascotMilitiaBurger", + "06B9F77E165673FD1C5FF5099F43D1F3:Bvw6h4GKOLjC/wFgHQsiLePbBZhtPiNhtr5keDBse70=:BID_421_TeriyakiWarrior", + "FF5A507BCC4519B928075C3DF4603E8E:EVv5b8WFOYZlDUGRqb8YUS1WbIbbT8TjgoBWEQr65zs=", + "09BC93B3441ECBAC30FA23BBEF59CF89:3CHInj+JfLspiVCNDY/GTZ4Pn52nWFeA4qYI0SJv2dM=:CID_302_Athena_Commando_F_Nutcracker", + "CB34283BE466D2421549051C400A9E52:rTmyRzx7oSiBWRv52itbCbAFlLIy7W6dZoDcfyTMmyo=", + "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:SPID_403_Lyrical_BoomBox", + "74AF07F9A2908BB2C32C9B07BC998560:V0Oqo/JGdPq3K1fX3JQRzwjCQMK7bV4QoyqQQFsIf0k=:Glider_ID_158_Hairy", + "464F39FB64FAF4AB6843449EDD0BE3BE:0yYMEXLHteghUwUW+SThzKXltdNzvA42CssFpAXgxFA=", + "ECC9E1F04B18E523B2681C2037A17B56:AoeVhWzK5zFpeJ2yqYKkTaRw4vo9162/EuipYvC+jxA=:CID_602_Athena_Commando_M_NanaSplit", + "4182D3E699CA4C6022FC4CC2C1E6FB90:to8QORwARsWs8Ox6EmJj9V6DvB4yWqTYHlLuNKAawss=:EID_Malleable", + "32E8846645441197B80CF8B1C86B01A1:cwJgOQhsrscdiFfLHzS9WudnE9mBMH/C/SAyX81B2fM=:CID_311_Athena_Commando_M_Reindeer", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Kiwi", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Character_InstantGravelNoble", + "B9E5ABB4D4F783F13E7A32B971597F03:HGWfy8LBJu12s5HZeYTZDqP2EI3dJqPXupxd2AzYdUI=", + "C7623A35411F3D5FBDE2688C7E4A69EB:qAi49mUKsB2dbfbtJWDf3yO2DfRStA+Ed9XgDjC8Zaw=:BID_190_StreetGothFemale", + "234D1D3D37EFF3322E44B31200C1ACEA:T3lGoZ3JIVg7vasMQCr3hjyRo8x+HS1Arh43XvdUKss=", + "CBAC886CCED55EEAEDC0D4BED9588035:+5bLkb9JJIJBPrVxzvfhb0CkKU4ITf8SJRRG14UzyfI=", + "BA490514EFDA436A2679E381BD558AA3:3KBKxBOi/52H0feJ/ijKxRHk+lF1zID0uIpjd0T7/Bc=:Season18_Haste_TrickShotStyle1_Schedule", + "35C2B057E5168DCA74B6F1DDAC745E60:73haJlY3S0TVmH0ELxyw6p5FzFRrITWqOmobH9F2Mq8=:BID_936_KeenFemale_90W2B", + "F33B69585B65C333655C545A038BCEE5:0+gUoAUkiBbY5uqO9rIehUDkvrr/PY3vBY16AMHQASw=:Pickaxe_StallionSmoke", + "D14FDB2BB2FB7746797F25470913BFF1:CQDgIxcNnAoUboQnjafZAYvV7UqX+NefGTXFd3m+oFc=:BID_907_Nucleus_J147F", + "DE4CBA7A27B818D6B299767036C671A9:o7axeOYDdjXZ4MTWM4Io4XRNfQG2WH9qwPvBSJk8vJM=:EID_ApexWild", + "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_A_004_Athena_Commando_F_GlobalFB_D_62OZ5", + "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:Pickaxe_TigerRootHype", + "D82BF0194AE18598B8B08491E2256E16:3ENJiAAhBVgbroE9WbkjWK5YqL8vzJ0sFKhadRKcQjk=:CID_255_Athena_Commando_F_HalloweenBunny", + "E46E6578D28965DB74B642E1CB239A5D:Dg3Oqkcno7QuLDGdi4N4VWSMSAd8bILyJT8Gh0PYjj8=:BID_758_Broccoli_TK4HH", + "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:BID_820_QuarrelFemale_7CW31", + "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:Pickaxe_ID_733_SlitherFemale_M1YCL", + "0CAB99F6E84D4E4C616B895E243F3B67:DWU31IKjnLsEt8sBBDfWQ3DPbZzpJ2JmfbxYdQ8QPZI=", + "61D055FFB6523C2E6B09EEEF500F82EC:mD5hivRGMT21lNyWjRs7eYriBFTVlzoINDBB9DSFPAA=:EID_Clamor", + "8DF1F1277DF980247E3117412EEBC87D:zkBSgRftUEdB3dqaelLwaFIxyVv3AwDbdcwc5hsg++k=:EID_DoubleTake", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Character_StarWalkerFNCS", + "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_350_Athena_Commando_F_TreyCozy_B_8TH8C", + "FC4FC301558D3E9321A55180263EB17B:OXujupiNRNT6+b1g1dg2IXPtdQyfoNPUuvtgqfXnlEY=", + "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_445_Athena_Commando_F_BannerD", + "E7D27A42770632B7A50BED813D9B1696:bxADNk9dmPNeKEuSvJl44teif6sHvs36yBZ55E9fhwQ=:EID_Snowfall_H6LU9", + "C23FA9BDE9342B508B8AABBEEA6699A2:3mRtSSu9PTBlC3NpGAQcFent660Ptni4HbGX+Zj1KIA=:Wrap_404_CritterFrenzy_SNXC0", + "72CC2893A6B672F3854F36629B770774:0BgQgKZRRuPFEoqn7CxZVhLBOfpCE3qLKGQlZc+SA80=:MusicPack_112_Uproar_59WME", + "63516700C5CFA6F1BE71B29214957E33:eR9Otw83jJyrj808CkqElVYzlXztuc14/u2pDtPtooQ=:Pickaxe_ID_223_Jellyfish", + "5C0BC5E8819B8968CF25C60885F0CB5E:E52Ld2gtMzMFUMkdMpjNWmEHEgr1qnH+iliH2ha27dQ=:Pickaxe_ID_275_Traveler", + "419008D696C27533DFEDB08BE4F6C8F8:5I7VZNrdz8oZdzk1TTNCKkZXokilbXLFy7dQPPPlpuo=:CID_A_314_Athena_Commando_F_NightCapsule_TAK2P", + "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_352_Athena_Commando_F_TreyCozy_D_2CLR3", + "77C937AE673A9DBFDFA373E0FD928533:JGgyzNZT3oLg4LqA0W+d/caWWhqIpiXNOyYtzSeZ4po=", + "7F2E96A8331098ACD5BB8DC29D4A3F57:kDTbN2yRZAIwEEQsF2zoJwdhtsK0lcb5zEuon7vziuk=:Backpack_FolkEveningSheath", + "258AB620A71C14508FB6614003DCD34E:fjPUuwSZbKfHlvSh8RMyVjR2SVTcVrGNpWvyjNVQ8Xw=", + "C66F354B49A4389E7636C1BF53CE8D97:BisMzLIPd3AuIv431ryh7DE1h1HYe/NdhBC0wkLq/zQ=:BID_204_TennisFemale", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_307_Athena_Commando_F_Slither_E_CSPZ8", + "1162D72490AB6D040106B276D14B20D2:UoybfdmMPLyXmLpTKBZB0sqSOvXnKHabF/nv5olkuoQ=", + "6EDDE286471D1369B09E65A6B02686CF:2MDxhxeBxx/dN+Q/lwCG+poxzpStEQLDM0L80CoaEG8=:Pickaxe_ID_152_DragonMask", + "88E5DC354F07186FFE1EA93D874832A6:6FGm7/RIAkq2nYksl+dkuTvBSzgmz/DxPQ4iskMBwns=:EID_Coping", + "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:LSID_429_Rumble", + "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:CID_650_Athena_Commando_F_HolidayPJ_B", + "E66DF3CF1BFE84F0B1966967210DD6D9:DGLD/iFbdLvaiZnAfWrHIW5yJ5SfsQQyjeW2IBQe+zw=", + "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:BID_A_062_WayfareMaskFemale", + "6B91F0DFD2780364EC6FC5E531665208:sBhYta4JrxcssCLVBkFXeJpKa7gQKHepqu9840vo6h4=", + "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:Pickaxe_ID_783_CactusDancerMale", + "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:EID_SpeedDial", + "5332028CC33C98BF747EEF82B0384D8C:QxdEIZba2DLRx0jYKm8UpIk/K6eKuclfvDSTllMLLrk=", + "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:EID_Galileo1_B3EX6", + "A758D2324A07ED9DE9E0818F6856693A:ZpzBR4QHXooKIZ6RXd8kp7WBPvsY8PQfKPE4bRfkGks=", + "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:EID_BlackMondayMale_E0VSB", + "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl", + "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:BannerToken_015_GalileoA_0W6VH", + "72FCE9EE6B90885970CBD74AA2992B68:UvFcOwG78Bx6kVWWHd3NsSarAeWZAht32WLeqs0Opoo=:BannerToken_003_2019WorldCup", + "BC3890EAABBF03778EE82AD7DD4F9C12:RvtEdiKkxLJDnXKUaUK933vzLK04veYzbdp8yN8wmxY=", + "476EE53C2EAA24FD1950A9875FB4CF59:LQMwgWwsoSqGyYbBouYaMaN8NZ38Vy5r3Tqa7KA71oQ=:Pickaxe_FallValleyBlink", + "82669F5A2F9B703D1A6BEA3BCB922D7D:Leu9rrDPaqZd3izIU+IKpFcP/NNcqSncLkV2lapQL6k=:Pickaxe_ID_221_SkullBriteEclipse", + "A6E8A0C1D732A1D028B92BE981E0B8E5:3u9E2vAzuE3Vl8sOG4jzX2RiiA+GFyukOLeOakVOf3I=", + "3988E0693BAEB40EB8FB796CF560C182:KjMkLsAOZrfb9xvTWaNmqqceJQz5RSIJwC+1md9kMs0=", + "08788A9DA34F4164ADA4F09FBF698CC3:DlhRrdBGDNADUAMRj4oAUwwR2j33Nr2ZNg2CU3i1/Pg=:EID_Quantity_39X5D", + "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=", + "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_349_Athena_Commando_F_TreyCozy_Y4D2W", + "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_347_Athena_Commando_M_TreyCozy_D_OKJU9", + "BE2C3EF59AB81D812AF5B8153325998F:W7NoICLZt9L2d7XZ5dT9gtI80MyOizk7uA9LtwA/Edw=:BID_872_Giggle_LN5LR", + "9944BE1C4E9D73E4FA195380EF0B7BBB:LQxoRi0ktKvKMLk6hauL2Gzs6zf5bcEk3mgfX0We/uc=:Glider_ID_122_Valentines", + "340C0957F37B985956E74242A9487B5A:CiISJuNPymcbI3tJAxIaNfGCcHBr1ttSFr++4c5DQx0=", + "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:TOY_Basketball_Hookshot_LUWQ6", + "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:EID_GalaxyLevel", + "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:Glider_ID_365_RumbleFemale", + "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:LSID_456_Ensemble_BusGroup", + "88FA70760D757D80F661FA53B4762EC2:7OtV76cpyOq9dNeM5PVD8TOdRcPx1K3weEPXzlCugu0=:MusicPack_106_Bistro_DQZH0", + "6450BD104AFF3B6ABA9AA0EC0748E775:DAB0L8RyRz4sVG7rh9zNsKg8MGmCqlsIUr9XM7hVvvo=", + "30A11EE8EB62BEFD4E9B09611DB13857:YVeVPXcP7UoJTp71ZXpGNdPVzmjnRyymcUpsNWYXfRs=:BID_506_DonutCup", + "30B53CD6A14D4EE40C71C60E9EE0DD93:RFvcbS74Q3YPnQpxUbhafzeiqVYKv6Fxukfi77h2TdI=", + "29DCC9CAE821CAF43197545BAFB9CDE1:i9A5h7EdSe56nquoLOHdmUB6HKB50OzHpQMLXDjSQkM=", + "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:BID_851_TextileKnightMale_MIPJ6", + "604C6242EB2BF301BB5D4BC6E3AC5A8C:Y7c2+dviThEDuVsG9kIOjMfnLdJUnPMbdaY5gKiVki0=", + "1050DE04C393D98D22D50388175B4834:aFzCQrL5V9QxBU7hrblnr3x8oWjKs7MjQrua/tyBEQI=", + "419008D696C27533DFEDB08BE4F6C8F8:5I7VZNrdz8oZdzk1TTNCKkZXokilbXLFy7dQPPPlpuo=:CID_A_315_Athena_Commando_M_NightCapsule_B31L1", + "027FFBB49E4285146DA1C5238EBB7DB3:yjcsOd6x9bWnX36cFx2Q3/zgHrCrnuWwiuZexrdcM8s=:LSID_398_UproarVI_5KIXU", + "7FA066BD68EDBE54C44CEAF5FDE591AA:MqrhrL7xbe11CZPwz1pJTx8M8yUHGe/VHL29VKlKVKg=:BID_976_LittleEgg_Female_4EJ99", + "FD0C3696948675DC3C2CBF5098D57D0D:rBWyTh/AVyZxi2oiQxM/OeD/HYZOSdVidEQeKoowV6U=", + "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:LSID_360_Relish_FRX3N", + "4F53A11AB9CD08FA18D603BF29415366:mq1giTyk7GAqrpXphg9STetDQnhFBS5M1SYEHM7uYqk=:BID_251_SpaceBunny", + "B229884F839295B4B9EDC380B045C64B:SVmPvZenzQ5Si17i8daUFyKoOGDtaH4YZtsF1s2XkxE=:Pickaxe_ID_588_BuffCatComicMale_12ZAD", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:Pickaxe_ID_491_YorkMale", + "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:BID_873_RelishMale_0Q8D9", + "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:Glider_ID_324_SunriseCastleMale_2R4Q3", + "768A95DE7B657B7B23D5A0DE283EB49F:JLLAz46a7wo2rADQvCkbp4IbKexr7J5bBr6d6toSn50=:Wrap_049_PajamaPartyGreen", + "F07BE27DCEFDF52818EE7BA2CD9CA504:lc47A/VahaBWJLQY4V1YyjzJPI5xVErInDaqdwPjv2g=:BID_255_MoonlightAssassin", + "2CEE3C1783B9E41EB66238BAD32EFF23:udlTL9abg8LIGytWpERMGVEpPrj9io23R2HbINHtF3o=", + "794E59D9FCF36814F264C9A5938124E5:uHr4c9XJ/zNCUImzwZpzrUfQRcZ2j19dLN3CTnKy1Vk=", + "E28AF2E3BB7EBBB69D962A15879E696E:hJE3fnZPwRmG8XIw+RJvVsCh9dOHDD82VAhvMbi+nvs=:Pickaxe_DualParadoxGold", + "86588ED13DD870C5FDBF91B3C739D156:HFqg2udb5qqasLf+D2jzfRahu3HgBZWZN2AvnSUIIzs=:BannerToken_002_Doggus", + "CBFF239A1792F25920D863F223368B54:J3N3cUH3M0R3uyzkE0qVK/SouxC/X6VEswcoWb6ViL8=:BID_276_Pug", + "E46E6578D28965DB74B642E1CB239A5D:Dg3Oqkcno7QuLDGdi4N4VWSMSAd8bILyJT8Gh0PYjj8=:Pickaxe_ID_597_BroccoliMale_GMZ6W", + "16FC688AE41A3E3C518F4DD9F9612EE7:Jd7nRLx/FoonA2dUjtbvJVk3nJoNq9LTedk3u4EdFS8=:Wrap_024_StealthBlack", + "A2A3968C8EF4EA9F7979BC1FC57B871D:xVURN9OBgLtbyK0ZR4bqMgsZpL/SJjlIXf1WGEpfd6I=:Glider_ID_139_EarthDay", + "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:EID_Relish_TNPZI", + "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:EID_Gimmick_Male_8ZFCA", + "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:BID_952_Gimmick_Female_KM10U", + "5BAB7539D98938E909D3541E69214830:IgABlZz2+aRehC7vxw4p63pXUZOZFwdATQWkTfTYP30=:EID_SpectacleWeb", + "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:Pickaxe_GalaxyLevel", + "5AD068EB1D56D87706E44EEB3198CF1B:o9Gp08KD/vgq3RTrUbfGJk7rlfUqZMxoRKPiwvdVkXY=:Wrap_431_Logarithm_F8CWD", + "E0AEF4894E1283946745F7902F7E105A:7MXKJEs903nNbT1oFzykxoHbQNDnOBm6yfadj+mtBDA=:CID_A_342_Athena_Commando_M_Rover_WKA61", + "604C6242EB2BF301BB5D4BC6E3AC5A8C:Y7c2+dviThEDuVsG9kIOjMfnLdJUnPMbdaY5gKiVki0=:BID_772_Lasso_Polo_BL4WE", + "266410C2B17584B4A472878EB88D6892:jLd9anMumGE0jIIBSf8XuqTu729JfnYTesywpeOgksw=", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Backpack_PencilCherry", + "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_444_Athena_Commando_F_BannerC", + "C1C31115267D6802AD699472D2621F25:zAyelFy6RcyGIW/9z9IvgEbmRW9pdAytvgBIPb1/kdk=", + "21F8DE4A4818E3B01693DF33566A179F:5AoumGhlrt+oAo6XUdRDSGHIp3ndAWOf9JGbBZResfk=", + "D7EDE7B4CE393235BF4EB8779C55D5AE:tvYJfExMmwMpbWXSe8bxfGkpl1wcJv4B/RBjd8qWcZ4=:Pickaxe_ID_728_OrbitTealMale_3NIST", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_951_Athena_Commando_M_Football20Referee_E_QBIBA", + "DC953387B24FC2DCBECCD2CCF61BB973:GT4tz78+PbkMtjcHnlkhmwLG7lQAr7EwMEWIgn59PV0=:EID_RollerBlade", + "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisApricot", + "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:EID_Foe_4EWJV", + "C76299772B1BE272260BF3396F83FC1E:uiBDMtwYhdxktbqTrhYkzEZErlBp5gBtkLM+QFDouT4=:Trails_ID_102_HightowerVertigo_G63FW", + "480888CBDD75E7F40261A1902989FFF6:l9EB5w/gi/KDjut4Izk3Y4MPLaHP5VbV6iPYsQxsB0U=", + "60D2163642133A71A78B16544C01474F:VJuOsZCmZAJ5VMpnkBng02DcQx3oj6Lup2eM4PxA85g=:EID_Cherish", + "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Backpack_EmeraldGlassRebel", + "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:Pickaxe_ID_694_SunrisePalace1H_SDI6M", + "63722D44ECCA0F4178B85F5A6BC4C31B:j42UL0bmfBkli6Aj92wWABwFby5rAplP/Ac6nh9kRvA=:Glider_ID_308_VividMale_H8JAS", + "0DE6839DE97A78F987D7A34D644BB3AD:ZKZ1+Eb+7CpzfLHMqihYVN9+gVQobqBYQW5mh8I1KpA=", + "AAB934D179F489B8084EB057031AB845:oJF2EGCXkWP7B1BVK8i4yJzvNtkwXozjZJZv7ZznEEA=", + "35DDA69DABF1DE5826348A3CCD0DFE5E:CfhL+/n+phBF7TV4Qpw4Qhqrd6g3S/Gq2sU5n0FiH6A=:Trails_ID_059_Sony2", + "854D0D9F4EF33FB4410CB98340952245:wYzInzYpL5IB6dN+rCo6196KgGGo3E/rNeOf7Paizz4=:CID_304_Athena_Commando_M_Gnome", + "E50209164841E1829F672AB1B33D069F:1EMTmCTA4cO1QMoLu+RWAGd8Rw4FQdAONKvDwfQeNV8=:CID_333_Athena_Commando_M_Squishy", + "552DB214510DE1E24F08920F80B0AEC5:GP2CYv9xYYDf6bOnpgm0fnOXa3iI0acXH02ZIaHAElg=:BID_819_Stereo_TE8RC", + "216D955070ADAF10973BD156897472C3:MjQh55OvnJCoVMQzMU4C/1NF3FWiXDXnJ6G/EcHfUzo=:Pickaxe_ID_202_AshtonBoardwalk", + "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:Pickaxe_ID_791_RumbleFemale", + "B1B800E199A6D4649287C11AE89F67CA:3udFXffIw3c7eM5hljF5mJQA36FbW2PeF8Gx1TcD1vc=:BID_257_Swashbuckler", + "41BDA9510489C841C335EBFA5E233CF0:NceSf4zJLAR1Clh17nKGtBrw62kDRE7tJrodbJYMbU0=:Pickaxe_ID_193_HotDog", + "DC912741D5C6F75E4B0FEE33D7E3ECB5:0J6tWhEx0Nxw49VokIyykSs5sL5aFPgk2QJn9b5bAi8=:EID_LetsBegin", + "06B9F77E165673FD1C5FF5099F43D1F3:Bvw6h4GKOLjC/wFgHQsiLePbBZhtPiNhtr5keDBse70=:Wrap_176_TeriyakiWarrior", + "AC44D9C67B1FB24E70D94C827FC465AE:VrHcqJ9hMMqZicx3kS+qFfNXexXR/QA1/1bM+DwgqMw=", + "EFF73F810AF0A5536912C24E91399CBC:vlBHa/jN2WecgWXwAEROAGpwbobQfMtBU24wD7+gM7k=", + "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=", + "CD6B95C728B11810F8EE4C396D02EFCA:Fulo/BAgbJwmOju1xu/05XnxLDbenI4bDEb2rUyf5hw=:EID_Psychic_7SO2Z", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=", + "8A6DABC9AF8B5FE521D365DB605D0AE0:T721SqBTncYsd8Gej01RnLX6sEaCgJoILnRauHaJz+g=:CID_429_Athena_Commando_F_NeonLines", + "1A9B01B59F609C0D7E9EF7887DA23087:EkQdXhPD9Je6Bp7dlwZdlkX2S0har6vqUOjMIF9ndfc=:BID_A_043_OhanaMale", + "1DF43E667862B117F72B5F39E750853A:Bhjx3mmVxhvadK5bkT+W9RJ0XAaMHawCnf8MfXIpABw=:Glider_ID_150_TechOpsBlue", + "6D85E82539341B90944E84FFAAD872FB:mAiBk7KbE2Dnr+yVFyJK1yAwv2eWb+yANFH0z2krQkw=:Glider_ID_156_SummerBomber", + "AFCCB7C08EC6957EEDDAAD676C3D3513:MuovEXob241ie6/RP76ImUk+MExLdl+bszvxCHNtg0U=:EID_TwistDaytona", + "0001859EA7AF69EF10A6F7921DD4DD9A:3M92MlWo2b1V04mxizc7cHB6TDP/UInspfWR4yT7K3g=", + "7E9E6546A8C7109E9966F9C010D794A7:/hJU9SIxIewJ7taimArAwTbbuGG/4THrKvMElcTMzI0=:EID_BurgerFlipping", + "AE9F7B3419C7FBD2414D72E2E1C8A7BA:kpIotniLp60tWfbBitDUrjw6gmJ2Swl+YT3QAkecpRA=:EID_AntiVisitorProtest", + "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:BID_441_HolidayPJ", + "23213D7D8F739DE37BCA56557073DA51:hmmf08PTLeIAJgxwHIFI131jzcy1SbirW6EzJtm1teM=:Pickaxe_ID_778_CactusRockerMale", + "E1B1A5908EF6377D7FB29F776486A6A0:qaZB3Q+6kKTtlO4aGWBsnjSxCwX3kmr8oOF/2QDZ2qc=", + "F6E92DDBC70C8184E837D31905B2F2A7:UCSPatT+yv3YH2x0Ks+2GSXhSSu+3ZvZs6Lai3oOi0Y=:Wrap_387_RuckusMini_6I5DM", + "0EC19805A48534C8892FA21C75024971:WcebSI5r6bMgSAbNd8Ob187rYmIJFJciobdyQciRiSc=:BID_345_ToxicKitty", + "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Pickaxe_EmeraldGlassTransform", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_913_Athena_Commando_F_York_D", + "1AFD764881D1E33FDAA65707010712AD:cbKyY3ux6wrdiWz2dXJq18KJaAYmUgBZ2aZsfz1UE3M=", + "7B1151E3094646DFFD37B6492B117FDB:4WxNHdTgHDEpGjzIV2XIjGO41kyiwggFQpdq8y+o1jY=:Wrap_356_GoldenSkeletonF_FT0B3", + "5E2A3EE7CE3884E31F58D83485D8B122:U++ePc5N62iMtEbjrJGSwNCaWeR6UoNMtWS85zJHwns=", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_241_Athena_Commando_F_Grasshopper_C_QGV1I", + "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=", + "F00E08CB606091AEFAB37D9B0A01B833:uEmoAK5xdbd8KefVf9o7uJiGcGTYk2r9QevsGe4vBII=", + "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:Glider_GalaxyLevel", + "E28AF2E3BB7EBBB69D962A15879E696E:hJE3fnZPwRmG8XIw+RJvVsCh9dOHDD82VAhvMbi+nvs=:Pickaxe_DualParadox", + "00EEB0CEB7585E8C69F90EF8534CA428:gSddavzl1D9mSi3KgCoXjX3eb5Dg9Rqh2C1pt6rD5rk=:EID_MyEffort_BT5Z0", + "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_346_Athena_Commando_M_TreyCozy_C_7P9HU", + "C97E930BC95DC795F4416A7B93E3B9CC:KxRPbXqD3ytwLLbZMbZmn+G+gjwOUljg/7HPjj8xP0o=:Pickaxe_OceanBreeze", + "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=:Glider_PowerFarmer", + "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_A_005_Athena_Commando_F_GlobalFB_E_GTH5I", + "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:SPID_333_RustyBoltCreature_ZGF9S", + "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:Pickaxe_SpeedDial", + "77B485EBF8E72CC8CD19F8646A6D0491:SXUHJQDuxBGv0PzDtuVsDxNyubG/pgH9s9FMvimS0YQ=:EID_Noodles_X6R9E", + "EB16EA013B751792698E05435797C1ED:y9JgD812Io4mbaJ5i533Ts5SSfyXaGM4JyoimjP+i4M=:BID_246_BaseballKitbashMale", + "97D5F3D0A78B050F427B5B300FC03EB5:Be+eZS6KqUc5Lc2iF4YAcLEe+S78nuLCK45HF/dDGDU=", + "5C0BC5E8819B8968CF25C60885F0CB5E:E52Ld2gtMzMFUMkdMpjNWmEHEgr1qnH+iliH2ha27dQ=:EID_AlienSupport", + "000A05AF03AE10ABB2059F29ACBF7D4B:3KrmPu2Ha/X0oy/MWd0a4O8JhJWli5MdtfG4XzeB248=", + "5950552B5A52A97A433715A1FF107BC4:p9RBdPmk5295pRSg0+Ybfwy/kqY6HBYiJEAkvy650O4=:Pickaxe_ID_127_Rhino", + "88FA70760D757D80F661FA53B4762EC2:7OtV76cpyOq9dNeM5PVD8TOdRcPx1K3weEPXzlCugu0=:Glider_ID_319_BistroAstronautFemale_A4839", + "A3254C97AE656A9B7301225E06E6B58F:tnv0g+8KyEy6IGYAl1ssmNI0uYT2fEP2twZkRnbIhbY=", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_940_Athena_Commando_M_Football20_D_ZID7Q", + "5BAB7539D98938E909D3541E69214830:IgABlZz2+aRehC7vxw4p63pXUZOZFwdATQWkTfTYP30=:Pickaxe_ID_820_SpectacleWebMale", + "F6838AF4144E8386A184FBB0823C15D0:IjzqnnHjZ+r6WC4He/JawOyR7LxeMbm5880cDGDr2eU=:BID_232_Leprechaun", + "2FE8DBD09F14AAF7D195AA73B9613792:KwIehLEKaCSJb5X/WcQ9IULKkz3G3M9f9Z5Jgi9hYUU=", + "2B245B0F4DDB6AE9929DEDA081BEA512:lVz6HM71lNhCrT167xXv2wjekx+NqrJcy15i2+w3FdE=:Pickaxe_ID_152_DragonMask", + "A7D34E80FA70CDD2F367DBEF93B98467:KVErbMXsQqx7dxrZp5Ara4OVlA17pc29E2SZlFNipPU=:Pickaxe_ID_218_StormSoldier", + "315315A3A02AD685390B8D5878BE527B:Te5Ku+QdVzpXNd0B8XN7T/e1YaV5PyR04Z9yhfMFatc=:CID_465_Athena_Commando_M_PuffyVest", + "D50ABA0F48BD66E4044616BDC40F4AD6:GNzmjA0ytPrD6J//HSbVF0qypflabpJ3guKTdX4ZStE=:BID_115_DieselpunkMale", + "0690C12E471B0A42CD02549ADA662D64:Ntgy1QBz7O7CswgzsqOYwoMahjG3hGmk6/Qh4/rs+dM=:CID_273_Athena_Commando_F_HornedMask", + "EE0C67580F774526D46A64757F5DE77E:qRq1DPp8GnsFZSUYR1PJKeKm5YXAg3Kyd5Y+pjtXZyU=", + "2301C91045828DBFCDD966BE1AFE22F7:zS44RFNKoS6+WDSfin7CebOMjLH763+OGG5wjTrCosc=:Glider_ID_097_Feathers", + "9944BE1C4E9D73E4FA195380EF0B7BBB:LQxoRi0ktKvKMLk6hauL2Gzs6zf5bcEk3mgfX0We/uc=:BID_214_LoveLlama", + "90641BE26C6A325EB05DA1FF911EEE87:zDYeE/nTlO8I38ziKo/q/ssv3w2fHkWnDNn6mw0ZENM=:EID_Reign", + "D24B0606E503B97BFEB8EF12C6F1340B:wCF6GzuxQSxUX9I6eFwGJL34gU7YEPTKrZOOL3sPL3o=", + "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:Pickaxe_ID_792_RumbleMale", + "5E15C5486CE8E539552D4D3E7682F9E2:+L/tTz+woDFZJEvtxfq8m8tNI1R72sYK7rnYr7sHTis=:EID_TeamMonster", + "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:CID_A_433_Athena_Commando_M_EnsembleSnake", + "E582349045884D5CD6A5518608336738:EuwTH/5P/6QUfbA3n5kc0wUYy+sI56+mNDYhIqheL4E=:BID_142_SamuraiUltra", + "F6E92DDBC70C8184E837D31905B2F2A7:UCSPatT+yv3YH2x0Ks+2GSXhSSu+3ZvZs6Lai3oOi0Y=:Pickaxe_ID_659_RuckusMini_O051M", + "D517F2A448CCB9B47E5004894BC62ACF:qOdQUR91sysqDRELOgz/YVZ7Piae8hqcrnYW90fXtvU=:BID_863_Tomcat_5V2TZ", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_302_Athena_Commando_M_Slither_E_U47BK", + "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:EID_BlackMondayFemale_6HO4L", + "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_351_Athena_Commando_F_TreyCozy_C_A9Q45", + "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:BID_918_RustyBoltFemale_J4JW1", + "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=:Wrap_383_Buffet_KGN3R", + "8566FD040AC2B245597E11D1F85DB4E5:SEoqoweofxmXfxu848wKn1UJhwU7oQ2w2F0lBst+FnU=:BID_658_Historian_4RCG3", + "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Spray_CoyoteTrail", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Character_InstantGravel", + "A398C07C0A77D834038E7192FAB52B4B:/+4taU8TYRe14OhUt2cevoUqUOh6ado2hWu45FJ+7yA=:Backpack_FearlessFlightHero", + "57F31C09F360B5B96F6BF142E1E6A094:wkWZW9rtBPZSew3DP593yPFWKUNRXVwVl5wUGh+rLB0=:EID_Spectacular", + "A34195EF9068F0DD323EA0B07305EA47:eYcw2YEjssIAsJMgaWYPQQCBFcRvvkj9WoRVV+P3cBo=:EID_DontSneeze", + "29B68199D0CD6E019BA8175561F4F076:aA+14qhwCm5cu/+LEzB+tLlZtccgX7H3N25Ky41Me3s=:EID_Chew", + "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:Pickaxe_ID_276_BlackMondayFemale1H_1V4HE", + "46FC5EBAD39CE53EFB215A2E05A915FC:H3gtdkEzT3Dk8vkwTTZE9oUDoJEy6vmfQj1jDo453gY=:Wrap_051_ShatterFly", + "4969808C5315EFB4839F94626ECD600C:rdEEmKdvnm0+EXCNE8AaL3XOvVWfLdMVOfZYKj4Kzwg=:MusicPack_131_MC", + "8AE930B0D623C1C2B3926C52ECF6250B:uwtZv87e9DU/Z1ZvYB7Pv4TdRQ4/ZRT9nYJCwYSmlbI=:Pickaxe_ID_605_GrimMale_8GT61", + "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:Glider_ID_287_Alchemy_W87KL", + "2301C91045828DBFCDD966BE1AFE22F7:zS44RFNKoS6+WDSfin7CebOMjLH763+OGG5wjTrCosc=:BID_154_Feathers", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:BID_634_York_Female", + "1609BAEA4AD6B664847EB5AACEAAD2AF:m2Yg+p6NDPR/POAPoG7bUCPabLTxGc/h8nrOEIwDx7k=:BID_130_VampireMale02", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Backpack_HeavyRoar", + "486AE200BAEBA71EB6C477BE323066E9:3vS6pm2ep50Ab5lzNnGMluM0KYJFiUbp2MuBcahuiFQ=", + "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Backpack_CoyoteTrailDark", + "D2016D80822A26E49A7365FE575FC8B3:DphK7hbrbnvQGCGhhNfCpe+bDPl5q1w1DsaD4OvJgOc=:EID_Deceiver", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Character_GreenJacketFNCS", + "B77D921A94CDDAA841609065AE4C7BC0:SLDMLjxWpK+h1P4WNnqlixpWwujuV8OUZw+NoufV7sA=", + "CD6B95C728B11810F8EE4C396D02EFCA:Fulo/BAgbJwmOju1xu/05XnxLDbenI4bDEb2rUyf5hw=", + "6261EE20A79577BE9F3CAED16BE29CF8:539o4DrU0Wfl7SNWEO2im8/ZYoL7CBJOvz+3hN0cc5A=:EID_JumpingJoy_WKPG4", + "59AF6C46ABB214024067564F69D6EA37:NtUgzeFVvkbyZQGRVdteWV61HjED9MXquqlVKHo3c/M=:BID_605_Soy_Y0DW7", + "8A154454D5B98503B341742F927C2457:grJh5qYNlPy1eMO4+to3Moy+a6NCMnXyGSAFUKKWY5E=:EID_Downward_8GZUA", + "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=:Glider_ID_368_NobleMale", + "F395571A36D2BD888861E61EEBD45AF8:D/35GPTIOKbdfmpxRJmHTkjNXcWv+XdSmTxQt6z1hvI=:Glider_ID_277_Skirmish_9KK2W", + "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=", + "A5A71DA2F913ED0FD001BBCEC58F97FF:gFC4LJXINTgSLc8Gd6tYuSmuLHP+4AthS6eF52C93M0=:EID_GasStation_104FQ", + "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:LSID_431_Cactus", + "03FBE2522823B14E3BD161BBCDAE4A85:kvHfxKURiw97DzzEt5xAUxVMFfxGya3Xw3kI7ORGEgM=", + "2BFECCEDD463D908C63438FD751529BE:u3hXyyjFecUwcUQIugiOjqwSJhnhy/cluvLBwlUhSC4=:CID_401_Athena_Commando_M_Miner", + "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:Pickaxe_ID_222_Banner", + "F33B69585B65C333655C545A038BCEE5:0+gUoAUkiBbY5uqO9rIehUDkvrr/PY3vBY16AMHQASw=:Pickaxe_StallionAviator", + "A062151202F2D5FCAD103D17B9300CE2:JiiR0xFNh20CRLDWN/tfjaeoo2ybApd1hQB364/iuTc=", + "D14FDB2BB2FB7746797F25470913BFF1:CQDgIxcNnAoUboQnjafZAYvV7UqX+NefGTXFd3m+oFc=:LSID_373_Nucleus_TZ5C1", + "9481CF79929F97F77D8F7D2607B42A6C:E28flW2DKtXyXBh2I7qs7VFKBFSkpgjkEDWIruQfVL8=:BannerToken_001_Cattus", + "BB59BEF60B72A241855EEC0FD63154D9:ZAQI6o6tkjRB6mh7VwOsf0x9DGyEAbGZ8qlUxS1fVm4=", + "FD0C3696948675DC3C2CBF5098D57D0D:rBWyTh/AVyZxi2oiQxM/OeD/HYZOSdVidEQeKoowV6U=:LSID_296_Cavern_60EXF", + "134343D31031634B122471F73F611CBC:zqtMGKxH4+Ydcx+1mHOb5DIMYxctpm2nKqXp8c5hH/0=:Wrap_076_CyberRunner", + "8DCAE39C7D9690E19F52655F02C613B2:ZZHbiVsbXquLlrtNVHtryLS3Vd1Ego8/8tlDpeUCgfc=:Pickaxe_ID_251_MascotMilitiaBurger", + "3B908C605D83AEC6E8E0F9BF6ABA828C:IyB7RIUMz4fcBekrFspRvR3QIuCPJIY2vrDmsIm6Sf4=:EID_BlueApparel", + "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=", + "CE9D023C0D7DBF7634F2AEF6200BDB36:JyhTmjJnosQmLeGMQXhCtkl/auX+mde5P11MsWEwIqw=:Backpack_DarkAzalea", + "E04FBD38CB934DB1363EF57C85E48F9F:E+/j7zhGIdHODfCdH2vh4rgGRYSssFpT/s6dlus9Csc=", + "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:EID_Galileo2_2VYEJ", + "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:BID_852_TextileSparkleFemale_X8KOH", + "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:LSID_358_Sunrise_1Q2KG", + "1A9B01B59F609C0D7E9EF7887DA23087:EkQdXhPD9Je6Bp7dlwZdlkX2S0har6vqUOjMIF9ndfc=:Pickaxe_ID_832_OhanaMale", + "0E32ED911D1D1D67115812FB22317555:4qQbE3qtFL+oTEzvxYIwl2H6AsG7z1/3zNO9JEdHOd8=", + "687E53607C7004988B05C9EE1BA99AFD:jYmAGdz5vAvDRIhrcVdrcCNIPEmkJg8L1vWs/HZ5Kr0=:EID_SmallFry_KFFA1", + "C182F32A4B301086F8EE1E49B34C502D:g4VO8e/8Xk1+S55wpg/gmymEAYj6N38qXnvWSaYtER8=:EID_Shimmy", + "498A4AB4BC3BFA9B055CDBE833C51670:67ndB88hm7gomLYiklekB5rGWrcr8RJ6K+no9DTP87M=:Pickaxe_ID_372_StreetFashionEmeraldFemale1H", + "CDCC968B6DEB5D05990F5D530A4B19D0:gAiLmJxr4FbEf/L10sgHjOLE8DEy7kYdtk7DJcgjPRM=", + "FF5A507BCC4519B928075C3DF4603E8E:EVv5b8WFOYZlDUGRqb8YUS1WbIbbT8TjgoBWEQr65zs=:EID_IndigoApple", + "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:Character_SpeedDial", + "AB10C0F1C99E5A6E4E477300FBD5D170:tLrb56vTjn3uiZIRhHU+RYygmirLzGglmEdI4DqfK4M=", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=", + "F62A404ADA885AF5A67C30DE1F03BBD6:zAm4CsxXpE6vMhsqKwj2Cce+asNmSAv0IOo/pWVySmE=", + "2E1C06DB5781755F3F06D95B6612BB3E:aTN33nTPI+qQ+osYxcMa4FjlyajAzhIxRzEcoAr8iAI=:Pickaxe_ID_546_MainframeMale_XW9S6", + "8D44654E9EA2AAC35E489476B1948E58:Dwb/irSIIGd3tLLPEP5OqJY1D4KfjdP4+uP4+Ht4YOo=:Glider_Elevate", + "B0030ECDA329A8B589D249F794EA90B3:BfF0FYJQJ71DMUBmClT0DppsOy+1Syn8fGu6qNtTgXE=", + "F51F080981F8DC32B09FC3C62A977363:NqX2i8P3ayVe/mUk8aAqzUg5tvMEDWt1URv6xc4fUkY=", + "28CBBF705C9DB5A88BEC70DAA005E02E:FvtzBBvDkyj8PRLW76169bMFvg65VojYrSmkjUAi4Bc=:BID_352_CupidFemale", + "B16BF216C9085E63B70056FF0459F87A:xKQqQkkw6VWwT0pk7eKzepG9HM9kzi2ZPwSbdLWtpwI=", + "AC424209DFAB55305097B2050E16E2E9:efXu+MoloNbSOOHz8X4ipvD2MhSMWpRCaEOVNcdLPrY=", + "CE9D023C0D7DBF7634F2AEF6200BDB36:JyhTmjJnosQmLeGMQXhCtkl/auX+mde5P11MsWEwIqw=:Pickaxe_DarkAzalea", + "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:LSID_323_Majesty_0P2RG", + "3CE25AC56856D0E10426276F61265547:NEtVDXR0qoOfW9lgdS4AuA8dkfd/1I9degcRI9UnvUo=", + "54FD9ABD65879452DCB8CE11C1D7F1AF:nV0Vm4NCBl+MkGX8wiqfFrg0viDriL3I2xc4KS7n7fg=:Wrap_070_MaskedWarrior", + "7A8E25F664219ED6CCF3AB1658D0E557:TV+yyWpI3iHJoaK3o1t6+/uhN/sFZ1OixoAx0n7MtjM=:BID_330_AstronautEvilUpgrade", + "F60CFFFA32CF6A877B50DA7F0A88326E:OWIopbB4fxaobofPI9lF9hn6BPG9NVLp4Od61uQppfo=:Wrap_047_Bunny", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Guava", + "71BEC74046C6920A467E57B69FA3835A:q6m1xB4+mCmXL3g7eRGykDO6ZKrXS8M7m8SqbqIKzkI=:BID_202_WavyManFemale", + "3AC281E7A5EAA2765CFE02AC98B04FC8:R/hWNn8BcRRovJE/L7h15VDrJ0H4VqBBVt6XVvq2Ebw=", + "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Glider_CoyoteTrail", + "D2FAE1D098B2B4695EB59FAAD504798D:ZUDIqDvGVcpCVuA3h67vdkVbZwLuC0Z1zX33JLyi5xE=", + "204D49F063979C3AF87EF896D074D1CF:SaYFk+GEE7mL4dsgs0v0VGR5ER4TwH8uTNX5XqSglu8=:Glider_ID_251_TapDanceFemale", + "A69EA08281B5018543EC525AC7716B70:1W0iCKEIuEfDSOaJfl4gQEpenDKjLQGAovP3LWc/FTw=", + "BE6386E7E95BB83F727A5282D4E1FF37:FsEC/J/Y3POX7wa0/+SonLUCp+u+MH7dktA25PEYLns=", + "419567181C57991B12DA9A9AEADAE6DB:nWZ+G2GG0PvarQUg/U/kRpWaJkA2YmmCgixEy4No+7Q=:CID_706_Athena_Commando_M_HenchmanBad_34LVU", + "37B3D2284CB3924E6592C2D1D11451E4:CMJclyQ1I9iY+VkDiajhGxxYQmZGHrTAlEl/wtlT+pk=", + "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:Wrap_348_Alchemy_FYA4I", + "D14FDB2BB2FB7746797F25470913BFF1:CQDgIxcNnAoUboQnjafZAYvV7UqX+NefGTXFd3m+oFc=:Pickaxe_ID_708_NucleusMale_72W2J", + "216D955070ADAF10973BD156897472C3:MjQh55OvnJCoVMQzMU4C/1NF3FWiXDXnJ6G/EcHfUzo=:BID_258_AshtonBoardwalk", + "DC8B99FB6774F84C4C0AA8DF768B758F:Rt+er5PzLdkCFk6oyu/T7AjMhYb8JT78rqtXXk9bIDU=:EID_Aloha_C82XX", + "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:Glider_ID_377_EnsembleMaroonMale", + "768A95DE7B657B7B23D5A0DE283EB49F:JLLAz46a7wo2rADQvCkbp4IbKexr7J5bBr6d6toSn50=:Wrap_050_PajamaPartyRed", + "8CB3CD29BF1611B7CA90D1C635859415:s7gVGQuQz2CDwqNda6dXQRqH9mpV6NUFu1zaoDihQYU=:EID_ChickenLeg_TDJ0O", + "419567181C57991B12DA9A9AEADAE6DB:nWZ+G2GG0PvarQUg/U/kRpWaJkA2YmmCgixEy4No+7Q=:CID_707_Athena_Commando_M_HenchmanGood_9OBH6", + "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:EID_Sunrise_RPZ6M", + "8022BB6AFCA2733E261C32590EA86E9B:HzKZXV9sQfjsDuGuGRfpabHawomJhu82FeOaEQDg1lM=", + "E7D27A42770632B7A50BED813D9B1696:bxADNk9dmPNeKEuSvJl44teif6sHvs36yBZ55E9fhwQ=:LSID_420_SCRN_Snowfall", + "AC6F67B037F362174DD4DCEF7522D107:s4kP8pRC49WsLsc5Nlh7se3l3x57R3KrldkoTK2L8PU=:BID_301_HeistSummer", + "D49757E2D55451A0D5B341906FE2ABE4:PWMwnjgi/wUDV+yxg02QsU33jA529fxVTRHyqnkv21c=:BID_259_Ashton_SaltLake", + "591DF838AC4B3A6350E40E026B26D5C0:MBvGoHxJQBTxCm2V82s2yHqRWPsYdFyj8xKUhFsUkyE=:CID_746_Athena_Commando_F_FuzzyBear", + "72CC2893A6B672F3854F36629B770774:0BgQgKZRRuPFEoqn7CxZVhLBOfpCE3qLKGQlZc+SA80=:SPID_325_UproarGraffiti_QFE4O", + "8E1887D55A60F69B33B234242FF49653:YofZaW+CRl0jhVhkp9z2CQWhTPwyjQ6dbHtISkLDfVU=:Pickaxe_ID_801_AlfredoMale", + "4BA0D73B76DE3321A47EC0AD052C1F7A:7kyz8UATQKwRKVdDwe8RbhYYeJPQsKLGdN9pl4MOosE=:EID_Marionette", + "4E7938F1FAC98BDF378823116712AC7A:jbZVgprILTQomUdGeJF0PsAFAJxsSCs5cKcXweZMAg0=", + "452BEE39B4C18C93D6B185B565ACA1CA:Be2Oll2p0qIXmiJMi4Y/wyePY+WefMmJyCzjgjrzkhc=:BID_233_DevilRock", + "72CC2893A6B672F3854F36629B770774:0BgQgKZRRuPFEoqn7CxZVhLBOfpCE3qLKGQlZc+SA80=:Pickaxe_ID_699_UproarBraidsFemale_LY5GM", + "2DCD2E2A9A816AA9035999F8E6F85F6E:6xM4ZYt0UAylyuIgFrmOgq4fYVH2ChEzQNcl8KGQF0o=:BID_532_HardcoreSportzMale", + "310CAA852300A8ED2B74754EF027C823:CbrsdQ2vpkgVe0Oc5HlGFLVkV9arQn928vHSnPpSxbk=:EID_MakeItPlantain", + "AE04BC41397F3D492390E60E59B39CAC:xC3e/4BfPQ5/xQqEKnB+EgmzrOcLiOCqiQCuZB6V9Ac=", + "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:Pickaxe_ID_749_GimmickMale_5C033", + "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:EID_Scribe", + "A02E08C8CE48D4D8676358FF7BE55533:d9wA4snpl4I4B4zZFxWyu9cL9zSkXqy9+vTw9PUhHlw=", + "498A4AB4BC3BFA9B055CDBE833C51670:67ndB88hm7gomLYiklekB5rGWrcr8RJ6K+no9DTP87M=:BID_494_StreetFashionEmerald", + "F707FA321C9644351C5F87893C16580F:bOW0W1Al3NZZGbPupvIlLl7wWgBA2jPtH6SZO/fjdy0=", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_905_Athena_Commando_M_York", + "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:Wrap_396_TextileGold_GC2TL", + "605CA1F4F68E09A4A0784DE3D6E9FB88:TKaxKxc1yoVFdUqQNWdG3bofE78hwuma5x5Go2dnLxQ=:Backpack_IonVial", + "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:CID_652_Athena_Commando_F_HolidayPJ_D", + "4BA767BD2DC06D215B435AC09A033437:QOfpKnEogmj0tTa5wf49SZH55Sy48QEGP02DbkSg218=:EID_Grapefruit", + "605CA1F4F68E09A4A0784DE3D6E9FB88:TKaxKxc1yoVFdUqQNWdG3bofE78hwuma5x5Go2dnLxQ=:Wrap_IonVial", + "F6CD3CF3046D856E3934D86042C683A9:s2pBk3DSUjPJehrTQH4iEDYiESVbSMwIW1xuOd2FZJw=", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_914_Athena_Commando_F_York_E", + "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:LSID_399_Foe_AN5QC", + "97E91E4F436B598D654592793B595536:Pj0lxheibz4Db/C4ehhHGlOalLQAxFCS+2NYkHRbjyQ=", + "0A43BFE2D06B46248FC6598C0371D5EC:+U/nWLs0mNQue0yVc9tTaRF+2qrvzdKZyxUR+MzTvMc=", + "35C2B057E5168DCA74B6F1DDAC745E60:73haJlY3S0TVmH0ELxyw6p5FzFRrITWqOmobH9F2Mq8=:LSID_400_Keen_T56WF", + "9904FE82E1630F9BF753E5AA195B4E1E:ScugOdDnT2N47PETOZ8B3MoDlg9elYb+ePzsZGA3ryI=", + "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=", + "F9AF8CDE150D2D1E65B64710D70C23A7:3SpHToTu2E//Qe8Dhu4I3kG5fLqEemMiL+2NxRVKdOc=:EID_DuckTeacher_9IPLU", + "99E94152C1F777A1D8519A532741EE40:3TCGPeLF3mnH0j8LE9oLwYiXHMve97rw7Vw1OQcnczQ=:Pickaxe_ID_762_LurkFemale", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Character_HeavyRoar", + "552DB214510DE1E24F08920F80B0AEC5:GP2CYv9xYYDf6bOnpgm0fnOXa3iI0acXH02ZIaHAElg=:Pickaxe_ID_648_StereoFemale_0DTZ9", + "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=:EID_PowerFarmer", + "E0FB7B394449CE6450EA90C93D710EB8:NrXwNX6lKuu/kyQuvE74+6Uo04FODoV4ZqxToj/jS6I=:BID_300_DriftSummer", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_912_Athena_Commando_F_York_C", + "74245D2573276B4C9ECCF61B23367A72:I5LtJ72UAlZ9XIupxkzRJKiRnSEkEvEc5D8+Ss4u2Ik=", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_298_Athena_Commando_M_Slither_EJ6DB", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Backpack_HeavyRoarCarton", + "2301C91045828DBFCDD966BE1AFE22F7:zS44RFNKoS6+WDSfin7CebOMjLH763+OGG5wjTrCosc=:CID_274_Athena_Commando_M_Feathers", + "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=:Pickaxe_ID_746_ZestFemale_4Y9TG", + "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisPomegranate", + "3ECF85734CD277EE10524DA249C5D0D8:4NtGfZpXGCuoEqpaN7C2kInVtLVwQ9Zp3zj4vtwxtv8=:BID_211_SkullBrite", + "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=:CID_A_173_Athena_Commando_F_PartyTrooperBuffet_55Z8G", + "925BD833E71FF05FB73136BF57189C5C:WsXZpM/1+PT+xzorL685J5XB1dpvv8IOpOeeA2Rl1zE=", + "D24667CC40ED6564CE26A31E63E327BA:OnghWyLG/IQEx45PtmEcmqAHuViWUsTSDQ31EgRhyZM=", + "2E5F91AEF58F310AE2044EA39C43BB81:pNy1GtfVzymqacOqXRY14EZEvI5ZSVD5AFxlhxXC5qk=:Pickaxe_ID_683_CritterManiacMale_S4I63", + "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:Pickaxe_ID_822_EnsembleSnakeMale", + "54FD9ABD65879452DCB8CE11C1D7F1AF:nV0Vm4NCBl+MkGX8wiqfFrg0viDriL3I2xc4KS7n7fg=:Trails_ID_027_Sands", + "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_A_002_Athena_Commando_F_GlobalFB_B_0CH64", + "46FC5EBAD39CE53EFB215A2E05A915FC:H3gtdkEzT3Dk8vkwTTZE9oUDoJEy6vmfQj1jDo453gY=:BID_256_ShatterFly", + "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=", + "258D945630DF6E1016889F47B16EED80:zQ/4osJ36W0V1DFXswf8JSStDMBTZPQ8oFcMrDqS7BM=", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_947_Athena_Commando_M_Football20Referee_IN7EY", + "D83FAFF508200C47DF03BDFF2F801FEC:s9P7AOkoCuPm/506hyAKzuRaIh0xzV9YZON4oDs7GoY=:EID_Jupiter_7JZ9R", + "0CD312F730BA9C3FD6CD67420EDDACF7:nXBDxcWYx2VtjMeRCDfSak9+f9aSOgrcxp8GKeUiId4=", + "BE20AAF89FE897368E52AAA193DEEB53:jHRZho9v4IKzFzk51RD0nAVFCZ27vIwcstPkdQeSupc=", + "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Pickaxe_EmeraldGlassRebel", + "9CDB7E60150C8A93BF60EF4983D2A9FC:ZMGOYjalLZw3m4wFDi959WW6vlbIAQDqcnRVgylEej4=", + "ED61A5415E40BB0A188CDB1DA91F22D2:wGuFJQg1ldthApzow1drpoq6i40AzOsoODCI5I/6JSA=", + "359567C8D8F146C8D08FEF2B24AFC9D0:yMWg8m0Eh+0UGV6CgIWrXsJMPT/Ww8/Qa3RlYPo/bGQ=:EID_BeHere_8070H", + "91C415954BF27B6E43970FB8A75FE8BB:YhHyxIA+Ru33r3pThiWqKNYdvDbL05yXSxKarRuMSxw=:Glider_ID_103_Nautilus", + "C015FB76A9E7912825A5F9CA69671961:4zfC1uF8ll4CkTBctitVmwjHsazAiz2LXPHIPj4ef98=", + "819F658DBDBB5D333430800891F28361:u/+kuv6DsiUouUOusRRfC8Ti5rCKhsgIyxyOnLH3Mh0=:CID_719_Athena_Commando_F_Blonde", + "A3618360BF2BE3C452DD4E212CED6D0F:hnD3/2LtfP4Hso8Ym2ZW4Y4G0y1EDvQvYvuTCozikoM=", + "3DB93E023E700ACD0C78072ED4787D37:aePdzcjsQvnpefA3P/cKfnZrVspZ5QVSsAc+Rui20pM=", + "E50209164841E1829F672AB1B33D069F:1EMTmCTA4cO1QMoLu+RWAGd8Rw4FQdAONKvDwfQeNV8=:Glider_ID_118_Squishy", + "360CD59F6F7B68A441DDED9DB5FD13D7:G6pVAf/ul1HPYh6s2M1l8G4hn62jdwkcbegeLoxL7Y0=:LSID_364_Ashes_0XBPK", + "2DCD2E2A9A816AA9035999F8E6F85F6E:6xM4ZYt0UAylyuIgFrmOgq4fYVH2ChEzQNcl8KGQF0o=:BID_531_HardcoreSportzFemale", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:LoadingScreen_PencilSet", + "06E3CB03E94C4D850CE185166706E868:jDuRIbxnZBnAH/hUrfRX3qnGyIogSWUHrK6nq7Et3pk=", + "2E1C06DB5781755F3F06D95B6612BB3E:aTN33nTPI+qQ+osYxcMa4FjlyajAzhIxRzEcoAr8iAI=:Glider_ID_273_MainframeMale_P06W7", + "89D641BBEFFD9A227200861A01807ECF:rXDTm9JS6HhLBHIDXPRRF/eERp1DkUhV46QPxevqMWA=:EID_Comrade_6O5AK", + "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Pickaxe_EmeraldGlassPink", + "3AC8A6B5089F55E17E00AAD8AC3C6406:TlUSkJe3y85fW83rHMy+XuqcZxQduXcB8yftpPoiDvo=", + "06672238D711A4FD743978B86CB0E0C7:c8ILo8LfAtcO6tUoX1BdrnptTcPhKbiZ069jkvq4UjI=", + "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:Season17_Magesty_Glider_Schedule", + "35C2B057E5168DCA74B6F1DDAC745E60:73haJlY3S0TVmH0ELxyw6p5FzFRrITWqOmobH9F2Mq8=:Pickaxe_ID_737_KeenMale_07J9U", + "71C3BFE2AF0BC8DE7BC3735614CE6263:hNLsvUTUw0cw1WrfOEjm7oSGPfpEZer6R0G7F2El6Q0=", + "01BCAD21B42507D45972A0E634D3BF68:LFzYKDNwUHYxLThhPKfnzmnADCwCZFjZybIL9TaGBkw=:EID_Deflated_6POAZ", + "96FD474CBA52137DC5ABF658BE17C792:ZLWvbUR7Xow1GUNjC9Mxg7DHVoJAnBr4b9gSzmyFcxU=", + "552DB214510DE1E24F08920F80B0AEC5:GP2CYv9xYYDf6bOnpgm0fnOXa3iI0acXH02ZIaHAElg=", + "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_082_Athena_Commando_M_Hardwood_C_YS5XC", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:BID_922_SlitherMetal_ZO68K", + "EBFE6788D367D741AF0A4FD098CDFD39:FAeJTGyT49P+dQOmKx+lMYVAxu7qtIPlqSaLAR85zqI=:Pickaxe_ID_213_AssassinSuitSledgehammer", + "922A62BF1FB397B890EADCC9ED9E6F90:OvZzqErOUkh5FciEJD8JI+lu4X5NmK5TtzvCK6F5RM4=", + "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=", + "99F8F15A893B9B4BAC2E12BFDCE251B9:1OMIfAluyzGr5kvv03niOQMXp/D+M1s/f/mHTv52Prk=", + "C17D1F224DBE7ACE1D1D998F9EC974B4:lKF1wmYGidWP6J4irSLvW13QbAIwHPOeO8b7LtP88t8=:CID_303_Athena_Commando_F_SnowFairy", + "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_448_Athena_Commando_M_BannerC", + "9FD68EDC1A5A456225A1C14E1488C573:vfIZFBmmSWgvzSDG/l7N0EGIrANZpUKA7Ofqo+n4fBg=:LoadingScreen_MercurialStorm", + "C97FBD76436AD77913E727A0AD147FEB:NjQSZ0Lg9LaEhDjA3TeS1XUhN04KM2wQvR0j/YPmQu4=:BID_181_SnowNinjaMale", + "4755D9C0E2D1DE1C09B77DEA8B830471:9tUO5yVhvp+/sp7icZaEDw05nMAdS6bYAWYyfQNsxBc=:Pickaxe_ID_389_DonutPlate1H", + "27D6556F776B2BDA97B480C1141DDDCA:uvUqb5LuwRFWQnA4oCRW3LNdorYcGtOmJ8PvBeCwBKg=:CID_466_Athena_Commando_M_WeirdObjectsCreature", + "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:BID_874_RelishFemale_I7B41", + "452BEE39B4C18C93D6B185B565ACA1CA:Be2Oll2p0qIXmiJMi4Y/wyePY+WefMmJyCzjgjrzkhc=:Pickaxe_ID_176_DevilRock", + "204D49F063979C3AF87EF896D074D1CF:SaYFk+GEE7mL4dsgs0v0VGR5ER4TwH8uTNX5XqSglu8=:Pickaxe_ID_500_TapDanceFemale1H", + "793D221E5331282DD7F3681100944880:B5R64E9EZQD1lHmmyUV+9a1XUEOcYfdopJ3avEIcVxE=:EID_TwistFire_I2VTA", + "73FDB8F2BDCCF4518225CB3E28DD9C0A:MBo/DO8mLebMquZPCgeE/FgUdJOXASKVjIJ1H+IEPac=", + "00BD73648F7CD05EDE0B2D4C33B499BD:0D3XSX1KGIR/UWBELcxKxJp06xbU96TetFY2Rz9R614=", + "BDB776E27E5002716EFCCF94F23D1B19:UkCfjAV4SKCBjTvgHIbHc8U/uAWI63ysU1ST/sy64+4=", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:EID_InstantGravel", + "B9C9B09F29DF6BC9DA94C36184CECFFF:1/E0M5TV90UjL3PR+sqOzaRiMRpF8ByTmfVayVEL/Ig=", + "1CFA91F4317CA2724E2AD9A098B2888B:op+720ix4L4JmxKqwXbOt+T5Xwqhcva7c6lETmEVCbY=:EID_Shindig_8W1AW", + "4D896B93DC5B2D18AA2949EA7B67B4EA:0V70x6p0zRRV9bV6P+sq62lM0CdW4rvUgip6/65GWzc=", + "2648ACDF6B7E55495928F2319101BB8A:tKha+iiFKUamRIWCxq0gOtbN/G1B5J5eOIElAx9T3rc=", + "4C838738CDC4946786DD7BE341AB05DD:eyjCm9OcFQSvVRVBZizNVyF+8kb9OlNFrvDy8d1QDfo=:BID_253_HoppityHeist", + "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:Pickaxe_ID_787_LyricalFemale", + "A9823E3BC8FF6814492A2DE0334F124B:wyyFD2WOtsgHbGC4RNkEvLFNgbZWhRmcu8lQHg0UBFM=:EID_Concentrate_0W5GY", + "8680408E4982495D8EC65D930CE902F3:ZIoca9gNSMll2u3zmmEsMFSAp2pTmsvWIPWwz2b0FsE=:BID_188_FortniteDJFemale", + "3D8D56FDB72DACCA7E656FBC0F125916:gMX76nmLV2caz28Ro/i3FatCU4tdi1jHgJSPbdnLTUc=", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_937_Athena_Commando_M_Football20_UIC2Q", + "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:Pickaxe_ID_748_GimmickFemale_2W2M2", + "A398C07C0A77D834038E7192FAB52B4B:/+4taU8TYRe14OhUt2cevoUqUOh6ado2hWu45FJ+7yA=:LoadingScreen_FearlessFlight", + "2D24182706636A7BD3E96AD37605BAD6:jEZJE+EAU7VDo6p6Y84e4+p3AHxYBWin144H4MhzaSQ=:BID_553_Seaweed_NIS9V", + "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:Glider_ID_348_GimmickFemale_D76Z0", + "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:Glider_ID_364_LyricalFemale", + "91DE2263000EF60E067F04C5505104C0:J72L3sJQnakH4GQrYgBz7QIAmI4aC1sde+iB7zErKG4=", + "DD07D332EE51C9C9585F5249FD62A45A:8Fv7jA8ISZ3iOlNCeaeeGh9rmRV6QvL7sbsx5wYTvnc=:CID_A_223_Athena_Commando_M_Glitz_MJ5WQ", + "19CAB803EB00118FB3E6B3E5ABA7B234:tRM77TfQWWJ38hNsFLjt7jMNoSOozxqi9PF9/9H3rmU=:BID_373_HauntLensFlare", + "5A03216B7495CB52261D6E0D74DC62CB:tYFoxNFq/lu5imPTcSk5vAX7ZfPNBwi8INXf2hU+YyU=:CID_A_159_Athena_Commando_M_Cashier_7K3F0", + "3306D0A65AE55FE016FD38AF43E062DD:KY9nJfkoLlV8GIZTJyctUb96ihEreBHYF3Wc3SfnHkw=", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:EID_Victorious", + "B8C17AF9BC0DF3113AC6C498DF3325C2:iElxozD4UvK0+tPt0pPLg0gBoSkwLwByJiE4ucKHU7U=:Wrap_085_Beach", + "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_080_Athena_Commando_M_Hardwood_I15AL", + "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=:Pickaxe_SunBurstAlt", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_956_Athena_Commando_F_Football20Referee_E_DQTP6", + "471CA05DCEE84890F9287E4E0DB31C08:cclx9Dp+FcphJfVZLUAdo21nLGn8pQ7GutQgY4LCOts=:Backpack_WinterHunterFNCS", + "D83FAFF508200C47DF03BDFF2F801FEC:s9P7AOkoCuPm/506hyAKzuRaIh0xzV9YZON4oDs7GoY=:Glider_ID_258_JupiterMale_LB0TE", + "457F39EA51FB4C723B442810750CDA4A:V3d05mcuS4uXMBRpy63TIZDLt5hg9njVD0SGhZDsmBw=:Pickaxe_SaharaMale", + "2DCD2E2A9A816AA9035999F8E6F85F6E:6xM4ZYt0UAylyuIgFrmOgq4fYVH2ChEzQNcl8KGQF0o=:Glider_ID_216_HardcoreSportz", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Backpack_BraveBuild", + "1609BAEA4AD6B664847EB5AACEAAD2AF:m2Yg+p6NDPR/POAPoG7bUCPabLTxGc/h8nrOEIwDx7k=:CID_228_Athena_Commando_M_Vampire", + "134343D31031634B122471F73F611CBC:zqtMGKxH4+Ydcx+1mHOb5DIMYxctpm2nKqXp8c5hH/0=:BID_279_CyberRunner", + "2E5F91AEF58F310AE2044EA39C43BB81:pNy1GtfVzymqacOqXRY14EZEvI5ZSVD5AFxlhxXC5qk=", + "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=", + "D517F2A448CCB9B47E5004894BC62ACF:qOdQUR91sysqDRELOgz/YVZ7Piae8hqcrnYW90fXtvU=:Glider_ID_318_Wombat_1MQMN", + "F8D604C6FA9156F47356B54E1E442A97:EcmOKEqNv/9U+rw3oLZb7e+z4gaKWlfRIpdQwODvOKw=", + "72CC2893A6B672F3854F36629B770774:0BgQgKZRRuPFEoqn7CxZVhLBOfpCE3qLKGQlZc+SA80=:BID_890_UproarBraids_EF68P", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_943_Athena_Commando_F_Football20_B_GR3WN", + "F32262244DE021E18BF22F9BF7594474:08HErdKvBV58StDIjB9wvtY67peu7ZK3BsMpBMKvSrM=:CID_280_Athena_Commando_M_Snowman", + "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=:Pickaxe_PowerFarmer", + "71EC943F69634C4E436D461E06D88193:aW38AAbm6/PX66vrSXaMTOOb0nydoEEhRphBbDZObmI=", + "30B98E694C38C868A4EDB892F3FF1940:3biPX66md7tSkYYCBkYrshj9OJIo1B4CWV33LnL1kds=:BID_195_FunkOpsFemale", + "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:BID_821_QuarrelMale_IKIS8", + "71BEC74046C6920A467E57B69FA3835A:q6m1xB4+mCmXL3g7eRGykDO6ZKrXS8M7m8SqbqIKzkI=:EID_WackyWavy", + "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=:BID_818_Buffet_XRF7H", + "09BC93B3441ECBAC30FA23BBEF59CF89:3CHInj+JfLspiVCNDY/GTZ4Pn52nWFeA4qYI0SJv2dM=:BID_183_NutcrackerFemale", + "27D6556F776B2BDA97B480C1141DDDCA:uvUqb5LuwRFWQnA4oCRW3LNdorYcGtOmJ8PvBeCwBKg=:Wrap_095_WeirdObjects", + "E3D0A604B93651DDC6779B14F21D0FDA:8gPR3gZwEJxfkZBkXk0QAlpnJ7q5mXzVc0DN3lzpJ5k=:BID_328_WildWest", + "C76299772B1BE272260BF3396F83FC1E:uiBDMtwYhdxktbqTrhYkzEZErlBp5gBtkLM+QFDouT4=:Emoji_S18_ClashV_I1DF9", + "7BF9CA82EA29E080F7106C60B645B76F:D1NrMwnfRG8tf9LF7B4r7rQ53M2nCtPv25qjw22T9MQ=:EID_Skeemote_K5J4J", + "5738A14C7E45E1B405CEF920829CB255:xZHlPTz/dxNahrp9IqTZ+tjOZSYMxQb9KZFXlg9N638=:BID_423_HolidayTime", + "A08F80FECB766B071C66017C5902DBD1:Q4sRGzjjbRTMZ3HwAmiC6a6+017KgXUsLapzs71OWEs=", + "713D64294CD1C40F60DEEB805E3A2D87:CJOOHtEX7q4CELcZ96oZjrmSZd7pyJ2fMaFX912GDl8=:Glider_ID_110_TeriyakiFish", + "9261CD0F921EAA3CD6AA8C0716FB042B:W+yzeWWxWnA530lwV8nLi2BE+TD5MCXS11th7UphmPQ=:Pickaxe_ID_543_TyphoonRobotMale_S4B4M", + "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:EID_LastVoice", + "E48EFA857D8E6914B2505B05AADFB193:4AUdytefPzWNT8c11iGtU4xcGNWEgzpMJbxTjUq3NS0=:EID_Backspin_R3NAI", + "4F463077C4B0260225A47547ABFDDEE3:jvXG7IisBPOlXz80kl6hZdn+jb6TV0Bvq1WafaHji44=", + "5F55EB861A32231A4F36A5918A31256E:mPTr+gEXTqwhI36DN+qJITYpBR2D3aWqrn1lwnPDg6w=", + "E59B013651F078E718F08ECF9E1559EE:rTGy9at5kTfQtu8EwVrUihfzuN8vkFPl3XNyGvqbZX4=:BID_250_TheBomb", + "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=:BID_642_Embers", + "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:Pickaxe_ID_849_WayfareMale", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:BID_896_GrasshopperMale_BRT10", + "16FC688AE41A3E3C518F4DD9F9612EE7:Jd7nRLx/FoonA2dUjtbvJVk3nJoNq9LTedk3u4EdFS8=:BID_248_Pilots", + "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_243_Athena_Commando_F_Grasshopper_E_L6I24", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_946_Athena_Commando_F_Football20_E_EFKP3", + "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_998_Athena_Commando_M_GlobalFB_D_UTIB8", + "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_348_Athena_Commando_M_TreyCozy_E_VH8P6", + "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:BID_853_TextilePupMale_LFOE4", + "0690C12E471B0A42CD02549ADA662D64:Ntgy1QBz7O7CswgzsqOYwoMahjG3hGmk6/Qh4/rs+dM=:BID_153_HornedMaskFemale", + "BE2C3EF59AB81D812AF5B8153325998F:W7NoICLZt9L2d7XZ5dT9gtI80MyOizk7uA9LtwA/Edw=:Glider_ID_323_GiggleMale_XADT7", + "D83FAFF508200C47DF03BDFF2F801FEC:s9P7AOkoCuPm/506hyAKzuRaIh0xzV9YZON4oDs7GoY=:Pickaxe_ID_510_JupiterMale_G035V", + "1234642F4676A00CE54CA7B32D78AF0C:Nd8vhYp296C+C0TqSIGxu0nBYOFGQ5xBNK5MFjHS8IA=:BID_200_SnowNinjaFemale", + "987329E3B70FEAD522EBF7435E5CA6DD:j4zyQQh25LYcjUO0HYDsBzmqLSXR5r98UKdC0xeTyHI=:EID_Boomer_N2RQT", + "30A11EE8EB62BEFD4E9B09611DB13857:YVeVPXcP7UoJTp71ZXpGNdPVzmjnRyymcUpsNWYXfRs=:BID_507_DonutPlate", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:EID_Football20Flag_C3QEE", + "A398C07C0A77D834038E7192FAB52B4B:/+4taU8TYRe14OhUt2cevoUqUOh6ado2hWu45FJ+7yA=:Pickaxe_FearlessFlightMenaceUniversal", + "F2C401EFDB4A6B5DD0B80C4E58D4A4A5:APir0jfGo2PAuoVtI+5tSahNavnxm7TFaRgTlx8tGrw=", + "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:Backpack_TigerRootHype", + "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_344_Athena_Commando_M_TreyCozy_6ZK7H", + "22B8405FC3BE153C8148422C3F2D3A8A:d/ATMDztVZxwHLUCwOcJWP1/7oPKKGqbBWUBRNZ6dnM=:Wrap_391_Dragonfruit_YVN1M", + "5BAB7539D98938E909D3541E69214830:IgABlZz2+aRehC7vxw4p63pXUZOZFwdATQWkTfTYP30=", + "CB3D84444FF0E551D18939AA7226B17F:U4GIAd4fGYWy9tySw3iVb92+6ZX3rQ3FsiBCXMT4TSo=:BID_194_Krampus", + "35C2B057E5168DCA74B6F1DDAC745E60:73haJlY3S0TVmH0ELxyw6p5FzFRrITWqOmobH9F2Mq8=:Pickaxe_ID_736_KeenFemale_3LR4C", + "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:Wrap_465_Lyrical", + "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Pickaxe_PencilCherry", + "C23FA9BDE9342B508B8AABBEEA6699A2:3mRtSSu9PTBlC3NpGAQcFent660Ptni4HbGX+Zj1KIA=:BID_867_CritterFrenzy_3VYKQ", + "578DA5D582A996DA819F409BE37C39DB:8KdrpLeI7JWcPozcUme7kvSVhgqxwmR0/ah4h+nCWLs=", + "4009CB877085F3B3B0D76A686465A140:gMLJXUbFcIrqqUlAuoMI1b27KdWHBVJJeJWdYV1Iiro=:Pickaxe_ID_551_KeplerFemale_AOYI5", + "308F587F46CB50450DCA9B9CFD50E120:2nvyeGrxnqL5SJjMPag1d9YiiXfdGYVkL/WJqWYnC2A=:BID_157_MothMale", + "60CE6E28E6993C1DC1C58E839E7A7284:ZlOTwn6YbAK9HetjsiQo0AS1jwJQnLJY7NkR5i7o2/g=", + "5D72DA16B064F87BCEB569EE9323FB67:cnMEvin1jKe2V34dFeq5nTKzXJCQiAnjJfXx1te8E2M=:EID_Competitor", + "1C8FA86241B2E4D084F7548529629CF6:pmXOfd+NEXcLhZX5YqDLjHu8/yzZoo4dWPcCM8ccXoI=:CID_333_Athena_Commando_M_Squishy", + "D2FAE1D098B2B4695EB59FAAD504798D:ZUDIqDvGVcpCVuA3h67vdkVbZwLuC0Z1zX33JLyi5xE=:BID_925_LateralFemale_7RK0Z", + "4027857851DDDDD81540A7A6B79134AA:VuQSvPVjqCjbln+FWNnnQ2RjoNjs2P8dD57qSDhhKx0=:EID_WrongWay_M47AL", + "88FA70760D757D80F661FA53B4762EC2:7OtV76cpyOq9dNeM5PVD8TOdRcPx1K3weEPXzlCugu0=:BID_878_BistroSpooky_VPF4T", + "7FA066BD68EDBE54C44CEAF5FDE591AA:MqrhrL7xbe11CZPwz1pJTx8M8yUHGe/VHL29VKlKVKg=:EID_LittleEgg_69OX0", + "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:BannerToken_018_GalileoD_5XXFQ", + "2F2804FC81CA638FC3DFEE5FB922987B:vz4MvtMQubNdmH1BO2E2FnNT3/vSvjbIn7HWNcWIYl8=:BID_272_AssassinSuitFemale", + "522BADEC3C1B8FB686B355A760304BF9:4yejFeII+k2XIzKVEF1UPXPHjMamSlHIEljDToNlzvw=", + "DE4CBA7A27B818D6B299767036C671A9:o7axeOYDdjXZ4MTWM4Io4XRNfQG2WH9qwPvBSJk8vJM=", + "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:BID_875_SunriseCastle_91J3L", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:BID_921_Slither_85LFG", + "D1EBFA5EEFFAFC07E39EE2D9986CF8FB:jdM2xx6liOm1miOSVC7txNj6HvWF7/zCq4zxMYFYxug=", + "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:CID_651_Athena_Commando_F_HolidayPJ_C", + "471CA05DCEE84890F9287E4E0DB31C08:cclx9Dp+FcphJfVZLUAdo21nLGn8pQ7GutQgY4LCOts=:Character_TreasureHunterFashionsFNCS", + "E098A699B1A5E20B03B5CBBCDB85D4E3:oKYx1AqjUax4YhKirSQDeyBSQNkSmEKDS7q+U/4KszU=", + "BA4D882E7B09657A5E05773F702103CF:PjieN4lF3tRBNjQmWWUAyvZUaV0OrPGPYwrqNT8ZSus=:Wrap_045_Angel", + "8E1887D55A60F69B33B234242FF49653:YofZaW+CRl0jhVhkp9z2CQWhTPwyjQ6dbHtISkLDfVU=:Wrap_476_Alfredo", + "EBFE6788D367D741AF0A4FD098CDFD39:FAeJTGyT49P+dQOmKx+lMYVAxu7qtIPlqSaLAR85zqI=:Wrap_066_AssassinSuit02", + "1398A4C2E6C3954EDDC49F85C5AB251B:qF0+04jSaU0kgws/RigbWpwnyPQMDnK+4Vf4G0tmTns=", + "59A2ED9719A429D54A0527BD9EFDD2CB:uiAzgzDicrjHVlY+8a4i0p2f+7GkJ1kwmpT84nH6nsg=", + "E0FB7B394449CE6450EA90C93D710EB8:NrXwNX6lKuu/kyQuvE74+6Uo04FODoV4ZqxToj/jS6I=:Wrap_088_DriftSummer", + "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:BID_985_CactusDancerMale", + "7FA4F2374FFE075000BC209360056A5A:nywIiZlIL8AIMkwCZfrYoAkpHM3zCwddhfszh++6ejI=:CID_223_Athena_Commando_M_Dieselpunk", + "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=:Pickaxe_ID_492_EmbersMale", + "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Pickaxe_CoyoteTrail", + "C23FA9BDE9342B508B8AABBEEA6699A2:3mRtSSu9PTBlC3NpGAQcFent660Ptni4HbGX+Zj1KIA=:Pickaxe_ID_676_CritterFrenzyMale_B21OE", + "CE60A61FBEAC33EBF231E79C6BBB3D19:y7XCzCCilb1Q+TlLtT2sQCAryt1gIZ9PPI2dtb5whik=:Character_FolkEvening", + "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:Pickaxe_ID_646_QuarrelMale_PTOBI", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_305_Athena_Commando_F_Slither_C_UE2Q9", + "A398C07C0A77D834038E7192FAB52B4B:/+4taU8TYRe14OhUt2cevoUqUOh6ado2hWu45FJ+7yA=:Backpack_FearlessFlightMenace", + "BAEF248980269F569C6E1FFF2B885DF6:2b6DQGIcab1r7zsw5j3MR84iDmt0g1XBquxJVR/8GxM=:BID_402_TourBus", + "E2A2B587160A4C443BF5455EDEC37D7E:+nH3Fe4U8akaQyEoy+g3b6IT6593VPY1PZjwP+d/ydk=", + "BFE1F518C16A9F061B140D829ADDB0ED:bHkPYjXd71vacoJ4IisL//zEyVLFh+Di8MUqV9KkpFU=:BID_806_Foray_WG30D", + "BF953D81273D8772F12F57646A49430E:JP2vQQulX3OGMjglMYW7PT3KMCMbia3rtHnuEsuEVxA=", + "18E7A14F3D3A6501FCDCA85855F808CB:iYqOu2+M8QDG31cRJ8ZHQ7Z5eXpTOSTEvXcgfDSqVTg=:EID_Dreadful", + "566C4D92AF66F45DF5E2D7EB43CC27AE:EuAYwU5tQBXzGoSj5BMc7S5yFfe9wZ2qrzx/hIHpnqw=:EID_LunchBox", + "476EE53C2EAA24FD1950A9875FB4CF59:LQMwgWwsoSqGyYbBouYaMaN8NZ38Vy5r3Tqa7KA71oQ=:Backpack_FallValleyCharge", + "9B730D57F59135CF774023F0DC1A99E7:l2Jy2Q3X1MPar8qMDGSHWWhdsVsYQ7hsqEYFMA6D8fI=", + "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:Glider_LastVoiceDive", + "CB2F74DD1C6D7FB4560BF4AA6B7460EE:1MXyB7YDAZC+p/2Fl+tefE6s3cCdKs+5tXDHEg1JLfg=", + "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:Season17_Magesty_Pickaxe_Schedule", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_910_Athena_Commando_F_York", + "A13ABC32168BF8FE80F667ACB4BD5AAF:WsXMYjk1W2VJ8o9Dj7FXsaKvHNeHydr2kJEiwPRIMwU=:EID_Triumphant", + "9261CD0F921EAA3CD6AA8C0716FB042B:W+yzeWWxWnA530lwV8nLi2BE+TD5MCXS11th7UphmPQ=:EID_Typhoon_VO9OF", + "EB16EA013B751792698E05435797C1ED:y9JgD812Io4mbaJ5i533Ts5SSfyXaGM4JyoimjP+i4M=:BID_245_BaseballKitbashFemale", + "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_449_Athena_Commando_M_BannerD", + "7C04002177805455CCA13E61F418D117:cacqp05gISCHgiULNDksrFNlUbhz6NxeW7pEr+xp2FQ=:LoadingScreen_Genius", + "ABBCFB5A5EEF4E14C2FB2A379152E402:ZRrlkrmu0l1tGZe5IyUOVa2mEJLbjuQCnoiGaDbmFXg=", + "AE9F7B3419C7FBD2414D72E2E1C8A7BA:kpIotniLp60tWfbBitDUrjw6gmJ2Swl+YT3QAkecpRA=:CID_547_Athena_Commando_F_Meteorwoman", + "4BA767BD2DC06D215B435AC09A033437:QOfpKnEogmj0tTa5wf49SZH55Sy48QEGP02DbkSg218=:BID_A_009_Grapefruit", + "929B82B3454DF80CC45B11A55400B6E7:jl/KsmshfBxKKnPDHyHNTHOzTE3buCIrBpSUpXJQdL4=:Glider_ID_107_IceMaiden", + "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=:Glider_ID_250_EmbersMale", + "98CAB76B2CB8406085C8CDF566FFF5DD:cucOYeadgsZAhkdKC7Klc4/BhUe0SnQtF2cwEScRBxw=", + "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=", + "5C25DC4FE406CC6DAAB47D5EBF222355:LH76FBWg3hkWPDgOmXcRY/YD33N/6E4qQxqKUvIp0oA=:EID_Ignite", + "BB09F8C7991800CA61A7144E3A6219FA:o+Hvu5rCygQz66xIyk0SANceWaptKHLEls3vZaMW9oc=", + "88FA70760D757D80F661FA53B4762EC2:7OtV76cpyOq9dNeM5PVD8TOdRcPx1K3weEPXzlCugu0=:Pickaxe_ID_682_BistroAstronautFemale_A3MD2", + "7E5BFF3AFC483F87B5891536C0AF3DFD:dEBFRFQPYg4NndewaW9/rEDpW0N8VFh7srTZDn0aejE=", + "312398E80AB6209B22CAA2EBAB2DB35B:QZ5uhBnQSeK4b+u9E6PTfw7j2scPMTPX4fFTOJWIwEM=:EID_Shorts", + "8D44654E9EA2AAC35E489476B1948E58:Dwb/irSIIGd3tLLPEP5OqJY1D4KfjdP4+uP4+Ht4YOo=:LoadingScreen_Elevate", + "63722D44ECCA0F4178B85F5A6BC4C31B:j42UL0bmfBkli6Aj92wWABwFby5rAplP/Ac6nh9kRvA=", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=", + "79F7D9C856E8CF354109D3298F076C06:Ak3TOM0i0Mq/KYxd7SDlSuS7o55USaf+urL6WqnmalY=", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Fig", + "4E7938F1FAC98BDF378823116712AC7A:jbZVgprILTQomUdGeJF0PsAFAJxsSCs5cKcXweZMAg0=:BID_586_Tar_DIJGH", + "25A2BE0115631B392E3C3217C645540B:GyQ18n64dldycxr5SPLRfWRNnxFB3eQFK07BbTgleUk=", + "308F587F46CB50450DCA9B9CFD50E120:2nvyeGrxnqL5SJjMPag1d9YiiXfdGYVkL/WJqWYnC2A=:Glider_ID_099_Moth", + "6D85E82539341B90944E84FFAAD872FB:mAiBk7KbE2Dnr+yVFyJK1yAwv2eWb+yANFH0z2krQkw=:Wrap_087_BriteBomberSummer", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_939_Athena_Commando_M_Football20_C_9OP0F", + "89CD763ACF4C3672A0F74AC0F45C291F:vtcPbnTh2aDOt7LfYpJL+7aF1TaB8LDaLsMoQ47NZec=", + "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=", + "8D44654E9EA2AAC35E489476B1948E58:Dwb/irSIIGd3tLLPEP5OqJY1D4KfjdP4+uP4+Ht4YOo=:Pickaxe_ShinyStar", + "2A236A35ED4833924DF975CEBE4282AF:e4NpefIqezxUVeH+2INzCV08eK4NvFrojB8z1awxm6Q=", + "D2FAE1D098B2B4695EB59FAAD504798D:ZUDIqDvGVcpCVuA3h67vdkVbZwLuC0Z1zX33JLyi5xE=:BID_924_LateralMale_Y2INS", + "010E6ACF85E4A58BF6F551EFE7B85F61:DwCIH5Dw/1wdiS6gFGmWe4HUgD9kMOEzjbzM/1QshM4=:BID_234_SpeedyMidnight", + "54FD9ABD65879452DCB8CE11C1D7F1AF:nV0Vm4NCBl+MkGX8wiqfFrg0viDriL3I2xc4KS7n7fg=:CID_422_Athena_Commando_F_MaskedWarrior", + "929B82B3454DF80CC45B11A55400B6E7:jl/KsmshfBxKKnPDHyHNTHOzTE3buCIrBpSUpXJQdL4=:CID_298_Athena_Commando_F_IceMaiden", + "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Glider_BraveBuild", + "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:Glider_ID_388_Wayfare", + "E176769F750C1A6152A78B04761894E2:w/RNY1G1W4n6wZFfZUaqa7MvEyxXPU42ZRypQ+UcNVY=", + "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=:Backpack_FishBowlBone", + "F07BE27DCEFDF52818EE7BA2CD9CA504:lc47A/VahaBWJLQY4V1YyjzJPI5xVErInDaqdwPjv2g=:Pickaxe_ID_200_MoonlightAssassin", + "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:BID_938_FoeMale_F4JVS", + "9FD68EDC1A5A456225A1C14E1488C573:vfIZFBmmSWgvzSDG/l7N0EGIrANZpUKA7Ofqo+n4fBg=", + "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:EID_CoyoteTrail", + "8DCAE39C7D9690E19F52655F02C613B2:ZZHbiVsbXquLlrtNVHtryLS3Vd1Ego8/8tlDpeUCgfc=:EID_ScoreCardBurger", + "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=", + "5098C0AED639B6C90A785C727F0DED4B:/YNq7WVNgAmtcY8eS20XBvoz00E1Z/1/Q0BZ8EluHf8=", + "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=", + "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:EID_Gimmick_Female_6CMF4", + "FCD2F65146D53215F92F558CBA418191:3cp//Ss4zbgQ6tnnNLBcaTy9fsz3IM6ddZmiQSkX43c=:CID_336_Athena_Commando_M_DragonMask", + "06E3CB03E94C4D850CE185166706E868:jDuRIbxnZBnAH/hUrfRX3qnGyIogSWUHrK6nq7Et3pk=:BID_771_Lasso_ZN4VA", + "19CAB803EB00118FB3E6B3E5ABA7B234:tRM77TfQWWJ38hNsFLjt7jMNoSOozxqi9PF9/9H3rmU=:Wrap_154_Haunt", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=", + "A398C07C0A77D834038E7192FAB52B4B:/+4taU8TYRe14OhUt2cevoUqUOh6ado2hWu45FJ+7yA=", + "C5C1E0742C0BFE4264242F3774C13B41:BO5aZnDZhvHsUFLsJD2vtYCQ6iYpX7Lhl565nDsBhaE=", + "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:Glider_ID_378_EnsembleSnakeMale", + "B3BE1C036099F140800BB7D5FF1D9C49:bLt9+35t2O26OTgiEMuUCvH1kn+lGjTjhaEEoiz4CtE=:Pickaxe_ID_535_ConvoyTarantulaMale_GQ82N", + "40E9F547033360DFC0DD09743229B87C:x0/WK54ohwsadmVGHIisJNyHC8MqlU8bg2H+BsaEBtc=", + "56812D9CB607F72A9BDBADEE44ECCD21:pj9dMhJSaj6V2HsA0VWABE7Cs4+eEBz1Kex340gafK8=:Pickaxe_ID_199_ShinyHammer", + "42FEDE262B530BFDC25D9E6B8684D1B7:bXloLJVoSi2uTe72cpdsB8pAmUPKzmxwPC2GPhHFVhk=:EID_Layers_BBZ49", + "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_999_Athena_Commando_M_GlobalFB_E_OISU6", + "AEC9FD29ACF48B274A1A573C9ECF4B06:7OT+zOUDq1RjYJKp8gQhbUnYz/qJ19It2X4HduP5y/g=:Pickaxe_ID_249_Squishy1H", + "110D116208C62834812C2EDF2F305E49:MwuF5zX7GpQCGL2w+CwkPmGzH3q05YUoLo5udhVMNPg=:CID_718_Athena_Commando_F_LuckyHero", + "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=:Backpack_SunBurst", + "EF7C5225BD60644B313ABEE69182A302:ITNJPJyUEyMw8YrBk89HfKwHTFV6jGJJHt4D8UmpaxI=", + "8C623F6A49CFF9ADC7895A466CA1C896:kLmYdLi+jOBs2k+B/UxrCcPSdvuNYTha0xl9+SvUzJU=", + "56812D9CB607F72A9BDBADEE44ECCD21:pj9dMhJSaj6V2HsA0VWABE7Cs4+eEBz1Kex340gafK8=:BID_254_ShinyMale", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:Glider_ID_248_York", + "CE9D023C0D7DBF7634F2AEF6200BDB36:JyhTmjJnosQmLeGMQXhCtkl/auX+mde5P11MsWEwIqw=:Wrap_DarkAzeala", + "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=:Glider_HighBeam", + "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:EID_Alchemy_BZWS8", + "3AC8A6B5089F55E17E00AAD8AC3C6406:TlUSkJe3y85fW83rHMy+XuqcZxQduXcB8yftpPoiDvo=:BID_527_Loofah", + "54746F2A874802B87CC5E9307EA76399:nOaYcOb6cOggqwc+mRiJ7LJEs0qvaiMhxH/yWXou+Q4=", + "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Glider_InstantGravel", + "4755D9C0E2D1DE1C09B77DEA8B830471:9tUO5yVhvp+/sp7icZaEDw05nMAdS6bYAWYyfQNsxBc=:Glider_ID_209_DonutPlate", + "DC487286E8C1CD5FE18AC3FE76034EF2:3h9IwK2qQP8PHVuO1aZI1C34JrJxKBnXJOFcSDSj99M=:Wrap_102_WorldCup2019", + "C5C1E0742C0BFE4264242F3774C13B41:BO5aZnDZhvHsUFLsJD2vtYCQ6iYpX7Lhl565nDsBhaE=:EID_Martian_SK4J6", + "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Grape", + "E0AEF4894E1283946745F7902F7E105A:7MXKJEs903nNbT1oFzykxoHbQNDnOBm6yfadj+mtBDA=:Pickaxe_ID_752_RoverMale_I98VZ", + "FE0FA56F4B280D2F0CB2AB899C645F3E:hYi0DrAf6wtw7Zi+PlUi7/vIlIB3psBzEb5piGLEW6s=:CID_220_Athena_Commando_F_Clown", + "8DCAE39C7D9690E19F52655F02C613B2:ZZHbiVsbXquLlrtNVHtryLS3Vd1Ego8/8tlDpeUCgfc=:BID_337_MascotMilitiaTomato", + "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:Pickaxe_ID_850_WayfareMaskFemale", + "471CA05DCEE84890F9287E4E0DB31C08:cclx9Dp+FcphJfVZLUAdo21nLGn8pQ7GutQgY4LCOts=:Wrap_Comp24", + "5738A14C7E45E1B405CEF920829CB255:xZHlPTz/dxNahrp9IqTZ+tjOZSYMxQb9KZFXlg9N638=:Wrap_180_HolidayTime", + "7B1151E3094646DFFD37B6492B117FDB:4WxNHdTgHDEpGjzIV2XIjGO41kyiwggFQpdq8y+o1jY=:BID_733_TheGoldenSkeletonFemale_SG4HF", + "B1EB196DD39D0736E7E08F99B07D8B9A:1fDhBY8uhi++l6QQPL2YtxZgUv04OZoMGBrH+yN8yKM=:EID_SandwichBop", + "2E5F91AEF58F310AE2044EA39C43BB81:pNy1GtfVzymqacOqXRY14EZEvI5ZSVD5AFxlhxXC5qk=:Wrap_409_CritterManiac_1B4II", + "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:BID_A_061_WayfareFemale", + "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_304_Athena_Commando_F_Slither_B_MO4VZ", + "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_952_Athena_Commando_F_Football20Referee_ZX4IC", + "360CD59F6F7B68A441DDED9DB5FD13D7:G6pVAf/ul1HPYh6s2M1l8G4hn62jdwkcbegeLoxL7Y0=:EID_Ashes_MYQ8O", + "1937F4ADBC2C38EF4F189DC2B1AE58AB:tWzxKwKEDzI0RsQGl2GvOVqZwxOSOiZaCQkyK1hE+lA=:Backpack_Inspire", + "CE60A61FBEAC33EBF231E79C6BBB3D19:y7XCzCCilb1Q+TlLtT2sQCAryt1gIZ9PPI2dtb5whik=:Wrap_FolkEvening", + "2F1A5AFD22512A8B16494629CCA065B2:Un44BCuGtirrKab0E9TeOyDRnWC/Jh1h48+FOn4UrtA=", + "457F39EA51FB4C723B442810750CDA4A:V3d05mcuS4uXMBRpy63TIZDLt5hg9njVD0SGhZDsmBw=:LoadingScreen_Sahara", + "195439D6DD0FE44ADAE6BF7A44436519:kRCw7VFSPCYqhu7lJlA4kO4YmsqZUzxM6ARm7Ti8ntQ=", + "8675F0B46A008B0B6C0ABDD41A619443:9JYZhRB5Kld9h7zVQTbfSyNJvhz9UaJ17HIAPZH8TwQ=", + "22B8405FC3BE153C8148422C3F2D3A8A:d/ATMDztVZxwHLUCwOcJWP1/7oPKKGqbBWUBRNZ6dnM=", + "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:Pickaxe_ID_645_QuarrelFemale_W3B7A", + "C1E73246C58C0BAC3FF50B346684D278:lWvPsfsWVsNVDSOH7JpZULEgoQ+JKrWPuSqIw942mmo=:EID_Marvelous", + "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=", + "5AEDD4DB5DA39071FCFC2404EEB3D02D:qaoe5DQrf1+HPEQRW5zls4KSe7DHbrxXO8OZMsFeo8Y=", + "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Pickaxe_SkeletonHunterFNCS", + "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_907_Athena_Commando_M_York_C", + "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=:BID_947_ZestFemale_1KIDJ", + "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=", + "E0AEF4894E1283946745F7902F7E105A:7MXKJEs903nNbT1oFzykxoHbQNDnOBm6yfadj+mtBDA=:Pickaxe_ID_751_RoverFemale_44TG1", + "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:EID_Beyond", + "66B8D4B61985C510209FD18445953344:Vq1odf+xCxp2/WBssHZPvUUyI9ay71eVsuyoz/z9zdk=:EID_Spooky", + "8033BA4F3E1FB68ABADE271C9BE4EE42:XGwA8RWdavpeScQpqM/aFod3SGTB3PibdGE7iGKR4jg=", + "D776CA2A40FD9EC1F8522E9E13E99031:uRYulzQ2zdGG9UisQw2wM9OOM/9JsSWFwFt5d/3okng=:Glider_ID_121_BriteBomberDeluxe", + "D7727B4696A62373E9EBD9803F705B3C:XEbXIzCpOuA88jMBtt+XuMt+NaOIWlvfpW9h7i/dFlM=:Wrap_036_EvilSuit", + "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:Spray_LastVoice", + "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:Pickaxe_ID_782_CactusDancerFemale" +] \ No newline at end of file diff --git a/lawin/responses/privacy.json b/lawin/responses/privacy.json new file mode 100644 index 0000000..0cfb219 --- /dev/null +++ b/lawin/responses/privacy.json @@ -0,0 +1,4 @@ +{ + "accountId": "", + "optOutOfPublicLeaderboards": false +} \ No newline at end of file diff --git a/lawin/responses/quests.json b/lawin/responses/quests.json new file mode 100644 index 0000000..469e306 --- /dev/null +++ b/lawin/responses/quests.json @@ -0,0 +1,121683 @@ +{ + "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" + ] + } + ], + "Season2": { + "Quests": [ + { + "itemGuid": "S2-Quest:LoveQuest_2018_Reactive_Chocolates", + "templateId": "Quest:LoveQuest_2018_Reactive_Chocolates", + "objectives": [ + { + "name": "lovequest_2018_reactive_chocolates", + "count": 10 + } + ] + }, + { + "itemGuid": "S2-Quest:LoveQuest_2018_Reactive_Flowers", + "templateId": "Quest:LoveQuest_2018_Reactive_Flowers", + "objectives": [ + { + "name": "lovequest_2018_reactive_flowers", + "count": 7 + } + ] + }, + { + "itemGuid": "S2-Quest:LoveQuest_2018_Reactive_Mailboxes", + "templateId": "Quest:LoveQuest_2018_Reactive_Mailboxes", + "objectives": [ + { + "name": "lovequest_2018_reactive_mailboxes", + "count": 5 + } + ] + }, + { + "itemGuid": "S2-Quest:LoveQuest_2018_Reactive_RescueDennis", + "templateId": "Quest:LoveQuest_2018_Reactive_RescueDennis", + "objectives": [ + { + "name": "lovequest_2018_reactive_rescuedennis", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:LoveQuest_2018_Reactive_RescueSummer", + "templateId": "Quest:LoveQuest_2018_Reactive_RescueSummer", + "objectives": [ + { + "name": "lovequest_2018_reactive_rescuesummer", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:LoveQuest_2018_Reactive_Song", + "templateId": "Quest:LoveQuest_2018_Reactive_Song", + "objectives": [ + { + "name": "LoveQuest_2018_Reactive_Song", + "count": 5 + } + ] + }, + { + "itemGuid": "S2-Quest:LoveQuest_2018_Reactive_TeddyBears", + "templateId": "Quest:LoveQuest_2018_Reactive_TeddyBears", + "objectives": [ + { + "name": "lovequest_2018_reactive_teddybears", + "count": 9 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Complete_BumpedDifficulty", + "templateId": "Quest:SpringQuest_2018_Complete_BumpedDifficulty", + "objectives": [ + { + "name": "springquest_2018_complete_bumpeddifficulty", + "count": 2 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Complete_FireworkClusters", + "templateId": "Quest:SpringQuest_2018_Complete_FireworkClusters", + "objectives": [ + { + "name": "springquest_2018_complete_fireworkclusters", + "count": 2 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_KillHusksMelee", + "templateId": "Quest:SpringQuest_2018_KillHusksMelee", + "objectives": [ + { + "name": "springquest_2018_killhusksmelee", + "count": 50 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Reactive_Clothing", + "templateId": "Quest:SpringQuest_2018_Reactive_Clothing", + "objectives": [ + { + "name": "springquest_2018_reactive_clothing", + "count": 8 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Reactive_EggHunt", + "templateId": "Quest:SpringQuest_2018_Reactive_EggHunt", + "objectives": [ + { + "name": "springquest_2018_reactive_egghunt", + "count": 9 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Reactive_Fireworks", + "templateId": "Quest:SpringQuest_2018_Reactive_Fireworks", + "objectives": [ + { + "name": "springquest_2018_reactive_fireworks", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Reactive_Fireworks_Repeatable", + "templateId": "Quest:SpringQuest_2018_Reactive_Fireworks_Repeatable", + "objectives": [ + { + "name": "springquest_2018_reactive_fireworks_repeatable", + "count": 40 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Reactive_GymStuff", + "templateId": "Quest:SpringQuest_2018_Reactive_GymStuff", + "objectives": [ + { + "name": "springquest_2018_reactive_gymstuff", + "count": 5 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Reactive_HuntMiniboss_Finale", + "templateId": "Quest:SpringQuest_2018_Reactive_HuntMiniboss_Finale", + "objectives": [ + { + "name": "springquest_2018_reactive_huntminiboss_finale", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Reactive_KillCollect_Clovers", + "templateId": "Quest:SpringQuest_2018_Reactive_KillCollect_Clovers", + "objectives": [ + { + "name": "SpringQuest_2018_Reactive_KillCollect_Clovers", + "count": 50 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Reactive_Lanterns", + "templateId": "Quest:SpringQuest_2018_Reactive_Lanterns", + "objectives": [ + { + "name": "SpringQuest_2018_Reactive_Lanterns", + "count": 8 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Reactive_LocationDiscovery_Pub", + "templateId": "Quest:SpringQuest_2018_Reactive_LocationDiscovery_Pub", + "objectives": [ + { + "name": "springquest_2018_reactive_locationdiscovery_pub", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Reactive_Quotes", + "templateId": "Quest:SpringQuest_2018_Reactive_Quotes", + "objectives": [ + { + "name": "springquest_2018_reactive_quotes", + "count": 5 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Reactive_RescueVal", + "templateId": "Quest:SpringQuest_2018_Reactive_RescueVal", + "objectives": [ + { + "name": "springquest_2018_reactive_rescueval", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Reactive_Tents", + "templateId": "Quest:SpringQuest_2018_Reactive_Tents", + "objectives": [ + { + "name": "springquest_2018_reactive_tents", + "count": 5 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_Reactive_VHS", + "templateId": "Quest:SpringQuest_2018_Reactive_VHS", + "objectives": [ + { + "name": "springquest_2018_reactive_vhs", + "count": 10 + } + ] + }, + { + "itemGuid": "S2-Quest:SpringQuest_2018_StarterHidden", + "templateId": "Quest:SpringQuest_2018_StarterHidden", + "objectives": [ + { + "name": "SpringQuest_2018_StarterHidden", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_CompleteSurvive7Day_D1", + "templateId": "Quest:WinterQuest_2017_CompleteSurvive7Day_D1", + "objectives": [ + { + "name": "complete_survivalmode_pve01_7day", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_CompleteSurvive7Day_D2", + "templateId": "Quest:WinterQuest_2017_CompleteSurvive7Day_D2", + "objectives": [ + { + "name": "complete_survivalmode_pve02_7day", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_CompleteSurvive7Day_D3", + "templateId": "Quest:WinterQuest_2017_CompleteSurvive7Day_D3", + "objectives": [ + { + "name": "complete_survivalmode_pve03_7day", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_CompleteSurviveAny", + "templateId": "Quest:WinterQuest_2017_CompleteSurviveAny", + "objectives": [ + { + "name": "complete_survivalmode_any", + "count": 3 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Complete_PresentDrop_Repeatable", + "templateId": "Quest:WinterQuest_2017_Complete_PresentDrop_Repeatable", + "objectives": [ + { + "name": "complete_presentdrop", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Hidden_1", + "templateId": "Quest:WinterQuest_2017_Hidden_1", + "objectives": [ + { + "name": "questcomplete_winterquest_2017_killmallsantas", + "count": 1 + }, + { + "name": "questcomplete_winterquest_2017_killevilhelpers", + "count": 1 + }, + { + "name": "questcomplete_winterquest_2017_killcoallobbers", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_KillCoalLobbers", + "templateId": "Quest:WinterQuest_2017_KillCoalLobbers", + "objectives": [ + { + "name": "kill_husk_coal_lobbers", + "count": 50 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_KillEvilHelpers", + "templateId": "Quest:WinterQuest_2017_KillEvilHelpers", + "objectives": [ + { + "name": "kill_husk_little_evil_helpers", + "count": 750 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_KillMallSantas", + "templateId": "Quest:WinterQuest_2017_KillMallSantas", + "objectives": [ + { + "name": "kill_husk_mall_santas", + "count": 30 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_KillMiniBosses", + "templateId": "Quest:WinterQuest_2017_KillMiniBosses", + "objectives": [ + { + "name": "kill_miniboss_missionalert", + "count": 10 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_KillMiniBosses_Repeatable", + "templateId": "Quest:WinterQuest_2017_KillMiniBosses_Repeatable", + "objectives": [ + { + "name": "kill_miniboss_missionalert", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_KillMistMonsters", + "templateId": "Quest:WinterQuest_2017_KillMistMonsters", + "objectives": [ + { + "name": "kill_smasher_vacuumtube", + "count": 50 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_LarsLandmarkMission", + "templateId": "Quest:WinterQuest_2017_LarsLandmarkMission", + "objectives": [ + { + "name": "complete_lars_landmark", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Reactive_Fetch_CollectPresent", + "templateId": "Quest:WinterQuest_2017_Reactive_Fetch_CollectPresent", + "objectives": [ + { + "name": "winterquest_2017_reactive_fetch_collectpresent", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Reactive_Fetch_Decorations", + "templateId": "Quest:WinterQuest_2017_Reactive_Fetch_Decorations", + "objectives": [ + { + "name": "winterquest_2017_reactive_fetch_decoration", + "count": 7 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Reactive_Fetch_DeployTrees", + "templateId": "Quest:WinterQuest_2017_Reactive_Fetch_DeployTrees", + "objectives": [ + { + "name": "winterquest_2017_reactive_fetch_deploytree", + "count": 11 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Reactive_Fetch_PackingPresents", + "templateId": "Quest:WinterQuest_2017_Reactive_Fetch_PackingPresents", + "objectives": [ + { + "name": "winterquest_2017_reactive_fetch_presentfiller", + "count": 12 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Reactive_Fetch_Radios", + "templateId": "Quest:WinterQuest_2017_Reactive_Fetch_Radios", + "objectives": [ + { + "name": "winterquest_2017_reactive_fetch_radio", + "count": 8 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Reactive_FrozenTroll", + "templateId": "Quest:WinterQuest_2017_Reactive_FrozenTroll", + "objectives": [ + { + "name": "winterquest_2017_reactive_frozentroll", + "count": 1 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Reactive_Gather_Books", + "templateId": "Quest:WinterQuest_2017_Reactive_Gather_Books", + "objectives": [ + { + "name": "winterquest_2017_reactive_gather_book", + "count": 10 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Reactive_Gather_Fridges", + "templateId": "Quest:WinterQuest_2017_Reactive_Gather_Fridges", + "objectives": [ + { + "name": "winterquest_2017_reactive_gather_fridge", + "count": 12 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Reactive_Gather_FruitNuts", + "templateId": "Quest:WinterQuest_2017_Reactive_Gather_FruitNuts", + "objectives": [ + { + "name": "winterquest_2017_reactive_gather_fruit", + "count": 15 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Reactive_Gather_TrafficLights", + "templateId": "Quest:WinterQuest_2017_Reactive_Gather_TrafficLights", + "objectives": [ + { + "name": "winterquest_2017_reactive_gather_trafficlight", + "count": 10 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Reactive_Gather_Trees", + "templateId": "Quest:WinterQuest_2017_Reactive_Gather_Trees", + "objectives": [ + { + "name": "winterquest_2107_reactive_gather_pinetree", + "count": 20 + } + ] + }, + { + "itemGuid": "S2-Quest:WinterQuest_2017_Reactive_Presents_Hidden", + "templateId": "Quest:WinterQuest_2017_Reactive_Presents_Hidden", + "objectives": [ + { + "name": "winterquest_2017_reactive_presents_hidden", + "count": 6 + } + ] + } + ] + }, + "Season3": { + "Quests": [ + { + "itemGuid": "S3-Quest:LoveQuest_2018_Reactive_Chocolates", + "templateId": "Quest:LoveQuest_2018_Reactive_Chocolates", + "objectives": [ + { + "name": "lovequest_2018_reactive_chocolates", + "count": 10 + } + ] + }, + { + "itemGuid": "S3-Quest:LoveQuest_2018_Reactive_Flowers", + "templateId": "Quest:LoveQuest_2018_Reactive_Flowers", + "objectives": [ + { + "name": "lovequest_2018_reactive_flowers", + "count": 7 + } + ] + }, + { + "itemGuid": "S3-Quest:LoveQuest_2018_Reactive_Mailboxes", + "templateId": "Quest:LoveQuest_2018_Reactive_Mailboxes", + "objectives": [ + { + "name": "lovequest_2018_reactive_mailboxes", + "count": 5 + } + ] + }, + { + "itemGuid": "S3-Quest:LoveQuest_2018_Reactive_RescueDennis", + "templateId": "Quest:LoveQuest_2018_Reactive_RescueDennis", + "objectives": [ + { + "name": "lovequest_2018_reactive_rescuedennis", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:LoveQuest_2018_Reactive_RescueSummer", + "templateId": "Quest:LoveQuest_2018_Reactive_RescueSummer", + "objectives": [ + { + "name": "lovequest_2018_reactive_rescuesummer", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:LoveQuest_2018_Reactive_Song", + "templateId": "Quest:LoveQuest_2018_Reactive_Song", + "objectives": [ + { + "name": "LoveQuest_2018_Reactive_Song", + "count": 5 + } + ] + }, + { + "itemGuid": "S3-Quest:LoveQuest_2018_Reactive_TeddyBears", + "templateId": "Quest:LoveQuest_2018_Reactive_TeddyBears", + "objectives": [ + { + "name": "lovequest_2018_reactive_teddybears", + "count": 9 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Build_Trojan_Bunny", + "templateId": "Quest:SpringQuest_2018_Build_Trojan_Bunny", + "objectives": [ + { + "name": "springquest_2018_build_trojan_bunny", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Complete_BumpedDifficulty", + "templateId": "Quest:SpringQuest_2018_Complete_BumpedDifficulty", + "objectives": [ + { + "name": "springquest_2018_complete_bumpeddifficulty", + "count": 2 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Complete_FireworkClusters", + "templateId": "Quest:SpringQuest_2018_Complete_FireworkClusters", + "objectives": [ + { + "name": "springquest_2018_complete_fireworkclusters", + "count": 2 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_EvolveDragonWeapon", + "templateId": "Quest:SpringQuest_2018_EvolveDragonWeapon", + "objectives": [ + { + "name": "springquest_2018_evolvedragonweapon", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_KillHusksDragonWeapon", + "templateId": "Quest:SpringQuest_2018_KillHusksDragonWeapon", + "objectives": [ + { + "name": "springquest_2018_killhusksdragonweapon", + "count": 886 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_KillHusksMelee", + "templateId": "Quest:SpringQuest_2018_KillHusksMelee", + "objectives": [ + { + "name": "springquest_2018_killhusksmelee", + "count": 50 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_KillMistMonstersDragonWeapon", + "templateId": "Quest:SpringQuest_2018_KillMistMonstersDragonWeapon", + "objectives": [ + { + "name": "springquest_2018_killmistmonstersdragonweapon_smasher", + "count": 38 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_CCTV_Cameras", + "templateId": "Quest:SpringQuest_2018_Reactive_CCTV_Cameras", + "objectives": [ + { + "name": "springquest_2018_reactive_cctv_cameras", + "count": 6 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_Clothing", + "templateId": "Quest:SpringQuest_2018_Reactive_Clothing", + "objectives": [ + { + "name": "springquest_2018_reactive_clothing", + "count": 8 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_EggHunt", + "templateId": "Quest:SpringQuest_2018_Reactive_EggHunt", + "objectives": [ + { + "name": "springquest_2018_reactive_egghunt", + "count": 9 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_Fireworks", + "templateId": "Quest:SpringQuest_2018_Reactive_Fireworks", + "objectives": [ + { + "name": "springquest_2018_reactive_fireworks", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_Fireworks_Repeatable", + "templateId": "Quest:SpringQuest_2018_Reactive_Fireworks_Repeatable", + "objectives": [ + { + "name": "springquest_2018_reactive_fireworks_repeatable", + "count": 40 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_Fountains", + "templateId": "Quest:SpringQuest_2018_Reactive_Fountains", + "objectives": [ + { + "name": "springquest_2018_reactive_fountains", + "count": 10 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_Garden_Gnomes", + "templateId": "Quest:SpringQuest_2018_Reactive_Garden_Gnomes", + "objectives": [ + { + "name": "SpringQuest_2018_Reactive_Garden_Gnomes", + "count": 5 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_GymStuff", + "templateId": "Quest:SpringQuest_2018_Reactive_GymStuff", + "objectives": [ + { + "name": "springquest_2018_reactive_gymstuff", + "count": 5 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_HuntMiniboss_Finale", + "templateId": "Quest:SpringQuest_2018_Reactive_HuntMiniboss_Finale", + "objectives": [ + { + "name": "SpringQuest_2018_Reactive_HuntMiniboss_Finale", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_KillCollect_Clovers", + "templateId": "Quest:SpringQuest_2018_Reactive_KillCollect_Clovers", + "objectives": [ + { + "name": "SpringQuest_2018_Reactive_KillCollect_Clovers", + "count": 50 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_Lanterns", + "templateId": "Quest:SpringQuest_2018_Reactive_Lanterns", + "objectives": [ + { + "name": "SpringQuest_2018_Reactive_Lanterns", + "count": 8 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_Leprechaun_Traps", + "templateId": "Quest:SpringQuest_2018_Reactive_Leprechaun_Traps", + "objectives": [ + { + "name": "springquest_2018_reactive_leprechaun_traps", + "count": 5 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_LocationDiscovery_Pub", + "templateId": "Quest:SpringQuest_2018_Reactive_LocationDiscovery_Pub", + "objectives": [ + { + "name": "springquest_2018_reactive_locationdiscovery_pub", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_PotsOfGold", + "templateId": "Quest:SpringQuest_2018_Reactive_PotsOfGold", + "objectives": [ + { + "name": "springquest_2018_reactive_potsofgold", + "count": 7 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_Quotes", + "templateId": "Quest:SpringQuest_2018_Reactive_Quotes", + "objectives": [ + { + "name": "springquest_2018_reactive_quotes", + "count": 5 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_RescueVal", + "templateId": "Quest:SpringQuest_2018_Reactive_RescueVal", + "objectives": [ + { + "name": "springquest_2018_reactive_rescueval", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_Tents", + "templateId": "Quest:SpringQuest_2018_Reactive_Tents", + "objectives": [ + { + "name": "springquest_2018_reactive_tents", + "count": 5 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_Reactive_VHS", + "templateId": "Quest:SpringQuest_2018_Reactive_VHS", + "objectives": [ + { + "name": "springquest_2018_reactive_vhs", + "count": 8 + } + ] + }, + { + "itemGuid": "S3-Quest:SpringQuest_2018_StarterHidden", + "templateId": "Quest:SpringQuest_2018_StarterHidden", + "objectives": [ + { + "name": "SpringQuest_2018_StarterHidden", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_CompleteStormZones_Repeatable", + "templateId": "Quest:StormQuest_2018_CompleteStormZones_Repeatable", + "objectives": [ + { + "name": "complete_stormzone", + "count": 2 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_CompleteSurvive7Day_D1", + "templateId": "Quest:StormQuest_2018_CompleteSurvive7Day_D1", + "objectives": [ + { + "name": "complete_survivalmode_pve01_7day", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_CompleteSurvive7Day_D2", + "templateId": "Quest:StormQuest_2018_CompleteSurvive7Day_D2", + "objectives": [ + { + "name": "complete_survivalmode_pve02_7day", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_CompleteSurvive7Day_D3", + "templateId": "Quest:StormQuest_2018_CompleteSurvive7Day_D3", + "objectives": [ + { + "name": "complete_survivalmode_pve03_7day", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_CompleteSurviveAny", + "templateId": "Quest:StormQuest_2018_CompleteSurviveAny", + "objectives": [ + { + "name": "complete_survivalmode_any", + "count": 3 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Hidden_1", + "templateId": "Quest:StormQuest_2018_Hidden_1", + "objectives": [ + { + "name": "questcomplete_stormquest_2018_reactive_skyatlases", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Landmark_Lars", + "templateId": "Quest:StormQuest_2018_Landmark_Lars", + "objectives": [ + { + "name": "stormquest_2018_landmark_lars", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Landmark_Observe", + "templateId": "Quest:StormQuest_2018_Landmark_Observe", + "objectives": [ + { + "name": "stormquest_2018_landmark_observe", + "count": 1 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_ACParts", + "templateId": "Quest:StormQuest_2018_Reactive_ACParts", + "objectives": [ + { + "name": "stormquest_2018_reactive_acparts", + "count": 99 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_Equipment", + "templateId": "Quest:StormQuest_2018_Reactive_Equipment", + "objectives": [ + { + "name": "stormquest_2018_reactive_equipment", + "count": 5 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_Hoverboards", + "templateId": "Quest:StormQuest_2018_Reactive_Hoverboards", + "objectives": [ + { + "name": "stormquest_2018_reactive_hoverboards", + "count": 10 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_HuskData", + "templateId": "Quest:StormQuest_2018_Reactive_HuskData", + "objectives": [ + { + "name": "stormquest_2018_reactive_huskdata", + "count": 10 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_Insulators", + "templateId": "Quest:StormQuest_2018_Reactive_Insulators", + "objectives": [ + { + "name": "stormquest_2018_reactive_insulators", + "count": 30 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_Maps", + "templateId": "Quest:StormQuest_2018_Reactive_Maps", + "objectives": [ + { + "name": "stormquest_2018_reactive_maps", + "count": 15 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_Payphones", + "templateId": "Quest:StormQuest_2018_Reactive_Payphones", + "objectives": [ + { + "name": "stormquest_2018_reactive_payphones", + "count": 7 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_Records", + "templateId": "Quest:StormQuest_2018_Reactive_Records", + "objectives": [ + { + "name": "stormquest_2018_reactive_records", + "count": 5 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_Research", + "templateId": "Quest:StormQuest_2018_Reactive_Research", + "objectives": [ + { + "name": "stormquest_2018_reactive_research", + "count": 9 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_Servers", + "templateId": "Quest:StormQuest_2018_Reactive_Servers", + "objectives": [ + { + "name": "stormquest_2018_reactive_servers", + "count": 5 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_ServiceCars", + "templateId": "Quest:StormQuest_2018_Reactive_ServiceCars", + "objectives": [ + { + "name": "stormquest_2018_reactive_servicecars", + "count": 20 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_SkyAtlases", + "templateId": "Quest:StormQuest_2018_Reactive_SkyAtlases", + "objectives": [ + { + "name": "stormquest_2018_reactive_skyatlases", + "count": 12 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_Speakers", + "templateId": "Quest:StormQuest_2018_Reactive_Speakers", + "objectives": [ + { + "name": "stormquest_2018_reactive_speakers", + "count": 7 + } + ] + }, + { + "itemGuid": "S3-Quest:StormQuest_2018_Reactive_Telescopes", + "templateId": "Quest:StormQuest_2018_Reactive_Telescopes", + "objectives": [ + { + "name": "stormquest_2018_reactive_telescopes", + "count": 6 + } + ] + } + ] + }, + "Season4": { + "Quests": [ + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Hidden_1", + "templateId": "Quest:BlockbusterQuest_2018_Hidden_1", + "objectives": [ + { + "name": "questcomplete_blockbusterquest_2018_reactive_raysignal", + "count": 1 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Hidden_2", + "templateId": "Quest:BlockbusterQuest_2018_Hidden_2", + "objectives": [ + { + "name": "blockbusterquest_2018_hidden_2", + "count": 1 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Hidden_3", + "templateId": "Quest:BlockbusterQuest_2018_Hidden_3", + "objectives": [ + { + "name": "questcomplete_blockbusterquest_2018_landmark_meteor", + "count": 1 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Hidden_EnableHusky", + "templateId": "Quest:BlockbusterQuest_2018_Hidden_EnableHusky", + "objectives": [ + { + "name": "questcomplete_blockbusterquest_2018_reactive_magnets", + "count": 1 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_KillChromeHusky_Repeatable", + "templateId": "Quest:BlockbusterQuest_2018_KillChromeHusky_Repeatable", + "objectives": [ + { + "name": "kill_husk_chromehusky", + "count": 1 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_KillFireHusks_Repeatable", + "templateId": "Quest:BlockbusterQuest_2018_KillFireHusks_Repeatable", + "objectives": [ + { + "name": "kill_husk_ele_fire", + "count": 300 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_KillMiniBosses_Repeatable", + "templateId": "Quest:BlockbusterQuest_2018_KillMiniBosses_Repeatable", + "objectives": [ + { + "name": "kill_miniboss_missionalert", + "count": 1 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_KillMistMonsters_Repeatable", + "templateId": "Quest:BlockbusterQuest_2018_KillMistMonsters_Repeatable", + "objectives": [ + { + "name": "kill_husk_smasher", + "count": 50 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_KillNatureHusks_Repeatable", + "templateId": "Quest:BlockbusterQuest_2018_KillNatureHusks_Repeatable", + "objectives": [ + { + "name": "kill_husk_ele_nature", + "count": 300 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_KillWaterHusks_Repeatable", + "templateId": "Quest:BlockbusterQuest_2018_KillWaterHusks_Repeatable", + "objectives": [ + { + "name": "kill_husk_ele_water", + "count": 300 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Landmark_Comet", + "templateId": "Quest:BlockbusterQuest_2018_Landmark_Comet", + "objectives": [ + { + "name": "blockbusterquest_2018_landmark_comet", + "count": 1 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Landmark_Meteor", + "templateId": "Quest:BlockbusterQuest_2018_Landmark_Meteor", + "objectives": [ + { + "name": "blockbusterquest_2018_landmark_meteor", + "count": 1 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Landmark_Suit", + "templateId": "Quest:BlockbusterQuest_2018_Landmark_Suit", + "objectives": [ + { + "name": "blockbusterquest_2018_landmark_suit", + "count": 1 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_OpenCaches_Repeatable", + "templateId": "Quest:BlockbusterQuest_2018_OpenCaches_Repeatable", + "objectives": [ + { + "name": "open_caches", + "count": 10 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Barrels", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Barrels", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_barrels", + "count": 5 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Bees", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Bees", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_bees", + "count": 15 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Broadcasts", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Broadcasts", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_broadcasts", + "count": 10 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_CarbonDating", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_CarbonDating", + "objectives": [ + { + "name": "BlockbusterQuest_2018_Reactive_CarbonDating", + "count": 1 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_ChromeHuskData", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_ChromeHuskData", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_chromehuskdata", + "count": 5 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Clocks", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Clocks", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_clocks", + "count": 4 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_CometShards", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_CometShards", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_cometshards", + "count": 11 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Consoles", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Consoles", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_consoles", + "count": 6 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Cows", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Cows", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_cows", + "count": 5 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_DeployCBots", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_DeployCBots", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_deploycbots", + "count": 7 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Earthquakes", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Earthquakes", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_earthquakes", + "count": 5 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Fans", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Fans", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_fans", + "count": 5 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Flyers", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Flyers", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_flyers", + "count": 11 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_JulyFourth", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_JulyFourth", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_julyfourth", + "count": 11 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Magnets", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Magnets", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_magnets", + "count": 4 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Mailboxes", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Mailboxes", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_mailboxes", + "count": 5 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Mattresses", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Mattresses", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_mattresses", + "count": 15 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Mayhem", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Mayhem", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_mayhem", + "count": 8 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_PortaPottys", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_PortaPottys", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_portapottys", + "count": 5 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_RaySignal", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_RaySignal", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_raysignal", + "count": 4 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Rescue", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Rescue", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_rescue", + "count": 1 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Restaurant", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Restaurant", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_restaurant", + "count": 1 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_RetrieveCBots", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_RetrieveCBots", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_retrievecbots", + "count": 5 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Rubber", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Rubber", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_rubber", + "count": 10 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Scanners", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Scanners", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_scanners", + "count": 5 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_ShielderData", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_ShielderData", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_shielderdata", + "count": 7 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Tankers", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Tankers", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_tankers", + "count": 5 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Tombstones", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Tombstones", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_tombstones", + "count": 5 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Toys", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Toys", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_toys", + "count": 6 + } + ] + }, + { + "itemGuid": "S4-Quest:BlockbusterQuest_2018_Reactive_Trodes", + "templateId": "Quest:BlockbusterQuest_2018_Reactive_Trodes", + "objectives": [ + { + "name": "blockbusterquest_2018_reactive_trodes", + "count": 5 + } + ] + } + ] + }, + "Season5": { + "Quests": [ + { + "itemGuid": "S5-Quest:AnniversaryQuest_2018_Complete_Cake_Repeatable", + "templateId": "Quest:AnniversaryQuest_2018_Complete_Cake_Repeatable", + "objectives": [ + { + "name": "anniversaryquest_2018_complete_cake_repeatable", + "count": 5 + } + ] + }, + { + "itemGuid": "S5-Quest:AnniversaryQuest_2018_Kill_Cake_Sploders", + "templateId": "Quest:AnniversaryQuest_2018_Kill_Cake_Sploders", + "objectives": [ + { + "name": "kill_husk_sploder", + "count": 50 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_BuildBase", + "templateId": "Quest:HordeQuest_BuildBase", + "objectives": [ + { + "name": "hordequest_buildbase", + "count": 10 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_0", + "templateId": "Quest:HordeQuest_Hidden_0", + "objectives": [ + { + "name": "questcomplete_outpostquest_t1_l4", + "count": 1 + }, + { + "name": "questcomplete_hordequest_progression_stonewood_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_1", + "templateId": "Quest:HordeQuest_Hidden_1", + "objectives": [ + { + "name": "questcomplete_outpostquest_t2_l1", + "count": 1 + }, + { + "name": "questcomplete_hordequest_progression_stonewood_4", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_2", + "templateId": "Quest:HordeQuest_Hidden_2", + "objectives": [ + { + "name": "questcomplete_outpostquest_t2_l2", + "count": 1 + }, + { + "name": "questcomplete_hordequest_progression_plankerton_2", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_3", + "templateId": "Quest:HordeQuest_Hidden_3", + "objectives": [ + { + "name": "questcomplete_outpostquest_t2_l4", + "count": 1 + }, + { + "name": "questcomplete_hordequest_progression_plankerton_4", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_4", + "templateId": "Quest:HordeQuest_Hidden_4", + "objectives": [ + { + "name": "questcomplete_outpostquest_t3_l1", + "count": 1 + }, + { + "name": "questcomplete_hordequest_progression_plankerton_5", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_5", + "templateId": "Quest:HordeQuest_Hidden_5", + "objectives": [ + { + "name": "questcomplete_outpostquest_t3_l2", + "count": 1 + }, + { + "name": "questcomplete_hordequest_progression_canny_2", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_6", + "templateId": "Quest:HordeQuest_Hidden_6", + "objectives": [ + { + "name": "questcomplete_outpostquest_t3_l4", + "count": 1 + }, + { + "name": "questcomplete_hordequest_progression_canny_4", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_7", + "templateId": "Quest:HordeQuest_Hidden_7", + "objectives": [ + { + "name": "questcomplete_outpostquest_t4_l1", + "count": 1 + }, + { + "name": "questcomplete_hordequest_progression_canny_5", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_Weekly1", + "templateId": "Quest:HordeQuest_Hidden_Weekly1", + "objectives": [ + { + "name": "questcomplete_outpostquest_t1_l3", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_Weekly2", + "templateId": "Quest:HordeQuest_Hidden_Weekly2", + "objectives": [ + { + "name": "questcomplete_outpostquest_t1_l3", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_Weekly3", + "templateId": "Quest:HordeQuest_Hidden_Weekly3", + "objectives": [ + { + "name": "questcomplete_outpostquest_t1_l3", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_Weekly4", + "templateId": "Quest:HordeQuest_Hidden_Weekly4", + "objectives": [ + { + "name": "questcomplete_outpostquest_t1_l3", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_Weekly5", + "templateId": "Quest:HordeQuest_Hidden_Weekly5", + "objectives": [ + { + "name": "questcomplete_outpostquest_t1_l3", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_Weekly6", + "templateId": "Quest:HordeQuest_Hidden_Weekly6", + "objectives": [ + { + "name": "questcomplete_outpostquest_t1_l3", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Hidden_Weekly7", + "templateId": "Quest:HordeQuest_Hidden_Weekly7", + "objectives": [ + { + "name": "questcomplete_outpostquest_t1_l3", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_HordeUnlock", + "templateId": "Quest:HordeQuest_HordeUnlock", + "objectives": [ + { + "name": "unlock_skill_tree_horde", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Canny_1", + "templateId": "Quest:HordeQuest_Progression_Canny_1", + "objectives": [ + { + "name": "hordequest_progression_canny_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Canny_2", + "templateId": "Quest:HordeQuest_Progression_Canny_2", + "objectives": [ + { + "name": "hordequest_progression_canny_2", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Canny_3", + "templateId": "Quest:HordeQuest_Progression_Canny_3", + "objectives": [ + { + "name": "hordequest_progression_canny_3", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Canny_4", + "templateId": "Quest:HordeQuest_Progression_Canny_4", + "objectives": [ + { + "name": "hordequest_progression_canny_4", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Canny_5", + "templateId": "Quest:HordeQuest_Progression_Canny_5", + "objectives": [ + { + "name": "hordequest_progression_canny_5", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Canny_5_Repeatable", + "templateId": "Quest:HordeQuest_Progression_Canny_5_Repeatable", + "objectives": [ + { + "name": "hordequest_progression_canny_5_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Plankerton_1", + "templateId": "Quest:HordeQuest_Progression_Plankerton_1", + "objectives": [ + { + "name": "hordequest_progression_plankerton_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Plankerton_2", + "templateId": "Quest:HordeQuest_Progression_Plankerton_2", + "objectives": [ + { + "name": "hordequest_progression_plankerton_2", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Plankerton_3", + "templateId": "Quest:HordeQuest_Progression_Plankerton_3", + "objectives": [ + { + "name": "hordequest_progression_plankerton_3", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Plankerton_4", + "templateId": "Quest:HordeQuest_Progression_Plankerton_4", + "objectives": [ + { + "name": "hordequest_progression_plankerton_4", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Plankerton_5", + "templateId": "Quest:HordeQuest_Progression_Plankerton_5", + "objectives": [ + { + "name": "hordequest_progression_plankerton_5", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Plankerton_5_Repeatable", + "templateId": "Quest:HordeQuest_Progression_Plankerton_5_Repeatable", + "objectives": [ + { + "name": "hordequest_progression_plankerton_5_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Stonewood_1", + "templateId": "Quest:HordeQuest_Progression_Stonewood_1", + "objectives": [ + { + "name": "hordequest_progression_stonewood_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Stonewood_2", + "templateId": "Quest:HordeQuest_Progression_Stonewood_2", + "objectives": [ + { + "name": "hordequest_progression_stonewood_2", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Stonewood_3", + "templateId": "Quest:HordeQuest_Progression_Stonewood_3", + "objectives": [ + { + "name": "hordequest_progression_stonewood_3", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Stonewood_4", + "templateId": "Quest:HordeQuest_Progression_Stonewood_4", + "objectives": [ + { + "name": "hordequest_progression_stonewood_4", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Stonewood_4_Repeatable", + "templateId": "Quest:HordeQuest_Progression_Stonewood_4_Repeatable", + "objectives": [ + { + "name": "hordequest_progression_stonewood_4_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_1", + "templateId": "Quest:HordeQuest_Progression_Twine_1", + "objectives": [ + { + "name": "hordequest_progression_twine_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_10", + "templateId": "Quest:HordeQuest_Progression_Twine_10", + "objectives": [ + { + "name": "hordequest_progression_twine_10", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_11", + "templateId": "Quest:HordeQuest_Progression_Twine_11", + "objectives": [ + { + "name": "hordequest_progression_twine_11", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_12", + "templateId": "Quest:HordeQuest_Progression_Twine_12", + "objectives": [ + { + "name": "hordequest_progression_twine_12", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_13", + "templateId": "Quest:HordeQuest_Progression_Twine_13", + "objectives": [ + { + "name": "hordequest_progression_twine_13", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_14", + "templateId": "Quest:HordeQuest_Progression_Twine_14", + "objectives": [ + { + "name": "hordequest_progression_twine_14", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_2", + "templateId": "Quest:HordeQuest_Progression_Twine_2", + "objectives": [ + { + "name": "hordequest_progression_twine_2", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_3", + "templateId": "Quest:HordeQuest_Progression_Twine_3", + "objectives": [ + { + "name": "hordequest_progression_twine_3", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_4", + "templateId": "Quest:HordeQuest_Progression_Twine_4", + "objectives": [ + { + "name": "hordequest_progression_twine_4", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_5", + "templateId": "Quest:HordeQuest_Progression_Twine_5", + "objectives": [ + { + "name": "hordequest_progression_twine_5", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_5_Repeatable", + "templateId": "Quest:HordeQuest_Progression_Twine_5_Repeatable", + "objectives": [ + { + "name": "hordequest_progression_twine_5_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_6", + "templateId": "Quest:HordeQuest_Progression_Twine_6", + "objectives": [ + { + "name": "hordequest_progression_twine_6", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_7", + "templateId": "Quest:HordeQuest_Progression_Twine_7", + "objectives": [ + { + "name": "hordequest_progression_twine_7", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_8", + "templateId": "Quest:HordeQuest_Progression_Twine_8", + "objectives": [ + { + "name": "hordequest_progression_twine_8", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Progression_Twine_9", + "templateId": "Quest:HordeQuest_Progression_Twine_9", + "objectives": [ + { + "name": "hordequest_progression_twine_9", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly1_Canny1", + "templateId": "Quest:HordeQuest_Weekly1_Canny1", + "objectives": [ + { + "name": "hordequest_weekly1_canny_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly1_Canny1_repeatable", + "templateId": "Quest:HordeQuest_Weekly1_Canny1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly1_canny_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly1_Plankerton1", + "templateId": "Quest:HordeQuest_Weekly1_Plankerton1", + "objectives": [ + { + "name": "hordequest_weekly1_plankerton_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly1_Plankerton1_repeatable", + "templateId": "Quest:HordeQuest_Weekly1_Plankerton1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly1_plankerton_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly1_Stonewood1", + "templateId": "Quest:HordeQuest_Weekly1_Stonewood1", + "objectives": [ + { + "name": "hordequest_weekly1_stonewood_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly1_Stonewood1_repeatable", + "templateId": "Quest:HordeQuest_Weekly1_Stonewood1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly1_stonewood_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly1_Twine1", + "templateId": "Quest:HordeQuest_Weekly1_Twine1", + "objectives": [ + { + "name": "hordequest_weekly1_twine_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly1_Twine1_repeatable", + "templateId": "Quest:HordeQuest_Weekly1_Twine1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly1_twine_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly2_Canny1", + "templateId": "Quest:HordeQuest_Weekly2_Canny1", + "objectives": [ + { + "name": "hordequest_weekly2_canny_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly2_Canny1_repeatable", + "templateId": "Quest:HordeQuest_Weekly2_Canny1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly2_canny_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly2_Plankerton1", + "templateId": "Quest:HordeQuest_Weekly2_Plankerton1", + "objectives": [ + { + "name": "hordequest_weekly2_plankerton_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly2_Plankerton1_repeatable", + "templateId": "Quest:HordeQuest_Weekly2_Plankerton1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly2_plankerton_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly2_Stonewood1", + "templateId": "Quest:HordeQuest_Weekly2_Stonewood1", + "objectives": [ + { + "name": "hordequest_weekly2_stonewood_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly2_Stonewood1_repeatable", + "templateId": "Quest:HordeQuest_Weekly2_Stonewood1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly1_stonewood_2_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly2_Twine1", + "templateId": "Quest:HordeQuest_Weekly2_Twine1", + "objectives": [ + { + "name": "hordequest_weekly2_twine_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly2_Twine1_repeatable", + "templateId": "Quest:HordeQuest_Weekly2_Twine1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly2_twine_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly3_Canny1", + "templateId": "Quest:HordeQuest_Weekly3_Canny1", + "objectives": [ + { + "name": "hordequest_weekly3_canny_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly3_Canny1_repeatable", + "templateId": "Quest:HordeQuest_Weekly3_Canny1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly3_canny_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly3_Plankerton1", + "templateId": "Quest:HordeQuest_Weekly3_Plankerton1", + "objectives": [ + { + "name": "hordequest_weekly3_plankerton_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly3_Plankerton1_repeatable", + "templateId": "Quest:HordeQuest_Weekly3_Plankerton1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly3_plankerton_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly3_Stonewood1", + "templateId": "Quest:HordeQuest_Weekly3_Stonewood1", + "objectives": [ + { + "name": "hordequest_weekly3_stonewood_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly3_Stonewood1_repeatable", + "templateId": "Quest:HordeQuest_Weekly3_Stonewood1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly3_stonewood_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly3_Twine1", + "templateId": "Quest:HordeQuest_Weekly3_Twine1", + "objectives": [ + { + "name": "hordequest_weekly3_twine_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly3_Twine1_repeatable", + "templateId": "Quest:HordeQuest_Weekly3_Twine1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly3_twine_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly4_Canny1", + "templateId": "Quest:HordeQuest_Weekly4_Canny1", + "objectives": [ + { + "name": "hordequest_weekly4_canny_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly4_Canny1_repeatable", + "templateId": "Quest:HordeQuest_Weekly4_Canny1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly4_canny_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly4_Plankerton1", + "templateId": "Quest:HordeQuest_Weekly4_Plankerton1", + "objectives": [ + { + "name": "hordequest_weekly4_plankerton_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly4_Plankerton1_repeatable", + "templateId": "Quest:HordeQuest_Weekly4_Plankerton1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly4_plankerton_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly4_Stonewood1", + "templateId": "Quest:HordeQuest_Weekly4_Stonewood1", + "objectives": [ + { + "name": "hordequest_weekly4_stonewood_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly4_Stonewood1_repeatable", + "templateId": "Quest:HordeQuest_Weekly4_Stonewood1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly4_stonewood_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly4_Twine1", + "templateId": "Quest:HordeQuest_Weekly4_Twine1", + "objectives": [ + { + "name": "hordequest_weekly4_twine_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly4_Twine1_repeatable", + "templateId": "Quest:HordeQuest_Weekly4_Twine1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly4_twine_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly5_Canny1", + "templateId": "Quest:HordeQuest_Weekly5_Canny1", + "objectives": [ + { + "name": "hordequest_weekly5_canny_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly5_Canny1_repeatable", + "templateId": "Quest:HordeQuest_Weekly5_Canny1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly5_canny_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly5_Plankerton1", + "templateId": "Quest:HordeQuest_Weekly5_Plankerton1", + "objectives": [ + { + "name": "hordequest_weekly5_plankerton_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly5_Plankerton1_repeatable", + "templateId": "Quest:HordeQuest_Weekly5_Plankerton1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly5_plankerton_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly5_Stonewood1", + "templateId": "Quest:HordeQuest_Weekly5_Stonewood1", + "objectives": [ + { + "name": "hordequest_weekly5_stonewood_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly5_Stonewood1_repeatable", + "templateId": "Quest:HordeQuest_Weekly5_Stonewood1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly5_stonewood_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly5_Twine1", + "templateId": "Quest:HordeQuest_Weekly5_Twine1", + "objectives": [ + { + "name": "hordequest_weekly5_twine_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly5_Twine1_repeatable", + "templateId": "Quest:HordeQuest_Weekly5_Twine1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly5_twine_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly6_Canny1", + "templateId": "Quest:HordeQuest_Weekly6_Canny1", + "objectives": [ + { + "name": "hordequest_weekly6_canny_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly6_Canny1_repeatable", + "templateId": "Quest:HordeQuest_Weekly6_Canny1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly6_canny_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly6_Plankerton1", + "templateId": "Quest:HordeQuest_Weekly6_Plankerton1", + "objectives": [ + { + "name": "hordequest_weekly6_plankerton_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly6_Plankerton1_repeatable", + "templateId": "Quest:HordeQuest_Weekly6_Plankerton1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly6_plankerton_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly6_Stonewood1", + "templateId": "Quest:HordeQuest_Weekly6_Stonewood1", + "objectives": [ + { + "name": "hordequest_weekly6_stonewood_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly6_Stonewood1_repeatable", + "templateId": "Quest:HordeQuest_Weekly6_Stonewood1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly6_stonewood_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly6_Twine1", + "templateId": "Quest:HordeQuest_Weekly6_Twine1", + "objectives": [ + { + "name": "hordequest_weekly6_twine_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly6_Twine1_repeatable", + "templateId": "Quest:HordeQuest_Weekly6_Twine1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly6_twine_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly7_Canny1", + "templateId": "Quest:HordeQuest_Weekly7_Canny1", + "objectives": [ + { + "name": "hordequest_weekly7_canny_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly7_Canny1_repeatable", + "templateId": "Quest:HordeQuest_Weekly7_Canny1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly7_canny_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly7_Plankerton1", + "templateId": "Quest:HordeQuest_Weekly7_Plankerton1", + "objectives": [ + { + "name": "hordequest_weekly7_plankerton_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly7_Plankerton1_repeatable", + "templateId": "Quest:HordeQuest_Weekly7_Plankerton1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly7_plankerton_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly7_Stonewood1", + "templateId": "Quest:HordeQuest_Weekly7_Stonewood1", + "objectives": [ + { + "name": "hordequest_weekly7_stonewood_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly7_Stonewood1_repeatable", + "templateId": "Quest:HordeQuest_Weekly7_Stonewood1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly7_stonewood_1_repeatable", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly7_Twine1", + "templateId": "Quest:HordeQuest_Weekly7_Twine1", + "objectives": [ + { + "name": "hordequest_weekly7_twine_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S5-Quest:HordeQuest_Weekly7_Twine1_repeatable", + "templateId": "Quest:HordeQuest_Weekly7_Twine1_repeatable", + "objectives": [ + { + "name": "hordequest_weekly7_twine_1_repeatable", + "count": 1 + } + ] + } + ] + }, + "Season6": { + "Quests": [ + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_1", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_1", + "objectives": [ + { + "name": "halloween_completemissions_1", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_10", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_10", + "objectives": [ + { + "name": "halloween_completemissions_10", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_11", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_11", + "objectives": [ + { + "name": "halloween_completemissions_11", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_12", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_12", + "objectives": [ + { + "name": "halloween_completemissions_12", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_13", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_13", + "objectives": [ + { + "name": "halloween_completemissions_13", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_14", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_14", + "objectives": [ + { + "name": "halloween_completemissions_14", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_2", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_2", + "objectives": [ + { + "name": "halloween_completemissions_2", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_3", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_3", + "objectives": [ + { + "name": "halloween_completemissions_3", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_4", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_4", + "objectives": [ + { + "name": "halloween_completemissions_4", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_5", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_5", + "objectives": [ + { + "name": "halloween_completemissions_5", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_6", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_6", + "objectives": [ + { + "name": "halloween_completemissions_6", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_7", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_7", + "objectives": [ + { + "name": "halloween_completemissions_7", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_8", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_8", + "objectives": [ + { + "name": "halloween_completemissions_8", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_CompleteMissions_9", + "templateId": "Quest:HalloweenQuest_2017_CompleteMissions_9", + "objectives": [ + { + "name": "halloween_completemissions_9", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_EpicHeroes", + "templateId": "Quest:HalloweenQuest_2017_EpicHeroes", + "objectives": [ + { + "name": "questcomplete_reactivequest_gathercollect_halloween_1", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_Hidden_1", + "templateId": "Quest:HalloweenQuest_2017_Hidden_1", + "objectives": [ + { + "name": "questcomplete_reactivequest_halloween_destroy_1", + "count": 1 + }, + { + "name": "questcomplete_reactivequest_halloween_destroy_2", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_Hidden_2", + "templateId": "Quest:HalloweenQuest_2017_Hidden_2", + "objectives": [ + { + "name": "questcomplete_reactivequest_halloween_destroy_3", + "count": 1 + }, + { + "name": "questcomplete_reactivequest_halloween_destroy_4", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_Hidden_3", + "templateId": "Quest:HalloweenQuest_2017_Hidden_3", + "objectives": [ + { + "name": "questcomplete_reactivequest_halloween_destroy_5", + "count": 1 + }, + { + "name": "questcomplete_reactivequest_halloween_destroy_6", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_Hidden_4", + "templateId": "Quest:HalloweenQuest_2017_Hidden_4", + "objectives": [ + { + "name": "questcomplete_reactivequest_halloween_destroy_7", + "count": 1 + }, + { + "name": "questcomplete_reactivequest_halloween_destroy_8", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_Hidden_5", + "templateId": "Quest:HalloweenQuest_2017_Hidden_5", + "objectives": [ + { + "name": "questcomplete_reactivequest_halloween_destroy_9", + "count": 1 + }, + { + "name": "questcomplete_reactivequest_halloween_destroy_10", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_Hidden_6", + "templateId": "Quest:HalloweenQuest_2017_Hidden_6", + "objectives": [ + { + "name": "questcomplete_reactivequest_findcastles", + "count": 1 + }, + { + "name": "questcomplete_reactivequest_findcatacombs", + "count": 1 + }, + { + "name": "questcomplete_reactivequest_findmansions", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_KillMistMonsters", + "templateId": "Quest:HalloweenQuest_2017_KillMistMonsters", + "objectives": [ + { + "name": "kill_mist_monster_halloween_outlander", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_KillPumpkinHusks", + "templateId": "Quest:HalloweenQuest_2017_KillPumpkinHusks", + "objectives": [ + { + "name": "kill_husk_pumpkinhead", + "count": 300 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_LegendaryHeroes", + "templateId": "Quest:HalloweenQuest_2017_LegendaryHeroes", + "objectives": [ + { + "name": "questcomplete_reactivequest_halloween_fetch_5", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_Opener", + "templateId": "Quest:HalloweenQuest_2017_Opener", + "objectives": [ + { + "name": "complete_trv_landmark", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_TrainHero", + "templateId": "Quest:HalloweenQuest_2017_TrainHero", + "objectives": [ + { + "name": "upgrade_halloween_outlander", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_2017_TtS_Intro", + "templateId": "Quest:HalloweenQuest_2017_TtS_Intro", + "objectives": [ + { + "name": "complete_trv_trapthestorm", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_CannyValleyMissions", + "templateId": "Quest:HalloweenQuest_CannyValleyMissions", + "objectives": [ + { + "name": "complete_pve03_diff3", + "count": 5 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_ClearHuskEncampments", + "templateId": "Quest:HalloweenQuest_ClearHuskEncampments", + "objectives": [ + { + "name": "complete_encampment_1_diff4", + "count": 6 + }, + { + "name": "complete_pve01_diff4", + "count": 2 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_CollectPumpkinHeads", + "templateId": "Quest:HalloweenQuest_CollectPumpkinHeads", + "objectives": [ + { + "name": "quest_reactive_pumpkinhead", + "count": 10 + }, + { + "name": "complete_pve01_diff2", + "count": 2 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_CraftPumpkinLauncher", + "templateId": "Quest:HalloweenQuest_CraftPumpkinLauncher", + "objectives": [ + { + "name": "craft_pumpkin_launcher", + "count": 1 + }, + { + "name": "kill_husk_lobber_pumplauncher", + "count": 6 + }, + { + "name": "complete_pve01_diff5", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_FindGravestones", + "templateId": "Quest:HalloweenQuest_FindGravestones", + "objectives": [ + { + "name": "quest_reactive_gravestone", + "count": 1 + }, + { + "name": "complete_pve01", + "count": 3 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_KillPumpkinHusks", + "templateId": "Quest:HalloweenQuest_KillPumpkinHusks", + "objectives": [ + { + "name": "kill_husk_pumpkinhead", + "count": 20 + }, + { + "name": "complete_pve01_diff1", + "count": 2 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_KillVlad", + "templateId": "Quest:HalloweenQuest_KillVlad", + "objectives": [ + { + "name": "kill_miniboss_vlad", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_PlankertonMissions", + "templateId": "Quest:HalloweenQuest_PlankertonMissions", + "objectives": [ + { + "name": "complete_pve02_diff3", + "count": 5 + } + ] + }, + { + "itemGuid": "S6-Quest:HalloweenQuest_SaveSurvivors", + "templateId": "Quest:HalloweenQuest_SaveSurvivors", + "objectives": [ + { + "name": "questcollect_survivoritemdata", + "count": 15 + }, + { + "name": "complete_pve01_diff3", + "count": 3 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_GatherCollect_Halloween_1", + "templateId": "Quest:ReactiveQuest_GatherCollect_Halloween_1", + "objectives": [ + { + "name": "quest_reactive_gather_halloween_1", + "count": 20 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_GatherCollect_Halloween_2", + "templateId": "Quest:ReactiveQuest_GatherCollect_Halloween_2", + "objectives": [ + { + "name": "quest_reactive_gather_halloween_2", + "count": 25 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_GatherCollect_Halloween_3", + "templateId": "Quest:ReactiveQuest_GatherCollect_Halloween_3", + "objectives": [ + { + "name": "quest_reactive_gather_halloween_3", + "count": 13 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_GatherCollect_Halloween_4", + "templateId": "Quest:ReactiveQuest_GatherCollect_Halloween_4", + "objectives": [ + { + "name": "quest_reactive_gather_halloween_4", + "count": 12 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_GatherCollect_Halloween_5", + "templateId": "Quest:ReactiveQuest_GatherCollect_Halloween_5", + "objectives": [ + { + "name": "quest_reactive_gather_halloween_5", + "count": 30 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_GatherCollect_Halloween_6", + "templateId": "Quest:ReactiveQuest_GatherCollect_Halloween_6", + "objectives": [ + { + "name": "quest_reactive_gather_halloween_6", + "count": 10 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Destroy_1", + "templateId": "Quest:ReactiveQuest_Halloween_Destroy_1", + "objectives": [ + { + "name": "quest_reactive_destroy_halloween_1", + "count": 8 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Destroy_10", + "templateId": "Quest:ReactiveQuest_Halloween_Destroy_10", + "objectives": [ + { + "name": "quest_reactive_destroy_halloween_10", + "count": 6 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Destroy_2", + "templateId": "Quest:ReactiveQuest_Halloween_Destroy_2", + "objectives": [ + { + "name": "quest_reactive_destroy_halloween_2", + "count": 10 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Destroy_3", + "templateId": "Quest:ReactiveQuest_Halloween_Destroy_3", + "objectives": [ + { + "name": "quest_reactive_destroy_halloween_3", + "count": 10 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Destroy_4", + "templateId": "Quest:ReactiveQuest_Halloween_Destroy_4", + "objectives": [ + { + "name": "quest_reactive_destroy_halloween_4", + "count": 4 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Destroy_5", + "templateId": "Quest:ReactiveQuest_Halloween_Destroy_5", + "objectives": [ + { + "name": "quest_reactive_destroy_halloween_5", + "count": 12 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Destroy_6", + "templateId": "Quest:ReactiveQuest_Halloween_Destroy_6", + "objectives": [ + { + "name": "quest_reactive_destroy_halloween_6", + "count": 12 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Destroy_7", + "templateId": "Quest:ReactiveQuest_Halloween_Destroy_7", + "objectives": [ + { + "name": "quest_reactive_destroy_halloween_7", + "count": 8 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Destroy_8", + "templateId": "Quest:ReactiveQuest_Halloween_Destroy_8", + "objectives": [ + { + "name": "quest_reactive_destroy_halloween_8", + "count": 10 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Destroy_9", + "templateId": "Quest:ReactiveQuest_Halloween_Destroy_9", + "objectives": [ + { + "name": "quest_reactive_destroy_halloween_9", + "count": 24 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Fetch_1", + "templateId": "Quest:ReactiveQuest_Halloween_Fetch_1", + "objectives": [ + { + "name": "quest_reactive_fetch_halloween_1", + "count": 15 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Fetch_2", + "templateId": "Quest:ReactiveQuest_Halloween_Fetch_2", + "objectives": [ + { + "name": "quest_reactive_fetch_halloween_2", + "count": 10 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Fetch_3", + "templateId": "Quest:ReactiveQuest_Halloween_Fetch_3", + "objectives": [ + { + "name": "quest_reactive_fetch_halloween_3", + "count": 6 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Fetch_4", + "templateId": "Quest:ReactiveQuest_Halloween_Fetch_4", + "objectives": [ + { + "name": "quest_reactive_fetch_halloween_4", + "count": 5 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Fetch_5", + "templateId": "Quest:ReactiveQuest_Halloween_Fetch_5", + "objectives": [ + { + "name": "quest_reactive_fetch_halloween_5", + "count": 15 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Fetch_6", + "templateId": "Quest:ReactiveQuest_Halloween_Fetch_6", + "objectives": [ + { + "name": "quest_reactive_fetch_halloween_6", + "count": 1 + }, + { + "name": "quest_reactive_fetch_halloween_8", + "count": 1 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_Fetch_7", + "templateId": "Quest:ReactiveQuest_Halloween_Fetch_7", + "objectives": [ + { + "name": "quest_reactive_fetch_halloween_7", + "count": 5 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_KillCollect_PumpkinHusks", + "templateId": "Quest:ReactiveQuest_Halloween_KillCollect_PumpkinHusks", + "objectives": [ + { + "name": "quest_reactive_killpumpkinhusk_halloween", + "count": 40 + } + ] + }, + { + "itemGuid": "S6-Quest:ReactiveQuest_Halloween_KillCollect_Taker", + "templateId": "Quest:ReactiveQuest_Halloween_KillCollect_Taker", + "objectives": [ + { + "name": "quest_reactive_killtaker_halloween", + "count": 15 + } + ] + } + ] + }, + "Season7": { + "Quests": [ + { + "itemGuid": "S7-Quest:WinterQuest_2018_CompleteMissionAlerts", + "templateId": "Quest:WinterQuest_2018_CompleteMissionAlerts", + "objectives": [ + { + "name": "winterquest_2018_completemissionalerts", + "count": 2 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_EndgameWave30_Completion", + "templateId": "Quest:WinterQuest_2018_EndgameWave30_Completion", + "objectives": [ + { + "name": "winterquest_2018_endgamecompletewave30", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Collect_BluGlo", + "templateId": "Quest:WinterQuest_2018_Frostnite_Collect_BluGlo", + "objectives": [ + { + "name": "winterquest_2018_frostnite_fill_heater", + "count": 200 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Collect_Treasure", + "templateId": "Quest:WinterQuest_2018_Frostnite_Collect_Treasure", + "objectives": [ + { + "name": "winterquest_2018_frostnite_interact_treasure", + "count": 40 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_CraftTraps", + "templateId": "Quest:WinterQuest_2018_Frostnite_CraftTraps", + "objectives": [ + { + "name": "winterquest_2018_frostnite_craft_traps_rareplus", + "count": 50 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Exploration", + "templateId": "Quest:WinterQuest_2018_Frostnite_Exploration", + "objectives": [ + { + "name": "winterquest_2018_frostnite_explorezone", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_15m", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_15m", + "objectives": [ + { + "name": "winterquest_2018_frostnite_survive_15m", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_30m", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_30m", + "objectives": [ + { + "name": "WinterQuest_2018_Frostnite_Survive_30m", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_45m", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_45m", + "objectives": [ + { + "name": "winterquest_2018_frostnite_survive_45m", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week1_Major", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week1_Major", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_01_major", + "count": 3 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week1_Minor", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week1_Minor", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_01_minor", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week2_Major", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week2_Major", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_02_major", + "count": 3 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week2_Minor", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week2_Minor", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_02_minor", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week3_Major", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week3_Major", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_03_major", + "count": 3 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week3_Minor", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week3_Minor", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_03_minor", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week4_Major", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week4_Major", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_04_major", + "count": 3 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week4_Minor", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week4_Minor", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_04_minor", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week5_Major", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week5_Major", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_05_major", + "count": 3 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week5_Minor", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week5_Minor", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_05_minor", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week6_Major", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week6_Major", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_06_major", + "count": 3 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week6_Minor", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week6_Minor", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_06_minor", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week7_Major", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week7_Major", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_07_major", + "count": 3 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week7_Minor", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week7_Minor", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_07_minor", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week8_Major", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week8_Major", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_08_major", + "count": 3 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week8_Minor", + "templateId": "Quest:WinterQuest_2018_Frostnite_Survive_Challenge_Week8_Minor", + "objectives": [ + { + "name": "winterquest_2018_frostnite_challenge_08_minor", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Hidden_1", + "templateId": "Quest:WinterQuest_2018_Hidden_1", + "objectives": [ + { + "name": "questcomplete_winterquest_2018_reactive_fetch_packingpresents", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Hidden_2", + "templateId": "Quest:WinterQuest_2018_Hidden_2", + "objectives": [ + { + "name": "questcomplete_winterquest_2018_reactive_gather_trees", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Hidden_3", + "templateId": "Quest:WinterQuest_2018_Hidden_3", + "objectives": [ + { + "name": "questcomplete_winterquest_2018_reactive_fetch_decorations", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Hidden_4", + "templateId": "Quest:WinterQuest_2018_Hidden_4", + "objectives": [ + { + "name": "questcomplete_winterquest_2018_reactive_fetch_deploytrees", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Hidden_5", + "templateId": "Quest:WinterQuest_2018_Hidden_5", + "objectives": [ + { + "name": "questcomplete_winterquest_2018_reactive_gather_fridges", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Hidden_6", + "templateId": "Quest:WinterQuest_2018_Hidden_6", + "objectives": [ + { + "name": "questcomplete_winterquest_2018_reactive_fetch_collectpresent", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Hidden_7", + "templateId": "Quest:WinterQuest_2018_Hidden_7", + "objectives": [ + { + "name": "questcomplete_winterquest_2018_reactive_frozentroll", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_KillCoalLobbers", + "templateId": "Quest:WinterQuest_2018_KillCoalLobbers", + "objectives": [ + { + "name": "winterquest_2018_killcoallobbers", + "count": 8 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_KillEvilHelpers", + "templateId": "Quest:WinterQuest_2018_KillEvilHelpers", + "objectives": [ + { + "name": "winterquest_2018_killevilhelpers", + "count": 75 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_KillKrampus", + "templateId": "Quest:WinterQuest_2018_KillKrampus", + "objectives": [ + { + "name": "winterquest_2018_killkrampus", + "count": 5 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_KillLoneKrampus", + "templateId": "Quest:WinterQuest_2018_KillLoneKrampus", + "objectives": [ + { + "name": "kill_husk_lonekrampus", + "count": 20 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_KillMallSantas", + "templateId": "Quest:WinterQuest_2018_KillMallSantas", + "objectives": [ + { + "name": "winterquest_2018_killmallsantas", + "count": 15 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_KillMistMonsters", + "templateId": "Quest:WinterQuest_2018_KillMistMonsters", + "objectives": [ + { + "name": "kill_mist_monster_winter2018", + "count": 50 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Landmark_CelebrateNewYear", + "templateId": "Quest:WinterQuest_2018_Landmark_CelebrateNewYear", + "objectives": [ + { + "name": "winterquest_2018_landmark_celebratenewyear", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Reactive_Fetch_CollectPresent", + "templateId": "Quest:WinterQuest_2018_Reactive_Fetch_CollectPresent", + "objectives": [ + { + "name": "winterquest_2018_reactive_fetch_collectpresent", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Reactive_Fetch_Decorations", + "templateId": "Quest:WinterQuest_2018_Reactive_Fetch_Decorations", + "objectives": [ + { + "name": "winterquest_2018_reactive_fetch_decorations", + "count": 10 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Reactive_Fetch_DeployTrees", + "templateId": "Quest:WinterQuest_2018_Reactive_Fetch_DeployTrees", + "objectives": [ + { + "name": "winterquest_2018_reactive_fetch_deploytrees", + "count": 11 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Reactive_Fetch_PackingPresents", + "templateId": "Quest:WinterQuest_2018_Reactive_Fetch_PackingPresents", + "objectives": [ + { + "name": "winterquest_2018_reactive_fetch_packingpresents", + "count": 12 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Reactive_FrozenTroll", + "templateId": "Quest:WinterQuest_2018_Reactive_FrozenTroll", + "objectives": [ + { + "name": "winterquest_2018_reactive_frozentroll", + "count": 1 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Reactive_Gather_Fridges", + "templateId": "Quest:WinterQuest_2018_Reactive_Gather_Fridges", + "objectives": [ + { + "name": "winterquest_2018_reactive_gather_fridges", + "count": 12 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_Reactive_Gather_Trees", + "templateId": "Quest:WinterQuest_2018_Reactive_Gather_Trees", + "objectives": [ + { + "name": "winterquest_2018_reactive_gather_trees", + "count": 20 + } + ] + }, + { + "itemGuid": "S7-Quest:WinterQuest_2018_SaveSurvivors", + "templateId": "Quest:WinterQuest_2018_SaveSurvivors", + "objectives": [ + { + "name": "questcollect_survivoritemdata", + "count": 12 + } + ] + } + ] + }, + "Season8": { + "Quests": [ + { + "itemGuid": "S8-Quest:BetaStormQuest_CompleteBetaStorms_Repeatable", + "templateId": "Quest:BetaStormQuest_CompleteBetaStorms_Repeatable", + "objectives": [ + { + "name": "betastorms_complete_repeatable", + "count": 2 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_Fetch_Boxes", + "templateId": "Quest:LoveQuest_2019_Fetch_Boxes", + "objectives": [ + { + "name": "lovequest_2019_fetch_boxes", + "count": 7 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_Fetch_Chests", + "templateId": "Quest:LoveQuest_2019_Fetch_Chests", + "objectives": [ + { + "name": "lovequest_2019_fetch_chests", + "count": 5 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_Fetch_Decanters", + "templateId": "Quest:LoveQuest_2019_Fetch_Decanters", + "objectives": [ + { + "name": "lovequest_2019_fetch_decanters", + "count": 9 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_Fetch_Phones", + "templateId": "Quest:LoveQuest_2019_Fetch_Phones", + "objectives": [ + { + "name": "lovequest_2019_fetch_phones", + "count": 5 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_Fetch_Sensors", + "templateId": "Quest:LoveQuest_2019_Fetch_Sensors", + "objectives": [ + { + "name": "lovequest_2019_fetch_sensors", + "count": 7 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_Fetch_Teddys", + "templateId": "Quest:LoveQuest_2019_Fetch_Teddys", + "objectives": [ + { + "name": "lovequest_2019_fetch_teddys", + "count": 7 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_Fetch_Telescopes", + "templateId": "Quest:LoveQuest_2019_Fetch_Telescopes", + "objectives": [ + { + "name": "lovequest_2019_fetch_telescopes", + "count": 5 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_Fetch_VHS", + "templateId": "Quest:LoveQuest_2019_Fetch_VHS", + "objectives": [ + { + "name": "lovequest_2019_fetch_vhs", + "count": 5 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_GatherCollect_Containers", + "templateId": "Quest:LoveQuest_2019_GatherCollect_Containers", + "objectives": [ + { + "name": "lovequest_2019_gathercollect_containers", + "count": 30 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_GatherCollect_Mailboxes", + "templateId": "Quest:LoveQuest_2019_GatherCollect_Mailboxes", + "objectives": [ + { + "name": "lovequest_2019_gathercollect_mailboxes", + "count": 30 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_GatherCollect_Mushrooms", + "templateId": "Quest:LoveQuest_2019_GatherCollect_Mushrooms", + "objectives": [ + { + "name": "lovequest_2019_gathercollect_mushrooms", + "count": 30 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_GatherCollect_Newspapers", + "templateId": "Quest:LoveQuest_2019_GatherCollect_Newspapers", + "objectives": [ + { + "name": "lovequest_2019_gathercollect_newspapers", + "count": 30 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_GatherCollect_OfficeStuff", + "templateId": "Quest:LoveQuest_2019_GatherCollect_OfficeStuff", + "objectives": [ + { + "name": "lovequest_2019_gathercollect_officestuff", + "count": 30 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_KillCollect_LoveLobbers", + "templateId": "Quest:LoveQuest_2019_KillCollect_LoveLobbers", + "objectives": [ + { + "name": "lovequest_2019_killcollect_lovelobbers", + "count": 30 + } + ] + }, + { + "itemGuid": "S8-Quest:LoveQuest_2019_Landmark_Trebuchet", + "templateId": "Quest:LoveQuest_2019_Landmark_Trebuchet", + "objectives": [ + { + "name": "lovequest_2019_landmark_trebuchet", + "count": 1 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_Fetch_Banners", + "templateId": "Quest:PirateQuest_2019_Fetch_Banners", + "objectives": [ + { + "name": "piratequest_2019_fetch_banners", + "count": 5 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_Fetch_Bottles", + "templateId": "Quest:PirateQuest_2019_Fetch_Bottles", + "objectives": [ + { + "name": "piratequest_2019_fetch_bottles", + "count": 5 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_Fetch_Lighthouses", + "templateId": "Quest:PirateQuest_2019_Fetch_Lighthouses", + "objectives": [ + { + "name": "piratequest_2019_fetch_lighthouses", + "count": 7 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_Fetch_Mounds", + "templateId": "Quest:PirateQuest_2019_Fetch_Mounds", + "objectives": [ + { + "name": "piratequest_2019_fetch_mounds", + "count": 6 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_Fetch_SeeBots", + "templateId": "Quest:PirateQuest_2019_Fetch_SeeBots", + "objectives": [ + { + "name": "piratequest_2019_fetch_seebots", + "count": 6 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_Fetch_Shanties", + "templateId": "Quest:PirateQuest_2019_Fetch_Shanties", + "objectives": [ + { + "name": "piratequest_2019_fetch_shanties", + "count": 6 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_Fetch_Statues", + "templateId": "Quest:PirateQuest_2019_Fetch_Statues", + "objectives": [ + { + "name": "piratequest_2019_fetch_statues", + "count": 5 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_Fetch_Treasure", + "templateId": "Quest:PirateQuest_2019_Fetch_Treasure", + "objectives": [ + { + "name": "piratequest_2019_fetch_treasure", + "count": 1 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_GatherCollect_Chairs", + "templateId": "Quest:PirateQuest_2019_GatherCollect_Chairs", + "objectives": [ + { + "name": "piratequest_2019_gathercollect_chairs", + "count": 30 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_GatherCollect_GrillParts", + "templateId": "Quest:PirateQuest_2019_GatherCollect_GrillParts", + "objectives": [ + { + "name": "piratequest_2019_gathercollect_grillparts", + "count": 30 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_GatherCollect_Swings", + "templateId": "Quest:PirateQuest_2019_GatherCollect_Swings", + "objectives": [ + { + "name": "piratequest_2019_gathercollect_swings", + "count": 30 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_KillCollect_Melee", + "templateId": "Quest:PirateQuest_2019_KillCollect_Melee", + "objectives": [ + { + "name": "piratequest_2019_killcollect_melee", + "count": 10 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_KillCollect_MistMonsters", + "templateId": "Quest:PirateQuest_2019_KillCollect_MistMonsters", + "objectives": [ + { + "name": "piratequest_2019_killcollect_mistmonsters", + "count": 8 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_Landmark_Island", + "templateId": "Quest:PirateQuest_2019_Landmark_Island", + "objectives": [ + { + "name": "piratequest_2019_landmark_island", + "count": 1 + } + ] + }, + { + "itemGuid": "S8-Quest:PirateQuest_2019_Landmark_WalkThePlank", + "templateId": "Quest:PirateQuest_2019_Landmark_WalkThePlank", + "objectives": [ + { + "name": "piratequest_2019_landmark_walktheplank", + "count": 1 + } + ] + } + ] + }, + "Season9": { + "Quests": [ + { + "itemGuid": "S9-Quest:AnniversaryQuest_2019_Complete_Cake_Repeatable", + "templateId": "Quest:AnniversaryQuest_2019_Complete_Cake_Repeatable", + "objectives": [ + { + "name": "anniversaryquest_2019_complete_cake_repeatable", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:AnniversaryQuest_2019_Kill_Cake_Sploders", + "templateId": "Quest:AnniversaryQuest_2019_Kill_Cake_Sploders", + "objectives": [ + { + "name": "anniversaryquest_2019_kill_cake_sploders", + "count": 30 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Destroy_Quest_A6", + "templateId": "Quest:S9_Destroy_Quest_A6", + "objectives": [ + { + "name": "s9_destroy_quest_a6", + "count": 30 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_A1", + "templateId": "Quest:S9_Fetch_Quest_A1", + "objectives": [ + { + "name": "s9_fetch_quest_a1", + "count": 6 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_A11", + "templateId": "Quest:S9_Fetch_Quest_A11", + "objectives": [ + { + "name": "s9_fetch_quest_a11", + "count": 4 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_A13", + "templateId": "Quest:S9_Fetch_Quest_A13", + "objectives": [ + { + "name": "s9_fetch_quest_a13", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_A14", + "templateId": "Quest:S9_Fetch_Quest_A14", + "objectives": [ + { + "name": "s9_fetch_quest_a14", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_A2", + "templateId": "Quest:S9_Fetch_Quest_A2", + "objectives": [ + { + "name": "s9_fetch_quest_a2", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_A3", + "templateId": "Quest:S9_Fetch_Quest_A3", + "objectives": [ + { + "name": "s9_fetch_quest_a3", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_A7", + "templateId": "Quest:S9_Fetch_Quest_A7", + "objectives": [ + { + "name": "s9_fetch_quest_a7", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_A9", + "templateId": "Quest:S9_Fetch_Quest_A9", + "objectives": [ + { + "name": "s9_fetch_quest_a9", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_B1", + "templateId": "Quest:S9_Fetch_Quest_B1", + "objectives": [ + { + "name": "s9_fetch_quest_b1", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_B10", + "templateId": "Quest:S9_Fetch_Quest_B10", + "objectives": [ + { + "name": "s9_fetch_quest_b10", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_B11", + "templateId": "Quest:S9_Fetch_Quest_B11", + "objectives": [ + { + "name": "s9_fetch_quest_b11", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_B13", + "templateId": "Quest:S9_Fetch_Quest_B13", + "objectives": [ + { + "name": "s9_fetch_quest_b13", + "count": 7 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_B14", + "templateId": "Quest:S9_Fetch_Quest_B14", + "objectives": [ + { + "name": "s9_fetch_quest_b14", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_B15", + "templateId": "Quest:S9_Fetch_Quest_B15", + "objectives": [ + { + "name": "s9_fetch_quest_b15", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_B3", + "templateId": "Quest:S9_Fetch_Quest_B3", + "objectives": [ + { + "name": "s9_fetch_quest_b3", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_B6", + "templateId": "Quest:S9_Fetch_Quest_B6", + "objectives": [ + { + "name": "s9_fetch_quest_b6", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_B7", + "templateId": "Quest:S9_Fetch_Quest_B7", + "objectives": [ + { + "name": "s9_fetch_quest_b7", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Fetch_Quest_B9", + "templateId": "Quest:S9_Fetch_Quest_B9", + "objectives": [ + { + "name": "s9_fetch_quest_b9", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_GatherCollect_Quest_A12", + "templateId": "Quest:S9_GatherCollect_Quest_A12", + "objectives": [ + { + "name": "s9_gathercollect_quest_a12", + "count": 30 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_GatherCollect_Quest_A15", + "templateId": "Quest:S9_GatherCollect_Quest_A15", + "objectives": [ + { + "name": "s9_gathercollect_quest_a15", + "count": 30 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_GatherCollect_Quest_A4", + "templateId": "Quest:S9_GatherCollect_Quest_A4", + "objectives": [ + { + "name": "s9_gathercollect_quest_a4", + "count": 30 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_GatherCollect_Quest_B5", + "templateId": "Quest:S9_GatherCollect_Quest_B5", + "objectives": [ + { + "name": "s9_gathercollect_quest_b5", + "count": 30 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_GatherCollect_Quest_B8", + "templateId": "Quest:S9_GatherCollect_Quest_B8", + "objectives": [ + { + "name": "s9_gathercollect_quest_b8", + "count": 30 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Gather_Quest_A8", + "templateId": "Quest:S9_Gather_Quest_A8", + "objectives": [ + { + "name": "s9_gather_quest_a8", + "count": 30 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_KillCollect_Quest_A10", + "templateId": "Quest:S9_KillCollect_Quest_A10", + "objectives": [ + { + "name": "s9_killcollect_quest_a10", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_KillCollect_Quest_A5", + "templateId": "Quest:S9_KillCollect_Quest_A5", + "objectives": [ + { + "name": "s9_killcollect_quest_a5", + "count": 10 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_KillCollect_Quest_B4", + "templateId": "Quest:S9_KillCollect_Quest_B4", + "objectives": [ + { + "name": "s9_killcollect_quest_b4", + "count": 10 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Landmark_Quest_B12", + "templateId": "Quest:S9_Landmark_Quest_B12", + "objectives": [ + { + "name": "s9_landmark_quest_b12", + "count": 1 + } + ] + }, + { + "itemGuid": "S9-Quest:S9_Landmark_Quest_B2", + "templateId": "Quest:S9_Landmark_Quest_B2", + "objectives": [ + { + "name": "s9_landmark_quest_b2", + "count": 1 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Complete_All", + "templateId": "Quest:SummerQuest_2019_Complete_All", + "objectives": [ + { + "name": "questcomplete_summerquest_2019_fetch_water", + "count": 1 + }, + { + "name": "questcomplete_summerquest_2019_search_ice", + "count": 1 + }, + { + "name": "questcomplete_summerquest_2019_kill_melee", + "count": 1 + }, + { + "name": "questcomplete_summerquest_2019_kill_wargames", + "count": 1 + }, + { + "name": "questcomplete_summerquest_2019_fetch_towels", + "count": 1 + }, + { + "name": "questcomplete_summerquest_2019_harvest_basketball_hoops", + "count": 1 + }, + { + "name": "questcomplete_summerquest_2019_kill_mist", + "count": 1 + }, + { + "name": "questcomplete_summerquest_2019_fetch_flamingo", + "count": 1 + }, + { + "name": "questcomplete_summerquest_2019_fetch_fireworks", + "count": 1 + }, + { + "name": "questcomplete_summerquest_2019_light_fireworks", + "count": 1 + }, + { + "name": "questcomplete_summerquest_2019_kill_200", + "count": 1 + }, + { + "name": "questcomplete_summerquest_2019_harvest_lawnmower", + "count": 1 + }, + { + "name": "questcomplete_summerquest_2019_gather_air_conditioners", + "count": 1 + }, + { + "name": "questcomplete_summerquest_2019_rescue_survivors", + "count": 1 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Fetch_Fireworks", + "templateId": "Quest:SummerQuest_2019_Fetch_Fireworks", + "objectives": [ + { + "name": "summerquest_2019_fetch_fireworks", + "count": 7 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Fetch_Flamingo", + "templateId": "Quest:SummerQuest_2019_Fetch_Flamingo", + "objectives": [ + { + "name": "summerquest_2019_fetch_flamingo", + "count": 10 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Fetch_Towels", + "templateId": "Quest:SummerQuest_2019_Fetch_Towels", + "objectives": [ + { + "name": "summerquest_2019_fetch_towels", + "count": 6 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Fetch_Water", + "templateId": "Quest:SummerQuest_2019_Fetch_Water", + "objectives": [ + { + "name": "summerquest_2019_fetch_water", + "count": 6 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Gather_Air_Conditioners", + "templateId": "Quest:SummerQuest_2019_Gather_Air_Conditioners", + "objectives": [ + { + "name": "summerquest_2019_gather_air_conditioners", + "count": 30 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Harvest_Basketball_Hoops", + "templateId": "Quest:SummerQuest_2019_Harvest_Basketball_Hoops", + "objectives": [ + { + "name": "summerquest_2019_harvest_basketball_hoops", + "count": 2 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Harvest_Lawnmower", + "templateId": "Quest:SummerQuest_2019_Harvest_Lawnmower", + "objectives": [ + { + "name": "summerquest_2019_harvest_lawnmower", + "count": 3 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Kill_200", + "templateId": "Quest:SummerQuest_2019_Kill_200", + "objectives": [ + { + "name": "summerquest_2019_kill_200", + "count": 200 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Kill_Melee", + "templateId": "Quest:SummerQuest_2019_Kill_Melee", + "objectives": [ + { + "name": "SummerQuest_2019_Kill_Melee", + "count": 25 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Kill_Mist", + "templateId": "Quest:SummerQuest_2019_Kill_Mist", + "objectives": [ + { + "name": "summerquest_2019_kill_mist", + "count": 5 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Kill_Wargames", + "templateId": "Quest:SummerQuest_2019_Kill_Wargames", + "objectives": [ + { + "name": "summerquest_2019_kill_wargames", + "count": 2 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Light_Fireworks", + "templateId": "Quest:SummerQuest_2019_Light_Fireworks", + "objectives": [ + { + "name": "summerquest_2019_light_fireworks", + "count": 7 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Rescue_Survivors", + "templateId": "Quest:SummerQuest_2019_Rescue_Survivors", + "objectives": [ + { + "name": "questcollect_survivoritemdata", + "count": 10 + } + ] + }, + { + "itemGuid": "S9-Quest:SummerQuest_2019_Search_Ice", + "templateId": "Quest:SummerQuest_2019_Search_Ice", + "objectives": [ + { + "name": "summerquest_2019_search_ice", + "count": 10 + } + ] + } + ] + }, + "Season10": { + "Quests": [ + { + "itemGuid": "S10-Quest:MaydayQuest_2019_CollectCasettes_Repeatable", + "templateId": "Quest:MaydayQuest_2019_CollectCasettes_Repeatable", + "objectives": [ + { + "name": "maydayquest_2019_collectcasettes_repeatable", + "count": 25 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_CompleteSubMissions", + "templateId": "Quest:MaydayQuest_2019_CompleteSubMissions", + "objectives": [ + { + "name": "maydayquest_completesubmissions_bridgeout", + "count": 1 + }, + { + "name": "maydayquest_completesubmissions_infestation", + "count": 1 + }, + { + "name": "maydayquest_completesubmissions_minordelay", + "count": 1 + }, + { + "name": "maydayquest_completesubmissions_feelinblu", + "count": 1 + }, + { + "name": "maydayquest_completesubmissions_pitstop", + "count": 1 + }, + { + "name": "maydayquest_completesubmissions_overheat", + "count": 1 + }, + { + "name": "maydayquest_completesubmissions_signalboost", + "count": 1 + }, + { + "name": "maydayquest_completesubmissions_recorddash", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_Complete_Beatbot", + "templateId": "Quest:MaydayQuest_2019_Complete_Beatbot", + "objectives": [ + { + "name": "maydayquest_2019_complete_beatbot", + "count": 3 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_Complete_CloakedStar1", + "templateId": "Quest:MaydayQuest_2019_Complete_CloakedStar1", + "objectives": [ + { + "name": "maydayquest_2019_complete_cloakedstar1", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_Complete_CloakedStar2", + "templateId": "Quest:MaydayQuest_2019_Complete_CloakedStar2", + "objectives": [ + { + "name": "maydayquest_2019_complete_cloakedstar2", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_Complete_Crackshot2", + "templateId": "Quest:MaydayQuest_2019_Complete_Crackshot2", + "objectives": [ + { + "name": "maydayquest_2019_complete_crackshot2", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_Complete_Penny1", + "templateId": "Quest:MaydayQuest_2019_Complete_Penny1", + "objectives": [ + { + "name": "maydayquest_2019_complete_penny1", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_Complete_Penny2", + "templateId": "Quest:MaydayQuest_2019_Complete_Penny2", + "objectives": [ + { + "name": "maydayquest_2019_complete_penny2", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_Complete_Quinn2", + "templateId": "Quest:MaydayQuest_2019_Complete_Quinn2", + "objectives": [ + { + "name": "maydayquest_2019_complete_quinn2", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_Complete_Quinn3", + "templateId": "Quest:MaydayQuest_2019_Complete_Quinn3", + "objectives": [ + { + "name": "maydayquest_2019_complete_quinn3", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_Complete_Week1", + "templateId": "Quest:MaydayQuest_2019_Complete_Week1", + "objectives": [ + { + "name": "maydayquest_2019_complete_quinn1", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_Complete_Week4", + "templateId": "Quest:MaydayQuest_2019_Complete_Week4", + "objectives": [ + { + "name": "maydayquest_2019_complete_crackshot1", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_Daily_Complete", + "templateId": "Quest:MaydayQuest_2019_Daily_Complete", + "objectives": [ + { + "name": "maydayquest_2019_daily_complete", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_KillMistMonsters", + "templateId": "Quest:MaydayQuest_2019_KillMistMonsters", + "objectives": [ + { + "name": "maydayquest_2019_killmistmonsters", + "count": 40 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_LootChests", + "templateId": "Quest:MaydayQuest_2019_LootChests", + "objectives": [ + { + "name": "maydayquest_lootchests", + "count": 40 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_NoVehicleDamage", + "templateId": "Quest:MaydayQuest_2019_NoVehicleDamage", + "objectives": [ + { + "name": "maydayquest_2019_novehicledamage", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_NoVehicleDamage_Endgame", + "templateId": "Quest:MaydayQuest_2019_NoVehicleDamage_Endgame", + "objectives": [ + { + "name": "maydayquest_2019_novehicledamage_endgame", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_Strangelands", + "templateId": "Quest:MaydayQuest_2019_Strangelands", + "objectives": [ + { + "name": "MaydayQuest_2019_Strangelands", + "count": 3 + } + ] + }, + { + "itemGuid": "S10-Quest:MaydayQuest_2019_TruckTravel", + "templateId": "Quest:MaydayQuest_2019_TruckTravel", + "objectives": [ + { + "name": "maydayquest_2019_trucktravel", + "count": 2500 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_Explore_Quest_A5", + "templateId": "Quest:S10_Explore_Quest_A5", + "objectives": [ + { + "name": "s10_explore_quest_a5", + "count": 4 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_Explore_Quest_A8", + "templateId": "Quest:S10_Explore_Quest_A8", + "objectives": [ + { + "name": "s10_explore_quest_restaurant_a8", + "count": 1 + }, + { + "name": "s10_explore_quest_campsite_a8", + "count": 1 + }, + { + "name": "s10_explore_quest_park_a8", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_Fetch_Quest_A10", + "templateId": "Quest:S10_Fetch_Quest_A10", + "objectives": [ + { + "name": "s10_fetch_quest_a10", + "count": 7 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_Fetch_Quest_A11", + "templateId": "Quest:S10_Fetch_Quest_A11", + "objectives": [ + { + "name": "s10_fetch_quest_a11", + "count": 5 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_Fetch_Quest_A12", + "templateId": "Quest:S10_Fetch_Quest_A12", + "objectives": [ + { + "name": "s10_fetch_quest_a12", + "count": 5 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_Fetch_Quest_A15", + "templateId": "Quest:S10_Fetch_Quest_A15", + "objectives": [ + { + "name": "s10_fetch_quest_a15", + "count": 5 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_Fetch_Quest_A3", + "templateId": "Quest:S10_Fetch_Quest_A3", + "objectives": [ + { + "name": "s10_fetch_quest_a3", + "count": 5 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_Fetch_Quest_A4", + "templateId": "Quest:S10_Fetch_Quest_A4", + "objectives": [ + { + "name": "s10_fetch_quest_a4", + "count": 5 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_Fetch_Quest_B1", + "templateId": "Quest:S10_Fetch_Quest_B1", + "objectives": [ + { + "name": "s10_fetch_quest_b1", + "count": 4 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_Fetch_Quest_B2", + "templateId": "Quest:S10_Fetch_Quest_B2", + "objectives": [ + { + "name": "s10_fetch_quest_b2", + "count": 5 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_GatherCollect_Quest_A14", + "templateId": "Quest:S10_GatherCollect_Quest_A14", + "objectives": [ + { + "name": "s10_gathercollect_quest_a14", + "count": 30 + } + ] + }, + { + "itemGuid": "S10-Quest:s10_gathercollect_quest_a2", + "templateId": "Quest:s10_gathercollect_quest_a2", + "objectives": [ + { + "name": "s10_gathercollect_quest_a2", + "count": 30 + } + ] + }, + { + "itemGuid": "S10-Quest:s10_gathercollect_quest_a6", + "templateId": "Quest:s10_gathercollect_quest_a6", + "objectives": [ + { + "name": "s10_gathercollect_quest_a6", + "count": 10 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_GatherCollect_Quest_A9", + "templateId": "Quest:S10_GatherCollect_Quest_A9", + "objectives": [ + { + "name": "s10_gathercollect_quest_a9", + "count": 20 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_KillCollect_QuestA7", + "templateId": "Quest:S10_KillCollect_QuestA7", + "objectives": [ + { + "name": "s10_killcollect_quest_a7", + "count": 5 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_Kill_Quest_B3", + "templateId": "Quest:S10_Kill_Quest_B3", + "objectives": [ + { + "name": "s10_kill_quest_b3", + "count": 7 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_Landmark_Quest_A1", + "templateId": "Quest:S10_Landmark_Quest_A1", + "objectives": [ + { + "name": "s10_landmark_quest_a1", + "count": 1 + } + ] + }, + { + "itemGuid": "S10-Quest:S10_ReactiveKill_Quest_A13", + "templateId": "Quest:S10_ReactiveKill_Quest_A13", + "objectives": [ + { + "name": "s10_reactivekill_quest_a13", + "count": 7 + } + ] + } + ] + }, + "Season24": { + "Quests": [ + { + "itemGuid": "S24-Quest:HordeV3_Quest_Daily_A01", + "templateId": "Quest:HordeV3_Quest_Daily_A01", + "objectives": [ + { + "name": "hordev3_quest_daily_a01", + "count": 5 + } + ] + }, + { + "itemGuid": "S24-Quest:HordeV3_Quest_Daily_A02", + "templateId": "Quest:HordeV3_Quest_Daily_A02", + "objectives": [ + { + "name": "hordev3_quest_daily_a02", + "count": 10 + } + ] + }, + { + "itemGuid": "S24-Quest:HordeV3_Quest_Daily_A03", + "templateId": "Quest:HordeV3_Quest_Daily_A03", + "objectives": [ + { + "name": "hordev3_quest_daily_a03", + "count": 15 + } + ] + }, + { + "itemGuid": "S24-Quest:HordeV3_Quest_Event_A01", + "templateId": "Quest:HordeV3_Quest_Event_A01", + "objectives": [ + { + "name": "hordev3_quest_event_a01", + "count": 1 + } + ] + }, + { + "itemGuid": "S24-Quest:HordeV3_Quest_Event_A02", + "templateId": "Quest:HordeV3_Quest_Event_A02", + "objectives": [ + { + "name": "hordev3_quest_event_a02", + "count": 1 + } + ] + }, + { + "itemGuid": "S24-Quest:HordeV3_Quest_Event_A03", + "templateId": "Quest:HordeV3_Quest_Event_A03", + "objectives": [ + { + "name": "hordev3_quest_event_a03", + "count": 5 + } + ] + }, + { + "itemGuid": "S24-Quest:HordeV3_Quest_Event_A04", + "templateId": "Quest:HordeV3_Quest_Event_A04", + "objectives": [ + { + "name": "hordev3_quest_event_a04", + "count": 1000 + } + ] + }, + { + "itemGuid": "S24-Quest:HordeV3_Quest_Event_A05", + "templateId": "Quest:HordeV3_Quest_Event_A05", + "objectives": [ + { + "name": "hordev3_quest_event_a05", + "count": 1 + } + ] + }, + { + "itemGuid": "S24-Quest:HordeV3_Quest_Event_A06", + "templateId": "Quest:HordeV3_Quest_Event_A06", + "objectives": [ + { + "name": "hordev3_quest_event_a06", + "count": 1 + } + ] + }, + { + "itemGuid": "S24-Quest:HordeV3_Quest_Event_A07", + "templateId": "Quest:HordeV3_Quest_Event_A07", + "objectives": [ + { + "name": "hordev3_quest_event_a07", + "count": 2 + } + ] + }, + { + "itemGuid": "S24-Quest:HordeV3_Quest_Event_A08", + "templateId": "Quest:HordeV3_Quest_Event_A08", + "objectives": [ + { + "name": "hordev3_quest_event_a08", + "count": 2 + } + ] + }, + { + "itemGuid": "S24-Quest:HordeV3_Quest_Weekly_W02", + "templateId": "Quest:HordeV3_Quest_Weekly_W02", + "objectives": [ + { + "name": "hordev3_quest_weekly_w02", + "count": 1 + } + ] + }, + { + "itemGuid": "S24-Quest:HordeV3_Quest_Weekly_W03", + "templateId": "Quest:HordeV3_Quest_Weekly_W03", + "objectives": [ + { + "name": "hordev3_quest_weekly_w03", + "count": 1 + } + ] + } + ] + } + }, + "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" + } + ] + }, + "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" + } + ] + }, + "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" + ] + }, + { + "itemGuid": "S5-ChallengeBundleSchedule:Schedule_Birthday2018_BR", + "templateId": "ChallengeBundleSchedule:Schedule_Birthday2018_BR", + "granted_bundles": [ + "S5-ChallengeBundle:QuestBundle_Birthday2018_BR" + ] + } + ], + "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" + }, + { + "itemGuid": "S5-ChallengeBundle:QuestBundle_Birthday2018_BR", + "templateId": "ChallengeBundle:QuestBundle_Birthday2018_BR", + "grantedquestinstanceids": [ + "S5-Quest:Quest_BR_Play_Birthday", + "S5-Quest:Quest_BR_Damage_Birthday", + "S5-Quest:Quest_BR_Dance_ScavengerHunt_BirthdayCakes" + ], + "challenge_bundle_schedule_id": "S5-ChallengeBundleSchedule:Schedule_Birthday2018_BR" + } + ], + "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" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Damage_Birthday", + "templateId": "Quest:Quest_BR_Damage_Birthday", + "objectives": [ + { + "name": "birthdaybundle_damage_athena_player", + "count": 1000 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_Birthday2018_BR" + }, + { + "itemGuid": "S5-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": "S5-ChallengeBundle:QuestBundle_Birthday2018_BR" + }, + { + "itemGuid": "S5-Quest:Quest_BR_Play_Birthday", + "templateId": "Quest:Quest_BR_Play_Birthday", + "objectives": [ + { + "name": "birthdaybundle_athena_play_matches", + "count": 14 + } + ], + "challenge_bundle_id": "S5-ChallengeBundle:QuestBundle_Birthday2018_BR" + } + ] + }, + "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" + } + ] + }, + "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" + } + ] + }, + "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" + } + ] + }, + "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" + } + ] + }, + "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" + } + ] + }, + "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" + } + ] + }, + "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" + } + ] + }, + "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" + } + ] + }, + "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" + } + ] + }, + "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" + } + ] + }, + "Season16": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_00", + "templateId": "ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_00", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_00" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_01", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_01" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_02", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_02" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_03", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_03" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_04", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_04" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_05", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_05" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_06", + "templateId": "ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_06", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_06" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_07", + "templateId": "ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_07", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_07" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season16_Bicycle_Schedule_01", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Bicycle_01" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season16_Bicycle_Schedule_02", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Bicycle_02" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season16_Bicycle_Schedule_03", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Bicycle_03" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season16_Bicycle_Schedule_04", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Bicycle_04" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season16_Bicycle_Schedule_05", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Bicycle_05" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_06", + "templateId": "ChallengeBundleSchedule:Season16_Bicycle_Schedule_06", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Bicycle_06" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_07", + "templateId": "ChallengeBundleSchedule:Season16_Bicycle_Schedule_07", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Bicycle_07" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_08", + "templateId": "ChallengeBundleSchedule:Season16_Bicycle_Schedule_08", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Bicycle_08" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_09", + "templateId": "ChallengeBundleSchedule:Season16_Bicycle_Schedule_09", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Bicycle_09" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_10", + "templateId": "ChallengeBundleSchedule:Season16_Bicycle_Schedule_10", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Bicycle_10" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_11", + "templateId": "ChallengeBundleSchedule:Season16_Bicycle_Schedule_11", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Bicycle_11" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Feat_BundleSchedule", + "templateId": "ChallengeBundleSchedule:Season16_Feat_BundleSchedule", + "granted_bundles": [ + "S16-ChallengeBundle:Season16_Feat_Bundle" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_01", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_01" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_02", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_02" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_03", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_03" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_04", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_04" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_05", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_05" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Hardwood_Schedule", + "templateId": "ChallengeBundleSchedule:Season16_Hardwood_Schedule", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Hardwood" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Lady_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season16_Lady_Schedule_01", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Lady_01" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule", + "templateId": "ChallengeBundleSchedule:Season16_Milestone_Schedule", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_PlayerVehicle", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Player", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_GlideDistance", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Structures", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_RebootTeammate", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_Chests", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_SupplyDrop", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_ShakedownOpponents", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDestroy_Structures", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDistance", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Furniture", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Distance_OnFoot", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_150m", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Assault", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Common_Uncommon", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Explosives", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Pistols", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Shotguns", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_SMG", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Meat", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_AmmoBoxes", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_SwimDistance", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_CatchFish", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_UseFishingSpots", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harvest_Stone", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Trees", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_opponents", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_CQuest", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_UCQuest", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_RQuest", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_EQuest", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_LQuest", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Shrubs", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Melee_Elims", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Stones", + "S16-ChallengeBundle:questbundle_S16_milestone_ignite_opponent", + "S16-ChallengeBundle:questbundle_S16_milestone_ignite_structure", + "S16-ChallengeBundle:questbundle_S16_milestone_interact_apple", + "S16-ChallengeBundle:questbundle_S16_milestone_interact_banana", + "S16-ChallengeBundle:questbundle_S16_milestone_interact_campfire", + "S16-ChallengeBundle:questbundle_S16_milestone_interact_forageditem", + "S16-ChallengeBundle:questbundle_S16_milestone_interact_mushroom", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_Bounties", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Place_Top10", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Revive_Teammates", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Upgrade_Weapons", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Green_Coins", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Blue_Coins", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Purple_Coins", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold_Coins", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Assist_Elims", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_IceMachines", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Craft_Weapons", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Tame_Animals", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hunt_Animals", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Bow", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Sticky", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Spend_Bars", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Thank_Driver", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Head_Shot", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Bones", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Potions", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Bandages", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harpoon_Elims", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hit_Weakpoints", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Boat_Elims", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Don_Creature_Disquises", + "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_Above" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule", + "templateId": "ChallengeBundleSchedule:Season16_Mission_Schedule", + "granted_bundles": [ + "S16-ChallengeBundle:MissionBundle_S16_Week_01", + "S16-ChallengeBundle:MissionBundle_S16_Week_02", + "S16-ChallengeBundle:MissionBundle_S16_Week_03", + "S16-ChallengeBundle:MissionBundle_S16_Week_04", + "S16-ChallengeBundle:MissionBundle_S16_Week_05", + "S16-ChallengeBundle:MissionBundle_S16_Week_06", + "S16-ChallengeBundle:MissionBundle_S16_Week_07", + "S16-ChallengeBundle:MissionBundle_S16_Week_08", + "S16-ChallengeBundle:MissionBundle_S16_Week_09", + "S16-ChallengeBundle:MissionBundle_S16_Week_10", + "S16-ChallengeBundle:MissionBundle_S16_Week_11", + "S16-ChallengeBundle:MissionBundle_S16_Week_12", + "S16-ChallengeBundle:MissionBundle_S16_Week_13", + "S16-ChallengeBundle:MissionBundle_S16_Week_14", + "S16-ChallengeBundle:MissionBundle_S16_Week_15" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Narrative_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season16_Narrative_Schedule_01", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Narrative_01" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Narrative_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season16_Narrative_Schedule_02", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Narrative_02" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Narrative_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season16_Narrative_Schedule_03", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Narrative_03" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Narrative_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season16_Narrative_Schedule_04", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Narrative_04" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Narrative_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season16_Narrative_Schedule_05", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Narrative_05" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_01", + "templateId": "ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_01", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_01" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_02", + "templateId": "ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_02", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_02" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_03", + "templateId": "ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_03", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_03" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_04", + "templateId": "ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_04", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_04" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_05", + "templateId": "ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_05", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_05" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_06", + "templateId": "ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_06", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_06" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_07", + "templateId": "ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_07", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_07" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_08", + "templateId": "ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_08", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_08" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_09", + "templateId": "ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_09", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_09" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_10", + "templateId": "ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_10", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_10" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_11", + "templateId": "ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_11", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_11" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_12", + "templateId": "ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_12", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_12" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T1_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season16_SuperStyles_T1_Schedule_01", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T1_01" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T1_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season16_SuperStyles_T1_Schedule_02", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T1_02" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T1_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season16_SuperStyles_T1_Schedule_03", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T1_03" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T2_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season16_SuperStyles_T2_Schedule_01", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T2_01" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T2_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season16_SuperStyles_T2_Schedule_02", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T2_02" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T2_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season16_SuperStyles_T2_Schedule_03", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T2_03" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T3_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season16_SuperStyles_T3_Schedule_01", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T3_01" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T3_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season16_SuperStyles_T3_Schedule_02", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T3_02" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T3_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season16_SuperStyles_T3_Schedule_03", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T3_03" + ] + }, + { + "itemGuid": "S16-ChallengeBundleSchedule:Season16_Tower_Schedule", + "templateId": "ChallengeBundleSchedule:Season16_Tower_Schedule", + "granted_bundles": [ + "S16-ChallengeBundle:QuestBundle_S16_Tower_00", + "S16-ChallengeBundle:QuestBundle_S16_Tower_01", + "S16-ChallengeBundle:QuestBundle_S16_Tower_02", + "S16-ChallengeBundle:QuestBundle_S16_Tower_03", + "S16-ChallengeBundle:QuestBundle_S16_Tower_Gated_01", + "S16-ChallengeBundle:QuestBundle_S16_Tower_Gated_02" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_00", + "templateId": "ChallengeBundle:QuestBundle_S16_AlternateStyles_00", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_AlternateStyles_00_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_00" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_01", + "templateId": "ChallengeBundle:QuestBundle_S16_AlternateStyles_01", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_AlternateStyles_01_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_01" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_02", + "templateId": "ChallengeBundle:QuestBundle_S16_AlternateStyles_02", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_AlternateStyles_02_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_02" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_03", + "templateId": "ChallengeBundle:QuestBundle_S16_AlternateStyles_03", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_AlternateStyles_03_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_03" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_04", + "templateId": "ChallengeBundle:QuestBundle_S16_AlternateStyles_04", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_AlternateStyles_04_q01", + "S16-Quest:Quest_S16_Style_AlternateStyles_04_q02" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_04" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_05", + "templateId": "ChallengeBundle:QuestBundle_S16_AlternateStyles_05", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_AlternateStyles_05_q01", + "S16-Quest:Quest_S16_Style_AlternateStyles_05_q02" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_05" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_06", + "templateId": "ChallengeBundle:QuestBundle_S16_AlternateStyles_06", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_AlternateStyles_06_q01", + "S16-Quest:Quest_S16_Style_AlternateStyles_06_q02" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_06" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_07", + "templateId": "ChallengeBundle:QuestBundle_S16_AlternateStyles_07", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_AlternateStyles_07_q01", + "S16-Quest:Quest_S16_Style_AlternateStyles_07_q02" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_AlternateStyles_Schedule_07" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_01", + "templateId": "ChallengeBundle:QuestBundle_S16_Bicycle_01", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Bicycle_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_01" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_02", + "templateId": "ChallengeBundle:QuestBundle_S16_Bicycle_02", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_Bicycle_q02" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_02" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_03", + "templateId": "ChallengeBundle:QuestBundle_S16_Bicycle_03", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_Bicycle_q03" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_03" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_04", + "templateId": "ChallengeBundle:QuestBundle_S16_Bicycle_04", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_Bicycle_q04" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_04" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_05", + "templateId": "ChallengeBundle:QuestBundle_S16_Bicycle_05", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_Bicycle_q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_05" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_06", + "templateId": "ChallengeBundle:QuestBundle_S16_Bicycle_06", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_Bicycle_q06" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_06" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_07", + "templateId": "ChallengeBundle:QuestBundle_S16_Bicycle_07", + "grantedquestinstanceids": [ + "S16-Quest:quest_S16_Bicycle_q07" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_07" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_08", + "templateId": "ChallengeBundle:QuestBundle_S16_Bicycle_08", + "grantedquestinstanceids": [ + "S16-Quest:quest_S16_Bicycle_q08" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_08" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_09", + "templateId": "ChallengeBundle:QuestBundle_S16_Bicycle_09", + "grantedquestinstanceids": [ + "S16-Quest:quest_S16_Bicycle_q09" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_09" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_10", + "templateId": "ChallengeBundle:QuestBundle_S16_Bicycle_10", + "grantedquestinstanceids": [ + "S16-Quest:quest_S16_Bicycle_q10" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_10" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_11", + "templateId": "ChallengeBundle:QuestBundle_S16_Bicycle_11", + "grantedquestinstanceids": [ + "S16-Quest:quest_S16_Bicycle_q11_01", + "S16-Quest:quest_S16_Bicycle_q11_02" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Bicycle_Schedule_11" + }, + { + "itemGuid": "S16-ChallengeBundle:Season16_Feat_Bundle", + "templateId": "ChallengeBundle:Season16_Feat_Bundle", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_feat_land_firsttime", + "S16-Quest:quest_s16_feat_athenarank_solo_1x", + "S16-Quest:quest_s16_feat_athenarank_solo_10x", + "S16-Quest:quest_s16_feat_athenarank_solo_100x", + "S16-Quest:quest_s16_feat_athenarank_solo_10elims", + "S16-Quest:quest_s16_feat_athenarank_duo_1x", + "S16-Quest:quest_s16_feat_athenarank_duo_10x", + "S16-Quest:quest_s16_feat_athenarank_duo_100x", + "S16-Quest:quest_s16_feat_athenarank_trios_1x", + "S16-Quest:quest_s16_feat_athenarank_trios_10x", + "S16-Quest:quest_s16_feat_athenarank_trios_100x", + "S16-Quest:quest_s16_feat_athenarank_squad_1x", + "S16-Quest:quest_s16_feat_athenarank_squad_10x", + "S16-Quest:quest_s16_feat_athenarank_squad_100x", + "S16-Quest:quest_s16_feat_athenarank_rumble_1x", + "S16-Quest:quest_s16_feat_athenarank_rumble_100x", + "S16-Quest:quest_s16_feat_kill_yeet", + "S16-Quest:quest_s16_feat_kill_pickaxe", + "S16-Quest:quest_s16_feat_kill_aftersupplydrop", + "S16-Quest:quest_s16_feat_kill_gliding", + "S16-Quest:quest_s16_feat_throw_consumable", + "S16-Quest:quest_s16_feat_accolade_weaponspecialist__samematch_2", + "S16-Quest:quest_s16_feat_accolade_weaponspecialist__samematch_3", + "S16-Quest:quest_s16_feat_accolade_weaponspecialist__samematch_4", + "S16-Quest:quest_s16_feat_accolade_weaponspecialist__samematch_5", + "S16-Quest:quest_s16_feat_accolade_weaponspecialist__samematch_6", + "S16-Quest:quest_s16_feat_accolade_weaponspecialist__samematch_7", + "S16-Quest:quest_s16_feat_accolade_expert_explosives", + "S16-Quest:quest_s16_feat_accolade_expert_pistol", + "S16-Quest:quest_s16_feat_accolade_expert_smg", + "S16-Quest:quest_s16_feat_accolade_expert_pickaxe", + "S16-Quest:quest_s16_feat_accolade_expert_shotgun", + "S16-Quest:quest_s16_feat_accolade_expert_ar", + "S16-Quest:quest_s16_feat_accolade_expert_sniper", + "S16-Quest:quest_s16_feat_purplecoin_combo", + "S16-Quest:quest_s16_feat_reach_seasonlevel", + "S16-Quest:quest_s16_feat_athenacollection_fish", + "S16-Quest:quest_s16_feat_athenacollection_npc", + "S16-Quest:quest_s16_feat_kill_bounty", + "S16-Quest:quest_s16_feat_spend_goldbars", + "S16-Quest:quest_s16_feat_collect_goldbars", + "S16-Quest:quest_s16_feat_craft_weapon", + "S16-Quest:quest_s16_feat_kill_creature" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Feat_BundleSchedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_01", + "templateId": "ChallengeBundle:QuestBundle_S16_Foreshadowing_01", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_fs_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_01" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_02", + "templateId": "ChallengeBundle:QuestBundle_S16_Foreshadowing_02", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_fs_q02" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_02" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_03", + "templateId": "ChallengeBundle:QuestBundle_S16_Foreshadowing_03", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_fs_q03" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_03" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_04", + "templateId": "ChallengeBundle:QuestBundle_S16_Foreshadowing_04", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_fs_q04" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_04" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_05", + "templateId": "ChallengeBundle:QuestBundle_S16_Foreshadowing_05", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_fs_q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Foreshadowing_Schedule_05" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Hardwood", + "templateId": "ChallengeBundle:QuestBundle_S16_Hardwood", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_hardwood_q01", + "S16-Quest:quest_s16_hardwood_q03", + "S16-Quest:quest_s16_hardwood_q04", + "S16-Quest:quest_s16_hardwood_q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Hardwood_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Lady_01", + "templateId": "ChallengeBundle:QuestBundle_S16_Lady_01", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_fs_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Lady_Schedule_01" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Assist_Elims", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Assist_Elims", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Assist_Elims_Q01", + "S16-Quest:Quest_S16_Milestone_Assist_Elims_Q02", + "S16-Quest:Quest_S16_Milestone_Assist_Elims_Q03", + "S16-Quest:Quest_S16_Milestone_Assist_Elims_Q04", + "S16-Quest:Quest_S16_Milestone_Assist_Elims_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Boat_Elims", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Boat_Elims", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q01", + "S16-Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q02", + "S16-Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q03", + "S16-Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q04", + "S16-Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_CatchFish", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_CatchFish", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_CatchFish_Q01", + "S16-Quest:Quest_S16_Milestone_CatchFish_Q02", + "S16-Quest:Quest_S16_Milestone_CatchFish_Q03", + "S16-Quest:Quest_S16_Milestone_CatchFish_Q04", + "S16-Quest:Quest_S16_Milestone_CatchFish_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Blue_Coins", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Collect_Blue_Coins", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q01", + "S16-Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q02", + "S16-Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q03", + "S16-Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q04", + "S16-Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Bones", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Collect_Bones", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Collect_Bones_Q01", + "S16-Quest:Quest_S16_Milestone_Collect_Bones_Q02", + "S16-Quest:Quest_S16_Milestone_Collect_Bones_Q03", + "S16-Quest:Quest_S16_Milestone_Collect_Bones_Q04", + "S16-Quest:Quest_S16_Milestone_Collect_Bones_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_CollectGold_Q01", + "S16-Quest:Quest_S16_Milestone_CollectGold_Q02", + "S16-Quest:Quest_S16_Milestone_CollectGold_Q03", + "S16-Quest:Quest_S16_Milestone_CollectGold_Q04", + "S16-Quest:Quest_S16_Milestone_CollectGold_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold_Coins", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold_Coins", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q01", + "S16-Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q02", + "S16-Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q03", + "S16-Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q04", + "S16-Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Green_Coins", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Collect_Green_Coins", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q01", + "S16-Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q02", + "S16-Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q03", + "S16-Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q04", + "S16-Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Meat", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Collect_Meat", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Collect_Meat_Q01", + "S16-Quest:Quest_S16_Milestone_Collect_Meat_Q02", + "S16-Quest:Quest_S16_Milestone_Collect_Meat_Q03", + "S16-Quest:Quest_S16_Milestone_Collect_Meat_Q04", + "S16-Quest:Quest_S16_Milestone_Collect_Meat_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Purple_Coins", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Collect_Purple_Coins", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_CollectPurpleXPCoins_Q01", + "S16-Quest:Quest_S16_Milestone_CollectPurpleXPCoins_Q02", + "S16-Quest:Quest_S16_Milestone_CollectPurpleXPCoins_Q03", + "S16-Quest:Quest_S16_Milestone_CollectPurpleXPCoins_Q04", + "S16-Quest:Quest_S16_Milestone_CollectPurpleXPCoins_Q04" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_Bounties", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Complete_Bounties", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_CompleteBounties_Q01", + "S16-Quest:Quest_S16_Milestone_CompleteBounties_Q02", + "S16-Quest:Quest_S16_Milestone_CompleteBounties_Q03", + "S16-Quest:Quest_S16_Milestone_CompleteBounties_Q04", + "S16-Quest:Quest_S16_Milestone_CompleteBounties_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_CQuest", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Complete_CQuest", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Complete_CQuest_Q01", + "S16-Quest:Quest_S16_Milestone_Complete_CQuest_Q02", + "S16-Quest:Quest_S16_Milestone_Complete_CQuest_Q03", + "S16-Quest:Quest_S16_Milestone_Complete_CQuest_Q04", + "S16-Quest:Quest_S16_Milestone_Complete_CQuest_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_EQuest", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Complete_EQuest", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Complete_EQuest_Q01", + "S16-Quest:Quest_S16_Milestone_Complete_EQuest_Q02", + "S16-Quest:Quest_S16_Milestone_Complete_EQuest_Q03", + "S16-Quest:Quest_S16_Milestone_Complete_EQuest_Q04", + "S16-Quest:Quest_S16_Milestone_Complete_EQuest_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_LQuest", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Complete_LQuest", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Complete_LQuest_Q01", + "S16-Quest:Quest_S16_Milestone_Complete_LQuest_Q02", + "S16-Quest:Quest_S16_Milestone_Complete_LQuest_Q03", + "S16-Quest:Quest_S16_Milestone_Complete_LQuest_Q04", + "S16-Quest:Quest_S16_Milestone_Complete_LQuest_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_RQuest", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Complete_RQuest", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Complete_RQuest_Q01", + "S16-Quest:Quest_S16_Milestone_Complete_RQuest_Q02", + "S16-Quest:Quest_S16_Milestone_Complete_RQuest_Q03", + "S16-Quest:Quest_S16_Milestone_Complete_RQuest_Q04", + "S16-Quest:Quest_S16_Milestone_Complete_RQuest_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_UCQuest", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Complete_UCQuest", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Complete_UCQuest_Q01", + "S16-Quest:Quest_S16_Milestone_Complete_UCQuest_Q02", + "S16-Quest:Quest_S16_Milestone_Complete_UCQuest_Q03", + "S16-Quest:Quest_S16_Milestone_Complete_UCQuest_Q04", + "S16-Quest:Quest_S16_Milestone_Complete_UCQuest_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Craft_Weapons", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Craft_Weapons", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Craft_Weapons_Q01", + "S16-Quest:Quest_S16_Milestone_Craft_Weapons_Q02", + "S16-Quest:Quest_S16_Milestone_Craft_Weapons_Q03", + "S16-Quest:Quest_S16_Milestone_Craft_Weapons_Q04", + "S16-Quest:Quest_S16_Milestone_Craft_Weapons_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_Above", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Damage_Above", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Damage_FromAbove_Q01", + "S16-Quest:Quest_S16_Milestone_Damage_FromAbove_Q02", + "S16-Quest:Quest_S16_Milestone_Damage_FromAbove_Q03", + "S16-Quest:Quest_S16_Milestone_Damage_FromAbove_Q04", + "S16-Quest:Quest_S16_Milestone_Damage_FromAbove_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_opponents", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Damage_opponents", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Dmg_Opponents_Q01", + "S16-Quest:Quest_S16_Milestone_Dmg_Opponents_Q02", + "S16-Quest:Quest_S16_Milestone_Dmg_Opponents_Q03", + "S16-Quest:Quest_S16_Milestone_Dmg_Opponents_Q04", + "S16-Quest:Quest_S16_Milestone_Dmg_Opponents_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_PlayerVehicle", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Damage_PlayerVehicle", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q01", + "S16-Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q02", + "S16-Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q03", + "S16-Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q04", + "S16-Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Shrubs", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Shrubs", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_DestroyShrubs_Q01", + "S16-Quest:Quest_S16_Milestone_DestroyShrubs_Q02", + "S16-Quest:Quest_S16_Milestone_DestroyShrubs_Q03", + "S16-Quest:Quest_S16_Milestone_DestroyShrubs_Q04", + "S16-Quest:Quest_S16_Milestone_DestroyShrubs_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Stones", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Stones", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_DestroyStones_Q01", + "S16-Quest:Quest_S16_Milestone_DestroyStones_Q02", + "S16-Quest:Quest_S16_Milestone_DestroyStones_Q03", + "S16-Quest:Quest_S16_Milestone_DestroyStones_Q04", + "S16-Quest:Quest_S16_Milestone_DestroyStones_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Trees", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Trees", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Destroy_Trees_Q01", + "S16-Quest:Quest_S16_Milestone_Destroy_Trees_Q02", + "S16-Quest:Quest_S16_Milestone_Destroy_Trees_Q03", + "S16-Quest:Quest_S16_Milestone_Destroy_Trees_Q04", + "S16-Quest:Quest_S16_Milestone_Destroy_Trees_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Distance_OnFoot", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Distance_OnFoot", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q01", + "S16-Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q02", + "S16-Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q03", + "S16-Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q04", + "S16-Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Don_Creature_Disquises", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Don_Creature_Disquises", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Creature_Disquise_Q01", + "S16-Quest:Quest_S16_Milestone_Creature_Disquise_Q02", + "S16-Quest:Quest_S16_Milestone_Creature_Disquise_Q03", + "S16-Quest:Quest_S16_Milestone_Creature_Disquise_Q04", + "S16-Quest:Quest_S16_Milestone_Creature_Disquise_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_150m", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Elim_150m", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Elim_150m_Q01", + "S16-Quest:Quest_S16_Milestone_Elim_150m_Q02", + "S16-Quest:Quest_S16_Milestone_Elim_150m_Q03", + "S16-Quest:Quest_S16_Milestone_Elim_150m_Q04", + "S16-Quest:Quest_S16_Milestone_Elim_150m_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Assault", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Elim_Assault", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Elim_Assault_Q01", + "S16-Quest:Quest_S16_Milestone_Elim_Assault_Q02", + "S16-Quest:Quest_S16_Milestone_Elim_Assault_Q03", + "S16-Quest:Quest_S16_Milestone_Elim_Assault_Q04", + "S16-Quest:Quest_S16_Milestone_Elim_Assault_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Bow", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Elim_Bow", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Bow_Elims_Q01", + "S16-Quest:Quest_S16_Milestone_Bow_Elims_Q02", + "S16-Quest:Quest_S16_Milestone_Bow_Elims_Q03", + "S16-Quest:Quest_S16_Milestone_Bow_Elims_Q04", + "S16-Quest:Quest_S16_Milestone_Bow_Elims_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Common_Uncommon", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Elim_Common_Uncommon", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q01", + "S16-Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q02", + "S16-Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q03", + "S16-Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q04", + "S16-Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Explosives", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Elim_Explosives", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Elim_Explosive_Q01", + "S16-Quest:Quest_S16_Milestone_Elim_Explosive_Q02", + "S16-Quest:Quest_S16_Milestone_Elim_Explosive_Q03", + "S16-Quest:Quest_S16_Milestone_Elim_Explosive_Q04", + "S16-Quest:Quest_S16_Milestone_Elim_Explosive_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Head_Shot", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Elim_Head_Shot", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_HeadShot_Elims_Q01", + "S16-Quest:Quest_S16_Milestone_HeadShot_Elims_Q02", + "S16-Quest:Quest_S16_Milestone_HeadShot_Elims_Q03", + "S16-Quest:Quest_S16_Milestone_HeadShot_Elims_Q04", + "S16-Quest:Quest_S16_Milestone_HeadShot_Elims_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Pistols", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Elim_Pistols", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Elim_Pistol_Q01", + "S16-Quest:Quest_S16_Milestone_Elim_Pistol_Q02", + "S16-Quest:Quest_S16_Milestone_Elim_Pistol_Q03", + "S16-Quest:Quest_S16_Milestone_Elim_Pistol_Q04", + "S16-Quest:Quest_S16_Milestone_Elim_Pistol_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Player", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Elim_Player", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Elim_Player_Q01", + "S16-Quest:Quest_S16_Milestone_Elim_Player_Q02", + "S16-Quest:Quest_S16_Milestone_Elim_Player_Q03", + "S16-Quest:Quest_S16_Milestone_Elim_Player_Q04", + "S16-Quest:Quest_S16_Milestone_Elim_Player_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Shotguns", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Elim_Shotguns", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Elim_Shotgun_Q01", + "S16-Quest:Quest_S16_Milestone_Elim_Shotgun_Q02", + "S16-Quest:Quest_S16_Milestone_Elim_Shotgun_Q03", + "S16-Quest:Quest_S16_Milestone_Elim_Shotgun_Q04", + "S16-Quest:Quest_S16_Milestone_Elim_Shotgun_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_SMG", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Elim_SMG", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Elim_SMG_Q01", + "S16-Quest:Quest_S16_Milestone_Elim_SMG_Q02", + "S16-Quest:Quest_S16_Milestone_Elim_SMG_Q03", + "S16-Quest:Quest_S16_Milestone_Elim_SMG_Q04", + "S16-Quest:Quest_S16_Milestone_Elim_SMG_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Sticky", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Elim_Sticky", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Sticky_Elims_Q01", + "S16-Quest:Quest_S16_Milestone_Sticky_Elims_Q02", + "S16-Quest:Quest_S16_Milestone_Sticky_Elims_Q03", + "S16-Quest:Quest_S16_Milestone_Sticky_Elims_Q04", + "S16-Quest:Quest_S16_Milestone_Sticky_Elims_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_GlideDistance", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_GlideDistance", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_GlideDistance_Q01", + "S16-Quest:Quest_S16_Milestone_GlideDistance_Q02", + "S16-Quest:Quest_S16_Milestone_GlideDistance_Q03", + "S16-Quest:Quest_S16_Milestone_GlideDistance_Q04", + "S16-Quest:Quest_S16_Milestone_GlideDistance_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harpoon_Elims", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Harpoon_Elims", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Harpoon_Elims_Q01", + "S16-Quest:Quest_S16_Milestone_Harpoon_Elims_Q02", + "S16-Quest:Quest_S16_Milestone_Harpoon_Elims_Q03", + "S16-Quest:Quest_S16_Milestone_Harpoon_Elims_Q04", + "S16-Quest:Quest_S16_Milestone_Harpoon_Elims_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harvest_Stone", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Harvest_Stone", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Harvest_Stone_Q01", + "S16-Quest:Quest_S16_Milestone_Harvest_Stone_Q02", + "S16-Quest:Quest_S16_Milestone_Harvest_Stone_Q03", + "S16-Quest:Quest_S16_Milestone_Harvest_Stone_Q04", + "S16-Quest:Quest_S16_Milestone_Harvest_Stone_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hit_Weakpoints", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Hit_Weakpoints", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Hit_Weakpoints_Q01", + "S16-Quest:Quest_S16_Milestone_Hit_Weakpoints_Q02", + "S16-Quest:Quest_S16_Milestone_Hit_Weakpoints_Q03", + "S16-Quest:Quest_S16_Milestone_Hit_Weakpoints_Q04", + "S16-Quest:Quest_S16_Milestone_Hit_Weakpoints_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hunt_Animals", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Hunt_Animals", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Hunt_Animals_Q01", + "S16-Quest:Quest_S16_Milestone_Hunt_Animals_Q02", + "S16-Quest:Quest_S16_Milestone_Hunt_Animals_Q03", + "S16-Quest:Quest_S16_Milestone_Hunt_Animals_Q04", + "S16-Quest:Quest_S16_Milestone_Hunt_Animals_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:questbundle_S16_milestone_ignite_opponent", + "templateId": "ChallengeBundle:questbundle_S16_milestone_ignite_opponent", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Ignite_Opponent_Q01", + "S16-Quest:Quest_S16_Milestone_Ignite_Opponent_Q02", + "S16-Quest:Quest_S16_Milestone_Ignite_Opponent_Q03", + "S16-Quest:Quest_S16_Milestone_Ignite_Opponent_Q04", + "S16-Quest:Quest_S16_Milestone_Ignite_Opponent_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:questbundle_S16_milestone_ignite_structure", + "templateId": "ChallengeBundle:questbundle_S16_milestone_ignite_structure", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Ignite_Structure_Q01", + "S16-Quest:Quest_S16_Milestone_Ignite_Structure_Q02", + "S16-Quest:Quest_S16_Milestone_Ignite_Structure_Q03", + "S16-Quest:Quest_S16_Milestone_Ignite_Structure_Q04", + "S16-Quest:Quest_S16_Milestone_Ignite_Structure_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:questbundle_S16_milestone_interact_apple", + "templateId": "ChallengeBundle:questbundle_S16_milestone_interact_apple", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Interact_Apple_Q01", + "S16-Quest:Quest_S16_Milestone_Interact_Apple_Q02", + "S16-Quest:Quest_S16_Milestone_Interact_Apple_Q03", + "S16-Quest:Quest_S16_Milestone_Interact_Apple_Q04", + "S16-Quest:Quest_S16_Milestone_Interact_Apple_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:questbundle_S16_milestone_interact_banana", + "templateId": "ChallengeBundle:questbundle_S16_milestone_interact_banana", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Interact_Banana_Q01", + "S16-Quest:Quest_S16_Milestone_Interact_Banana_Q02", + "S16-Quest:Quest_S16_Milestone_Interact_Banana_Q03", + "S16-Quest:Quest_S16_Milestone_Interact_Banana_Q04", + "S16-Quest:Quest_S16_Milestone_Interact_Banana_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:questbundle_S16_milestone_interact_campfire", + "templateId": "ChallengeBundle:questbundle_S16_milestone_interact_campfire", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Interact_Campfire_Q01", + "S16-Quest:Quest_S16_Milestone_Interact_Campfire_Q02", + "S16-Quest:Quest_S16_Milestone_Interact_Campfire_Q03", + "S16-Quest:Quest_S16_Milestone_Interact_Campfire_Q04", + "S16-Quest:Quest_S16_Milestone_Interact_Campfire_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:questbundle_S16_milestone_interact_forageditem", + "templateId": "ChallengeBundle:questbundle_S16_milestone_interact_forageditem", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Interact_ForagedItem_Q01", + "S16-Quest:Quest_S16_Milestone_Interact_ForagedItem_Q02", + "S16-Quest:Quest_S16_Milestone_Interact_ForagedItem_Q03", + "S16-Quest:Quest_S16_Milestone_Interact_ForagedItem_Q04", + "S16-Quest:Quest_S16_Milestone_Interact_ForagedItem_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:questbundle_S16_milestone_interact_mushroom", + "templateId": "ChallengeBundle:questbundle_S16_milestone_interact_mushroom", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Interact_Mushroom_Q01", + "S16-Quest:Quest_S16_Milestone_Interact_Mushroom_Q02", + "S16-Quest:Quest_S16_Milestone_Interact_Mushroom_Q03", + "S16-Quest:Quest_S16_Milestone_Interact_Mushroom_Q04", + "S16-Quest:Quest_S16_Milestone_Interact_Mushroom_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Furniture", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Furniture", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q01", + "S16-Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q02", + "S16-Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q03", + "S16-Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q04", + "S16-Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Structures", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Structures", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q01", + "S16-Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q02", + "S16-Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q03", + "S16-Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q04", + "S16-Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Melee_Elims", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Melee_Elims", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_MeleeKills_Q01", + "S16-Quest:Quest_S16_Milestone_MeleeKills_Q02", + "S16-Quest:Quest_S16_Milestone_MeleeKills_Q03", + "S16-Quest:Quest_S16_Milestone_MeleeKills_Q04", + "S16-Quest:Quest_S16_Milestone_MeleeKills_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Place_Top10", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Place_Top10", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Top10_Q01", + "S16-Quest:Quest_S16_Milestone_Top10_Q02", + "S16-Quest:Quest_S16_Milestone_Top10_Q03", + "S16-Quest:Quest_S16_Milestone_Top10_Q04", + "S16-Quest:Quest_S16_Milestone_Top10_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_RebootTeammate", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_RebootTeammate", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_RebootTeammate_Q01", + "S16-Quest:Quest_S16_Milestone_RebootTeammate_Q02", + "S16-Quest:Quest_S16_Milestone_RebootTeammate_Q03", + "S16-Quest:Quest_S16_Milestone_RebootTeammate_Q04", + "S16-Quest:Quest_S16_Milestone_RebootTeammate_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Revive_Teammates", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Revive_Teammates", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_ReviveTeammates_Q01", + "S16-Quest:Quest_S16_Milestone_ReviveTeammates_Q02", + "S16-Quest:Quest_S16_Milestone_ReviveTeammates_Q03", + "S16-Quest:Quest_S16_Milestone_ReviveTeammates_Q04", + "S16-Quest:Quest_S16_Milestone_ReviveTeammates_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_AmmoBoxes", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Search_AmmoBoxes", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q01", + "S16-Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q02", + "S16-Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q03", + "S16-Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q04", + "S16-Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_Chests", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Search_Chests", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Search_Chests_Q01", + "S16-Quest:Quest_S16_Milestone_Search_Chests_Q02", + "S16-Quest:Quest_S16_Milestone_Search_Chests_Q03", + "S16-Quest:Quest_S16_Milestone_Search_Chests_Q04", + "S16-Quest:Quest_S16_Milestone_Search_Chests_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_IceMachines", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Search_IceMachines", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Search_Ice_Machines_Q01", + "S16-Quest:Quest_S16_Milestone_Search_Ice_Machines_Q02", + "S16-Quest:Quest_S16_Milestone_Search_Ice_Machines_Q03", + "S16-Quest:Quest_S16_Milestone_Search_Ice_Machines_Q04", + "S16-Quest:Quest_S16_Milestone_Search_Ice_Machines_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_SupplyDrop", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Search_SupplyDrop", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Search_SupplyDrop_Q01", + "S16-Quest:Quest_S16_Milestone_Search_SupplyDrop_Q02", + "S16-Quest:Quest_S16_Milestone_Search_SupplyDrop_Q03", + "S16-Quest:Quest_S16_Milestone_Search_SupplyDrop_Q04", + "S16-Quest:Quest_S16_Milestone_Search_SupplyDrop_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_ShakedownOpponents", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_ShakedownOpponents", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_ShakedownOpponents_Q01", + "S16-Quest:Quest_S16_Milestone_ShakedownOpponents_Q02", + "S16-Quest:Quest_S16_Milestone_ShakedownOpponents_Q03", + "S16-Quest:Quest_S16_Milestone_ShakedownOpponents_Q04", + "S16-Quest:Quest_S16_Milestone_ShakedownOpponents_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Spend_Bars", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Spend_Bars", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Spend_Bars_Q01", + "S16-Quest:Quest_S16_Milestone_Spend_Bars_Q02", + "S16-Quest:Quest_S16_Milestone_Spend_Bars_Q03", + "S16-Quest:Quest_S16_Milestone_Spend_Bars_Q04", + "S16-Quest:Quest_S16_Milestone_Spend_Bars_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_SwimDistance", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_SwimDistance", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_SwimDistance_Q01", + "S16-Quest:Quest_S16_Milestone_SwimDistance_Q02", + "S16-Quest:Quest_S16_Milestone_SwimDistance_Q03", + "S16-Quest:Quest_S16_Milestone_SwimDistance_Q04", + "S16-Quest:Quest_S16_Milestone_SwimDistance_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Tame_Animals", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Tame_Animals", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milesonte_Tame_Animals_Q01", + "S16-Quest:Quest_S16_Milesonte_Tame_Animals_Q02", + "S16-Quest:Quest_S16_Milesonte_Tame_Animals_Q03", + "S16-Quest:Quest_S16_Milesonte_Tame_Animals_Q04", + "S16-Quest:Quest_S16_Milesonte_Tame_Animals_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Thank_Driver", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Thank_Driver", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Thank_Driver_Q01", + "S16-Quest:Quest_S16_Milestone_Thank_Driver_Q02", + "S16-Quest:Quest_S16_Milestone_Thank_Driver_Q03", + "S16-Quest:Quest_S16_Milestone_Thank_Driver_Q04", + "S16-Quest:Quest_S16_Milestone_Thank_Driver_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Upgrade_Weapons", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Upgrade_Weapons", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_UpgradeWeapons_Q01", + "S16-Quest:Quest_S16_Milestone_UpgradeWeapons_Q02", + "S16-Quest:Quest_S16_Milestone_UpgradeWeapons_Q03", + "S16-Quest:Quest_S16_Milestone_UpgradeWeapons_Q04", + "S16-Quest:Quest_S16_Milestone_UpgradeWeapons_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_UseFishingSpots", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_UseFishingSpots", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_UseFishingSpots_Q01", + "S16-Quest:Quest_S16_Milestone_UseFishingSpots_Q02", + "S16-Quest:Quest_S16_Milestone_UseFishingSpots_Q03", + "S16-Quest:Quest_S16_Milestone_UseFishingSpots_Q04", + "S16-Quest:Quest_S16_Milestone_UseFishingSpots_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Bandages", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Use_Bandages", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Use_Bandages_Q01", + "S16-Quest:Quest_S16_Milestone_Use_Bandages_Q02", + "S16-Quest:Quest_S16_Milestone_Use_Bandages_Q03", + "S16-Quest:Quest_S16_Milestone_Use_Bandages_Q04", + "S16-Quest:Quest_S16_Milestone_Use_Bandages_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Potions", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_Use_Potions", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_Use_Shield_Potions_Q01", + "S16-Quest:Quest_S16_Milestone_Use_Shield_Potions_Q02", + "S16-Quest:Quest_S16_Milestone_Use_Shield_Potions_Q03", + "S16-Quest:Quest_S16_Milestone_Use_Shield_Potions_Q04", + "S16-Quest:Quest_S16_Milestone_Use_Shield_Potions_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDestroy_Structures", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_VehicleDestroy_Structures", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q01", + "S16-Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q02", + "S16-Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q03", + "S16-Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q04", + "S16-Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDistance", + "templateId": "ChallengeBundle:QuestBundle_S16_Milestone_VehicleDistance", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Milestone_VehicleDistance_Q01", + "S16-Quest:Quest_S16_Milestone_VehicleDistance_Q02", + "S16-Quest:Quest_S16_Milestone_VehicleDistance_Q03", + "S16-Quest:Quest_S16_Milestone_VehicleDistance_Q04", + "S16-Quest:Quest_S16_Milestone_VehicleDistance_Q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Milestone_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_01", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_01", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W1_Epic_Q01", + "S16-Quest:Quest_S16_W1_Epic_Q03", + "S16-Quest:Quest_S16_W1_Epic_Q05", + "S16-Quest:Quest_S16_W1_Epic_Q07" + ], + "questStages": [ + "S16-Quest:Quest_S16_W1_Epic_Q02", + "S16-Quest:Quest_S16_W1_Epic_Q04", + "S16-Quest:Quest_S16_W1_Epic_Q06" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_02", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_02", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W2_Epic_Q01", + "S16-Quest:Quest_S16_W2_Epic_Q02", + "S16-Quest:Quest_S16_W2_Epic_Q05" + ], + "questStages": [ + "S16-Quest:Quest_S16_W2_Epic_Q03", + "S16-Quest:Quest_S16_W2_Epic_Q04", + "S16-Quest:Quest_S16_W2_Epic_Q06", + "S16-Quest:Quest_S16_W2_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_03", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_03", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W3_Epic_Q01", + "S16-Quest:Quest_S16_W3_Epic_Q03", + "S16-Quest:Quest_S16_W3_Epic_Q04" + ], + "questStages": [ + "S16-Quest:Quest_S16_W3_Epic_Q02", + "S16-Quest:Quest_S16_W3_Epic_Q05", + "S16-Quest:Quest_S16_W3_Epic_Q06", + "S16-Quest:Quest_S16_W3_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_04", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_04", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W4_Epic_Q01", + "S16-Quest:Quest_S16_W4_Epic_Q04" + ], + "questStages": [ + "S16-Quest:Quest_S16_W4_Epic_Q02", + "S16-Quest:Quest_S16_W4_Epic_Q03", + "S16-Quest:Quest_S16_W4_Epic_Q05", + "S16-Quest:Quest_S16_W4_Epic_Q06", + "S16-Quest:Quest_S16_W4_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_05", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_05", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W5_Epic_Q01", + "S16-Quest:Quest_S16_W5_Epic_Q04", + "S16-Quest:Quest_S16_W5_Epic_Q05" + ], + "questStages": [ + "S16-Quest:Quest_S16_W5_Epic_Q02", + "S16-Quest:Quest_S16_W5_Epic_Q03", + "S16-Quest:Quest_S16_W5_Epic_Q06", + "S16-Quest:Quest_S16_W5_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_06", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_06", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W6_Epic_Q01", + "S16-Quest:Quest_S16_W6_Epic_Q03", + "S16-Quest:Quest_S16_W6_Epic_Q06" + ], + "questStages": [ + "S16-Quest:Quest_S16_W6_Epic_Q02", + "S16-Quest:Quest_S16_W6_Epic_Q04", + "S16-Quest:Quest_S16_W6_Epic_Q05", + "S16-Quest:Quest_S16_W6_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_07", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_07", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W7_Epic_Q01", + "S16-Quest:Quest_S16_W7_Epic_Q05" + ], + "questStages": [ + "S16-Quest:Quest_S16_W7_Epic_Q02", + "S16-Quest:Quest_S16_W7_Epic_Q03", + "S16-Quest:Quest_S16_W7_Epic_Q04", + "S16-Quest:Quest_S16_W7_Epic_Q06", + "S16-Quest:Quest_S16_W7_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_08", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_08", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W8_Epic_Q01", + "S16-Quest:Quest_S16_W8_Epic_Q05" + ], + "questStages": [ + "S16-Quest:Quest_S16_W8_Epic_Q02", + "S16-Quest:Quest_S16_W8_Epic_Q03", + "S16-Quest:Quest_S16_W8_Epic_Q04", + "S16-Quest:Quest_S16_W8_Epic_Q06", + "S16-Quest:Quest_S16_W8_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_09", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_09", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W9_Epic_Q01", + "S16-Quest:Quest_S16_W9_Epic_Q04" + ], + "questStages": [ + "S16-Quest:Quest_S16_W9_Epic_Q02", + "S16-Quest:Quest_S16_W9_Epic_Q03", + "S16-Quest:Quest_S16_W9_Epic_Q05", + "S16-Quest:Quest_S16_W9_Epic_Q06", + "S16-Quest:Quest_S16_W9_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_10", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_10", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W10_Epic_Q01", + "S16-Quest:Quest_S16_W10_Epic_Q04" + ], + "questStages": [ + "S16-Quest:Quest_S16_W10_Epic_Q02", + "S16-Quest:Quest_S16_W10_Epic_Q03", + "S16-Quest:Quest_S16_W10_Epic_Q05", + "S16-Quest:Quest_S16_W10_Epic_Q06", + "S16-Quest:Quest_S16_W10_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_11", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_11", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W11_Epic_Q01", + "S16-Quest:Quest_S16_W11_Epic_Q02", + "S16-Quest:Quest_S16_W11_Epic_Q06" + ], + "questStages": [ + "S16-Quest:Quest_S16_W11_Epic_Q03", + "S16-Quest:Quest_S16_W11_Epic_Q05", + "S16-Quest:Quest_S16_W11_Epic_Q04", + "S16-Quest:Quest_S16_W11_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_12", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_12", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W12_Epic_Q01", + "S16-Quest:Quest_S16_W12_Epic_Q05", + "S16-Quest:Quest_S16_W12_Epic_Q04" + ], + "questStages": [ + "S16-Quest:Quest_S16_W12_Epic_Q02", + "S16-Quest:Quest_S16_W12_Epic_Q03", + "S16-Quest:Quest_S16_W12_Epic_Q06", + "S16-Quest:Quest_S16_W12_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_13", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_13", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Week_13" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_14", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_14", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Week_14" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:MissionBundle_S16_Week_15", + "templateId": "ChallengeBundle:MissionBundle_S16_Week_15", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Week_15" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Mission_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Narrative_01", + "templateId": "ChallengeBundle:QuestBundle_S16_Narrative_01", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_narrative_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Narrative_Schedule_01" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Narrative_02", + "templateId": "ChallengeBundle:QuestBundle_S16_Narrative_02", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_narrative_q02" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Narrative_Schedule_02" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Narrative_03", + "templateId": "ChallengeBundle:QuestBundle_S16_Narrative_03", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_narrative_q03" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Narrative_Schedule_03" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Narrative_04", + "templateId": "ChallengeBundle:QuestBundle_S16_Narrative_04", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_narrative_q04" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Narrative_Schedule_04" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Narrative_05", + "templateId": "ChallengeBundle:QuestBundle_S16_Narrative_05", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_narrative_q05" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Narrative_Schedule_05" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_01", + "templateId": "ChallengeBundle:QuestBundle_S16_Legendary_Week_01", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W1_SR_Q01a", + "S16-Quest:Quest_S16_W1_SR_Q01b", + "S16-Quest:Quest_S16_W1_SR_Q01c", + "S16-Quest:Quest_S16_W1_SR_Q01d", + "S16-Quest:Quest_S16_W1_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_01" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_02", + "templateId": "ChallengeBundle:QuestBundle_S16_Legendary_Week_02", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W2_SR_Q01a", + "S16-Quest:Quest_S16_W2_SR_Q01b", + "S16-Quest:Quest_S16_W2_SR_Q01c", + "S16-Quest:Quest_S16_W2_SR_Q01d", + "S16-Quest:Quest_S16_W2_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_02" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_03", + "templateId": "ChallengeBundle:QuestBundle_S16_Legendary_Week_03", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W3_SR_Q01a", + "S16-Quest:Quest_S16_W3_SR_Q01b", + "S16-Quest:Quest_S16_W3_SR_Q01c", + "S16-Quest:Quest_S16_W3_SR_Q01d", + "S16-Quest:Quest_S16_W3_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_03" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_04", + "templateId": "ChallengeBundle:QuestBundle_S16_Legendary_Week_04", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W4_SR_Q01a", + "S16-Quest:Quest_S16_W4_SR_Q01b", + "S16-Quest:Quest_S16_W4_SR_Q01c", + "S16-Quest:Quest_S16_W4_SR_Q01d", + "S16-Quest:Quest_S16_W4_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_04" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_05", + "templateId": "ChallengeBundle:QuestBundle_S16_Legendary_Week_05", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W5_SR_Q01a", + "S16-Quest:Quest_S16_W5_SR_Q01b", + "S16-Quest:Quest_S16_W5_SR_Q01c", + "S16-Quest:Quest_S16_W5_SR_Q01d", + "S16-Quest:Quest_S16_W5_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_05" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_06", + "templateId": "ChallengeBundle:QuestBundle_S16_Legendary_Week_06", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W6_SR_Q01a", + "S16-Quest:Quest_S16_W6_SR_Q01b", + "S16-Quest:Quest_S16_W6_SR_Q01c", + "S16-Quest:Quest_S16_W6_SR_Q01d", + "S16-Quest:Quest_S16_W6_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_06" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_07", + "templateId": "ChallengeBundle:QuestBundle_S16_Legendary_Week_07", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W7_SR_Q01a", + "S16-Quest:Quest_S16_W7_SR_Q01b", + "S16-Quest:Quest_S16_W7_SR_Q01c", + "S16-Quest:Quest_S16_W7_SR_Q01d", + "S16-Quest:Quest_S16_W7_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_07" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_08", + "templateId": "ChallengeBundle:QuestBundle_S16_Legendary_Week_08", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W8_SR_Q01a", + "S16-Quest:Quest_S16_W8_SR_Q01b", + "S16-Quest:Quest_S16_W8_SR_Q01c", + "S16-Quest:Quest_S16_W8_SR_Q01d", + "S16-Quest:Quest_S16_W8_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_08" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_09", + "templateId": "ChallengeBundle:QuestBundle_S16_Legendary_Week_09", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W9_SR_Q01a", + "S16-Quest:Quest_S16_W9_SR_Q01b", + "S16-Quest:Quest_S16_W9_SR_Q01c", + "S16-Quest:Quest_S16_W9_SR_Q01d", + "S16-Quest:Quest_S16_W9_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_09" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_10", + "templateId": "ChallengeBundle:QuestBundle_S16_Legendary_Week_10", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W10_SR_Q01a", + "S16-Quest:Quest_S16_W10_SR_Q01b", + "S16-Quest:Quest_S16_W10_SR_Q01c", + "S16-Quest:Quest_S16_W10_SR_Q01d", + "S16-Quest:Quest_S16_W10_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_10" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_11", + "templateId": "ChallengeBundle:QuestBundle_S16_Legendary_Week_11", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W11_SR_Q01a", + "S16-Quest:Quest_S16_W11_SR_Q01b", + "S16-Quest:Quest_S16_W11_SR_Q01c", + "S16-Quest:Quest_S16_W11_SR_Q01d", + "S16-Quest:Quest_S16_W11_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_11" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_12", + "templateId": "ChallengeBundle:QuestBundle_S16_Legendary_Week_12", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_W12_SR_Q01a", + "S16-Quest:Quest_S16_W12_SR_Q01b", + "S16-Quest:Quest_S16_W12_SR_Q01c", + "S16-Quest:Quest_S16_W12_SR_Q01d", + "S16-Quest:Quest_S16_W12_SR_Q01e" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Schedule_Legendary_Week_12" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T1_01", + "templateId": "ChallengeBundle:QuestBundle_S16_SuperStyles_T1_01", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_SuperStyles_T1_01_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T1_Schedule_01" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T1_02", + "templateId": "ChallengeBundle:QuestBundle_S16_SuperStyles_T1_02", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_SuperStyles_T1_02_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T1_Schedule_02" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T1_03", + "templateId": "ChallengeBundle:QuestBundle_S16_SuperStyles_T1_03", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_SuperStyles_T1_03_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T1_Schedule_03" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T2_01", + "templateId": "ChallengeBundle:QuestBundle_S16_SuperStyles_T2_01", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_SuperStyles_T2_01_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T2_Schedule_01" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T2_02", + "templateId": "ChallengeBundle:QuestBundle_S16_SuperStyles_T2_02", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_SuperStyles_T2_02_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T2_Schedule_02" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T2_03", + "templateId": "ChallengeBundle:QuestBundle_S16_SuperStyles_T2_03", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_SuperStyles_T2_03_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T2_Schedule_03" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T3_01", + "templateId": "ChallengeBundle:QuestBundle_S16_SuperStyles_T3_01", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_SuperStyles_T3_01_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T3_Schedule_01" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T3_02", + "templateId": "ChallengeBundle:QuestBundle_S16_SuperStyles_T3_02", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_SuperStyles_T3_02_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T3_Schedule_02" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T3_03", + "templateId": "ChallengeBundle:QuestBundle_S16_SuperStyles_T3_03", + "grantedquestinstanceids": [ + "S16-Quest:Quest_S16_Style_SuperStyles_T3_03_q01" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_SuperStyles_T3_Schedule_03" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Tower_00", + "templateId": "ChallengeBundle:QuestBundle_S16_Tower_00", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_tower_q01", + "S16-Quest:quest_s16_tower_q02", + "S16-Quest:quest_s16_tower_q03" + ], + "questStages": [ + "S16-Quest:quest_s16_tower_q02", + "S16-Quest:quest_s16_tower_q03", + "S16-Quest:quest_s16_tower_q03" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Tower_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Tower_01", + "templateId": "ChallengeBundle:QuestBundle_S16_Tower_01", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_tower_q11", + "S16-Quest:quest_s16_tower_q13", + "S16-Quest:quest_s16_tower_q14" + ], + "questStages": [ + "S16-Quest:quest_s16_tower_q13", + "S16-Quest:quest_s16_tower_q14", + "S16-Quest:quest_s16_tower_q14" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Tower_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Tower_02", + "templateId": "ChallengeBundle:QuestBundle_S16_Tower_02", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_tower_q17", + "S16-Quest:quest_s16_tower_q19", + "S16-Quest:quest_s16_tower_q20", + "S16-Quest:quest_s16_tower_q21" + ], + "questStages": [ + "S16-Quest:quest_s16_tower_q19", + "S16-Quest:quest_s16_tower_q20", + "S16-Quest:quest_s16_tower_q21", + "S16-Quest:quest_s16_tower_q20", + "S16-Quest:quest_s16_tower_q21", + "S16-Quest:quest_s16_tower_q21" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Tower_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Tower_03", + "templateId": "ChallengeBundle:QuestBundle_S16_Tower_03", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_tower_q19" + ], + "questStages": [ + "S16-Quest:quest_s16_tower_q20", + "S16-Quest:quest_s16_tower_q21" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Tower_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Tower_Gated_01", + "templateId": "ChallengeBundle:QuestBundle_S16_Tower_Gated_01", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_tower_q07" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Tower_Schedule" + }, + { + "itemGuid": "S16-ChallengeBundle:QuestBundle_S16_Tower_Gated_02", + "templateId": "ChallengeBundle:QuestBundle_S16_Tower_Gated_02", + "grantedquestinstanceids": [ + "S16-Quest:quest_s16_tower_q09" + ], + "challenge_bundle_schedule_id": "S16-ChallengeBundleSchedule:Season16_Tower_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S16-Quest:Quest_S16_Style_AlternateStyles_00_q01", + "templateId": "Quest:Quest_S16_Style_AlternateStyles_00_q01", + "objectives": [ + { + "name": "quest_style_s16_alternatestyles_00_q01_obj01", + "count": 6 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_00" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_AlternateStyles_01_q01", + "templateId": "Quest:Quest_S16_Style_AlternateStyles_01_q01", + "objectives": [ + { + "name": "quest_style_s16_alternatestyles_01_q01_obj01", + "count": 12 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_AlternateStyles_02_q01", + "templateId": "Quest:Quest_S16_Style_AlternateStyles_02_q01", + "objectives": [ + { + "name": "quest_style_s16_alternatestyles_02_q01_obj01", + "count": 18 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_AlternateStyles_03_q01", + "templateId": "Quest:Quest_S16_Style_AlternateStyles_03_q01", + "objectives": [ + { + "name": "quest_style_s16_alternatestyles_03_q01_obj01", + "count": 24 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_AlternateStyles_04_q01", + "templateId": "Quest:Quest_S16_Style_AlternateStyles_04_q01", + "objectives": [ + { + "name": "quest_style_s16_alternatestyles_04_q01_obj01", + "count": 15 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_AlternateStyles_04_q02", + "templateId": "Quest:Quest_S16_Style_AlternateStyles_04_q02", + "objectives": [ + { + "name": "quest_style_s16_alternatestyles_04_q02_obj01", + "count": 31 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_AlternateStyles_05_q01", + "templateId": "Quest:Quest_S16_Style_AlternateStyles_05_q01", + "objectives": [ + { + "name": "quest_style_s16_alternatestyles_05_q01_obj01", + "count": 29 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_AlternateStyles_05_q02", + "templateId": "Quest:Quest_S16_Style_AlternateStyles_05_q02", + "objectives": [ + { + "name": "quest_style_s16_alternatestyles_05_q02_obj01", + "count": 38 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_AlternateStyles_06_q01", + "templateId": "Quest:Quest_S16_Style_AlternateStyles_06_q01", + "objectives": [ + { + "name": "quest_style_s16_alternatestyles_06_q01_obj01", + "count": 61 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_AlternateStyles_06_q02", + "templateId": "Quest:Quest_S16_Style_AlternateStyles_06_q02", + "objectives": [ + { + "name": "quest_style_s16_alternatestyles_06_q02_obj01", + "count": 65 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_AlternateStyles_07_q01", + "templateId": "Quest:Quest_S16_Style_AlternateStyles_07_q01", + "objectives": [ + { + "name": "quest_style_s16_alternatestyles_07_q01_obj01", + "count": 77 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_AlternateStyles_07_q02", + "templateId": "Quest:Quest_S16_Style_AlternateStyles_07_q02", + "objectives": [ + { + "name": "quest_style_s16_alternatestyles_07_q02_obj01", + "count": 70 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_AlternateStyles_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Bicycle_q01", + "templateId": "Quest:Quest_S16_Bicycle_q01", + "objectives": [ + { + "name": "quest_s16_Bicycle_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_01" + }, + { + "itemGuid": "S16-Quest:quest_s16_Bicycle_q02", + "templateId": "Quest:quest_s16_Bicycle_q02", + "objectives": [ + { + "name": "quest_s16_Bicycle_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_02" + }, + { + "itemGuid": "S16-Quest:quest_s16_Bicycle_q03", + "templateId": "Quest:quest_s16_Bicycle_q03", + "objectives": [ + { + "name": "quest_s16_Bicycle_q03_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_03" + }, + { + "itemGuid": "S16-Quest:quest_s16_Bicycle_q04", + "templateId": "Quest:quest_s16_Bicycle_q04", + "objectives": [ + { + "name": "quest_s16_Bicycle_q04_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_04" + }, + { + "itemGuid": "S16-Quest:quest_s16_Bicycle_q05", + "templateId": "Quest:quest_s16_Bicycle_q05", + "objectives": [ + { + "name": "quest_s16_Bicycle_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_05" + }, + { + "itemGuid": "S16-Quest:quest_s16_Bicycle_q06", + "templateId": "Quest:quest_s16_Bicycle_q06", + "objectives": [ + { + "name": "quest_s16_Bicycle_q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_06" + }, + { + "itemGuid": "S16-Quest:quest_S16_Bicycle_q07", + "templateId": "Quest:quest_S16_Bicycle_q07", + "objectives": [ + { + "name": "quest_style_s16_bicycle_00_q07_obj01", + "count": 45 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_07" + }, + { + "itemGuid": "S16-Quest:quest_S16_Bicycle_q08", + "templateId": "Quest:quest_S16_Bicycle_q08", + "objectives": [ + { + "name": "quest_style_s16_bicycle_00_q08_obj01", + "count": 49 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_08" + }, + { + "itemGuid": "S16-Quest:quest_S16_Bicycle_q09", + "templateId": "Quest:quest_S16_Bicycle_q09", + "objectives": [ + { + "name": "quest_style_s16_bicycle_00_q09_obj01", + "count": 52 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_09" + }, + { + "itemGuid": "S16-Quest:quest_S16_Bicycle_q10", + "templateId": "Quest:quest_S16_Bicycle_q10", + "objectives": [ + { + "name": "quest_style_s16_bicycle_00_q10_obj01", + "count": 56 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_10" + }, + { + "itemGuid": "S16-Quest:quest_S16_Bicycle_q11_01", + "templateId": "Quest:quest_S16_Bicycle_q11_01", + "objectives": [ + { + "name": "quest_style_s16_bicycle_11_q01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_11" + }, + { + "itemGuid": "S16-Quest:quest_S16_Bicycle_q11_02", + "templateId": "Quest:quest_S16_Bicycle_q11_02", + "objectives": [ + { + "name": "quest_style_s16_bicycle_00_q11_obj01", + "count": 60 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Bicycle_11" + }, + { + "itemGuid": "S16-Quest:quest_s16_fs_q01", + "templateId": "Quest:quest_s16_fs_q01", + "objectives": [ + { + "name": "quest_s16_fs_q01_obj0", + "count": 1 + }, + { + "name": "quest_s16_fs_q01_obj1", + "count": 1 + }, + { + "name": "quest_s16_fs_q01_obj2", + "count": 1 + }, + { + "name": "quest_s16_fs_q01_obj3", + "count": 1 + }, + { + "name": "quest_s16_fs_q01_obj4", + "count": 1 + }, + { + "name": "quest_s16_fs_q01_obj5", + "count": 1 + }, + { + "name": "quest_s16_fs_q01_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_01" + }, + { + "itemGuid": "S16-Quest:quest_s16_fs_q02", + "templateId": "Quest:quest_s16_fs_q02", + "objectives": [ + { + "name": "quest_s16_fs_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_02" + }, + { + "itemGuid": "S16-Quest:quest_s16_fs_q03", + "templateId": "Quest:quest_s16_fs_q03", + "objectives": [ + { + "name": "quest_s16_fs_q03_obj0", + "count": 1 + }, + { + "name": "quest_s16_fs_q03_obj1", + "count": 1 + }, + { + "name": "quest_s16_fs_q03_obj2", + "count": 1 + }, + { + "name": "quest_s16_fs_q03_obj3", + "count": 1 + }, + { + "name": "quest_s16_fs_q03_obj4", + "count": 1 + }, + { + "name": "quest_s16_fs_q03_obj5", + "count": 1 + }, + { + "name": "quest_s16_fs_q03_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_03" + }, + { + "itemGuid": "S16-Quest:quest_s16_fs_q04", + "templateId": "Quest:quest_s16_fs_q04", + "objectives": [ + { + "name": "quest_s16_fs_q04_obj0", + "count": 1 + }, + { + "name": "quest_s16_fs_q04_obj1", + "count": 1 + }, + { + "name": "quest_s16_fs_q04_obj2", + "count": 1 + }, + { + "name": "quest_s16_fs_q04_obj3", + "count": 1 + }, + { + "name": "quest_s16_fs_q04_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_04" + }, + { + "itemGuid": "S16-Quest:quest_s16_fs_q05", + "templateId": "Quest:quest_s16_fs_q05", + "objectives": [ + { + "name": "quest_s16_fs_q05_obj0", + "count": 1 + }, + { + "name": "quest_s16_fs_q05_obj1", + "count": 1 + }, + { + "name": "quest_s16_fs_q05_obj2", + "count": 1 + }, + { + "name": "quest_s16_fs_q05_obj3", + "count": 1 + }, + { + "name": "quest_s16_fs_q05_obj4", + "count": 1 + }, + { + "name": "quest_s16_fs_q05_obj5", + "count": 1 + }, + { + "name": "quest_s16_fs_q05_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Foreshadowing_05" + }, + { + "itemGuid": "S16-Quest:quest_s16_hardwood_q01", + "templateId": "Quest:quest_s16_hardwood_q01", + "objectives": [ + { + "name": "hardwood_visit_hub", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Hardwood" + }, + { + "itemGuid": "S16-Quest:quest_s16_hardwood_q03", + "templateId": "Quest:quest_s16_hardwood_q03", + "objectives": [ + { + "name": "hardwood_play_match", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Hardwood" + }, + { + "itemGuid": "S16-Quest:quest_s16_hardwood_q04", + "templateId": "Quest:quest_s16_hardwood_q04", + "objectives": [ + { + "name": "hardwood_score", + "count": 30 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Hardwood" + }, + { + "itemGuid": "S16-Quest:quest_s16_hardwood_q05", + "templateId": "Quest:quest_s16_hardwood_q05", + "objectives": [ + { + "name": "hardwood_complete_all_challenges", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Hardwood" + }, + { + "itemGuid": "S16-Quest:quest_s16_fs_q01", + "templateId": "Quest:quest_s16_fs_q01", + "objectives": [ + { + "name": "quest_s16_fs_q01_obj0", + "count": 1 + }, + { + "name": "quest_s16_fs_q01_obj1", + "count": 1 + }, + { + "name": "quest_s16_fs_q01_obj2", + "count": 1 + }, + { + "name": "quest_s16_fs_q01_obj3", + "count": 1 + }, + { + "name": "quest_s16_fs_q01_obj4", + "count": 1 + }, + { + "name": "quest_s16_fs_q01_obj5", + "count": 1 + }, + { + "name": "quest_s16_fs_q01_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Lady_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Assist_Elims_Q01", + "templateId": "Quest:Quest_S16_Milestone_Assist_Elims_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Assist_Elims_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Assist_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Assist_Elims_Q02", + "templateId": "Quest:Quest_S16_Milestone_Assist_Elims_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Assist_Elims_Q02_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Assist_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Assist_Elims_Q03", + "templateId": "Quest:Quest_S16_Milestone_Assist_Elims_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Assist_Elims_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Assist_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Assist_Elims_Q04", + "templateId": "Quest:Quest_S16_Milestone_Assist_Elims_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Assist_Elims_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Assist_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Assist_Elims_Q05", + "templateId": "Quest:Quest_S16_Milestone_Assist_Elims_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Assist_Elims_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Assist_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q01", + "templateId": "Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elims_Frome_Boat_Q01_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Boat_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q02", + "templateId": "Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elims_Frome_Boat_Q02_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Boat_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q03", + "templateId": "Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elims_Frome_Boat_Q03_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Boat_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q04", + "templateId": "Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elims_Frome_Boat_Q04_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Boat_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q05", + "templateId": "Quest:Quest_S16_Milestone_Elims_Frome_Boat_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elims_Frome_Boat_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Boat_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CatchFish_Q01", + "templateId": "Quest:Quest_S16_Milestone_CatchFish_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_CatchFish_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_CatchFish" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CatchFish_Q02", + "templateId": "Quest:Quest_S16_Milestone_CatchFish_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_CatchFish_Q02_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_CatchFish" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CatchFish_Q03", + "templateId": "Quest:Quest_S16_Milestone_CatchFish_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_CatchFish_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_CatchFish" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CatchFish_Q04", + "templateId": "Quest:Quest_S16_Milestone_CatchFish_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_CatchFish_Q04_obj0", + "count": 125 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_CatchFish" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CatchFish_Q05", + "templateId": "Quest:Quest_S16_Milestone_CatchFish_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_CatchFish_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_CatchFish" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q01", + "templateId": "Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectBlueXPCoins_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Blue_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q02", + "templateId": "Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectBlueXPCoins_Q02_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Blue_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q03", + "templateId": "Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectBlueXPCoins_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Blue_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q04", + "templateId": "Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectBlueXPCoins_Q04_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Blue_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q05", + "templateId": "Quest:Quest_S16_Milestone_CollectBlueXPCoins_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectBlueXPCoins_Q05_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Blue_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Collect_Bones_Q01", + "templateId": "Quest:Quest_S16_Milestone_Collect_Bones_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Collect_Bones_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Bones" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Collect_Bones_Q02", + "templateId": "Quest:Quest_S16_Milestone_Collect_Bones_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Collect_Bones_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Bones" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Collect_Bones_Q03", + "templateId": "Quest:Quest_S16_Milestone_Collect_Bones_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Collect_Bones_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Bones" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Collect_Bones_Q04", + "templateId": "Quest:Quest_S16_Milestone_Collect_Bones_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Collect_Bones_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Bones" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Collect_Bones_Q05", + "templateId": "Quest:Quest_S16_Milestone_Collect_Bones_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Collect_Bones_Q05_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Bones" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGold_Q01", + "templateId": "Quest:Quest_S16_Milestone_CollectGold_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGold_Q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGold_Q02", + "templateId": "Quest:Quest_S16_Milestone_CollectGold_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGold_Q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGold_Q03", + "templateId": "Quest:Quest_S16_Milestone_CollectGold_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGold_Q03_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGold_Q04", + "templateId": "Quest:Quest_S16_Milestone_CollectGold_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGold_Q04_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGold_Q05", + "templateId": "Quest:Quest_S16_Milestone_CollectGold_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGold_Q05_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q01", + "templateId": "Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGoldXPCoins_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q02", + "templateId": "Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGoldXPCoins_Q02_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q03", + "templateId": "Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGoldXPCoins_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q04", + "templateId": "Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGoldXPCoins_Q04_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q05", + "templateId": "Quest:Quest_S16_Milestone_CollectGoldXPCoins_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGoldXPCoins_Q05_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Gold_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q01", + "templateId": "Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGreenXPCoins_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Green_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q02", + "templateId": "Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGreenXPCoins_Q02_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Green_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q03", + "templateId": "Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGreenXPCoins_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Green_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q04", + "templateId": "Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGreenXPCoins_Q04_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Green_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q05", + "templateId": "Quest:Quest_S16_Milestone_CollectGreenXPCoins_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectGreenXPCoins_Q05_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Green_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Collect_Meat_Q01", + "templateId": "Quest:Quest_S16_Milestone_Collect_Meat_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Collect_Meat_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Meat" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Collect_Meat_Q02", + "templateId": "Quest:Quest_S16_Milestone_Collect_Meat_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Collect_Meat_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Meat" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Collect_Meat_Q03", + "templateId": "Quest:Quest_S16_Milestone_Collect_Meat_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Collect_Meat_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Meat" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Collect_Meat_Q04", + "templateId": "Quest:Quest_S16_Milestone_Collect_Meat_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Collect_Meat_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Meat" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Collect_Meat_Q05", + "templateId": "Quest:Quest_S16_Milestone_Collect_Meat_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Collect_Meat_Q05_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Meat" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectPurpleXPCoins_Q01", + "templateId": "Quest:Quest_S16_Milestone_CollectPurpleXPCoins_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectPurpleXPCoins_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Purple_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectPurpleXPCoins_Q02", + "templateId": "Quest:Quest_S16_Milestone_CollectPurpleXPCoins_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectPurpleXPCoins_Q02_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Purple_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectPurpleXPCoins_Q03", + "templateId": "Quest:Quest_S16_Milestone_CollectPurpleXPCoins_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectPurpleXPCoins_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Purple_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CollectPurpleXPCoins_Q04", + "templateId": "Quest:Quest_S16_Milestone_CollectPurpleXPCoins_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_CollectPurpleXPCoins_Q04_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Collect_Purple_Coins" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CompleteBounties_Q01", + "templateId": "Quest:Quest_S16_Milestone_CompleteBounties_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_CompleteBounties_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CompleteBounties_Q02", + "templateId": "Quest:Quest_S16_Milestone_CompleteBounties_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_CompleteBounties_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CompleteBounties_Q03", + "templateId": "Quest:Quest_S16_Milestone_CompleteBounties_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_CompleteBounties_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CompleteBounties_Q04", + "templateId": "Quest:Quest_S16_Milestone_CompleteBounties_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_CompleteBounties_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_CompleteBounties_Q05", + "templateId": "Quest:Quest_S16_Milestone_CompleteBounties_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_CompleteBounties_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_CQuest_Q01", + "templateId": "Quest:Quest_S16_Milestone_Complete_CQuest_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_CQuest_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_CQuest_Q02", + "templateId": "Quest:Quest_S16_Milestone_Complete_CQuest_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_CQuest_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_CQuest_Q03", + "templateId": "Quest:Quest_S16_Milestone_Complete_CQuest_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_CQuest_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_CQuest_Q04", + "templateId": "Quest:Quest_S16_Milestone_Complete_CQuest_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_CQuest_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_CQuest_Q05", + "templateId": "Quest:Quest_S16_Milestone_Complete_CQuest_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_CQuest_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_EQuest_Q01", + "templateId": "Quest:Quest_S16_Milestone_Complete_EQuest_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_EQuest_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_EQuest_Q02", + "templateId": "Quest:Quest_S16_Milestone_Complete_EQuest_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_EQuest_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_EQuest_Q03", + "templateId": "Quest:Quest_S16_Milestone_Complete_EQuest_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_EQuest_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_EQuest_Q04", + "templateId": "Quest:Quest_S16_Milestone_Complete_EQuest_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_EQuest_Q04_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_EQuest_Q05", + "templateId": "Quest:Quest_S16_Milestone_Complete_EQuest_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_EQuest_Q05_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_LQuest_Q01", + "templateId": "Quest:Quest_S16_Milestone_Complete_LQuest_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_LQuest_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_LQuest_Q02", + "templateId": "Quest:Quest_S16_Milestone_Complete_LQuest_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_LQuest_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_LQuest_Q03", + "templateId": "Quest:Quest_S16_Milestone_Complete_LQuest_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_LQuest_Q03_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_LQuest_Q04", + "templateId": "Quest:Quest_S16_Milestone_Complete_LQuest_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_LQuest_Q04_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_LQuest_Q05", + "templateId": "Quest:Quest_S16_Milestone_Complete_LQuest_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_LQuest_Q05_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_RQuest_Q01", + "templateId": "Quest:Quest_S16_Milestone_Complete_RQuest_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_RQuest_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_RQuest_Q02", + "templateId": "Quest:Quest_S16_Milestone_Complete_RQuest_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_RQuest_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_RQuest_Q03", + "templateId": "Quest:Quest_S16_Milestone_Complete_RQuest_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_RQuest_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_RQuest_Q04", + "templateId": "Quest:Quest_S16_Milestone_Complete_RQuest_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_RQuest_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_RQuest_Q05", + "templateId": "Quest:Quest_S16_Milestone_Complete_RQuest_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_RQuest_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_UCQuest_Q01", + "templateId": "Quest:Quest_S16_Milestone_Complete_UCQuest_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_UCQuest_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_UCQuest_Q02", + "templateId": "Quest:Quest_S16_Milestone_Complete_UCQuest_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_UCQuest_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_UCQuest_Q03", + "templateId": "Quest:Quest_S16_Milestone_Complete_UCQuest_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_UCQuest_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_UCQuest_Q04", + "templateId": "Quest:Quest_S16_Milestone_Complete_UCQuest_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_UCQuest_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Complete_UCQuest_Q05", + "templateId": "Quest:Quest_S16_Milestone_Complete_UCQuest_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Complete_UCQuest_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Craft_Weapons_Q01", + "templateId": "Quest:Quest_S16_Milestone_Craft_Weapons_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Craft_Weapons_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Craft_Weapons" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Craft_Weapons_Q02", + "templateId": "Quest:Quest_S16_Milestone_Craft_Weapons_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Craft_Weapons_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Craft_Weapons" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Craft_Weapons_Q03", + "templateId": "Quest:Quest_S16_Milestone_Craft_Weapons_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Craft_Weapons_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Craft_Weapons" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Craft_Weapons_Q04", + "templateId": "Quest:Quest_S16_Milestone_Craft_Weapons_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Craft_Weapons_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Craft_Weapons" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Craft_Weapons_Q05", + "templateId": "Quest:Quest_S16_Milestone_Craft_Weapons_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Craft_Weapons_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Craft_Weapons" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Damage_FromAbove_Q01", + "templateId": "Quest:Quest_S16_Milestone_Damage_FromAbove_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Damage_FromAbove_Q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_Above" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Damage_FromAbove_Q02", + "templateId": "Quest:Quest_S16_Milestone_Damage_FromAbove_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Damage_FromAbove_Q02_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_Above" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Damage_FromAbove_Q03", + "templateId": "Quest:Quest_S16_Milestone_Damage_FromAbove_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Damage_FromAbove_Q03_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_Above" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Damage_FromAbove_Q04", + "templateId": "Quest:Quest_S16_Milestone_Damage_FromAbove_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Damage_FromAbove_Q04_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_Above" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Damage_FromAbove_Q05", + "templateId": "Quest:Quest_S16_Milestone_Damage_FromAbove_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Damage_FromAbove_Q05_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_Above" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Dmg_Opponents_Q01", + "templateId": "Quest:Quest_S16_Milestone_Dmg_Opponents_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Dmg_Opponents_Q01_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_opponents" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Dmg_Opponents_Q02", + "templateId": "Quest:Quest_S16_Milestone_Dmg_Opponents_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Dmg_Opponents_Q02_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_opponents" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Dmg_Opponents_Q03", + "templateId": "Quest:Quest_S16_Milestone_Dmg_Opponents_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Dmg_Opponents_Q03_obj0", + "count": 75000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_opponents" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Dmg_Opponents_Q04", + "templateId": "Quest:Quest_S16_Milestone_Dmg_Opponents_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Dmg_Opponents_Q04_obj0", + "count": 150000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_opponents" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Dmg_Opponents_Q05", + "templateId": "Quest:Quest_S16_Milestone_Dmg_Opponents_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Dmg_Opponents_Q05_obj0", + "count": 500000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_opponents" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q01", + "templateId": "Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Damage_PlayerVehicle_Q01_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q02", + "templateId": "Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Damage_PlayerVehicle_Q02_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q03", + "templateId": "Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Damage_PlayerVehicle_Q03_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q04", + "templateId": "Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Damage_PlayerVehicle_Q04_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q05", + "templateId": "Quest:Quest_S16_Milestone_Damage_PlayerVehicle_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Damage_PlayerVehicle_Q05_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_DestroyShrubs_Q01", + "templateId": "Quest:Quest_S16_Milestone_DestroyShrubs_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_DestroyShrubs_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_DestroyShrubs_Q02", + "templateId": "Quest:Quest_S16_Milestone_DestroyShrubs_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_DestroyShrubs_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_DestroyShrubs_Q03", + "templateId": "Quest:Quest_S16_Milestone_DestroyShrubs_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_DestroyShrubs_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_DestroyShrubs_Q04", + "templateId": "Quest:Quest_S16_Milestone_DestroyShrubs_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_DestroyShrubs_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_DestroyShrubs_Q05", + "templateId": "Quest:Quest_S16_Milestone_DestroyShrubs_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_DestroyShrubs_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_DestroyStones_Q01", + "templateId": "Quest:Quest_S16_Milestone_DestroyStones_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_DestroyStones_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_DestroyStones_Q02", + "templateId": "Quest:Quest_S16_Milestone_DestroyStones_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_DestroyStones_Q02_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_DestroyStones_Q03", + "templateId": "Quest:Quest_S16_Milestone_DestroyStones_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_DestroyStones_Q03_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_DestroyStones_Q04", + "templateId": "Quest:Quest_S16_Milestone_DestroyStones_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_DestroyStones_Q04_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_DestroyStones_Q05", + "templateId": "Quest:Quest_S16_Milestone_DestroyStones_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_DestroyStones_Q05_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Destroy_Trees_Q01", + "templateId": "Quest:Quest_S16_Milestone_Destroy_Trees_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Destroy_Trees_Q01_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Destroy_Trees_Q02", + "templateId": "Quest:Quest_S16_Milestone_Destroy_Trees_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Destroy_Trees_Q02_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Destroy_Trees_Q03", + "templateId": "Quest:Quest_S16_Milestone_Destroy_Trees_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Destroy_Trees_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Destroy_Trees_Q04", + "templateId": "Quest:Quest_S16_Milestone_Destroy_Trees_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Destroy_Trees_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Destroy_Trees_Q05", + "templateId": "Quest:Quest_S16_Milestone_Destroy_Trees_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Destroy_Trees_Q05_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q01", + "templateId": "Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_TravelDistance_OnFoot_Q01_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q02", + "templateId": "Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_TravelDistance_OnFoot_Q02_obj0", + "count": 75000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q03", + "templateId": "Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_TravelDistance_OnFoot_Q03_obj0", + "count": 150000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q04", + "templateId": "Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_TravelDistance_OnFoot_Q04_obj0", + "count": 350000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q05", + "templateId": "Quest:Quest_S16_Milestone_TravelDistance_OnFoot_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_TravelDistance_OnFoot_Q05_obj0", + "count": 500000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Creature_Disquise_Q01", + "templateId": "Quest:Quest_S16_Milestone_Creature_Disquise_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Creature_Disquise_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Don_Creature_Disquises" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Creature_Disquise_Q02", + "templateId": "Quest:Quest_S16_Milestone_Creature_Disquise_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Creature_Disquise_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Don_Creature_Disquises" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Creature_Disquise_Q03", + "templateId": "Quest:Quest_S16_Milestone_Creature_Disquise_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Creature_Disquise_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Don_Creature_Disquises" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Creature_Disquise_Q04", + "templateId": "Quest:Quest_S16_Milestone_Creature_Disquise_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Creature_Disquise_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Don_Creature_Disquises" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Creature_Disquise_Q05", + "templateId": "Quest:Quest_S16_Milestone_Creature_Disquise_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Creature_Disquise_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Don_Creature_Disquises" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_150m_Q01", + "templateId": "Quest:Quest_S16_Milestone_Elim_150m_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_150m_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_150m" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_150m_Q02", + "templateId": "Quest:Quest_S16_Milestone_Elim_150m_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_150m_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_150m" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_150m_Q03", + "templateId": "Quest:Quest_S16_Milestone_Elim_150m_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_150m_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_150m" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_150m_Q04", + "templateId": "Quest:Quest_S16_Milestone_Elim_150m_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_150m_Q04_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_150m" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_150m_Q05", + "templateId": "Quest:Quest_S16_Milestone_Elim_150m_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_150m_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_150m" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Assault_Q01", + "templateId": "Quest:Quest_S16_Milestone_Elim_Assault_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Assault_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Assault" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Assault_Q02", + "templateId": "Quest:Quest_S16_Milestone_Elim_Assault_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Assault_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Assault" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Assault_Q03", + "templateId": "Quest:Quest_S16_Milestone_Elim_Assault_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Assault_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Assault" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Assault_Q04", + "templateId": "Quest:Quest_S16_Milestone_Elim_Assault_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Assault_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Assault" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Assault_Q05", + "templateId": "Quest:Quest_S16_Milestone_Elim_Assault_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Assault_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Assault" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Bow_Elims_Q01", + "templateId": "Quest:Quest_S16_Milestone_Bow_Elims_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Bow_Elims_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Bow" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Bow_Elims_Q02", + "templateId": "Quest:Quest_S16_Milestone_Bow_Elims_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Bow_Elims_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Bow" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Bow_Elims_Q03", + "templateId": "Quest:Quest_S16_Milestone_Bow_Elims_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Bow_Elims_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Bow" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Bow_Elims_Q04", + "templateId": "Quest:Quest_S16_Milestone_Bow_Elims_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Bow_Elims_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Bow" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Bow_Elims_Q05", + "templateId": "Quest:Quest_S16_Milestone_Bow_Elims_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Bow_Elims_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Bow" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q01", + "templateId": "Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Common_Uncommon_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q02", + "templateId": "Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Common_Uncommon_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q03", + "templateId": "Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Common_Uncommon_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q04", + "templateId": "Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Common_Uncommon_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q05", + "templateId": "Quest:Quest_S16_Milestone_Elim_Common_Uncommon_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Common_Uncommon_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Explosive_Q01", + "templateId": "Quest:Quest_S16_Milestone_Elim_Explosive_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Explosive_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Explosive_Q02", + "templateId": "Quest:Quest_S16_Milestone_Elim_Explosive_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Explosive_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Explosive_Q03", + "templateId": "Quest:Quest_S16_Milestone_Elim_Explosive_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Explosive_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Explosive_Q04", + "templateId": "Quest:Quest_S16_Milestone_Elim_Explosive_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Explosive_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Explosive_Q05", + "templateId": "Quest:Quest_S16_Milestone_Elim_Explosive_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Explosive_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_HeadShot_Elims_Q01", + "templateId": "Quest:Quest_S16_Milestone_HeadShot_Elims_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_HeadShot_Elims_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Head_Shot" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_HeadShot_Elims_Q02", + "templateId": "Quest:Quest_S16_Milestone_HeadShot_Elims_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_HeadShot_Elims_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Head_Shot" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_HeadShot_Elims_Q03", + "templateId": "Quest:Quest_S16_Milestone_HeadShot_Elims_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_HeadShot_Elims_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Head_Shot" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_HeadShot_Elims_Q04", + "templateId": "Quest:Quest_S16_Milestone_HeadShot_Elims_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_HeadShot_Elims_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Head_Shot" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_HeadShot_Elims_Q05", + "templateId": "Quest:Quest_S16_Milestone_HeadShot_Elims_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_HeadShot_Elims_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Head_Shot" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Pistol_Q01", + "templateId": "Quest:Quest_S16_Milestone_Elim_Pistol_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Pistol_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Pistol_Q02", + "templateId": "Quest:Quest_S16_Milestone_Elim_Pistol_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Pistol_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Pistol_Q03", + "templateId": "Quest:Quest_S16_Milestone_Elim_Pistol_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Pistol_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Pistol_Q04", + "templateId": "Quest:Quest_S16_Milestone_Elim_Pistol_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Pistol_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Pistol_Q05", + "templateId": "Quest:Quest_S16_Milestone_Elim_Pistol_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Pistol_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Player_Q01", + "templateId": "Quest:Quest_S16_Milestone_Elim_Player_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Player_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Player" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Player_Q02", + "templateId": "Quest:Quest_S16_Milestone_Elim_Player_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Player_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Player" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Player_Q03", + "templateId": "Quest:Quest_S16_Milestone_Elim_Player_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Player_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Player" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Player_Q04", + "templateId": "Quest:Quest_S16_Milestone_Elim_Player_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Player_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Player" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Player_Q05", + "templateId": "Quest:Quest_S16_Milestone_Elim_Player_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Player_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Player" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Shotgun_Q01", + "templateId": "Quest:Quest_S16_Milestone_Elim_Shotgun_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Shotgun_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Shotgun_Q02", + "templateId": "Quest:Quest_S16_Milestone_Elim_Shotgun_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Shotgun_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Shotgun_Q03", + "templateId": "Quest:Quest_S16_Milestone_Elim_Shotgun_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Shotgun_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Shotgun_Q04", + "templateId": "Quest:Quest_S16_Milestone_Elim_Shotgun_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Shotgun_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_Shotgun_Q05", + "templateId": "Quest:Quest_S16_Milestone_Elim_Shotgun_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_Shotgun_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_SMG_Q01", + "templateId": "Quest:Quest_S16_Milestone_Elim_SMG_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_SMG_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_SMG" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_SMG_Q02", + "templateId": "Quest:Quest_S16_Milestone_Elim_SMG_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_SMG_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_SMG" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_SMG_Q03", + "templateId": "Quest:Quest_S16_Milestone_Elim_SMG_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_SMG_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_SMG" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_SMG_Q04", + "templateId": "Quest:Quest_S16_Milestone_Elim_SMG_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_SMG_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_SMG" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Elim_SMG_Q05", + "templateId": "Quest:Quest_S16_Milestone_Elim_SMG_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Elim_SMG_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_SMG" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Sticky_Elims_Q01", + "templateId": "Quest:Quest_S16_Milestone_Sticky_Elims_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Sticky_Elims_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Sticky" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Sticky_Elims_Q02", + "templateId": "Quest:Quest_S16_Milestone_Sticky_Elims_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Sticky_Elims_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Sticky" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Sticky_Elims_Q03", + "templateId": "Quest:Quest_S16_Milestone_Sticky_Elims_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Sticky_Elims_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Sticky" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Sticky_Elims_Q04", + "templateId": "Quest:Quest_S16_Milestone_Sticky_Elims_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Sticky_Elims_Q04_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Sticky" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Sticky_Elims_Q05", + "templateId": "Quest:Quest_S16_Milestone_Sticky_Elims_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Sticky_Elims_Q05_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Elim_Sticky" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_GlideDistance_Q01", + "templateId": "Quest:Quest_S16_Milestone_GlideDistance_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_GlideDistance_Q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_GlideDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_GlideDistance_Q02", + "templateId": "Quest:Quest_S16_Milestone_GlideDistance_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_GlideDistance_Q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_GlideDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_GlideDistance_Q03", + "templateId": "Quest:Quest_S16_Milestone_GlideDistance_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_GlideDistance_Q03_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_GlideDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_GlideDistance_Q04", + "templateId": "Quest:Quest_S16_Milestone_GlideDistance_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_GlideDistance_Q04_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_GlideDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_GlideDistance_Q05", + "templateId": "Quest:Quest_S16_Milestone_GlideDistance_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_GlideDistance_Q05_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_GlideDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Harpoon_Elims_Q01", + "templateId": "Quest:Quest_S16_Milestone_Harpoon_Elims_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Harpoon_Elims_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harpoon_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Harpoon_Elims_Q02", + "templateId": "Quest:Quest_S16_Milestone_Harpoon_Elims_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Harpoon_Elims_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harpoon_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Harpoon_Elims_Q03", + "templateId": "Quest:Quest_S16_Milestone_Harpoon_Elims_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Harpoon_Elims_Q03_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harpoon_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Harpoon_Elims_Q04", + "templateId": "Quest:Quest_S16_Milestone_Harpoon_Elims_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Harpoon_Elims_Q04_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harpoon_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Harpoon_Elims_Q05", + "templateId": "Quest:Quest_S16_Milestone_Harpoon_Elims_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Harpoon_Elims_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harpoon_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Harvest_Stone_Q01", + "templateId": "Quest:Quest_S16_Milestone_Harvest_Stone_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Harvest_Stone_Q01_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Harvest_Stone_Q02", + "templateId": "Quest:Quest_S16_Milestone_Harvest_Stone_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Harvest_Stone_Q02_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Harvest_Stone_Q03", + "templateId": "Quest:Quest_S16_Milestone_Harvest_Stone_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Harvest_Stone_Q03_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Harvest_Stone_Q04", + "templateId": "Quest:Quest_S16_Milestone_Harvest_Stone_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Harvest_Stone_Q04_obj0", + "count": 100000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Harvest_Stone_Q05", + "templateId": "Quest:Quest_S16_Milestone_Harvest_Stone_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Harvest_Stone_Q05_obj0", + "count": 250000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Hit_Weakpoints_Q01", + "templateId": "Quest:Quest_S16_Milestone_Hit_Weakpoints_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Hit_Weakpoints_Q01_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hit_Weakpoints" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Hit_Weakpoints_Q02", + "templateId": "Quest:Quest_S16_Milestone_Hit_Weakpoints_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Hit_Weakpoints_Q02_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hit_Weakpoints" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Hit_Weakpoints_Q03", + "templateId": "Quest:Quest_S16_Milestone_Hit_Weakpoints_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Hit_Weakpoints_Q03_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hit_Weakpoints" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Hit_Weakpoints_Q04", + "templateId": "Quest:Quest_S16_Milestone_Hit_Weakpoints_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Hit_Weakpoints_Q04_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hit_Weakpoints" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Hit_Weakpoints_Q05", + "templateId": "Quest:Quest_S16_Milestone_Hit_Weakpoints_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Hit_Weakpoints_Q05_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hit_Weakpoints" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Hunt_Animals_Q01", + "templateId": "Quest:Quest_S16_Milestone_Hunt_Animals_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Hunt_Animals_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hunt_Animals" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Hunt_Animals_Q02", + "templateId": "Quest:Quest_S16_Milestone_Hunt_Animals_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Hunt_Animals_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hunt_Animals" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Hunt_Animals_Q03", + "templateId": "Quest:Quest_S16_Milestone_Hunt_Animals_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Hunt_Animals_Q03_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hunt_Animals" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Hunt_Animals_Q04", + "templateId": "Quest:Quest_S16_Milestone_Hunt_Animals_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Hunt_Animals_Q04_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hunt_Animals" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Hunt_Animals_Q05", + "templateId": "Quest:Quest_S16_Milestone_Hunt_Animals_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Hunt_Animals_Q05_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Hunt_Animals" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Ignite_Opponent_Q01", + "templateId": "Quest:Quest_S16_Milestone_Ignite_Opponent_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Ignite_Opponent_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_ignite_opponent" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Ignite_Opponent_Q02", + "templateId": "Quest:Quest_S16_Milestone_Ignite_Opponent_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Ignite_Opponent_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_ignite_opponent" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Ignite_Opponent_Q03", + "templateId": "Quest:Quest_S16_Milestone_Ignite_Opponent_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Ignite_Opponent_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_ignite_opponent" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Ignite_Opponent_Q04", + "templateId": "Quest:Quest_S16_Milestone_Ignite_Opponent_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Ignite_Opponent_Q04_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_ignite_opponent" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Ignite_Opponent_Q05", + "templateId": "Quest:Quest_S16_Milestone_Ignite_Opponent_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Ignite_Opponent_Q05_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_ignite_opponent" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Ignite_Structure_Q01", + "templateId": "Quest:Quest_S16_Milestone_Ignite_Structure_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Ignite_Structure_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_ignite_structure" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Ignite_Structure_Q02", + "templateId": "Quest:Quest_S16_Milestone_Ignite_Structure_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Ignite_Structure_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_ignite_structure" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Ignite_Structure_Q03", + "templateId": "Quest:Quest_S16_Milestone_Ignite_Structure_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Ignite_Structure_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_ignite_structure" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Ignite_Structure_Q04", + "templateId": "Quest:Quest_S16_Milestone_Ignite_Structure_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Ignite_Structure_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_ignite_structure" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Ignite_Structure_Q05", + "templateId": "Quest:Quest_S16_Milestone_Ignite_Structure_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Ignite_Structure_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_ignite_structure" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Apple_Q01", + "templateId": "Quest:Quest_S16_Milestone_Interact_Apple_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Apple_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_apple" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Apple_Q02", + "templateId": "Quest:Quest_S16_Milestone_Interact_Apple_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Apple_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_apple" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Apple_Q03", + "templateId": "Quest:Quest_S16_Milestone_Interact_Apple_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Apple_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_apple" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Apple_Q04", + "templateId": "Quest:Quest_S16_Milestone_Interact_Apple_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Apple_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_apple" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Apple_Q05", + "templateId": "Quest:Quest_S16_Milestone_Interact_Apple_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Apple_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_apple" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Banana_Q01", + "templateId": "Quest:Quest_S16_Milestone_Interact_Banana_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Banana_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_banana" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Banana_Q02", + "templateId": "Quest:Quest_S16_Milestone_Interact_Banana_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Banana_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_banana" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Banana_Q03", + "templateId": "Quest:Quest_S16_Milestone_Interact_Banana_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Banana_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_banana" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Banana_Q04", + "templateId": "Quest:Quest_S16_Milestone_Interact_Banana_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Banana_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_banana" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Banana_Q05", + "templateId": "Quest:Quest_S16_Milestone_Interact_Banana_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Banana_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_banana" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Campfire_Q01", + "templateId": "Quest:Quest_S16_Milestone_Interact_Campfire_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Campfire_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_campfire" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Campfire_Q02", + "templateId": "Quest:Quest_S16_Milestone_Interact_Campfire_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Campfire_Q02_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_campfire" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Campfire_Q03", + "templateId": "Quest:Quest_S16_Milestone_Interact_Campfire_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Campfire_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_campfire" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Campfire_Q04", + "templateId": "Quest:Quest_S16_Milestone_Interact_Campfire_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Campfire_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_campfire" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Campfire_Q05", + "templateId": "Quest:Quest_S16_Milestone_Interact_Campfire_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Campfire_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_campfire" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_ForagedItem_Q01", + "templateId": "Quest:Quest_S16_Milestone_Interact_ForagedItem_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_ForagedItem_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_forageditem" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_ForagedItem_Q02", + "templateId": "Quest:Quest_S16_Milestone_Interact_ForagedItem_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_ForagedItem_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_forageditem" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_ForagedItem_Q03", + "templateId": "Quest:Quest_S16_Milestone_Interact_ForagedItem_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_ForagedItem_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_forageditem" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_ForagedItem_Q04", + "templateId": "Quest:Quest_S16_Milestone_Interact_ForagedItem_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_ForagedItem_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_forageditem" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_ForagedItem_Q05", + "templateId": "Quest:Quest_S16_Milestone_Interact_ForagedItem_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_ForagedItem_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_forageditem" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Mushroom_Q01", + "templateId": "Quest:Quest_S16_Milestone_Interact_Mushroom_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Mushroom_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_mushroom" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Mushroom_Q02", + "templateId": "Quest:Quest_S16_Milestone_Interact_Mushroom_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Mushroom_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_mushroom" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Mushroom_Q03", + "templateId": "Quest:Quest_S16_Milestone_Interact_Mushroom_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Mushroom_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_mushroom" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Mushroom_Q04", + "templateId": "Quest:Quest_S16_Milestone_Interact_Mushroom_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Mushroom_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_mushroom" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Interact_Mushroom_Q05", + "templateId": "Quest:Quest_S16_Milestone_Interact_Mushroom_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Interact_Mushroom_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:questbundle_S16_milestone_interact_mushroom" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q01", + "templateId": "Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeDmg_Furniture_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q02", + "templateId": "Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeDmg_Furniture_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q03", + "templateId": "Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeDmg_Furniture_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q04", + "templateId": "Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeDmg_Furniture_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q05", + "templateId": "Quest:Quest_S16_Milestone_MeleeDmg_Furniture_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeDmg_Furniture_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q01", + "templateId": "Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeDmg_Structures_Q01_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q02", + "templateId": "Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeDmg_Structures_Q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q03", + "templateId": "Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeDmg_Structures_Q03_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q04", + "templateId": "Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeDmg_Structures_Q04_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q05", + "templateId": "Quest:Quest_S16_Milestone_MeleeDmg_Structures_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeDmg_Structures_Q05_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeKills_Q01", + "templateId": "Quest:Quest_S16_Milestone_MeleeKills_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeKills_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Melee_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeKills_Q02", + "templateId": "Quest:Quest_S16_Milestone_MeleeKills_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeKills_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Melee_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeKills_Q03", + "templateId": "Quest:Quest_S16_Milestone_MeleeKills_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeKills_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Melee_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeKills_Q04", + "templateId": "Quest:Quest_S16_Milestone_MeleeKills_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeKills_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Melee_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_MeleeKills_Q05", + "templateId": "Quest:Quest_S16_Milestone_MeleeKills_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_MeleeKills_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Melee_Elims" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Top10_Q01", + "templateId": "Quest:Quest_S16_Milestone_Top10_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Top10_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Place_Top10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Top10_Q02", + "templateId": "Quest:Quest_S16_Milestone_Top10_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Top10_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Place_Top10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Top10_Q03", + "templateId": "Quest:Quest_S16_Milestone_Top10_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Top10_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Place_Top10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Top10_Q04", + "templateId": "Quest:Quest_S16_Milestone_Top10_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Top10_Q04_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Place_Top10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Top10_Q05", + "templateId": "Quest:Quest_S16_Milestone_Top10_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Top10_Q05_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Place_Top10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_RebootTeammate_Q01", + "templateId": "Quest:Quest_S16_Milestone_RebootTeammate_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_RebootTeammate_Q01_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_RebootTeammate" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_RebootTeammate_Q02", + "templateId": "Quest:Quest_S16_Milestone_RebootTeammate_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_RebootTeammate_Q02_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_RebootTeammate" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_RebootTeammate_Q03", + "templateId": "Quest:Quest_S16_Milestone_RebootTeammate_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_RebootTeammate_Q03_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_RebootTeammate" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_RebootTeammate_Q04", + "templateId": "Quest:Quest_S16_Milestone_RebootTeammate_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_RebootTeammate_Q04_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_RebootTeammate" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_RebootTeammate_Q05", + "templateId": "Quest:Quest_S16_Milestone_RebootTeammate_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_RebootTeammate_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_RebootTeammate" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_ReviveTeammates_Q01", + "templateId": "Quest:Quest_S16_Milestone_ReviveTeammates_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_ReviveTeammates_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_ReviveTeammates_Q02", + "templateId": "Quest:Quest_S16_Milestone_ReviveTeammates_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_ReviveTeammates_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_ReviveTeammates_Q03", + "templateId": "Quest:Quest_S16_Milestone_ReviveTeammates_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_ReviveTeammates_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_ReviveTeammates_Q04", + "templateId": "Quest:Quest_S16_Milestone_ReviveTeammates_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_ReviveTeammates_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_ReviveTeammates_Q05", + "templateId": "Quest:Quest_S16_Milestone_ReviveTeammates_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_ReviveTeammates_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q01", + "templateId": "Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_AmmoBoxes_Q01_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q02", + "templateId": "Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_AmmoBoxes_Q02_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q03", + "templateId": "Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_AmmoBoxes_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q04", + "templateId": "Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_AmmoBoxes_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q05", + "templateId": "Quest:Quest_S16_Milestone_Search_AmmoBoxes_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_AmmoBoxes_Q05_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_Chests_Q01", + "templateId": "Quest:Quest_S16_Milestone_Search_Chests_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_Chests_Q01_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_Chests" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_Chests_Q02", + "templateId": "Quest:Quest_S16_Milestone_Search_Chests_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_Chests_Q02_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_Chests" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_Chests_Q03", + "templateId": "Quest:Quest_S16_Milestone_Search_Chests_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_Chests_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_Chests" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_Chests_Q04", + "templateId": "Quest:Quest_S16_Milestone_Search_Chests_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_Chests_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_Chests" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_Chests_Q05", + "templateId": "Quest:Quest_S16_Milestone_Search_Chests_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_Chests_Q05_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_Chests" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_Ice_Machines_Q01", + "templateId": "Quest:Quest_S16_Milestone_Search_Ice_Machines_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_Ice_Machines_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_IceMachines" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_Ice_Machines_Q02", + "templateId": "Quest:Quest_S16_Milestone_Search_Ice_Machines_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_Ice_Machines_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_IceMachines" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_Ice_Machines_Q03", + "templateId": "Quest:Quest_S16_Milestone_Search_Ice_Machines_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_Ice_Machines_Q03_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_IceMachines" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_Ice_Machines_Q04", + "templateId": "Quest:Quest_S16_Milestone_Search_Ice_Machines_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_Ice_Machines_Q04_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_IceMachines" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_Ice_Machines_Q05", + "templateId": "Quest:Quest_S16_Milestone_Search_Ice_Machines_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_Ice_Machines_Q05_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_IceMachines" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_SupplyDrop_Q01", + "templateId": "Quest:Quest_S16_Milestone_Search_SupplyDrop_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_SupplyDrop_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_SupplyDrop_Q02", + "templateId": "Quest:Quest_S16_Milestone_Search_SupplyDrop_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_SupplyDrop_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_SupplyDrop_Q03", + "templateId": "Quest:Quest_S16_Milestone_Search_SupplyDrop_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_SupplyDrop_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_SupplyDrop_Q04", + "templateId": "Quest:Quest_S16_Milestone_Search_SupplyDrop_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_SupplyDrop_Q04_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Search_SupplyDrop_Q05", + "templateId": "Quest:Quest_S16_Milestone_Search_SupplyDrop_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Search_SupplyDrop_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_ShakedownOpponents_Q01", + "templateId": "Quest:Quest_S16_Milestone_ShakedownOpponents_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_ShakedownOpponents_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_ShakedownOpponents_Q02", + "templateId": "Quest:Quest_S16_Milestone_ShakedownOpponents_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_ShakedownOpponents_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_ShakedownOpponents_Q03", + "templateId": "Quest:Quest_S16_Milestone_ShakedownOpponents_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_ShakedownOpponents_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_ShakedownOpponents_Q04", + "templateId": "Quest:Quest_S16_Milestone_ShakedownOpponents_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_ShakedownOpponents_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_ShakedownOpponents_Q05", + "templateId": "Quest:Quest_S16_Milestone_ShakedownOpponents_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_ShakedownOpponents_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Spend_Bars_Q01", + "templateId": "Quest:Quest_S16_Milestone_Spend_Bars_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Spend_Bars_Q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Spend_Bars" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Spend_Bars_Q02", + "templateId": "Quest:Quest_S16_Milestone_Spend_Bars_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Spend_Bars_Q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Spend_Bars" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Spend_Bars_Q03", + "templateId": "Quest:Quest_S16_Milestone_Spend_Bars_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Spend_Bars_Q03_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Spend_Bars" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Spend_Bars_Q04", + "templateId": "Quest:Quest_S16_Milestone_Spend_Bars_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Spend_Bars_Q04_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Spend_Bars" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Spend_Bars_Q05", + "templateId": "Quest:Quest_S16_Milestone_Spend_Bars_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Spend_Bars_Q05_obj0", + "count": 100000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Spend_Bars" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_SwimDistance_Q01", + "templateId": "Quest:Quest_S16_Milestone_SwimDistance_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_SwimDistance_Q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_SwimDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_SwimDistance_Q02", + "templateId": "Quest:Quest_S16_Milestone_SwimDistance_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_SwimDistance_Q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_SwimDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_SwimDistance_Q03", + "templateId": "Quest:Quest_S16_Milestone_SwimDistance_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_SwimDistance_Q03_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_SwimDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_SwimDistance_Q04", + "templateId": "Quest:Quest_S16_Milestone_SwimDistance_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_SwimDistance_Q04_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_SwimDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_SwimDistance_Q05", + "templateId": "Quest:Quest_S16_Milestone_SwimDistance_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_SwimDistance_Q05_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_SwimDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milesonte_Tame_Animals_Q01", + "templateId": "Quest:Quest_S16_Milesonte_Tame_Animals_Q01", + "objectives": [ + { + "name": "Quest_S16_Milesonte_Tame_Animals_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Tame_Animals" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milesonte_Tame_Animals_Q02", + "templateId": "Quest:Quest_S16_Milesonte_Tame_Animals_Q02", + "objectives": [ + { + "name": "Quest_S16_Milesonte_Tame_Animals_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Tame_Animals" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milesonte_Tame_Animals_Q03", + "templateId": "Quest:Quest_S16_Milesonte_Tame_Animals_Q03", + "objectives": [ + { + "name": "Quest_S16_Milesonte_Tame_Animals_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Tame_Animals" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milesonte_Tame_Animals_Q04", + "templateId": "Quest:Quest_S16_Milesonte_Tame_Animals_Q04", + "objectives": [ + { + "name": "Quest_S16_Milesonte_Tame_Animals_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Tame_Animals" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milesonte_Tame_Animals_Q05", + "templateId": "Quest:Quest_S16_Milesonte_Tame_Animals_Q05", + "objectives": [ + { + "name": "Quest_S16_Milesonte_Tame_Animals_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Tame_Animals" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Thank_Driver_Q01", + "templateId": "Quest:Quest_S16_Milestone_Thank_Driver_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Thank_Driver_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Thank_Driver" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Thank_Driver_Q02", + "templateId": "Quest:Quest_S16_Milestone_Thank_Driver_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Thank_Driver_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Thank_Driver" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Thank_Driver_Q03", + "templateId": "Quest:Quest_S16_Milestone_Thank_Driver_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Thank_Driver_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Thank_Driver" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Thank_Driver_Q04", + "templateId": "Quest:Quest_S16_Milestone_Thank_Driver_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Thank_Driver_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Thank_Driver" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Thank_Driver_Q05", + "templateId": "Quest:Quest_S16_Milestone_Thank_Driver_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Thank_Driver_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Thank_Driver" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_UpgradeWeapons_Q01", + "templateId": "Quest:Quest_S16_Milestone_UpgradeWeapons_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_UpgradeWeapons_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_UpgradeWeapons_Q02", + "templateId": "Quest:Quest_S16_Milestone_UpgradeWeapons_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_UpgradeWeapons_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_UpgradeWeapons_Q03", + "templateId": "Quest:Quest_S16_Milestone_UpgradeWeapons_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_UpgradeWeapons_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_UpgradeWeapons_Q04", + "templateId": "Quest:Quest_S16_Milestone_UpgradeWeapons_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_UpgradeWeapons_Q04_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_UpgradeWeapons_Q05", + "templateId": "Quest:Quest_S16_Milestone_UpgradeWeapons_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_UpgradeWeapons_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_UseFishingSpots_Q01", + "templateId": "Quest:Quest_S16_Milestone_UseFishingSpots_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_UseFishingSpots_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_UseFishingSpots_Q02", + "templateId": "Quest:Quest_S16_Milestone_UseFishingSpots_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_UseFishingSpots_Q02_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_UseFishingSpots_Q03", + "templateId": "Quest:Quest_S16_Milestone_UseFishingSpots_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_UseFishingSpots_Q03_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_UseFishingSpots_Q04", + "templateId": "Quest:Quest_S16_Milestone_UseFishingSpots_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_UseFishingSpots_Q04_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_UseFishingSpots_Q05", + "templateId": "Quest:Quest_S16_Milestone_UseFishingSpots_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_UseFishingSpots_Q05_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Use_Bandages_Q01", + "templateId": "Quest:Quest_S16_Milestone_Use_Bandages_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Use_Bandages_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Bandages" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Use_Bandages_Q02", + "templateId": "Quest:Quest_S16_Milestone_Use_Bandages_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Use_Bandages_Q02_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Bandages" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Use_Bandages_Q03", + "templateId": "Quest:Quest_S16_Milestone_Use_Bandages_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Use_Bandages_Q03_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Bandages" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Use_Bandages_Q04", + "templateId": "Quest:Quest_S16_Milestone_Use_Bandages_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Use_Bandages_Q04_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Bandages" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Use_Bandages_Q05", + "templateId": "Quest:Quest_S16_Milestone_Use_Bandages_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Use_Bandages_Q05_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Bandages" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Use_Shield_Potions_Q01", + "templateId": "Quest:Quest_S16_Milestone_Use_Shield_Potions_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_Use_Shield_Potions_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Potions" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Use_Shield_Potions_Q02", + "templateId": "Quest:Quest_S16_Milestone_Use_Shield_Potions_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_Use_Shield_Potions_Q02_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Potions" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Use_Shield_Potions_Q03", + "templateId": "Quest:Quest_S16_Milestone_Use_Shield_Potions_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_Use_Shield_Potions_Q03_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Potions" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Use_Shield_Potions_Q04", + "templateId": "Quest:Quest_S16_Milestone_Use_Shield_Potions_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_Use_Shield_Potions_Q04_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Potions" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_Use_Shield_Potions_Q05", + "templateId": "Quest:Quest_S16_Milestone_Use_Shield_Potions_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_Use_Shield_Potions_Q05_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_Use_Potions" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q01", + "templateId": "Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_VehicleDestroy_Structures_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q02", + "templateId": "Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_VehicleDestroy_Structures_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q03", + "templateId": "Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_VehicleDestroy_Structures_Q03_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q04", + "templateId": "Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_VehicleDestroy_Structures_Q04_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q05", + "templateId": "Quest:Quest_S16_Milestone_VehicleDestroy_Structures_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_VehicleDestroy_Structures_Q05_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_VehicleDistance_Q01", + "templateId": "Quest:Quest_S16_Milestone_VehicleDistance_Q01", + "objectives": [ + { + "name": "Quest_S16_Milestone_VehicleDistance_Q01_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_VehicleDistance_Q02", + "templateId": "Quest:Quest_S16_Milestone_VehicleDistance_Q02", + "objectives": [ + { + "name": "Quest_S16_Milestone_VehicleDistance_Q02_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_VehicleDistance_Q03", + "templateId": "Quest:Quest_S16_Milestone_VehicleDistance_Q03", + "objectives": [ + { + "name": "Quest_S16_Milestone_VehicleDistance_Q03_obj0", + "count": 75000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_VehicleDistance_Q04", + "templateId": "Quest:Quest_S16_Milestone_VehicleDistance_Q04", + "objectives": [ + { + "name": "Quest_S16_Milestone_VehicleDistance_Q04_obj0", + "count": 150000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Milestone_VehicleDistance_Q05", + "templateId": "Quest:Quest_S16_Milestone_VehicleDistance_Q05", + "objectives": [ + { + "name": "Quest_S16_Milestone_VehicleDistance_Q05_obj0", + "count": 500000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Milestone_VehicleDistance" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W1_Epic_Q01", + "templateId": "Quest:Quest_S16_W1_Epic_Q01", + "objectives": [ + { + "name": "Quest_S16_W1_Epic_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W1_Epic_Q02", + "templateId": "Quest:Quest_S16_W1_Epic_Q02", + "objectives": [ + { + "name": "Quest_S16_W1_Epic_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W1_Epic_Q03", + "templateId": "Quest:Quest_S16_W1_Epic_Q03", + "objectives": [ + { + "name": "Quest_S16_W1_Epic_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W1_Epic_Q04", + "templateId": "Quest:Quest_S16_W1_Epic_Q04", + "objectives": [ + { + "name": "Quest_S15_W1_VR_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W1_Epic_Q05", + "templateId": "Quest:Quest_S16_W1_Epic_Q05", + "objectives": [ + { + "name": "Quest_S16_W1_Epic_Q05_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W1_Epic_Q06", + "templateId": "Quest:Quest_S16_W1_Epic_Q06", + "objectives": [ + { + "name": "Quest_S16_W1_Epic_Q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W1_Epic_Q07", + "templateId": "Quest:Quest_S16_W1_Epic_Q07", + "objectives": [ + { + "name": "Quest_S16_W1_Epic_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S16_W1_Epic_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_S16_W1_Epic_Q07_obj2", + "count": 1 + }, + { + "name": "Quest_S16_W1_Epic_Q07_obj3", + "count": 1 + }, + { + "name": "Quest_S16_W1_Epic_Q07_obj4", + "count": 1 + }, + { + "name": "Quest_S16_W1_Epic_Q07_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W2_Epic_Q01", + "templateId": "Quest:Quest_S16_W2_Epic_Q01", + "objectives": [ + { + "name": "Quest_S16_W2_Epic_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q01_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W2_Epic_Q03", + "templateId": "Quest:Quest_S16_W2_Epic_Q03", + "objectives": [ + { + "name": "Quest_S16_W2_Epic_Q03_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W2_Epic_Q04", + "templateId": "Quest:Quest_S16_W2_Epic_Q04", + "objectives": [ + { + "name": "Quest_S16_W2_Epic_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W2_Epic_Q02", + "templateId": "Quest:Quest_S16_W2_Epic_Q02", + "objectives": [ + { + "name": "Quest_S16_W2_Epic_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W2_Epic_Q05", + "templateId": "Quest:Quest_S16_W2_Epic_Q05", + "objectives": [ + { + "name": "Quest_S16_W2_Epic_Q05_obj0", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj1", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj2", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj3", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj4", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj5", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj6", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj7", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj8", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj9", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj10", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj11", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj12", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj13", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj14", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj15", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj16", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj17", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj18", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj19", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj20", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj21", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj22", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj23", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj24", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj25", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj26", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj27", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj28", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj29", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q05_obj30", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W2_Epic_Q06", + "templateId": "Quest:Quest_S16_W2_Epic_Q06", + "objectives": [ + { + "name": "Quest_S16_W2_Epic_Q06_obj0", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q06_obj1", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q06_obj2", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q06_obj3", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q06_obj4", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q06_obj5", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q06_obj6", + "count": 1 + }, + { + "name": "Quest_S16_W2_Epic_Q06_obj7", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W2_Epic_Q07", + "templateId": "Quest:Quest_S16_W2_Epic_Q07", + "objectives": [ + { + "name": "Quest_S16_W2_Epic_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W3_Epic_Q01", + "templateId": "Quest:Quest_S16_W3_Epic_Q01", + "objectives": [ + { + "name": "Quest_S16_W3_Epic_Q01_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W3_Epic_Q02", + "templateId": "Quest:Quest_S16_W3_Epic_Q02", + "objectives": [ + { + "name": "Quest_S16_W3_Epic_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W3_Epic_Q03", + "templateId": "Quest:Quest_S16_W3_Epic_Q03", + "objectives": [ + { + "name": "Quest_S16_W3_Epic_Q03_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W3_Epic_Q04", + "templateId": "Quest:Quest_S16_W3_Epic_Q04", + "objectives": [ + { + "name": "Quest_S16_W3_Epic_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W3_Epic_Q05", + "templateId": "Quest:Quest_S16_W3_Epic_Q05", + "objectives": [ + { + "name": "Quest_S16_W3_Epic_Q05_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W3_Epic_Q06", + "templateId": "Quest:Quest_S16_W3_Epic_Q06", + "objectives": [ + { + "name": "Quest_S16_W3_Epic_Q06_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W3_Epic_Q07", + "templateId": "Quest:Quest_S16_W3_Epic_Q07", + "objectives": [ + { + "name": "Quest_S16_W3_Epic_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W4_Epic_Q01", + "templateId": "Quest:Quest_S16_W4_Epic_Q01", + "objectives": [ + { + "name": "Quest_S16_W4_Epic_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W4_Epic_Q02", + "templateId": "Quest:Quest_S16_W4_Epic_Q02", + "objectives": [ + { + "name": "Quest_S16_W4_Epic_Q02_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W4_Epic_Q03", + "templateId": "Quest:Quest_S16_W4_Epic_Q03", + "objectives": [ + { + "name": "Quest_S16_W4_Epic_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W4_Epic_Q04", + "templateId": "Quest:Quest_S16_W4_Epic_Q04", + "objectives": [ + { + "name": "Quest_S16_W4_Epic_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W4_Epic_Q05", + "templateId": "Quest:Quest_S16_W4_Epic_Q05", + "objectives": [ + { + "name": "Quest_S16_W4_Epic_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W4_Epic_Q06", + "templateId": "Quest:Quest_S16_W4_Epic_Q06", + "objectives": [ + { + "name": "Quest_S16_W4_Epic_Q06_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W4_Epic_Q07", + "templateId": "Quest:Quest_S16_W4_Epic_Q07", + "objectives": [ + { + "name": "Quest_S16_W4_Epic_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W5_Epic_Q01", + "templateId": "Quest:Quest_S16_W5_Epic_Q01", + "objectives": [ + { + "name": "Quest_S16_W5_Epic_Q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W5_Epic_Q02", + "templateId": "Quest:Quest_S16_W5_Epic_Q02", + "objectives": [ + { + "name": "Quest_S16_W5_Epic_Q02_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W5_Epic_Q03", + "templateId": "Quest:Quest_S16_W5_Epic_Q03", + "objectives": [ + { + "name": "Quest_S16_W5_Epic_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W5_Epic_Q04", + "templateId": "Quest:Quest_S16_W5_Epic_Q04", + "objectives": [ + { + "name": "Quest_S16_W5_Epic_Q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W5_Epic_Q05", + "templateId": "Quest:Quest_S16_W5_Epic_Q05", + "objectives": [ + { + "name": "Quest_S16_W5_Epic_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W5_Epic_Q06", + "templateId": "Quest:Quest_S16_W5_Epic_Q06", + "objectives": [ + { + "name": "Quest_S16_W5_Epic_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W5_Epic_Q07", + "templateId": "Quest:Quest_S16_W5_Epic_Q07", + "objectives": [ + { + "name": "Quest_S16_W5_Epic_Q07_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W6_Epic_Q01", + "templateId": "Quest:Quest_S16_W6_Epic_Q01", + "objectives": [ + { + "name": "Quest_S16_W6_Epic_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W6_Epic_Q02", + "templateId": "Quest:Quest_S16_W6_Epic_Q02", + "objectives": [ + { + "name": "Quest_S16_W6_Epic_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W6_Epic_Q03", + "templateId": "Quest:Quest_S16_W6_Epic_Q03", + "objectives": [ + { + "name": "Quest_S16_W6_Epic_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W6_Epic_Q04", + "templateId": "Quest:Quest_S16_W6_Epic_Q04", + "objectives": [ + { + "name": "Quest_S16_W6_Epic_Q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W6_Epic_Q05", + "templateId": "Quest:Quest_S16_W6_Epic_Q05", + "objectives": [ + { + "name": "Quest_S16_W6_Epic_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W6_Epic_Q06", + "templateId": "Quest:Quest_S16_W6_Epic_Q06", + "objectives": [ + { + "name": "Quest_S16_W6_Epic_Q06_obj0", + "count": 1 + }, + { + "name": "Quest_S16_W6_Epic_Q06_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W6_Epic_Q07", + "templateId": "Quest:Quest_S16_W6_Epic_Q07", + "objectives": [ + { + "name": "Quest_S16_W6_Epic_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S16_W6_Epic_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_S16_W6_Epic_Q07_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W7_Epic_Q01", + "templateId": "Quest:Quest_S16_W7_Epic_Q01", + "objectives": [ + { + "name": "Quest_S16_W7_Epic_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W7_Epic_Q02", + "templateId": "Quest:Quest_S16_W7_Epic_Q02", + "objectives": [ + { + "name": "Quest_S16_W7_Epic_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W7_Epic_Q03", + "templateId": "Quest:Quest_S16_W7_Epic_Q03", + "objectives": [ + { + "name": "Quest_S16_W7_Epic_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W7_Epic_Q04", + "templateId": "Quest:Quest_S16_W7_Epic_Q04", + "objectives": [ + { + "name": "Quest_S16_W7_Epic_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S16_W7_Epic_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_S16_W7_Epic_Q04_obj2", + "count": 1 + }, + { + "name": "Quest_S16_W7_Epic_Q04_obj3", + "count": 1 + }, + { + "name": "Quest_S16_W7_Epic_Q04_obj4", + "count": 1 + }, + { + "name": "Quest_S16_W7_Epic_Q04_obj5", + "count": 1 + }, + { + "name": "Quest_S16_W7_Epic_Q04_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W7_Epic_Q05", + "templateId": "Quest:Quest_S16_W7_Epic_Q05", + "objectives": [ + { + "name": "Quest_S16_W7_Epic_Q05_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W7_Epic_Q06", + "templateId": "Quest:Quest_S16_W7_Epic_Q06", + "objectives": [ + { + "name": "Quest_S16_W7_Epic_Q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W7_Epic_Q07", + "templateId": "Quest:Quest_S16_W7_Epic_Q07", + "objectives": [ + { + "name": "Quest_S16_W7_Epic_Q07_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W8_Epic_Q01", + "templateId": "Quest:Quest_S16_W8_Epic_Q01", + "objectives": [ + { + "name": "Quest_S16_W8_Epic_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S16_W8_Epic_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S16_W8_Epic_Q01_obj2", + "count": 1 + }, + { + "name": "Quest_S16_W8_Epic_Q01_obj3", + "count": 1 + }, + { + "name": "Quest_S16_W8_Epic_Q01_obj4", + "count": 1 + }, + { + "name": "Quest_S16_W8_Epic_Q01_obj5", + "count": 1 + }, + { + "name": "Quest_S16_W8_Epic_Q01_obj6", + "count": 1 + }, + { + "name": "Quest_S16_W8_Epic_Q01_obj7", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_08" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W8_Epic_Q02", + "templateId": "Quest:Quest_S16_W8_Epic_Q02", + "objectives": [ + { + "name": "Quest_S16_W8_Epic_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_08" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W8_Epic_Q03", + "templateId": "Quest:Quest_S16_W8_Epic_Q03", + "objectives": [ + { + "name": "Quest_S16_W8_Epic_Q03_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_08" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W8_Epic_Q04", + "templateId": "Quest:Quest_S16_W8_Epic_Q04", + "objectives": [ + { + "name": "Quest_S16_W8_Epic_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_08" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W8_Epic_Q05", + "templateId": "Quest:Quest_S16_W8_Epic_Q05", + "objectives": [ + { + "name": "Quest_S16_W8_Epic_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_08" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W8_Epic_Q06", + "templateId": "Quest:Quest_S16_W8_Epic_Q06", + "objectives": [ + { + "name": "Quest_S16_W8_Epic_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_08" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W8_Epic_Q07", + "templateId": "Quest:Quest_S16_W8_Epic_Q07", + "objectives": [ + { + "name": "Quest_S16_W8_Epic_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_08" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W9_Epic_Q01", + "templateId": "Quest:Quest_S16_W9_Epic_Q01", + "objectives": [ + { + "name": "Quest_S16_W9_Epic_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_09" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W9_Epic_Q02", + "templateId": "Quest:Quest_S16_W9_Epic_Q02", + "objectives": [ + { + "name": "Quest_S16_W9_Epic_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_09" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W9_Epic_Q03", + "templateId": "Quest:Quest_S16_W9_Epic_Q03", + "objectives": [ + { + "name": "Quest_S16_W9_Epic_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_09" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W9_Epic_Q04", + "templateId": "Quest:Quest_S16_W9_Epic_Q04", + "objectives": [ + { + "name": "Quest_S16_W9_Epic_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_09" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W9_Epic_Q05", + "templateId": "Quest:Quest_S16_W9_Epic_Q05", + "objectives": [ + { + "name": "Quest_S16_W9_Epic_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_09" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W9_Epic_Q06", + "templateId": "Quest:Quest_S16_W9_Epic_Q06", + "objectives": [ + { + "name": "Quest_S16_W9_Epic_Q06_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_09" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W9_Epic_Q07", + "templateId": "Quest:Quest_S16_W9_Epic_Q07", + "objectives": [ + { + "name": "Quest_S16_W9_Epic_Q07_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_09" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W10_Epic_Q01", + "templateId": "Quest:Quest_S16_W10_Epic_Q01", + "objectives": [ + { + "name": "Quest_S16_W10_Epic_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W10_Epic_Q02", + "templateId": "Quest:Quest_S16_W10_Epic_Q02", + "objectives": [ + { + "name": "Quest_S16_W10_Epic_Q02_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W10_Epic_Q03", + "templateId": "Quest:Quest_S16_W10_Epic_Q03", + "objectives": [ + { + "name": "Quest_S16_W10_Epic_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W10_Epic_Q04", + "templateId": "Quest:Quest_S16_W10_Epic_Q04", + "objectives": [ + { + "name": "Quest_S16_W10_Epic_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S16_W10_Epic_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_S16_W10_Epic_Q04_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W10_Epic_Q05", + "templateId": "Quest:Quest_S16_W10_Epic_Q05", + "objectives": [ + { + "name": "Quest_S16_W10_Epic_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W10_Epic_Q06", + "templateId": "Quest:Quest_S16_W10_Epic_Q06", + "objectives": [ + { + "name": "Quest_S16_W10_Epic_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W10_Epic_Q07", + "templateId": "Quest:Quest_S16_W10_Epic_Q07", + "objectives": [ + { + "name": "Quest_S16_W10_Epic_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S16_W10_Epic_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_S16_W10_Epic_Q07_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W11_Epic_Q01", + "templateId": "Quest:Quest_S16_W11_Epic_Q01", + "objectives": [ + { + "name": "Quest_S16_W11_Epic_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_11" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W11_Epic_Q03", + "templateId": "Quest:Quest_S16_W11_Epic_Q03", + "objectives": [ + { + "name": "Quest_S16_W11_Epic_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_11" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W11_Epic_Q05", + "templateId": "Quest:Quest_S16_W11_Epic_Q05", + "objectives": [ + { + "name": "Quest_S16_W11_Epic_Q05_obj0", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q05_obj1", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q05_obj2", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q05_obj3", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q05_obj4", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q05_obj5", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q05_obj6", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q05_obj7", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q05_obj8", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q05_obj9", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q05_obj10", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q05_obj11", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q05_obj12", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q05_obj13", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_11" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W11_Epic_Q02", + "templateId": "Quest:Quest_S16_W11_Epic_Q02", + "objectives": [ + { + "name": "Quest_S16_W11_Epic_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_11" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W11_Epic_Q04", + "templateId": "Quest:Quest_S16_W11_Epic_Q04", + "objectives": [ + { + "name": "Quest_S16_W11_Epic_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_11" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W11_Epic_Q07", + "templateId": "Quest:Quest_S16_W11_Epic_Q07", + "objectives": [ + { + "name": "Quest_S16_W11_Epic_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_11" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W11_Epic_Q06", + "templateId": "Quest:Quest_S16_W11_Epic_Q06", + "objectives": [ + { + "name": "Quest_S16_W11_Epic_Q06_obj0", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q06_obj1", + "count": 1 + }, + { + "name": "Quest_S16_W11_Epic_Q06_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_11" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W12_Epic_Q01", + "templateId": "Quest:Quest_S16_W12_Epic_Q01", + "objectives": [ + { + "name": "Quest_S16_W12_Epic_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_12" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W12_Epic_Q02", + "templateId": "Quest:Quest_S16_W12_Epic_Q02", + "objectives": [ + { + "name": "Quest_S16_W12_Epic_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_12" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W12_Epic_Q03", + "templateId": "Quest:Quest_S16_W12_Epic_Q03", + "objectives": [ + { + "name": "Quest_S16_W12_Epic_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_12" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W12_Epic_Q04", + "templateId": "Quest:Quest_S16_W12_Epic_Q04", + "objectives": [ + { + "name": "Quest_S16_W12_Epic_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S16_W12_Epic_Q04_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_12" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W12_Epic_Q05", + "templateId": "Quest:Quest_S16_W12_Epic_Q05", + "objectives": [ + { + "name": "Quest_S16_W12_Epic_Q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_12" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W12_Epic_Q06", + "templateId": "Quest:Quest_S16_W12_Epic_Q06", + "objectives": [ + { + "name": "Quest_S16_W12_Epic_Q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_12" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W12_Epic_Q07", + "templateId": "Quest:Quest_S16_W12_Epic_Q07", + "objectives": [ + { + "name": "Quest_S16_W12_Epic_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_12" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Week_13", + "templateId": "Quest:Quest_S16_Week_13", + "objectives": [ + { + "name": "Quest_S16_Week_13_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_13" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Week_14", + "templateId": "Quest:Quest_S16_Week_14", + "objectives": [ + { + "name": "Quest_S16_Week_14_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_14" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Week_15", + "templateId": "Quest:Quest_S16_Week_15", + "objectives": [ + { + "name": "Quest_S16_Week_15_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:MissionBundle_S16_Week_15" + }, + { + "itemGuid": "S16-Quest:quest_s16_narrative_q01", + "templateId": "Quest:quest_s16_narrative_q01", + "objectives": [ + { + "name": "quest_s16_narrative_q01_obj0", + "count": 1 + }, + { + "name": "quest_s16_narrative_q01_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Narrative_01" + }, + { + "itemGuid": "S16-Quest:quest_s16_narrative_q02", + "templateId": "Quest:quest_s16_narrative_q02", + "objectives": [ + { + "name": "quest_s16_narrative_q02_obj0", + "count": 1 + }, + { + "name": "quest_s16_narrative_q02_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Narrative_02" + }, + { + "itemGuid": "S16-Quest:quest_s16_narrative_q03", + "templateId": "Quest:quest_s16_narrative_q03", + "objectives": [ + { + "name": "quest_s16_narrative_q03_obj0", + "count": 1 + }, + { + "name": "quest_s16_narrative_q03_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Narrative_03" + }, + { + "itemGuid": "S16-Quest:quest_s16_narrative_q04", + "templateId": "Quest:quest_s16_narrative_q04", + "objectives": [ + { + "name": "quest_s16_narrative_q04_obj0", + "count": 1 + }, + { + "name": "quest_s16_narrative_q04_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Narrative_04" + }, + { + "itemGuid": "S16-Quest:quest_s16_narrative_q05", + "templateId": "Quest:quest_s16_narrative_q05", + "objectives": [ + { + "name": "quest_s16_narrative_q05_obj0", + "count": 1 + }, + { + "name": "quest_s16_narrative_q05_obj1", + "count": 1 + }, + { + "name": "quest_s16_narrative_q05_obj2", + "count": 1 + }, + { + "name": "quest_s16_narrative_q05_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Narrative_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W1_SR_Q01a", + "templateId": "Quest:Quest_S16_W1_SR_Q01a", + "objectives": [ + { + "name": "Quest_S16_W1_Epic_Q01a_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W1_SR_Q01b", + "templateId": "Quest:Quest_S16_W1_SR_Q01b", + "objectives": [ + { + "name": "Quest_S16_W1_Epic_Q01b_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W1_SR_Q01c", + "templateId": "Quest:Quest_S16_W1_SR_Q01c", + "objectives": [ + { + "name": "Quest_S16_W1_Epic_Q01c_obj0", + "count": 9 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W1_SR_Q01d", + "templateId": "Quest:Quest_S16_W1_SR_Q01d", + "objectives": [ + { + "name": "Quest_S16_W1_Epic_Q01d_obj0", + "count": 12 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W1_SR_Q01e", + "templateId": "Quest:Quest_S16_W1_SR_Q01e", + "objectives": [ + { + "name": "Quest_S16_W1_Epic_Q01e_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W2_SR_Q01a", + "templateId": "Quest:Quest_S16_W2_SR_Q01a", + "objectives": [ + { + "name": "Quest_S16_W2_SR_Q01", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W2_SR_Q01b", + "templateId": "Quest:Quest_S16_W2_SR_Q01b", + "objectives": [ + { + "name": "Quest_S16_W2_SR_Q01", + "count": 5000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W2_SR_Q01c", + "templateId": "Quest:Quest_S16_W2_SR_Q01c", + "objectives": [ + { + "name": "Quest_S16_W2_SR_Q01", + "count": 7500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W2_SR_Q01d", + "templateId": "Quest:Quest_S16_W2_SR_Q01d", + "objectives": [ + { + "name": "Quest_S16_W2_SR_Q01", + "count": 10000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W2_SR_Q01e", + "templateId": "Quest:Quest_S16_W2_SR_Q01e", + "objectives": [ + { + "name": "Quest_S16_W2_SR_Q01", + "count": 12500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W3_SR_Q01a", + "templateId": "Quest:Quest_S16_W3_SR_Q01a", + "objectives": [ + { + "name": "Quest_S16_W3_SR_Q01", + "count": 10 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W3_SR_Q01b", + "templateId": "Quest:Quest_S16_W3_SR_Q01b", + "objectives": [ + { + "name": "Quest_S16_W3_SR_Q01", + "count": 20 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W3_SR_Q01c", + "templateId": "Quest:Quest_S16_W3_SR_Q01c", + "objectives": [ + { + "name": "Quest_S16_W3_SR_Q01", + "count": 30 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W3_SR_Q01d", + "templateId": "Quest:Quest_S16_W3_SR_Q01d", + "objectives": [ + { + "name": "Quest_S16_W3_SR_Q01", + "count": 40 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W3_SR_Q01e", + "templateId": "Quest:Quest_S16_W3_SR_Q01e", + "objectives": [ + { + "name": "Quest_S16_W3_SR_Q01", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W4_SR_Q01a", + "templateId": "Quest:Quest_S16_W4_SR_Q01a", + "objectives": [ + { + "name": "Quest_S16_W4_SR_Q01", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W4_SR_Q01b", + "templateId": "Quest:Quest_S16_W4_SR_Q01b", + "objectives": [ + { + "name": "Quest_S16_W4_SR_Q01", + "count": 5000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W4_SR_Q01c", + "templateId": "Quest:Quest_S16_W4_SR_Q01c", + "objectives": [ + { + "name": "Quest_S16_W4_SR_Q01", + "count": 7500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W4_SR_Q01d", + "templateId": "Quest:Quest_S16_W4_SR_Q01d", + "objectives": [ + { + "name": "Quest_S16_W4_SR_Q01", + "count": 10000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W4_SR_Q01e", + "templateId": "Quest:Quest_S16_W4_SR_Q01e", + "objectives": [ + { + "name": "Quest_S16_W4_SR_Q01", + "count": 12500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_04" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W5_SR_Q01a", + "templateId": "Quest:Quest_S16_W5_SR_Q01a", + "objectives": [ + { + "name": "Quest_S16_W5_SR_Q01", + "count": 1000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W5_SR_Q01b", + "templateId": "Quest:Quest_S16_W5_SR_Q01b", + "objectives": [ + { + "name": "Quest_S16_W5_SR_Q01", + "count": 2000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W5_SR_Q01c", + "templateId": "Quest:Quest_S16_W5_SR_Q01c", + "objectives": [ + { + "name": "Quest_S16_W5_SR_Q01", + "count": 3000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W5_SR_Q01d", + "templateId": "Quest:Quest_S16_W5_SR_Q01d", + "objectives": [ + { + "name": "Quest_S16_W5_SR_Q01", + "count": 4000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W5_SR_Q01e", + "templateId": "Quest:Quest_S16_W5_SR_Q01e", + "objectives": [ + { + "name": "Quest_S16_W5_SR_Q01", + "count": 5000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_05" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W6_SR_Q01a", + "templateId": "Quest:Quest_S16_W6_SR_Q01a", + "objectives": [ + { + "name": "Quest_S16_W6_SR_Q01", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W6_SR_Q01b", + "templateId": "Quest:Quest_S16_W6_SR_Q01b", + "objectives": [ + { + "name": "Quest_S16_W6_SR_Q01", + "count": 5000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W6_SR_Q01c", + "templateId": "Quest:Quest_S16_W6_SR_Q01c", + "objectives": [ + { + "name": "Quest_S16_W6_SR_Q01", + "count": 7500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W6_SR_Q01d", + "templateId": "Quest:Quest_S16_W6_SR_Q01d", + "objectives": [ + { + "name": "Quest_S16_W6_SR_Q01", + "count": 10000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W6_SR_Q01e", + "templateId": "Quest:Quest_S16_W6_SR_Q01e", + "objectives": [ + { + "name": "Quest_S16_W6_SR_Q01", + "count": 12500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_06" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W7_SR_Q01a", + "templateId": "Quest:Quest_S16_W7_SR_Q01a", + "objectives": [ + { + "name": "Quest_S16_W7_Legendary", + "count": 2500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W7_SR_Q01b", + "templateId": "Quest:Quest_S16_W7_SR_Q01b", + "objectives": [ + { + "name": "Quest_S16_W7_Legendary", + "count": 5000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W7_SR_Q01c", + "templateId": "Quest:Quest_S16_W7_SR_Q01c", + "objectives": [ + { + "name": "Quest_S16_W7_Legendary", + "count": 7500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W7_SR_Q01d", + "templateId": "Quest:Quest_S16_W7_SR_Q01d", + "objectives": [ + { + "name": "Quest_S16_W7_Legendary", + "count": 10000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W7_SR_Q01e", + "templateId": "Quest:Quest_S16_W7_SR_Q01e", + "objectives": [ + { + "name": "Quest_S16_W7_Legendary", + "count": 12500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_07" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W8_SR_Q01a", + "templateId": "Quest:Quest_S16_W8_SR_Q01a", + "objectives": [ + { + "name": "Quest_S16_W8_Legendary", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_08" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W8_SR_Q01b", + "templateId": "Quest:Quest_S16_W8_SR_Q01b", + "objectives": [ + { + "name": "Quest_S16_W8_Legendary", + "count": 200 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_08" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W8_SR_Q01c", + "templateId": "Quest:Quest_S16_W8_SR_Q01c", + "objectives": [ + { + "name": "Quest_S16_W8_Legendary", + "count": 300 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_08" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W8_SR_Q01d", + "templateId": "Quest:Quest_S16_W8_SR_Q01d", + "objectives": [ + { + "name": "Quest_S16_W8_Legendary", + "count": 400 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_08" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W8_SR_Q01e", + "templateId": "Quest:Quest_S16_W8_SR_Q01e", + "objectives": [ + { + "name": "Quest_S16_W8_Legendary", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_08" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W9_SR_Q01a", + "templateId": "Quest:Quest_S16_W9_SR_Q01a", + "objectives": [ + { + "name": "Quest_S16_W9_SR_Q01", + "count": 50 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_09" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W9_SR_Q01b", + "templateId": "Quest:Quest_S16_W9_SR_Q01b", + "objectives": [ + { + "name": "Quest_S16_W9_SR_Q01", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_09" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W9_SR_Q01c", + "templateId": "Quest:Quest_S16_W9_SR_Q01c", + "objectives": [ + { + "name": "Quest_S16_W9_SR_Q01", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_09" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W9_SR_Q01d", + "templateId": "Quest:Quest_S16_W9_SR_Q01d", + "objectives": [ + { + "name": "Quest_S16_W9_SR_Q01", + "count": 200 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_09" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W9_SR_Q01e", + "templateId": "Quest:Quest_S16_W9_SR_Q01e", + "objectives": [ + { + "name": "Quest_S16_W9_SR_Q01", + "count": 250 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_09" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W10_SR_Q01a", + "templateId": "Quest:Quest_S16_W10_SR_Q01a", + "objectives": [ + { + "name": "Quest_S16_W10_SR_Q01", + "count": 100 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W10_SR_Q01b", + "templateId": "Quest:Quest_S16_W10_SR_Q01b", + "objectives": [ + { + "name": "Quest_S16_W10_SR_Q01", + "count": 200 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W10_SR_Q01c", + "templateId": "Quest:Quest_S16_W10_SR_Q01c", + "objectives": [ + { + "name": "Quest_S16_W10_SR_Q01", + "count": 300 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W10_SR_Q01d", + "templateId": "Quest:Quest_S16_W10_SR_Q01d", + "objectives": [ + { + "name": "Quest_S16_W10_SR_Q01", + "count": 400 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W10_SR_Q01e", + "templateId": "Quest:Quest_S16_W10_SR_Q01e", + "objectives": [ + { + "name": "Quest_S16_W10_SR_Q01", + "count": 500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_10" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W11_SR_Q01a", + "templateId": "Quest:Quest_S16_W11_SR_Q01a", + "objectives": [ + { + "name": "Quest_S16_W11_SR_Q01", + "count": 1500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_11" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W11_SR_Q01b", + "templateId": "Quest:Quest_S16_W11_SR_Q01b", + "objectives": [ + { + "name": "Quest_S16_W11_SR_Q01", + "count": 3000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_11" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W11_SR_Q01c", + "templateId": "Quest:Quest_S16_W11_SR_Q01c", + "objectives": [ + { + "name": "Quest_S16_W11_SR_Q01", + "count": 4500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_11" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W11_SR_Q01d", + "templateId": "Quest:Quest_S16_W11_SR_Q01d", + "objectives": [ + { + "name": "Quest_S16_W11_SR_Q01", + "count": 6000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_11" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W11_SR_Q01e", + "templateId": "Quest:Quest_S16_W11_SR_Q01e", + "objectives": [ + { + "name": "Quest_S16_W11_SR_Q01", + "count": 7500 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_11" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W12_SR_Q01a", + "templateId": "Quest:Quest_S16_W12_SR_Q01a", + "objectives": [ + { + "name": "Quest_S16_W12_SR_Q01", + "count": 1200 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_12" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W12_SR_Q01b", + "templateId": "Quest:Quest_S16_W12_SR_Q01b", + "objectives": [ + { + "name": "Quest_S16_W12_SR_Q01", + "count": 2400 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_12" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W12_SR_Q01c", + "templateId": "Quest:Quest_S16_W12_SR_Q01c", + "objectives": [ + { + "name": "Quest_S16_W12_SR_Q01", + "count": 3600 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_12" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W12_SR_Q01d", + "templateId": "Quest:Quest_S16_W12_SR_Q01d", + "objectives": [ + { + "name": "Quest_S16_W12_SR_Q01", + "count": 4800 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_12" + }, + { + "itemGuid": "S16-Quest:Quest_S16_W12_SR_Q01e", + "templateId": "Quest:Quest_S16_W12_SR_Q01e", + "objectives": [ + { + "name": "Quest_S16_W12_SR_Q01", + "count": 6000 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Legendary_Week_12" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_SuperStyles_T1_01_q01", + "templateId": "Quest:Quest_S16_Style_SuperStyles_T1_01_q01", + "objectives": [ + { + "name": "quest_style_s16superstyles_t1_01_q01_obj01", + "count": 110 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T1_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_SuperStyles_T1_02_q01", + "templateId": "Quest:Quest_S16_Style_SuperStyles_T1_02_q01", + "objectives": [ + { + "name": "quest_style_s16superstyles_t1_02_q01_obj01", + "count": 130 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T1_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_SuperStyles_T1_03_q01", + "templateId": "Quest:Quest_S16_Style_SuperStyles_T1_03_q01", + "objectives": [ + { + "name": "quest_style_s16superstyles_t1_03_q01_obj01", + "count": 150 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T1_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_SuperStyles_T2_01_q01", + "templateId": "Quest:Quest_S16_Style_SuperStyles_T2_01_q01", + "objectives": [ + { + "name": "quest_style_s16superstyles_t2_01_q01_obj01", + "count": 160 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T2_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_SuperStyles_T2_02_q01", + "templateId": "Quest:Quest_S16_Style_SuperStyles_T2_02_q01", + "objectives": [ + { + "name": "quest_style_s16superstyles_t2_02_q01_obj01", + "count": 180 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T2_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_SuperStyles_T2_03_q01", + "templateId": "Quest:Quest_S16_Style_SuperStyles_T2_03_q01", + "objectives": [ + { + "name": "quest_style_s16superstyles_t2_03_q01_obj01", + "count": 200 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T2_03" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_SuperStyles_T3_01_q01", + "templateId": "Quest:Quest_S16_Style_SuperStyles_T3_01_q01", + "objectives": [ + { + "name": "quest_style_s16superstyles_t3_01_q01_obj01", + "count": 205 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T3_01" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_SuperStyles_T3_02_q01", + "templateId": "Quest:Quest_S16_Style_SuperStyles_T3_02_q01", + "objectives": [ + { + "name": "quest_style_s16superstyles_t3_02_q01_obj01", + "count": 215 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T3_02" + }, + { + "itemGuid": "S16-Quest:Quest_S16_Style_SuperStyles_T3_03_q01", + "templateId": "Quest:Quest_S16_Style_SuperStyles_T3_03_q01", + "objectives": [ + { + "name": "quest_style_s16superstyles_t3_03_q01_obj01", + "count": 225 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_SuperStyles_T3_03" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q01", + "templateId": "Quest:quest_s16_tower_q01", + "objectives": [ + { + "name": "quest_s16_tower_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_00" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q02", + "templateId": "Quest:quest_s16_tower_q02", + "objectives": [ + { + "name": "quest_s16_tower_q02_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_00" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q03", + "templateId": "Quest:quest_s16_tower_q03", + "objectives": [ + { + "name": "quest_s16_tower_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_00" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q02", + "templateId": "Quest:quest_s16_tower_q02", + "objectives": [ + { + "name": "quest_s16_tower_q02_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_00" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q03", + "templateId": "Quest:quest_s16_tower_q03", + "objectives": [ + { + "name": "quest_s16_tower_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_00" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q03", + "templateId": "Quest:quest_s16_tower_q03", + "objectives": [ + { + "name": "quest_s16_tower_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_00" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q11", + "templateId": "Quest:quest_s16_tower_q11", + "objectives": [ + { + "name": "quest_s16_tower_q11_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_01" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q13", + "templateId": "Quest:quest_s16_tower_q13", + "objectives": [ + { + "name": "quest_s16_tower_q13_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_01" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q14", + "templateId": "Quest:quest_s16_tower_q14", + "objectives": [ + { + "name": "quest_s16_tower_q14_obj0", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj1", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj2", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj3", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj4", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj5", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj6", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj7", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj8", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_01" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q13", + "templateId": "Quest:quest_s16_tower_q13", + "objectives": [ + { + "name": "quest_s16_tower_q13_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_01" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q14", + "templateId": "Quest:quest_s16_tower_q14", + "objectives": [ + { + "name": "quest_s16_tower_q14_obj0", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj1", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj2", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj3", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj4", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj5", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj6", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj7", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj8", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_01" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q14", + "templateId": "Quest:quest_s16_tower_q14", + "objectives": [ + { + "name": "quest_s16_tower_q14_obj0", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj1", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj2", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj3", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj4", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj5", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj6", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj7", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj8", + "count": 1 + }, + { + "name": "quest_s16_tower_q14_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_01" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q17", + "templateId": "Quest:quest_s16_tower_q17", + "objectives": [ + { + "name": "quest_s16_tower_q17_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_02" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q19", + "templateId": "Quest:quest_s16_tower_q19", + "objectives": [ + { + "name": "quest_s16_tower_q19_obj0", + "count": 1 + }, + { + "name": "quest_s16_tower_q19_obj1", + "count": 1 + }, + { + "name": "quest_s16_tower_q19_obj2", + "count": 1 + }, + { + "name": "quest_s16_tower_q19_obj3", + "count": 1 + }, + { + "name": "quest_s16_tower_q19_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_02" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q20", + "templateId": "Quest:quest_s16_tower_q20", + "objectives": [ + { + "name": "quest_s16_tower_q20_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_02" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q21", + "templateId": "Quest:quest_s16_tower_q21", + "objectives": [ + { + "name": "quest_s16_tower_q21_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_02" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q19", + "templateId": "Quest:quest_s16_tower_q19", + "objectives": [ + { + "name": "quest_s16_tower_q19_obj0", + "count": 1 + }, + { + "name": "quest_s16_tower_q19_obj1", + "count": 1 + }, + { + "name": "quest_s16_tower_q19_obj2", + "count": 1 + }, + { + "name": "quest_s16_tower_q19_obj3", + "count": 1 + }, + { + "name": "quest_s16_tower_q19_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_02" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q20", + "templateId": "Quest:quest_s16_tower_q20", + "objectives": [ + { + "name": "quest_s16_tower_q20_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_02" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q21", + "templateId": "Quest:quest_s16_tower_q21", + "objectives": [ + { + "name": "quest_s16_tower_q21_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_02" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q20", + "templateId": "Quest:quest_s16_tower_q20", + "objectives": [ + { + "name": "quest_s16_tower_q20_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_02" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q21", + "templateId": "Quest:quest_s16_tower_q21", + "objectives": [ + { + "name": "quest_s16_tower_q21_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_02" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q21", + "templateId": "Quest:quest_s16_tower_q21", + "objectives": [ + { + "name": "quest_s16_tower_q21_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_02" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q19", + "templateId": "Quest:quest_s16_tower_q19", + "objectives": [ + { + "name": "quest_s16_tower_q19_obj0", + "count": 1 + }, + { + "name": "quest_s16_tower_q19_obj1", + "count": 1 + }, + { + "name": "quest_s16_tower_q19_obj2", + "count": 1 + }, + { + "name": "quest_s16_tower_q19_obj3", + "count": 1 + }, + { + "name": "quest_s16_tower_q19_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_03" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q20", + "templateId": "Quest:quest_s16_tower_q20", + "objectives": [ + { + "name": "quest_s16_tower_q20_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_03" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q21", + "templateId": "Quest:quest_s16_tower_q21", + "objectives": [ + { + "name": "quest_s16_tower_q21_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_03" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q07", + "templateId": "Quest:quest_s16_tower_q07", + "objectives": [ + { + "name": "quest_s16_tower_q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_Gated_01" + }, + { + "itemGuid": "S16-Quest:quest_s16_tower_q09", + "templateId": "Quest:quest_s16_tower_q09", + "objectives": [ + { + "name": "quest_s16_tower_q09_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S16-ChallengeBundle:QuestBundle_S16_Tower_Gated_02" + } + ] + }, + "Season17": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S17-ChallengeBundleSchedule:Schedule_Event_TheMarch_Hidden", + "templateId": "ChallengeBundleSchedule:Schedule_Event_TheMarch_Hidden", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_Event_TheMarch_HIdden" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season17_Emperor_Schedule_01", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Emperor_01" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season17_Emperor_Schedule_02", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Emperor_02" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season17_Emperor_Schedule_03", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Emperor_03" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season17_Emperor_Schedule_04", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Emperor_04" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season17_Emperor_Schedule_05", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Emperor_05" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_06", + "templateId": "ChallengeBundleSchedule:Season17_Emperor_Schedule_06", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Emperor_06" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_07", + "templateId": "ChallengeBundleSchedule:Season17_Emperor_Schedule_07", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Emperor_07" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_08", + "templateId": "ChallengeBundleSchedule:Season17_Emperor_Schedule_08", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Emperor_08" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_09", + "templateId": "ChallengeBundleSchedule:Season17_Emperor_Schedule_09", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Emperor_09" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_10", + "templateId": "ChallengeBundleSchedule:Season17_Emperor_Schedule_10", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Emperor_10" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Feat_BundleSchedule", + "templateId": "ChallengeBundleSchedule:Season17_Feat_BundleSchedule", + "granted_bundles": [ + "S17-ChallengeBundle:Season17_Feat_Bundle" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule", + "templateId": "ChallengeBundleSchedule:Season17_Milestone_Schedule", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_PlayerVehicle", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Player", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_GlideDistance", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Structures", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_RebootTeammate", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_Chests", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_SupplyDrop", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_ShakedownOpponents", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDestroy_Structures", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDistance", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Furniture", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Distance_OnFoot", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_150m", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Assault", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Common_Uncommon", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Explosives", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Pistols", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Shotguns", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_SMG", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Sniper", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_AmmoBoxes", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_SwimDistance", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_CatchFish", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_UseFishingSpots", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harvest_Stone", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Trees", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_opponents", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_CQuest", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_UCQuest", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_RQuest", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_EQuest", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_LQuest", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Shrubs", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Gold", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Melee_Elims", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Stones", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_Bounties", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Place_Top10", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Revive_Teammates", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Upgrade_Weapons", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Assist_Elims", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Bones", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Meat", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Craft_Weapons", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_Above", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Don_Creature_Disguises", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Head_Shot", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harpoon_Elims", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hit_Weakpoints", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hunt_Animals", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Opponent", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Structure", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Apple", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Banana", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Campfire", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_ForagedItem", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Mushroom", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_IceMachines", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Spend_Bars", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Tame_Animals", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Thank_Driver", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Bandages", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Potions", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Mod_Vehicles", + "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_NutsAndBolts" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule", + "templateId": "ChallengeBundleSchedule:Season17_Mission_Schedule", + "granted_bundles": [ + "S17-ChallengeBundle:MissionBundle_S17_Week_01", + "S17-ChallengeBundle:MissionBundle_S17_Week_02", + "S17-ChallengeBundle:MissionBundle_S17_Week_03", + "S17-ChallengeBundle:MissionBundle_S17_Week_04", + "S17-ChallengeBundle:MissionBundle_S17_Week_05", + "S17-ChallengeBundle:MissionBundle_S17_Week_06", + "S17-ChallengeBundle:MissionBundle_S17_Week_07", + "S17-ChallengeBundle:MissionBundle_S17_Week_08", + "S17-ChallengeBundle:MissionBundle_S17_Week_09", + "S17-ChallengeBundle:MissionBundle_S17_Week_10", + "S17-ChallengeBundle:MissionBundle_S17_Week_11", + "S17-ChallengeBundle:MissionBundle_S17_Week_12", + "S17-ChallengeBundle:MissionBundle_S17_Week_13", + "S17-ChallengeBundle:MissionBundle_S17_Week_14", + "S17-ChallengeBundle:MissionBundle_S17_Week_15" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_O2_Schedule", + "templateId": "ChallengeBundleSchedule:Season17_O2_Schedule", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_O2" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_AlienArtifacts", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Event_AlienArtifacts", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_01", + "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_02", + "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_03", + "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_04", + "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_05", + "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_06", + "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_07", + "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_08", + "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_09", + "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_10" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_Buffet_01", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Event_Buffet_01", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_01" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_Buffet_02", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Event_Buffet_02", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_02" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_Buffet_03", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Event_Buffet_03", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_03", + "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_04" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_Buffet_Hidden", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Event_Buffet_Hidden", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_Hidden" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_CosmicSummer", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Event_CosmicSummer", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_IslandGames", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Event_IslandGames", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_01", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_01", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_01" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_02", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_02", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_02" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_03", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_03", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_03" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_04", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_04", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_04" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_05", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_05", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_05" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_06", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_06", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_06" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_07", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_07", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_07" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_08", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_08", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_08" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_09", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_09", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_09" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_10", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_10", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_10" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_11", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_11", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_11" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_12", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_12", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_12" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_13", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_13", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_13" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_14", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_14", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_14" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_5_hidden", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_5_hidden", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_5_hidden" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_WildWeek_11", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_WildWeek_11", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_11" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_WildWeek_12", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_WildWeek_12", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_12" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_WildWeek_13", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_WildWeek_13", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_13" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_WildWeek_14", + "templateId": "ChallengeBundleSchedule:Season17_Schedule_Legendary_WildWeek_14", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_14" + ] + }, + { + "itemGuid": "S17-ChallengeBundleSchedule:Season17_Superlevel_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season17_Superlevel_Schedule_01", + "granted_bundles": [ + "S17-ChallengeBundle:QuestBundle_S17_Superlevel_01" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_TheMarch_Hidden", + "templateId": "ChallengeBundle:QuestBundle_Event_TheMarch_Hidden", + "grantedquestinstanceids": [ + "S17-Quest:Quest_TheMarch" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Schedule_Event_TheMarch_Hidden" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Emperor_01", + "templateId": "ChallengeBundle:QuestBundle_S17_Emperor_01", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Emperor_q03" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_01" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Emperor_02", + "templateId": "ChallengeBundle:QuestBundle_S17_Emperor_02", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Emperor_q01" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_02" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Emperor_03", + "templateId": "ChallengeBundle:QuestBundle_S17_Emperor_03", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Emperor_q02" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_03" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Emperor_04", + "templateId": "ChallengeBundle:QuestBundle_S17_Emperor_04", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Emperor_q04" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_04" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Emperor_05", + "templateId": "ChallengeBundle:QuestBundle_S17_Emperor_05", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Emperor_q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_05" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Emperor_06", + "templateId": "ChallengeBundle:QuestBundle_S17_Emperor_06", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Emperor_q06" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_06" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Emperor_07", + "templateId": "ChallengeBundle:QuestBundle_S17_Emperor_07", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Emperor_q07" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_07" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Emperor_08", + "templateId": "ChallengeBundle:QuestBundle_S17_Emperor_08", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Emperor_q08" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_08" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Emperor_09", + "templateId": "ChallengeBundle:QuestBundle_S17_Emperor_09", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Emperor_q09" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_09" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Emperor_10", + "templateId": "ChallengeBundle:QuestBundle_S17_Emperor_10", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Emperor_q10_p01", + "S17-Quest:Quest_S17_Emperor_q10_p02" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Emperor_Schedule_10" + }, + { + "itemGuid": "S17-ChallengeBundle:Season17_Feat_Bundle", + "templateId": "ChallengeBundle:Season17_Feat_Bundle", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_feat_land_firsttime", + "S17-Quest:quest_s17_feat_athenarank_solo_1x", + "S17-Quest:quest_s17_feat_athenarank_solo_10x", + "S17-Quest:quest_s17_feat_athenarank_solo_100x", + "S17-Quest:quest_s17_feat_athenarank_solo_10elims", + "S17-Quest:quest_s17_feat_athenarank_duo_1x", + "S17-Quest:quest_s17_feat_athenarank_duo_10x", + "S17-Quest:quest_s17_feat_athenarank_duo_100x", + "S17-Quest:quest_s17_feat_athenarank_trios_1x", + "S17-Quest:quest_s17_feat_athenarank_trios_10x", + "S17-Quest:quest_s17_feat_athenarank_trios_100x", + "S17-Quest:quest_s17_feat_athenarank_squad_1x", + "S17-Quest:quest_s17_feat_athenarank_squad_10x", + "S17-Quest:quest_s17_feat_athenarank_squad_100x", + "S17-Quest:quest_s17_feat_athenarank_rumble_1x", + "S17-Quest:quest_s17_feat_athenarank_rumble_100x", + "S17-Quest:quest_s17_feat_kill_yeet", + "S17-Quest:quest_s17_feat_kill_pickaxe", + "S17-Quest:quest_s17_feat_kill_aftersupplydrop", + "S17-Quest:quest_s17_feat_kill_gliding", + "S17-Quest:quest_s17_feat_throw_consumable", + "S17-Quest:quest_s17_feat_accolade_weaponspecialist__samematch_2", + "S17-Quest:quest_s17_feat_accolade_weaponspecialist__samematch_3", + "S17-Quest:quest_s17_feat_accolade_weaponspecialist__samematch_4", + "S17-Quest:quest_s17_feat_accolade_weaponspecialist__samematch_5", + "S17-Quest:quest_s17_feat_accolade_weaponspecialist__samematch_6", + "S17-Quest:quest_s17_feat_accolade_weaponspecialist__samematch_7", + "S17-Quest:quest_s17_feat_accolade_expert_explosives", + "S17-Quest:quest_s17_feat_accolade_expert_pistol", + "S17-Quest:quest_s17_feat_accolade_expert_smg", + "S17-Quest:quest_s17_feat_accolade_expert_pickaxe", + "S17-Quest:quest_s17_feat_accolade_expert_shotgun", + "S17-Quest:quest_s17_feat_accolade_expert_ar", + "S17-Quest:quest_s17_feat_accolade_expert_sniper", + "S17-Quest:quest_s17_feat_purplecoin_combo", + "S17-Quest:quest_s17_feat_reach_seasonlevel", + "S17-Quest:quest_s17_feat_athenacollection_fish", + "S17-Quest:quest_s17_feat_athenacollection_npc", + "S17-Quest:quest_s17_feat_kill_bounty", + "S17-Quest:quest_s17_feat_spend_goldbars", + "S17-Quest:quest_s17_feat_collect_goldbars", + "S17-Quest:quest_s17_feat_craft_weapon", + "S17-Quest:quest_s17_feat_kill_creature", + "S17-Quest:quest_s17_feat_defend_bounty", + "S17-Quest:quest_s17_feat_evade_bounty", + "S17-Quest:quest_s17_feat_poach_bounty" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Feat_BundleSchedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Assist_Elims", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Assist_Elims", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Assist_Elims_Q01", + "S17-Quest:Quest_S17_Milestone_Assist_Elims_Q02", + "S17-Quest:Quest_S17_Milestone_Assist_Elims_Q03", + "S17-Quest:Quest_S17_Milestone_Assist_Elims_Q04", + "S17-Quest:Quest_S17_Milestone_Assist_Elims_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_CatchFish", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_CatchFish", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_CatchFish_Q01", + "S17-Quest:Quest_S17_Milestone_CatchFish_Q02", + "S17-Quest:Quest_S17_Milestone_CatchFish_Q03", + "S17-Quest:Quest_S17_Milestone_CatchFish_Q04", + "S17-Quest:Quest_S17_Milestone_CatchFish_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Bones", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Collect_Bones", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Collect_Bones_Q01", + "S17-Quest:Quest_S17_Milestone_Collect_Bones_Q02", + "S17-Quest:Quest_S17_Milestone_Collect_Bones_Q03", + "S17-Quest:Quest_S17_Milestone_Collect_Bones_Q04", + "S17-Quest:Quest_S17_Milestone_Collect_Bones_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Gold", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Collect_Gold", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_CollectGold_Q01", + "S17-Quest:Quest_S17_Milestone_CollectGold_Q02", + "S17-Quest:Quest_S17_Milestone_CollectGold_Q03", + "S17-Quest:Quest_S17_Milestone_CollectGold_Q04", + "S17-Quest:Quest_S17_Milestone_CollectGold_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Meat", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Collect_Meat", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Collect_Meat_Q01", + "S17-Quest:Quest_S17_Milestone_Collect_Meat_Q02", + "S17-Quest:Quest_S17_Milestone_Collect_Meat_Q03", + "S17-Quest:Quest_S17_Milestone_Collect_Meat_Q04", + "S17-Quest:Quest_S17_Milestone_Collect_Meat_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_NutsAndBolts", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Collect_NutsAndBolts", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q01", + "S17-Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q02", + "S17-Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q03", + "S17-Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q04", + "S17-Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_Bounties", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Complete_Bounties", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_CompleteBounties_Q01", + "S17-Quest:Quest_S17_Milestone_CompleteBounties_Q02", + "S17-Quest:Quest_S17_Milestone_CompleteBounties_Q03", + "S17-Quest:Quest_S17_Milestone_CompleteBounties_Q04", + "S17-Quest:Quest_S17_Milestone_CompleteBounties_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_CQuest", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Complete_CQuest", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Complete_CQuest_Q01", + "S17-Quest:Quest_S17_Milestone_Complete_CQuest_Q02", + "S17-Quest:Quest_S17_Milestone_Complete_CQuest_Q03", + "S17-Quest:Quest_S17_Milestone_Complete_CQuest_Q04", + "S17-Quest:Quest_S17_Milestone_Complete_CQuest_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_EQuest", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Complete_EQuest", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Complete_EQuest_Q01", + "S17-Quest:Quest_S17_Milestone_Complete_EQuest_Q02", + "S17-Quest:Quest_S17_Milestone_Complete_EQuest_Q03", + "S17-Quest:Quest_S17_Milestone_Complete_EQuest_Q04", + "S17-Quest:Quest_S17_Milestone_Complete_EQuest_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_LQuest", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Complete_LQuest", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Complete_LQuest_Q01", + "S17-Quest:Quest_S17_Milestone_Complete_LQuest_Q02", + "S17-Quest:Quest_S17_Milestone_Complete_LQuest_Q03", + "S17-Quest:Quest_S17_Milestone_Complete_LQuest_Q04", + "S17-Quest:Quest_S17_Milestone_Complete_LQuest_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_RQuest", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Complete_RQuest", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Complete_RQuest_Q01", + "S17-Quest:Quest_S17_Milestone_Complete_RQuest_Q02", + "S17-Quest:Quest_S17_Milestone_Complete_RQuest_Q03", + "S17-Quest:Quest_S17_Milestone_Complete_RQuest_Q04", + "S17-Quest:Quest_S17_Milestone_Complete_RQuest_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_UCQuest", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Complete_UCQuest", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Complete_UCQuest_Q01", + "S17-Quest:Quest_S17_Milestone_Complete_UCQuest_Q02", + "S17-Quest:Quest_S17_Milestone_Complete_UCQuest_Q03", + "S17-Quest:Quest_S17_Milestone_Complete_UCQuest_Q04", + "S17-Quest:Quest_S17_Milestone_Complete_UCQuest_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Craft_Weapons", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Craft_Weapons", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Craft_Weapons_Q01", + "S17-Quest:Quest_S17_Milestone_Craft_Weapons_Q02", + "S17-Quest:Quest_S17_Milestone_Craft_Weapons_Q03", + "S17-Quest:Quest_S17_Milestone_Craft_Weapons_Q04", + "S17-Quest:Quest_S17_Milestone_Craft_Weapons_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_Above", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Damage_Above", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Damage_FromAbove_Q01", + "S17-Quest:Quest_S17_Milestone_Damage_FromAbove_Q02", + "S17-Quest:Quest_S17_Milestone_Damage_FromAbove_Q03", + "S17-Quest:Quest_S17_Milestone_Damage_FromAbove_Q04", + "S17-Quest:Quest_S17_Milestone_Damage_FromAbove_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_Opponents", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Damage_Opponents", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Dmg_Opponents_Q01", + "S17-Quest:Quest_S17_Milestone_Dmg_Opponents_Q02", + "S17-Quest:Quest_S17_Milestone_Dmg_Opponents_Q03", + "S17-Quest:Quest_S17_Milestone_Dmg_Opponents_Q04", + "S17-Quest:Quest_S17_Milestone_Dmg_Opponents_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_PlayerVehicle", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Damage_PlayerVehicle", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q01", + "S17-Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q02", + "S17-Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q03", + "S17-Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q04", + "S17-Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Shrubs", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Shrubs", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_DestroyShrubs_Q01", + "S17-Quest:Quest_S17_Milestone_DestroyShrubs_Q02", + "S17-Quest:Quest_S17_Milestone_DestroyShrubs_Q03", + "S17-Quest:Quest_S17_Milestone_DestroyShrubs_Q04", + "S17-Quest:Quest_S17_Milestone_DestroyShrubs_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Stones", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Stones", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_DestroyStones_Q01", + "S17-Quest:Quest_S17_Milestone_DestroyStones_Q02", + "S17-Quest:Quest_S17_Milestone_DestroyStones_Q03", + "S17-Quest:Quest_S17_Milestone_DestroyStones_Q04", + "S17-Quest:Quest_S17_Milestone_DestroyStones_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Trees", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Trees", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Destroy_Trees_Q01", + "S17-Quest:Quest_S17_Milestone_Destroy_Trees_Q02", + "S17-Quest:Quest_S17_Milestone_Destroy_Trees_Q03", + "S17-Quest:Quest_S17_Milestone_Destroy_Trees_Q04", + "S17-Quest:Quest_S17_Milestone_Destroy_Trees_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Distance_OnFoot", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Distance_OnFoot", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q01", + "S17-Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q02", + "S17-Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q03", + "S17-Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q04", + "S17-Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Don_Creature_Disguises", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Don_Creature_Disguises", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Creature_Disguise_Q01", + "S17-Quest:Quest_S17_Milestone_Creature_Disguise_Q02", + "S17-Quest:Quest_S17_Milestone_Creature_Disguise_Q03", + "S17-Quest:Quest_S17_Milestone_Creature_Disguise_Q04", + "S17-Quest:Quest_S17_Milestone_Creature_Disguise_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_150m", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Elim_150m", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Elim_150m_Q01", + "S17-Quest:Quest_S17_Milestone_Elim_150m_Q02", + "S17-Quest:Quest_S17_Milestone_Elim_150m_Q03", + "S17-Quest:Quest_S17_Milestone_Elim_150m_Q04", + "S17-Quest:Quest_S17_Milestone_Elim_150m_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Assault", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Elim_Assault", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Elim_Assault_Q01", + "S17-Quest:Quest_S17_Milestone_Elim_Assault_Q02", + "S17-Quest:Quest_S17_Milestone_Elim_Assault_Q03", + "S17-Quest:Quest_S17_Milestone_Elim_Assault_Q04", + "S17-Quest:Quest_S17_Milestone_Elim_Assault_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Common_Uncommon", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Elim_Common_Uncommon", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q01", + "S17-Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q02", + "S17-Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q03", + "S17-Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q04", + "S17-Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Explosives", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Elim_Explosives", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Elim_Explosive_Q01", + "S17-Quest:Quest_S17_Milestone_Elim_Explosive_Q02", + "S17-Quest:Quest_S17_Milestone_Elim_Explosive_Q03", + "S17-Quest:Quest_S17_Milestone_Elim_Explosive_Q04", + "S17-Quest:Quest_S17_Milestone_Elim_Explosive_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Head_Shot", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Elim_Head_Shot", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_HeadShot_Elims_Q01", + "S17-Quest:Quest_S17_Milestone_HeadShot_Elims_Q02", + "S17-Quest:Quest_S17_Milestone_HeadShot_Elims_Q03", + "S17-Quest:Quest_S17_Milestone_HeadShot_Elims_Q04", + "S17-Quest:Quest_S17_Milestone_HeadShot_Elims_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Pistols", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Elim_Pistols", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Elim_Pistol_Q01", + "S17-Quest:Quest_S17_Milestone_Elim_Pistol_Q02", + "S17-Quest:Quest_S17_Milestone_Elim_Pistol_Q03", + "S17-Quest:Quest_S17_Milestone_Elim_Pistol_Q04", + "S17-Quest:Quest_S17_Milestone_Elim_Pistol_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Player", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Elim_Player", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Elim_Player_Q01", + "S17-Quest:Quest_S17_Milestone_Elim_Player_Q02", + "S17-Quest:Quest_S17_Milestone_Elim_Player_Q03", + "S17-Quest:Quest_S17_Milestone_Elim_Player_Q04", + "S17-Quest:Quest_S17_Milestone_Elim_Player_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Shotguns", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Elim_Shotguns", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Elim_Shotgun_Q01", + "S17-Quest:Quest_S17_Milestone_Elim_Shotgun_Q02", + "S17-Quest:Quest_S17_Milestone_Elim_Shotgun_Q03", + "S17-Quest:Quest_S17_Milestone_Elim_Shotgun_Q04", + "S17-Quest:Quest_S17_Milestone_Elim_Shotgun_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_SMG", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Elim_SMG", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Elim_SMG_Q01", + "S17-Quest:Quest_S17_Milestone_Elim_SMG_Q02", + "S17-Quest:Quest_S17_Milestone_Elim_SMG_Q03", + "S17-Quest:Quest_S17_Milestone_Elim_SMG_Q04", + "S17-Quest:Quest_S17_Milestone_Elim_SMG_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Sniper", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Elim_Sniper", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Elim_Sniper_Q01", + "S17-Quest:Quest_S17_Milestone_Elim_Sniper_Q02", + "S17-Quest:Quest_S17_Milestone_Elim_Sniper_Q03", + "S17-Quest:Quest_S17_Milestone_Elim_Sniper_Q04", + "S17-Quest:Quest_S17_Milestone_Elim_Sniper_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_GlideDistance", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_GlideDistance", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_GlideDistance_Q01", + "S17-Quest:Quest_S17_Milestone_GlideDistance_Q02", + "S17-Quest:Quest_S17_Milestone_GlideDistance_Q03", + "S17-Quest:Quest_S17_Milestone_GlideDistance_Q04", + "S17-Quest:Quest_S17_Milestone_GlideDistance_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harpoon_Elims", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Harpoon_Elims", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Harpoon_Elims_Q01", + "S17-Quest:Quest_S17_Milestone_Harpoon_Elims_Q02", + "S17-Quest:Quest_S17_Milestone_Harpoon_Elims_Q03", + "S17-Quest:Quest_S17_Milestone_Harpoon_Elims_Q04", + "S17-Quest:Quest_S17_Milestone_Harpoon_Elims_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harvest_Stone", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Harvest_Stone", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Harvest_Stone_Q01", + "S17-Quest:Quest_S17_Milestone_Harvest_Stone_Q02", + "S17-Quest:Quest_S17_Milestone_Harvest_Stone_Q03", + "S17-Quest:Quest_S17_Milestone_Harvest_Stone_Q04", + "S17-Quest:Quest_S17_Milestone_Harvest_Stone_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hit_Weakpoints", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Hit_Weakpoints", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Hit_Weakpoints_Q01", + "S17-Quest:Quest_S17_Milestone_Hit_Weakpoints_Q02", + "S17-Quest:Quest_S17_Milestone_Hit_Weakpoints_Q03", + "S17-Quest:Quest_S17_Milestone_Hit_Weakpoints_Q04", + "S17-Quest:Quest_S17_Milestone_Hit_Weakpoints_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hunt_Animals", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Hunt_Animals", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Hunt_Animals_Q01", + "S17-Quest:Quest_S17_Milestone_Hunt_Animals_Q02", + "S17-Quest:Quest_S17_Milestone_Hunt_Animals_Q03", + "S17-Quest:Quest_S17_Milestone_Hunt_Animals_Q04", + "S17-Quest:Quest_S17_Milestone_Hunt_Animals_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Opponent", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Opponent", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Ignite_Opponent_Q01", + "S17-Quest:Quest_S17_Milestone_Ignite_Opponent_Q02", + "S17-Quest:Quest_S17_Milestone_Ignite_Opponent_Q03", + "S17-Quest:Quest_S17_Milestone_Ignite_Opponent_Q04", + "S17-Quest:Quest_S17_Milestone_Ignite_Opponent_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Structure", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Structure", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Ignite_Structure_Q01", + "S17-Quest:Quest_S17_Milestone_Ignite_Structure_Q02", + "S17-Quest:Quest_S17_Milestone_Ignite_Structure_Q03", + "S17-Quest:Quest_S17_Milestone_Ignite_Structure_Q04", + "S17-Quest:Quest_S17_Milestone_Ignite_Structure_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Apple", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Interact_Apple", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Interact_Apple_Q01", + "S17-Quest:Quest_S17_Milestone_Interact_Apple_Q02", + "S17-Quest:Quest_S17_Milestone_Interact_Apple_Q03", + "S17-Quest:Quest_S17_Milestone_Interact_Apple_Q04", + "S17-Quest:Quest_S17_Milestone_Interact_Apple_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Banana", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Interact_Banana", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Interact_Banana_Q01", + "S17-Quest:Quest_S17_Milestone_Interact_Banana_Q02", + "S17-Quest:Quest_S17_Milestone_Interact_Banana_Q03", + "S17-Quest:Quest_S17_Milestone_Interact_Banana_Q04", + "S17-Quest:Quest_S17_Milestone_Interact_Banana_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Campfire", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Interact_Campfire", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Interact_Campfire_Q01", + "S17-Quest:Quest_S17_Milestone_Interact_Campfire_Q02", + "S17-Quest:Quest_S17_Milestone_Interact_Campfire_Q03", + "S17-Quest:Quest_S17_Milestone_Interact_Campfire_Q04", + "S17-Quest:Quest_S17_Milestone_Interact_Campfire_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_ForagedItem", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Interact_ForagedItem", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Interact_ForagedItem_Q01", + "S17-Quest:Quest_S17_Milestone_Interact_ForagedItem_Q02", + "S17-Quest:Quest_S17_Milestone_Interact_ForagedItem_Q03", + "S17-Quest:Quest_S17_Milestone_Interact_ForagedItem_Q04", + "S17-Quest:Quest_S17_Milestone_Interact_ForagedItem_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Mushroom", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Interact_Mushroom", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Interact_Mushroom_Q01", + "S17-Quest:Quest_S17_Milestone_Interact_Mushroom_Q02", + "S17-Quest:Quest_S17_Milestone_Interact_Mushroom_Q03", + "S17-Quest:Quest_S17_Milestone_Interact_Mushroom_Q04", + "S17-Quest:Quest_S17_Milestone_Interact_Mushroom_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Furniture", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Furniture", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q01", + "S17-Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q02", + "S17-Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q03", + "S17-Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q04", + "S17-Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Structures", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Structures", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q01", + "S17-Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q02", + "S17-Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q03", + "S17-Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q04", + "S17-Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Melee_Elims", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Melee_Elims", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_MeleeKills_Q01", + "S17-Quest:Quest_S17_Milestone_MeleeKills_Q02", + "S17-Quest:Quest_S17_Milestone_MeleeKills_Q03", + "S17-Quest:Quest_S17_Milestone_MeleeKills_Q04", + "S17-Quest:Quest_S17_Milestone_MeleeKills_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Mod_Vehicles", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Mod_Vehicles", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Mod_Vehicles_Q01", + "S17-Quest:Quest_S17_Milestone_Mod_Vehicles_Q02", + "S17-Quest:Quest_S17_Milestone_Mod_Vehicles_Q03", + "S17-Quest:Quest_S17_Milestone_Mod_Vehicles_Q04", + "S17-Quest:Quest_S17_Milestone_Mod_Vehicles_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Place_Top10", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Place_Top10", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Top10_Q01", + "S17-Quest:Quest_S17_Milestone_Top10_Q02", + "S17-Quest:Quest_S17_Milestone_Top10_Q03", + "S17-Quest:Quest_S17_Milestone_Top10_Q04", + "S17-Quest:Quest_S17_Milestone_Top10_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_RebootTeammate", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_RebootTeammate", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_RebootTeammate_Q01", + "S17-Quest:Quest_S17_Milestone_RebootTeammate_Q02", + "S17-Quest:Quest_S17_Milestone_RebootTeammate_Q03", + "S17-Quest:Quest_S17_Milestone_RebootTeammate_Q04", + "S17-Quest:Quest_S17_Milestone_RebootTeammate_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Revive_Teammates", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Revive_Teammates", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_ReviveTeammates_Q01", + "S17-Quest:Quest_S17_Milestone_ReviveTeammates_Q02", + "S17-Quest:Quest_S17_Milestone_ReviveTeammates_Q03", + "S17-Quest:Quest_S17_Milestone_ReviveTeammates_Q04", + "S17-Quest:Quest_S17_Milestone_ReviveTeammates_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_AmmoBoxes", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Search_AmmoBoxes", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q01", + "S17-Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q02", + "S17-Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q03", + "S17-Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q04", + "S17-Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_Chests", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Search_Chests", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Search_Chests_Q01", + "S17-Quest:Quest_S17_Milestone_Search_Chests_Q02", + "S17-Quest:Quest_S17_Milestone_Search_Chests_Q03", + "S17-Quest:Quest_S17_Milestone_Search_Chests_Q04", + "S17-Quest:Quest_S17_Milestone_Search_Chests_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_IceMachines", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Search_IceMachines", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Search_Ice_Machines_Q01", + "S17-Quest:Quest_S17_Milestone_Search_Ice_Machines_Q02", + "S17-Quest:Quest_S17_Milestone_Search_Ice_Machines_Q03", + "S17-Quest:Quest_S17_Milestone_Search_Ice_Machines_Q04", + "S17-Quest:Quest_S17_Milestone_Search_Ice_Machines_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_SupplyDrop", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Search_SupplyDrop", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Search_SupplyDrop_Q01", + "S17-Quest:Quest_S17_Milestone_Search_SupplyDrop_Q02", + "S17-Quest:Quest_S17_Milestone_Search_SupplyDrop_Q03", + "S17-Quest:Quest_S17_Milestone_Search_SupplyDrop_Q04", + "S17-Quest:Quest_S17_Milestone_Search_SupplyDrop_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_ShakedownOpponents", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_ShakedownOpponents", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_ShakedownOpponents_Q01", + "S17-Quest:Quest_S17_Milestone_ShakedownOpponents_Q02", + "S17-Quest:Quest_S17_Milestone_ShakedownOpponents_Q03", + "S17-Quest:Quest_S17_Milestone_ShakedownOpponents_Q04", + "S17-Quest:Quest_S17_Milestone_ShakedownOpponents_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Spend_Bars", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Spend_Bars", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Spend_Bars_Q01", + "S17-Quest:Quest_S17_Milestone_Spend_Bars_Q02", + "S17-Quest:Quest_S17_Milestone_Spend_Bars_Q03", + "S17-Quest:Quest_S17_Milestone_Spend_Bars_Q04", + "S17-Quest:Quest_S17_Milestone_Spend_Bars_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_SwimDistance", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_SwimDistance", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_SwimDistance_Q01", + "S17-Quest:Quest_S17_Milestone_SwimDistance_Q02", + "S17-Quest:Quest_S17_Milestone_SwimDistance_Q03", + "S17-Quest:Quest_S17_Milestone_SwimDistance_Q04", + "S17-Quest:Quest_S17_Milestone_SwimDistance_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Tame_Animals", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Tame_Animals", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Tame_Animals_Q01", + "S17-Quest:Quest_S17_Milestone_Tame_Animals_Q02", + "S17-Quest:Quest_S17_Milestone_Tame_Animals_Q03", + "S17-Quest:Quest_S17_Milestone_Tame_Animals_Q04", + "S17-Quest:Quest_S17_Milestone_Tame_Animals_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Thank_Driver", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Thank_Driver", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Thank_Driver_Q01", + "S17-Quest:Quest_S17_Milestone_Thank_Driver_Q02", + "S17-Quest:Quest_S17_Milestone_Thank_Driver_Q03", + "S17-Quest:Quest_S17_Milestone_Thank_Driver_Q04", + "S17-Quest:Quest_S17_Milestone_Thank_Driver_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Upgrade_Weapons", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Upgrade_Weapons", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_UpgradeWeapons_Q01", + "S17-Quest:Quest_S17_Milestone_UpgradeWeapons_Q02", + "S17-Quest:Quest_S17_Milestone_UpgradeWeapons_Q03", + "S17-Quest:Quest_S17_Milestone_UpgradeWeapons_Q04", + "S17-Quest:Quest_S17_Milestone_UpgradeWeapons_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_UseFishingSpots", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_UseFishingSpots", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_UseFishingSpots_Q01", + "S17-Quest:Quest_S17_Milestone_UseFishingSpots_Q02", + "S17-Quest:Quest_S17_Milestone_UseFishingSpots_Q03", + "S17-Quest:Quest_S17_Milestone_UseFishingSpots_Q04", + "S17-Quest:Quest_S17_Milestone_UseFishingSpots_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Bandages", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Use_Bandages", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Use_Bandages_Q01", + "S17-Quest:Quest_S17_Milestone_Use_Bandages_Q02", + "S17-Quest:Quest_S17_Milestone_Use_Bandages_Q03", + "S17-Quest:Quest_S17_Milestone_Use_Bandages_Q04", + "S17-Quest:Quest_S17_Milestone_Use_Bandages_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Potions", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_Use_Potions", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_Use_Shield_Potions_Q01", + "S17-Quest:Quest_S17_Milestone_Use_Shield_Potions_Q02", + "S17-Quest:Quest_S17_Milestone_Use_Shield_Potions_Q03", + "S17-Quest:Quest_S17_Milestone_Use_Shield_Potions_Q04", + "S17-Quest:Quest_S17_Milestone_Use_Shield_Potions_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDestroy_Structures", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_VehicleDestroy_Structures", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q01", + "S17-Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q02", + "S17-Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q03", + "S17-Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q04", + "S17-Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDistance", + "templateId": "ChallengeBundle:QuestBundle_S17_Milestone_VehicleDistance", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Milestone_VehicleDistance_Q01", + "S17-Quest:Quest_S17_Milestone_VehicleDistance_Q02", + "S17-Quest:Quest_S17_Milestone_VehicleDistance_Q03", + "S17-Quest:Quest_S17_Milestone_VehicleDistance_Q04", + "S17-Quest:Quest_S17_Milestone_VehicleDistance_Q05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Milestone_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_01", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_01", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W01_Epic_Q01", + "S17-Quest:Quest_S17_W01_Epic_Q05" + ], + "questStages": [ + "S17-Quest:Quest_S17_W01_Epic_Q02", + "S17-Quest:Quest_S17_W01_Epic_Q03", + "S17-Quest:Quest_S17_W01_Epic_Q04", + "S17-Quest:Quest_S17_W01_Epic_Q06", + "S17-Quest:Quest_S17_W01_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_02", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_02", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W02_Epic_Q01", + "S17-Quest:Quest_S17_W02_Epic_Q06" + ], + "questStages": [ + "S17-Quest:Quest_S17_W02_Epic_Q02", + "S17-Quest:Quest_S17_W02_Epic_Q03", + "S17-Quest:Quest_S17_W02_Epic_Q04", + "S17-Quest:Quest_S17_W02_Epic_Q05", + "S17-Quest:Quest_S17_W02_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_03", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_03", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W03_Epic_Q01", + "S17-Quest:Quest_S17_W03_Epic_Q02", + "S17-Quest:Quest_S17_W03_Epic_Q04" + ], + "questStages": [ + "S17-Quest:Quest_S17_W03_Epic_Q03", + "S17-Quest:Quest_S17_W03_Epic_Q06", + "S17-Quest:Quest_S17_W03_Epic_Q05", + "S17-Quest:Quest_S17_W03_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_04", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_04", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W04_Epic_Q01", + "S17-Quest:Quest_S17_W04_Epic_Q03", + "S17-Quest:Quest_S17_W04_Epic_Q05", + "S17-Quest:Quest_S17_W04_Epic_Q07" + ], + "questStages": [ + "S17-Quest:Quest_S17_W04_Epic_Q02", + "S17-Quest:Quest_S17_W04_Epic_Q04", + "S17-Quest:Quest_S17_W04_Epic_Q06" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_05", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_05", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W05_Epic_Q01", + "S17-Quest:Quest_S17_W05_Epic_Q02", + "S17-Quest:Quest_S17_W05_Epic_Q05" + ], + "questStages": [ + "S17-Quest:Quest_S17_W05_Epic_Q03", + "S17-Quest:Quest_S17_W05_Epic_Q04", + "S17-Quest:Quest_S17_W05_Epic_Q06", + "S17-Quest:Quest_S17_W05_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_06", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_06", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W06_Epic_Q01", + "S17-Quest:Quest_S17_W06_Epic_Q03", + "S17-Quest:Quest_S17_W06_Epic_Q05", + "S17-Quest:Quest_S17_W06_Epic_Q06" + ], + "questStages": [ + "S17-Quest:Quest_S17_W06_Epic_Q02", + "S17-Quest:Quest_S17_W06_Epic_Q04", + "S17-Quest:Quest_S17_W06_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_07", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_07", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W07_Epic_Q01", + "S17-Quest:Quest_S17_W07_Epic_Q05", + "S17-Quest:Quest_S17_W07_Epic_Q06", + "S17-Quest:Quest_S17_W07_Epic_Q07" + ], + "questStages": [ + "S17-Quest:Quest_S17_W07_Epic_Q02", + "S17-Quest:Quest_S17_W07_Epic_Q03", + "S17-Quest:Quest_S17_W07_Epic_Q04" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_08", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_08", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W08_Epic_Q01", + "S17-Quest:Quest_S17_W08_Epic_Q05" + ], + "questStages": [ + "S17-Quest:Quest_S17_W08_Epic_Q02", + "S17-Quest:Quest_S17_W08_Epic_Q03", + "S17-Quest:Quest_S17_W08_Epic_Q04", + "S17-Quest:Quest_S17_W08_Epic_Q06", + "S17-Quest:Quest_S17_W08_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_09", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_09", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W09_Epic_Q01", + "S17-Quest:Quest_S17_W09_Epic_Q03", + "S17-Quest:Quest_S17_W09_Epic_Q05" + ], + "questStages": [ + "S17-Quest:Quest_S17_W09_Epic_Q02", + "S17-Quest:Quest_S17_W09_Epic_Q04", + "S17-Quest:Quest_S17_W09_Epic_Q06", + "S17-Quest:Quest_S17_W09_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_10", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_10", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W10_Epic_Q01", + "S17-Quest:Quest_S17_W10_Epic_Q03", + "S17-Quest:Quest_S17_W10_Epic_Q04", + "S17-Quest:Quest_S17_W10_Epic_Q07" + ], + "questStages": [ + "S17-Quest:Quest_S17_W10_Epic_Q02", + "S17-Quest:Quest_S17_W10_Epic_Q05", + "S17-Quest:Quest_S17_W10_Epic_Q06" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_11", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_11", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W11_Epic_Q01", + "S17-Quest:Quest_S17_W11_Epic_Q04", + "S17-Quest:Quest_S17_W11_Epic_Q05" + ], + "questStages": [ + "S17-Quest:Quest_S17_W11_Epic_Q02", + "S17-Quest:Quest_S17_W11_Epic_Q03", + "S17-Quest:Quest_S17_W11_Epic_Q06", + "S17-Quest:Quest_S17_W11_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_12", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_12", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W12_Epic_Q01", + "S17-Quest:Quest_S17_W12_Epic_Q04", + "S17-Quest:Quest_S17_W12_Epic_Q05", + "S17-Quest:Quest_S17_W12_Epic_Q06" + ], + "questStages": [ + "S17-Quest:Quest_S17_W12_Epic_Q02", + "S17-Quest:Quest_S17_W12_Epic_Q03", + "S17-Quest:Quest_S17_W12_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_13", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_13", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W13_Epic_Q01", + "S17-Quest:Quest_S17_W13_Epic_Q06" + ], + "questStages": [ + "S17-Quest:Quest_S17_W13_Epic_Q02", + "S17-Quest:Quest_S17_W13_Epic_Q03", + "S17-Quest:Quest_S17_W13_Epic_Q04", + "S17-Quest:Quest_S17_W13_Epic_Q05", + "S17-Quest:Quest_S17_W13_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_14", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_14", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_W14_Epic_Q01", + "S17-Quest:Quest_S17_W14_Epic_Q04", + "S17-Quest:Quest_S17_W14_Epic_Q06" + ], + "questStages": [ + "S17-Quest:Quest_S17_W14_Epic_Q02", + "S17-Quest:Quest_S17_W14_Epic_Q03", + "S17-Quest:Quest_S17_W14_Epic_Q05", + "S17-Quest:Quest_S17_W14_Epic_Q07" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:MissionBundle_S17_Week_15", + "templateId": "ChallengeBundle:MissionBundle_S17_Week_15", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Week_15" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Mission_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_O2", + "templateId": "ChallengeBundle:QuestBundle_S17_O2", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_O2_q01" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_O2_Schedule" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_01", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_01", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w01_alienartifact_purple_01", + "S17-Quest:quest_s17_w01_alienartifact_purple_02", + "S17-Quest:quest_s17_w01_alienartifact_purple_03", + "S17-Quest:quest_s17_w01_alienartifact_purple_04", + "S17-Quest:quest_s17_w01_alienartifact_purple_05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_AlienArtifacts" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_02", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_02", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w02_alienartifact_purple_01", + "S17-Quest:quest_s17_w02_alienartifact_purple_02", + "S17-Quest:quest_s17_w02_alienartifact_purple_03", + "S17-Quest:quest_s17_w02_alienartifact_purple_04", + "S17-Quest:quest_s17_w02_alienartifact_purple_05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_AlienArtifacts" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_03", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_03", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w03_alienartifact_purple_01", + "S17-Quest:quest_s17_w03_alienartifact_purple_02", + "S17-Quest:quest_s17_w03_alienartifact_purple_03", + "S17-Quest:quest_s17_w03_alienartifact_purple_04", + "S17-Quest:quest_s17_w03_alienartifact_purple_05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_AlienArtifacts" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_04", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_04", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w04_alienartifact_purple_01", + "S17-Quest:quest_s17_w04_alienartifact_purple_02", + "S17-Quest:quest_s17_w04_alienartifact_purple_03", + "S17-Quest:quest_s17_w04_alienartifact_purple_04", + "S17-Quest:quest_s17_w04_alienartifact_purple_05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_AlienArtifacts" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_05", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_05", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w05_alienartifact_purple_01", + "S17-Quest:quest_s17_w05_alienartifact_purple_02", + "S17-Quest:quest_s17_w05_alienartifact_purple_03", + "S17-Quest:quest_s17_w05_alienartifact_purple_04", + "S17-Quest:quest_s17_w05_alienartifact_purple_05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_AlienArtifacts" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_06", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_06", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w06_alienartifact_purple_01", + "S17-Quest:quest_s17_w06_alienartifact_purple_02", + "S17-Quest:quest_s17_w06_alienartifact_purple_03", + "S17-Quest:quest_s17_w06_alienartifact_purple_04", + "S17-Quest:quest_s17_w06_alienartifact_purple_05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_AlienArtifacts" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_07", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_07", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w07_alienartifact_purple_01", + "S17-Quest:quest_s17_w07_alienartifact_purple_02", + "S17-Quest:quest_s17_w07_alienartifact_purple_03", + "S17-Quest:quest_s17_w07_alienartifact_purple_04", + "S17-Quest:quest_s17_w07_alienartifact_purple_05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_AlienArtifacts" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_08", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_08", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w08_alienartifact_purple_01", + "S17-Quest:quest_s17_w08_alienartifact_purple_02", + "S17-Quest:quest_s17_w08_alienartifact_purple_03", + "S17-Quest:quest_s17_w08_alienartifact_purple_04", + "S17-Quest:quest_s17_w08_alienartifact_purple_05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_AlienArtifacts" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_09", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_09", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w09_alienartifact_purple_01", + "S17-Quest:quest_s17_w09_alienartifact_purple_02", + "S17-Quest:quest_s17_w09_alienartifact_purple_03", + "S17-Quest:quest_s17_w09_alienartifact_purple_04", + "S17-Quest:quest_s17_w09_alienartifact_purple_05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_AlienArtifacts" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_10", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_10", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w10_alienartifact_purple_01", + "S17-Quest:quest_s17_w10_alienartifact_purple_02", + "S17-Quest:quest_s17_w10_alienartifact_purple_03", + "S17-Quest:quest_s17_w10_alienartifact_purple_04", + "S17-Quest:quest_s17_w10_alienartifact_purple_05" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_AlienArtifacts" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_01", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_Buffet_01", + "grantedquestinstanceids": [ + "S17-Quest:Quest_s17_Buffet_Q01", + "S17-Quest:Quest_s17_Buffet_Q02", + "S17-Quest:Quest_s17_Buffet_Q03" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_Buffet_01" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_02", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_Buffet_02", + "grantedquestinstanceids": [ + "S17-Quest:Quest_s17_Buffet_Q04" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_Buffet_02" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_03", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_Buffet_03", + "grantedquestinstanceids": [ + "S17-Quest:Quest_s17_Buffet_Q05", + "S17-Quest:Quest_s17_Buffet_Q06", + "S17-Quest:Quest_s17_Buffet_Q07", + "S17-Quest:Quest_s17_Buffet_Q08" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_Buffet_03" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_04", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_Buffet_04", + "grantedquestinstanceids": [ + "S17-Quest:Quest_s17_Buffet_Q09", + "S17-Quest:Quest_s17_Buffet_Q10", + "S17-Quest:Quest_s17_Buffet_Q11", + "S17-Quest:Quest_s17_Buffet_Q12" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_Buffet_03" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_Hidden", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_Buffet_Hidden", + "grantedquestinstanceids": [ + "S17-Quest:Quest_s17_Buffet_Hidden" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_Buffet_Hidden" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_CosmicSummer", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_CosmicSummer_CompleteEventChallenges_01", + "S17-Quest:Quest_S17_CosmicSummer_CompleteEventChallenges_02", + "S17-Quest:Quest_S17_CosmicSummer_CompleteEventChallenges_03", + "S17-Quest:Quest_S17_CosmicSummer_01", + "S17-Quest:Quest_S17_CosmicSummer_02", + "S17-Quest:Quest_S17_CosmicSummer_03", + "S17-Quest:Quest_S17_CosmicSummer_04", + "S17-Quest:Quest_S17_CosmicSummer_05", + "S17-Quest:Quest_S17_CosmicSummer_06", + "S17-Quest:Quest_S17_CosmicSummer_07", + "S17-Quest:Quest_S17_CosmicSummer_08", + "S17-Quest:Quest_S17_CosmicSummer_09", + "S17-Quest:Quest_S17_CosmicSummer_10", + "S17-Quest:Quest_S17_CosmicSummer_11", + "S17-Quest:Quest_S17_CosmicSummer_12", + "S17-Quest:Quest_S17_CosmicSummer_13", + "S17-Quest:Quest_S17_CosmicSummer_14" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_CosmicSummer" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames", + "templateId": "ChallengeBundle:QuestBundle_Event_S17_IslandGames", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_IslandGames_CompleteEventChallenges_01", + "S17-Quest:Quest_S17_IslandGames_CompleteEventChallenges_02", + "S17-Quest:Quest_S17_IslandGames_CompleteEventChallenges_03", + "S17-Quest:Quest_S17_IslandGames_Q01", + "S17-Quest:Quest_S17_IslandGames_Q02", + "S17-Quest:Quest_S17_IslandGames_Q03", + "S17-Quest:Quest_S17_IslandGames_Q04", + "S17-Quest:Quest_S17_IslandGames_Q05", + "S17-Quest:Quest_S17_IslandGames_Q06", + "S17-Quest:Quest_S17_IslandGames_Q07", + "S17-Quest:Quest_S17_IslandGames_Q08", + "S17-Quest:Quest_S17_IslandGames_Q09", + "S17-Quest:Quest_S17_IslandGames_Q10", + "S17-Quest:Quest_S17_IslandGames_Q11", + "S17-Quest:Quest_S17_IslandGames_Q12", + "S17-Quest:Quest_S17_IslandGames_Q13", + "S17-Quest:Quest_S17_IslandGames_Q14", + "S17-Quest:Quest_S17_IslandGames_Q15" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Event_IslandGames" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_01", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_01", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w01_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w01_legendary_q2", + "S17-Quest:quest_s17_w01_legendary_q3", + "S17-Quest:quest_s17_w01_legendary_q4", + "S17-Quest:quest_s17_w01_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_01" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_02", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_02", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w02_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w02_legendary_q2", + "S17-Quest:quest_s17_w02_legendary_q3", + "S17-Quest:quest_s17_w02_legendary_q4", + "S17-Quest:quest_s17_w02_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_02" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_03", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_03", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w03_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w03_legendary_q1_b", + "S17-Quest:quest_s17_w03_legendary_q2", + "S17-Quest:quest_s17_w03_legendary_q3", + "S17-Quest:quest_s17_w03_legendary_q4", + "S17-Quest:quest_s17_w03_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_03" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_04", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_04", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w04_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w04_legendary_q2", + "S17-Quest:quest_s17_w04_legendary_q3", + "S17-Quest:quest_s17_w04_legendary_q4", + "S17-Quest:quest_s17_w04_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_04" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_05", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_05", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w05_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w05_legendary_q1b", + "S17-Quest:quest_s17_w05_legendary_q2", + "S17-Quest:quest_s17_w05_legendary_q3", + "S17-Quest:quest_s17_w05_legendary_q4", + "S17-Quest:quest_s17_w05_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_05" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_06", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_06", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w06_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w06_legendary_q1b", + "S17-Quest:quest_s17_w06_legendary_q2", + "S17-Quest:quest_s17_w06_legendary_q3", + "S17-Quest:quest_s17_w06_legendary_q4", + "S17-Quest:quest_s17_w06_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_06" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_07", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_07", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w07_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w07_legendary_q2", + "S17-Quest:quest_s17_w07_legendary_q3", + "S17-Quest:quest_s17_w07_legendary_q4", + "S17-Quest:quest_s17_w07_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_07" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_08", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_08", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w08_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w08_legendary_q1b", + "S17-Quest:quest_s17_w08_legendary_q2", + "S17-Quest:quest_s17_w08_legendary_q3", + "S17-Quest:quest_s17_w08_legendary_q4", + "S17-Quest:quest_s17_w08_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_08" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_09", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_09", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w09_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w09_legendary_q1b", + "S17-Quest:quest_s17_w09_legendary_q2", + "S17-Quest:quest_s17_w09_legendary_q3", + "S17-Quest:quest_s17_w09_legendary_q4", + "S17-Quest:quest_s17_w09_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_09" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_10", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_10", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w10_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w10_legendary_q1b", + "S17-Quest:quest_s17_w10_legendary_q2", + "S17-Quest:quest_s17_w10_legendary_q3", + "S17-Quest:quest_s17_w10_legendary_q4", + "S17-Quest:quest_s17_w10_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_10" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_11", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_11", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w11_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w11_legendary_q1b", + "S17-Quest:quest_s17_w11_legendary_q2", + "S17-Quest:quest_s17_w11_legendary_q3", + "S17-Quest:quest_s17_w11_legendary_q4", + "S17-Quest:quest_s17_w11_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_11" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_12", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_12", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w12_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w12_legendary_q1b", + "S17-Quest:quest_s17_w12_legendary_q2", + "S17-Quest:quest_s17_w12_legendary_q3", + "S17-Quest:quest_s17_w12_legendary_q4", + "S17-Quest:quest_s17_w12_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_12" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_13", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_13", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w13_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w13_legendary_q2", + "S17-Quest:quest_s17_w13_legendary_q3", + "S17-Quest:quest_s17_w13_legendary_q4", + "S17-Quest:quest_s17_w13_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_13" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_14", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_14", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w14_legendary_q1" + ], + "questStages": [ + "S17-Quest:quest_s17_w14_legendary_q1b", + "S17-Quest:quest_s17_w14_legendary_q2", + "S17-Quest:quest_s17_w14_legendary_q3", + "S17-Quest:quest_s17_w14_legendary_q4", + "S17-Quest:quest_s17_w14_legendary_q5" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_14" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_5_hidden", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_Week_5_hidden", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w05_legendary_q1_hidden" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_Week_5_hidden" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_11", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_11", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w11_legendary_WW_q1", + "S17-Quest:quest_s17_w11_legendary_WW_q2", + "S17-Quest:quest_s17_w11_legendary_WW_q3" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_WildWeek_11" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_12", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_12", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w12_legendary_WW_q1", + "S17-Quest:quest_s17_w12_legendary_WW_q2", + "S17-Quest:quest_s17_w12_legendary_WW_q3" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_WildWeek_12" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_13", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_13", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w13_legendary_WW_q1a", + "S17-Quest:quest_s17_w13_legendary_WW_q2a", + "S17-Quest:quest_s17_w13_legendary_WW_q3a", + "S17-Quest:quest_s17_w13_legendary_WW_q1b", + "S17-Quest:quest_s17_w13_legendary_WW_q2b", + "S17-Quest:quest_s17_w13_legendary_WW_q3b" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_WildWeek_13" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_14", + "templateId": "ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_14", + "grantedquestinstanceids": [ + "S17-Quest:quest_s17_w14_legendary_WW_q1", + "S17-Quest:quest_s17_w14_legendary_WW_q2", + "S17-Quest:quest_s17_w14_legendary_WW_q3" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Schedule_Legendary_WildWeek_14" + }, + { + "itemGuid": "S17-ChallengeBundle:QuestBundle_S17_Superlevel_01", + "templateId": "ChallengeBundle:QuestBundle_S17_Superlevel_01", + "grantedquestinstanceids": [ + "S17-Quest:Quest_S17_Superlevel_q01" + ], + "challenge_bundle_schedule_id": "S17-ChallengeBundleSchedule:Season17_Superlevel_Schedule_01" + } + ], + "Quests": [ + { + "itemGuid": "S17-Quest:Quest_TheMarch", + "templateId": "Quest:Quest_TheMarch", + "objectives": [ + { + "name": "themarch_complete", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_TheMarch_Hidden" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Emperor_q03", + "templateId": "Quest:Quest_S17_Emperor_q03", + "objectives": [ + { + "name": "quest_s17_Emperor_q03_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Emperor_01" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Emperor_q01", + "templateId": "Quest:Quest_S17_Emperor_q01", + "objectives": [ + { + "name": "quest_s17_Emperor_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Emperor_02" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Emperor_q02", + "templateId": "Quest:Quest_S17_Emperor_q02", + "objectives": [ + { + "name": "quest_s17_Emperor_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Emperor_03" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Emperor_q04", + "templateId": "Quest:Quest_S17_Emperor_q04", + "objectives": [ + { + "name": "quest_s17_Emperor_q04_obj0", + "count": 1 + }, + { + "name": "quest_s17_Emperor_q04_obj1", + "count": 1 + }, + { + "name": "quest_s17_Emperor_q04_obj2", + "count": 1 + }, + { + "name": "quest_s17_Emperor_q04_obj3", + "count": 1 + }, + { + "name": "quest_s17_Emperor_q04_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Emperor_04" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Emperor_q05", + "templateId": "Quest:Quest_S17_Emperor_q05", + "objectives": [ + { + "name": "quest_s17_Emperor_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Emperor_05" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Emperor_q06", + "templateId": "Quest:Quest_S17_Emperor_q06", + "objectives": [ + { + "name": "quest_s17_Emperor_q06_obj01", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Emperor_06" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Emperor_q07", + "templateId": "Quest:Quest_S17_Emperor_q07", + "objectives": [ + { + "name": "quest_s17_Emperor_q07_obj01", + "count": 20 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Emperor_07" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Emperor_q08", + "templateId": "Quest:Quest_S17_Emperor_q08", + "objectives": [ + { + "name": "quest_s17_Emperor_q08_obj01", + "count": 30 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Emperor_08" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Emperor_q09", + "templateId": "Quest:Quest_S17_Emperor_q09", + "objectives": [ + { + "name": "quest_s17_Emperor_q09_obj01", + "count": 40 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Emperor_09" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Emperor_q10_p01", + "templateId": "Quest:Quest_S17_Emperor_q10_p01", + "objectives": [ + { + "name": "quest_s17_Emperor_q10_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Emperor_10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Emperor_q10_p02", + "templateId": "Quest:Quest_S17_Emperor_q10_p02", + "objectives": [ + { + "name": "quest_s17_Emperor_q10_obj2", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Emperor_10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Assist_Elims_Q01", + "templateId": "Quest:Quest_S17_Milestone_Assist_Elims_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Assist_Elims_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Assist_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Assist_Elims_Q02", + "templateId": "Quest:Quest_S17_Milestone_Assist_Elims_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Assist_Elims_Q02_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Assist_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Assist_Elims_Q03", + "templateId": "Quest:Quest_S17_Milestone_Assist_Elims_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Assist_Elims_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Assist_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Assist_Elims_Q04", + "templateId": "Quest:Quest_S17_Milestone_Assist_Elims_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Assist_Elims_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Assist_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Assist_Elims_Q05", + "templateId": "Quest:Quest_S17_Milestone_Assist_Elims_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Assist_Elims_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Assist_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CatchFish_Q01", + "templateId": "Quest:Quest_S17_Milestone_CatchFish_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_CatchFish_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_CatchFish" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CatchFish_Q02", + "templateId": "Quest:Quest_S17_Milestone_CatchFish_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_CatchFish_Q02_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_CatchFish" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CatchFish_Q03", + "templateId": "Quest:Quest_S17_Milestone_CatchFish_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_CatchFish_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_CatchFish" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CatchFish_Q04", + "templateId": "Quest:Quest_S17_Milestone_CatchFish_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_CatchFish_Q04_obj0", + "count": 125 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_CatchFish" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CatchFish_Q05", + "templateId": "Quest:Quest_S17_Milestone_CatchFish_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_CatchFish_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_CatchFish" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_Bones_Q01", + "templateId": "Quest:Quest_S17_Milestone_Collect_Bones_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_Bones_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Bones" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_Bones_Q02", + "templateId": "Quest:Quest_S17_Milestone_Collect_Bones_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_Bones_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Bones" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_Bones_Q03", + "templateId": "Quest:Quest_S17_Milestone_Collect_Bones_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_Bones_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Bones" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_Bones_Q04", + "templateId": "Quest:Quest_S17_Milestone_Collect_Bones_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_Bones_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Bones" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_Bones_Q05", + "templateId": "Quest:Quest_S17_Milestone_Collect_Bones_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_Bones_Q05_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Bones" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CollectGold_Q01", + "templateId": "Quest:Quest_S17_Milestone_CollectGold_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_CollectGold_Q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Gold" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CollectGold_Q02", + "templateId": "Quest:Quest_S17_Milestone_CollectGold_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_CollectGold_Q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Gold" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CollectGold_Q03", + "templateId": "Quest:Quest_S17_Milestone_CollectGold_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_CollectGold_Q03_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Gold" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CollectGold_Q04", + "templateId": "Quest:Quest_S17_Milestone_CollectGold_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_CollectGold_Q04_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Gold" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CollectGold_Q05", + "templateId": "Quest:Quest_S17_Milestone_CollectGold_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_CollectGold_Q05_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Gold" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_Meat_Q01", + "templateId": "Quest:Quest_S17_Milestone_Collect_Meat_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_Meat_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Meat" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_Meat_Q02", + "templateId": "Quest:Quest_S17_Milestone_Collect_Meat_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_Meat_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Meat" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_Meat_Q03", + "templateId": "Quest:Quest_S17_Milestone_Collect_Meat_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_Meat_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Meat" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_Meat_Q04", + "templateId": "Quest:Quest_S17_Milestone_Collect_Meat_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_Meat_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Meat" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_Meat_Q05", + "templateId": "Quest:Quest_S17_Milestone_Collect_Meat_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_Meat_Q05_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_Meat" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q01", + "templateId": "Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_NutsAndBolts_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_NutsAndBolts" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q02", + "templateId": "Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_NutsAndBolts_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_NutsAndBolts" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q03", + "templateId": "Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_NutsAndBolts_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_NutsAndBolts" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q04", + "templateId": "Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_NutsAndBolts_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_NutsAndBolts" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q05", + "templateId": "Quest:Quest_S17_Milestone_Collect_NutsAndBolts_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Collect_NutsAndBolts_Q05_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Collect_NutsAndBolts" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CompleteBounties_Q01", + "templateId": "Quest:Quest_S17_Milestone_CompleteBounties_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_CompleteBounties_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CompleteBounties_Q02", + "templateId": "Quest:Quest_S17_Milestone_CompleteBounties_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_CompleteBounties_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CompleteBounties_Q03", + "templateId": "Quest:Quest_S17_Milestone_CompleteBounties_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_CompleteBounties_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CompleteBounties_Q04", + "templateId": "Quest:Quest_S17_Milestone_CompleteBounties_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_CompleteBounties_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_CompleteBounties_Q05", + "templateId": "Quest:Quest_S17_Milestone_CompleteBounties_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_CompleteBounties_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_Bounties" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_CQuest_Q01", + "templateId": "Quest:Quest_S17_Milestone_Complete_CQuest_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_CQuest_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_CQuest_Q02", + "templateId": "Quest:Quest_S17_Milestone_Complete_CQuest_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_CQuest_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_CQuest_Q03", + "templateId": "Quest:Quest_S17_Milestone_Complete_CQuest_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_CQuest_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_CQuest_Q04", + "templateId": "Quest:Quest_S17_Milestone_Complete_CQuest_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_CQuest_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_CQuest_Q05", + "templateId": "Quest:Quest_S17_Milestone_Complete_CQuest_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_CQuest_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_CQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_EQuest_Q01", + "templateId": "Quest:Quest_S17_Milestone_Complete_EQuest_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_EQuest_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_EQuest_Q02", + "templateId": "Quest:Quest_S17_Milestone_Complete_EQuest_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_EQuest_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_EQuest_Q03", + "templateId": "Quest:Quest_S17_Milestone_Complete_EQuest_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_EQuest_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_EQuest_Q04", + "templateId": "Quest:Quest_S17_Milestone_Complete_EQuest_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_EQuest_Q04_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_EQuest_Q05", + "templateId": "Quest:Quest_S17_Milestone_Complete_EQuest_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_EQuest_Q05_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_EQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_LQuest_Q01", + "templateId": "Quest:Quest_S17_Milestone_Complete_LQuest_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_LQuest_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_LQuest_Q02", + "templateId": "Quest:Quest_S17_Milestone_Complete_LQuest_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_LQuest_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_LQuest_Q03", + "templateId": "Quest:Quest_S17_Milestone_Complete_LQuest_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_LQuest_Q03_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_LQuest_Q04", + "templateId": "Quest:Quest_S17_Milestone_Complete_LQuest_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_LQuest_Q04_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_LQuest_Q05", + "templateId": "Quest:Quest_S17_Milestone_Complete_LQuest_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_LQuest_Q05_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_LQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_RQuest_Q01", + "templateId": "Quest:Quest_S17_Milestone_Complete_RQuest_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_RQuest_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_RQuest_Q02", + "templateId": "Quest:Quest_S17_Milestone_Complete_RQuest_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_RQuest_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_RQuest_Q03", + "templateId": "Quest:Quest_S17_Milestone_Complete_RQuest_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_RQuest_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_RQuest_Q04", + "templateId": "Quest:Quest_S17_Milestone_Complete_RQuest_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_RQuest_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_RQuest_Q05", + "templateId": "Quest:Quest_S17_Milestone_Complete_RQuest_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_RQuest_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_RQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_UCQuest_Q01", + "templateId": "Quest:Quest_S17_Milestone_Complete_UCQuest_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_UCQuest_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_UCQuest_Q02", + "templateId": "Quest:Quest_S17_Milestone_Complete_UCQuest_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_UCQuest_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_UCQuest_Q03", + "templateId": "Quest:Quest_S17_Milestone_Complete_UCQuest_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_UCQuest_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_UCQuest_Q04", + "templateId": "Quest:Quest_S17_Milestone_Complete_UCQuest_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_UCQuest_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Complete_UCQuest_Q05", + "templateId": "Quest:Quest_S17_Milestone_Complete_UCQuest_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Complete_UCQuest_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Complete_UCQuest" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Craft_Weapons_Q01", + "templateId": "Quest:Quest_S17_Milestone_Craft_Weapons_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Craft_Weapons_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Craft_Weapons" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Craft_Weapons_Q02", + "templateId": "Quest:Quest_S17_Milestone_Craft_Weapons_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Craft_Weapons_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Craft_Weapons" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Craft_Weapons_Q03", + "templateId": "Quest:Quest_S17_Milestone_Craft_Weapons_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Craft_Weapons_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Craft_Weapons" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Craft_Weapons_Q04", + "templateId": "Quest:Quest_S17_Milestone_Craft_Weapons_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Craft_Weapons_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Craft_Weapons" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Craft_Weapons_Q05", + "templateId": "Quest:Quest_S17_Milestone_Craft_Weapons_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Craft_Weapons_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Craft_Weapons" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Damage_FromAbove_Q01", + "templateId": "Quest:Quest_S17_Milestone_Damage_FromAbove_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Damage_FromAbove_Q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_Above" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Damage_FromAbove_Q02", + "templateId": "Quest:Quest_S17_Milestone_Damage_FromAbove_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Damage_FromAbove_Q02_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_Above" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Damage_FromAbove_Q03", + "templateId": "Quest:Quest_S17_Milestone_Damage_FromAbove_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Damage_FromAbove_Q03_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_Above" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Damage_FromAbove_Q04", + "templateId": "Quest:Quest_S17_Milestone_Damage_FromAbove_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Damage_FromAbove_Q04_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_Above" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Damage_FromAbove_Q05", + "templateId": "Quest:Quest_S17_Milestone_Damage_FromAbove_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Damage_FromAbove_Q05_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_Above" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Dmg_Opponents_Q01", + "templateId": "Quest:Quest_S17_Milestone_Dmg_Opponents_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Dmg_Opponents_Q01_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_Opponents" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Dmg_Opponents_Q02", + "templateId": "Quest:Quest_S17_Milestone_Dmg_Opponents_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Dmg_Opponents_Q02_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_Opponents" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Dmg_Opponents_Q03", + "templateId": "Quest:Quest_S17_Milestone_Dmg_Opponents_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Dmg_Opponents_Q03_obj0", + "count": 75000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_Opponents" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Dmg_Opponents_Q04", + "templateId": "Quest:Quest_S17_Milestone_Dmg_Opponents_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Dmg_Opponents_Q04_obj0", + "count": 150000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_Opponents" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Dmg_Opponents_Q05", + "templateId": "Quest:Quest_S17_Milestone_Dmg_Opponents_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Dmg_Opponents_Q05_obj0", + "count": 500000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_Opponents" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q01", + "templateId": "Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Damage_PlayerVehicle_Q01_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q02", + "templateId": "Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Damage_PlayerVehicle_Q02_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q03", + "templateId": "Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Damage_PlayerVehicle_Q03_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q04", + "templateId": "Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Damage_PlayerVehicle_Q04_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q05", + "templateId": "Quest:Quest_S17_Milestone_Damage_PlayerVehicle_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Damage_PlayerVehicle_Q05_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Damage_PlayerVehicle" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_DestroyShrubs_Q01", + "templateId": "Quest:Quest_S17_Milestone_DestroyShrubs_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_DestroyShrubs_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_DestroyShrubs_Q02", + "templateId": "Quest:Quest_S17_Milestone_DestroyShrubs_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_DestroyShrubs_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_DestroyShrubs_Q03", + "templateId": "Quest:Quest_S17_Milestone_DestroyShrubs_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_DestroyShrubs_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_DestroyShrubs_Q04", + "templateId": "Quest:Quest_S17_Milestone_DestroyShrubs_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_DestroyShrubs_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_DestroyShrubs_Q05", + "templateId": "Quest:Quest_S17_Milestone_DestroyShrubs_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_DestroyShrubs_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Shrubs" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_DestroyStones_Q01", + "templateId": "Quest:Quest_S17_Milestone_DestroyStones_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_DestroyStones_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_DestroyStones_Q02", + "templateId": "Quest:Quest_S17_Milestone_DestroyStones_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_DestroyStones_Q02_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_DestroyStones_Q03", + "templateId": "Quest:Quest_S17_Milestone_DestroyStones_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_DestroyStones_Q03_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_DestroyStones_Q04", + "templateId": "Quest:Quest_S17_Milestone_DestroyStones_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_DestroyStones_Q04_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_DestroyStones_Q05", + "templateId": "Quest:Quest_S17_Milestone_DestroyStones_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_DestroyStones_Q05_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Stones" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Destroy_Trees_Q01", + "templateId": "Quest:Quest_S17_Milestone_Destroy_Trees_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Destroy_Trees_Q01_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Destroy_Trees_Q02", + "templateId": "Quest:Quest_S17_Milestone_Destroy_Trees_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Destroy_Trees_Q02_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Destroy_Trees_Q03", + "templateId": "Quest:Quest_S17_Milestone_Destroy_Trees_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Destroy_Trees_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Destroy_Trees_Q04", + "templateId": "Quest:Quest_S17_Milestone_Destroy_Trees_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Destroy_Trees_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Destroy_Trees_Q05", + "templateId": "Quest:Quest_S17_Milestone_Destroy_Trees_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Destroy_Trees_Q05_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Destroy_Trees" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q01", + "templateId": "Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_TravelDistance_OnFoot_Q01_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q02", + "templateId": "Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_TravelDistance_OnFoot_Q02_obj0", + "count": 75000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q03", + "templateId": "Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_TravelDistance_OnFoot_Q03_obj0", + "count": 150000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q04", + "templateId": "Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_TravelDistance_OnFoot_Q04_obj0", + "count": 350000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q05", + "templateId": "Quest:Quest_S17_Milestone_TravelDistance_OnFoot_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_TravelDistance_OnFoot_Q05_obj0", + "count": 500000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Distance_OnFoot" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Creature_Disguise_Q01", + "templateId": "Quest:Quest_S17_Milestone_Creature_Disguise_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Creature_Disguise_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Don_Creature_Disguises" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Creature_Disguise_Q02", + "templateId": "Quest:Quest_S17_Milestone_Creature_Disguise_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Creature_Disguise_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Don_Creature_Disguises" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Creature_Disguise_Q03", + "templateId": "Quest:Quest_S17_Milestone_Creature_Disguise_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Creature_Disguise_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Don_Creature_Disguises" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Creature_Disguise_Q04", + "templateId": "Quest:Quest_S17_Milestone_Creature_Disguise_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Creature_Disguise_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Don_Creature_Disguises" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Creature_Disguise_Q05", + "templateId": "Quest:Quest_S17_Milestone_Creature_Disguise_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Creature_Disguise_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Don_Creature_Disguises" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_150m_Q01", + "templateId": "Quest:Quest_S17_Milestone_Elim_150m_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_150m_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_150m" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_150m_Q02", + "templateId": "Quest:Quest_S17_Milestone_Elim_150m_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_150m_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_150m" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_150m_Q03", + "templateId": "Quest:Quest_S17_Milestone_Elim_150m_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_150m_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_150m" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_150m_Q04", + "templateId": "Quest:Quest_S17_Milestone_Elim_150m_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_150m_Q04_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_150m" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_150m_Q05", + "templateId": "Quest:Quest_S17_Milestone_Elim_150m_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_150m_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_150m" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Assault_Q01", + "templateId": "Quest:Quest_S17_Milestone_Elim_Assault_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Assault_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Assault" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Assault_Q02", + "templateId": "Quest:Quest_S17_Milestone_Elim_Assault_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Assault_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Assault" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Assault_Q03", + "templateId": "Quest:Quest_S17_Milestone_Elim_Assault_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Assault_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Assault" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Assault_Q04", + "templateId": "Quest:Quest_S17_Milestone_Elim_Assault_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Assault_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Assault" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Assault_Q05", + "templateId": "Quest:Quest_S17_Milestone_Elim_Assault_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Assault_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Assault" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q01", + "templateId": "Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Common_Uncommon_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q02", + "templateId": "Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Common_Uncommon_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q03", + "templateId": "Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Common_Uncommon_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q04", + "templateId": "Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Common_Uncommon_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q05", + "templateId": "Quest:Quest_S17_Milestone_Elim_Common_Uncommon_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Common_Uncommon_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Common_Uncommon" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Explosive_Q01", + "templateId": "Quest:Quest_S17_Milestone_Elim_Explosive_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Explosive_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Explosive_Q02", + "templateId": "Quest:Quest_S17_Milestone_Elim_Explosive_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Explosive_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Explosive_Q03", + "templateId": "Quest:Quest_S17_Milestone_Elim_Explosive_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Explosive_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Explosive_Q04", + "templateId": "Quest:Quest_S17_Milestone_Elim_Explosive_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Explosive_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Explosive_Q05", + "templateId": "Quest:Quest_S17_Milestone_Elim_Explosive_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Explosive_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Explosives" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_HeadShot_Elims_Q01", + "templateId": "Quest:Quest_S17_Milestone_HeadShot_Elims_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_HeadShot_Elims_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Head_Shot" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_HeadShot_Elims_Q02", + "templateId": "Quest:Quest_S17_Milestone_HeadShot_Elims_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_HeadShot_Elims_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Head_Shot" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_HeadShot_Elims_Q03", + "templateId": "Quest:Quest_S17_Milestone_HeadShot_Elims_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_HeadShot_Elims_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Head_Shot" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_HeadShot_Elims_Q04", + "templateId": "Quest:Quest_S17_Milestone_HeadShot_Elims_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_HeadShot_Elims_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Head_Shot" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_HeadShot_Elims_Q05", + "templateId": "Quest:Quest_S17_Milestone_HeadShot_Elims_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_HeadShot_Elims_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Head_Shot" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Pistol_Q01", + "templateId": "Quest:Quest_S17_Milestone_Elim_Pistol_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Pistol_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Pistol_Q02", + "templateId": "Quest:Quest_S17_Milestone_Elim_Pistol_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Pistol_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Pistol_Q03", + "templateId": "Quest:Quest_S17_Milestone_Elim_Pistol_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Pistol_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Pistol_Q04", + "templateId": "Quest:Quest_S17_Milestone_Elim_Pistol_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Pistol_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Pistol_Q05", + "templateId": "Quest:Quest_S17_Milestone_Elim_Pistol_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Pistol_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Pistols" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Player_Q01", + "templateId": "Quest:Quest_S17_Milestone_Elim_Player_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Player_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Player" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Player_Q02", + "templateId": "Quest:Quest_S17_Milestone_Elim_Player_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Player_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Player" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Player_Q03", + "templateId": "Quest:Quest_S17_Milestone_Elim_Player_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Player_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Player" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Player_Q04", + "templateId": "Quest:Quest_S17_Milestone_Elim_Player_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Player_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Player" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Player_Q05", + "templateId": "Quest:Quest_S17_Milestone_Elim_Player_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Player_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Player" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Shotgun_Q01", + "templateId": "Quest:Quest_S17_Milestone_Elim_Shotgun_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Shotgun_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Shotgun_Q02", + "templateId": "Quest:Quest_S17_Milestone_Elim_Shotgun_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Shotgun_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Shotgun_Q03", + "templateId": "Quest:Quest_S17_Milestone_Elim_Shotgun_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Shotgun_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Shotgun_Q04", + "templateId": "Quest:Quest_S17_Milestone_Elim_Shotgun_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Shotgun_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Shotgun_Q05", + "templateId": "Quest:Quest_S17_Milestone_Elim_Shotgun_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Shotgun_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Shotguns" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_SMG_Q01", + "templateId": "Quest:Quest_S17_Milestone_Elim_SMG_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_SMG_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_SMG" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_SMG_Q02", + "templateId": "Quest:Quest_S17_Milestone_Elim_SMG_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_SMG_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_SMG" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_SMG_Q03", + "templateId": "Quest:Quest_S17_Milestone_Elim_SMG_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_SMG_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_SMG" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_SMG_Q04", + "templateId": "Quest:Quest_S17_Milestone_Elim_SMG_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_SMG_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_SMG" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_SMG_Q05", + "templateId": "Quest:Quest_S17_Milestone_Elim_SMG_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_SMG_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_SMG" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Sniper_Q01", + "templateId": "Quest:Quest_S17_Milestone_Elim_Sniper_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Sniper_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Sniper" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Sniper_Q02", + "templateId": "Quest:Quest_S17_Milestone_Elim_Sniper_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Sniper_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Sniper" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Sniper_Q03", + "templateId": "Quest:Quest_S17_Milestone_Elim_Sniper_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Sniper_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Sniper" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Sniper_Q04", + "templateId": "Quest:Quest_S17_Milestone_Elim_Sniper_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Sniper_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Sniper" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Elim_Sniper_Q05", + "templateId": "Quest:Quest_S17_Milestone_Elim_Sniper_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Elim_Sniper_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Elim_Sniper" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_GlideDistance_Q01", + "templateId": "Quest:Quest_S17_Milestone_GlideDistance_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_GlideDistance_Q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_GlideDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_GlideDistance_Q02", + "templateId": "Quest:Quest_S17_Milestone_GlideDistance_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_GlideDistance_Q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_GlideDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_GlideDistance_Q03", + "templateId": "Quest:Quest_S17_Milestone_GlideDistance_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_GlideDistance_Q03_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_GlideDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_GlideDistance_Q04", + "templateId": "Quest:Quest_S17_Milestone_GlideDistance_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_GlideDistance_Q04_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_GlideDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_GlideDistance_Q05", + "templateId": "Quest:Quest_S17_Milestone_GlideDistance_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_GlideDistance_Q05_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_GlideDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Harpoon_Elims_Q01", + "templateId": "Quest:Quest_S17_Milestone_Harpoon_Elims_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Harpoon_Elims_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harpoon_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Harpoon_Elims_Q02", + "templateId": "Quest:Quest_S17_Milestone_Harpoon_Elims_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Harpoon_Elims_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harpoon_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Harpoon_Elims_Q03", + "templateId": "Quest:Quest_S17_Milestone_Harpoon_Elims_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Harpoon_Elims_Q03_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harpoon_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Harpoon_Elims_Q04", + "templateId": "Quest:Quest_S17_Milestone_Harpoon_Elims_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Harpoon_Elims_Q04_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harpoon_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Harpoon_Elims_Q05", + "templateId": "Quest:Quest_S17_Milestone_Harpoon_Elims_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Harpoon_Elims_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harpoon_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Harvest_Stone_Q01", + "templateId": "Quest:Quest_S17_Milestone_Harvest_Stone_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Harvest_Stone_Q01_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Harvest_Stone_Q02", + "templateId": "Quest:Quest_S17_Milestone_Harvest_Stone_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Harvest_Stone_Q02_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Harvest_Stone_Q03", + "templateId": "Quest:Quest_S17_Milestone_Harvest_Stone_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Harvest_Stone_Q03_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Harvest_Stone_Q04", + "templateId": "Quest:Quest_S17_Milestone_Harvest_Stone_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Harvest_Stone_Q04_obj0", + "count": 100000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Harvest_Stone_Q05", + "templateId": "Quest:Quest_S17_Milestone_Harvest_Stone_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Harvest_Stone_Q05_obj0", + "count": 250000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Harvest_Stone" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Hit_Weakpoints_Q01", + "templateId": "Quest:Quest_S17_Milestone_Hit_Weakpoints_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Hit_Weakpoints_Q01_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hit_Weakpoints" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Hit_Weakpoints_Q02", + "templateId": "Quest:Quest_S17_Milestone_Hit_Weakpoints_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Hit_Weakpoints_Q02_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hit_Weakpoints" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Hit_Weakpoints_Q03", + "templateId": "Quest:Quest_S17_Milestone_Hit_Weakpoints_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Hit_Weakpoints_Q03_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hit_Weakpoints" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Hit_Weakpoints_Q04", + "templateId": "Quest:Quest_S17_Milestone_Hit_Weakpoints_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Hit_Weakpoints_Q04_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hit_Weakpoints" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Hit_Weakpoints_Q05", + "templateId": "Quest:Quest_S17_Milestone_Hit_Weakpoints_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Hit_Weakpoints_Q05_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hit_Weakpoints" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Hunt_Animals_Q01", + "templateId": "Quest:Quest_S17_Milestone_Hunt_Animals_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Hunt_Animals_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hunt_Animals" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Hunt_Animals_Q02", + "templateId": "Quest:Quest_S17_Milestone_Hunt_Animals_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Hunt_Animals_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hunt_Animals" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Hunt_Animals_Q03", + "templateId": "Quest:Quest_S17_Milestone_Hunt_Animals_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Hunt_Animals_Q03_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hunt_Animals" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Hunt_Animals_Q04", + "templateId": "Quest:Quest_S17_Milestone_Hunt_Animals_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Hunt_Animals_Q04_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hunt_Animals" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Hunt_Animals_Q05", + "templateId": "Quest:Quest_S17_Milestone_Hunt_Animals_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Hunt_Animals_Q05_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Hunt_Animals" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Ignite_Opponent_Q01", + "templateId": "Quest:Quest_S17_Milestone_Ignite_Opponent_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Ignite_Opponent_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Opponent" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Ignite_Opponent_Q02", + "templateId": "Quest:Quest_S17_Milestone_Ignite_Opponent_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Ignite_Opponent_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Opponent" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Ignite_Opponent_Q03", + "templateId": "Quest:Quest_S17_Milestone_Ignite_Opponent_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Ignite_Opponent_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Opponent" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Ignite_Opponent_Q04", + "templateId": "Quest:Quest_S17_Milestone_Ignite_Opponent_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Ignite_Opponent_Q04_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Opponent" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Ignite_Opponent_Q05", + "templateId": "Quest:Quest_S17_Milestone_Ignite_Opponent_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Ignite_Opponent_Q05_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Opponent" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Ignite_Structure_Q01", + "templateId": "Quest:Quest_S17_Milestone_Ignite_Structure_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Ignite_Structure_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Structure" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Ignite_Structure_Q02", + "templateId": "Quest:Quest_S17_Milestone_Ignite_Structure_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Ignite_Structure_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Structure" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Ignite_Structure_Q03", + "templateId": "Quest:Quest_S17_Milestone_Ignite_Structure_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Ignite_Structure_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Structure" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Ignite_Structure_Q04", + "templateId": "Quest:Quest_S17_Milestone_Ignite_Structure_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Ignite_Structure_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Structure" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Ignite_Structure_Q05", + "templateId": "Quest:Quest_S17_Milestone_Ignite_Structure_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Ignite_Structure_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Ignite_Structure" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Apple_Q01", + "templateId": "Quest:Quest_S17_Milestone_Interact_Apple_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Apple_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Apple" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Apple_Q02", + "templateId": "Quest:Quest_S17_Milestone_Interact_Apple_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Apple_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Apple" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Apple_Q03", + "templateId": "Quest:Quest_S17_Milestone_Interact_Apple_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Apple_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Apple" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Apple_Q04", + "templateId": "Quest:Quest_S17_Milestone_Interact_Apple_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Apple_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Apple" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Apple_Q05", + "templateId": "Quest:Quest_S17_Milestone_Interact_Apple_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Apple_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Apple" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Banana_Q01", + "templateId": "Quest:Quest_S17_Milestone_Interact_Banana_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Banana_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Banana" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Banana_Q02", + "templateId": "Quest:Quest_S17_Milestone_Interact_Banana_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Banana_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Banana" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Banana_Q03", + "templateId": "Quest:Quest_S17_Milestone_Interact_Banana_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Banana_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Banana" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Banana_Q04", + "templateId": "Quest:Quest_S17_Milestone_Interact_Banana_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Banana_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Banana" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Banana_Q05", + "templateId": "Quest:Quest_S17_Milestone_Interact_Banana_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Banana_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Banana" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Campfire_Q01", + "templateId": "Quest:Quest_S17_Milestone_Interact_Campfire_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Campfire_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Campfire" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Campfire_Q02", + "templateId": "Quest:Quest_S17_Milestone_Interact_Campfire_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Campfire_Q02_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Campfire" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Campfire_Q03", + "templateId": "Quest:Quest_S17_Milestone_Interact_Campfire_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Campfire_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Campfire" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Campfire_Q04", + "templateId": "Quest:Quest_S17_Milestone_Interact_Campfire_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Campfire_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Campfire" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Campfire_Q05", + "templateId": "Quest:Quest_S17_Milestone_Interact_Campfire_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Campfire_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Campfire" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_ForagedItem_Q01", + "templateId": "Quest:Quest_S17_Milestone_Interact_ForagedItem_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_ForagedItem_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_ForagedItem" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_ForagedItem_Q02", + "templateId": "Quest:Quest_S17_Milestone_Interact_ForagedItem_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_ForagedItem_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_ForagedItem" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_ForagedItem_Q03", + "templateId": "Quest:Quest_S17_Milestone_Interact_ForagedItem_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_ForagedItem_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_ForagedItem" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_ForagedItem_Q04", + "templateId": "Quest:Quest_S17_Milestone_Interact_ForagedItem_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_ForagedItem_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_ForagedItem" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_ForagedItem_Q05", + "templateId": "Quest:Quest_S17_Milestone_Interact_ForagedItem_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_ForagedItem_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_ForagedItem" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Mushroom_Q01", + "templateId": "Quest:Quest_S17_Milestone_Interact_Mushroom_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Mushroom_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Mushroom" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Mushroom_Q02", + "templateId": "Quest:Quest_S17_Milestone_Interact_Mushroom_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Mushroom_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Mushroom" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Mushroom_Q03", + "templateId": "Quest:Quest_S17_Milestone_Interact_Mushroom_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Mushroom_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Mushroom" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Mushroom_Q04", + "templateId": "Quest:Quest_S17_Milestone_Interact_Mushroom_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Mushroom_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Mushroom" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Interact_Mushroom_Q05", + "templateId": "Quest:Quest_S17_Milestone_Interact_Mushroom_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Interact_Mushroom_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Interact_Mushroom" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q01", + "templateId": "Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeDmg_Furniture_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q02", + "templateId": "Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeDmg_Furniture_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q03", + "templateId": "Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeDmg_Furniture_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q04", + "templateId": "Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeDmg_Furniture_Q04_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q05", + "templateId": "Quest:Quest_S17_Milestone_MeleeDmg_Furniture_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeDmg_Furniture_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Furniture" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q01", + "templateId": "Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeDmg_Structures_Q01_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q02", + "templateId": "Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeDmg_Structures_Q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q03", + "templateId": "Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeDmg_Structures_Q03_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q04", + "templateId": "Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeDmg_Structures_Q04_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q05", + "templateId": "Quest:Quest_S17_Milestone_MeleeDmg_Structures_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeDmg_Structures_Q05_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_MeleeDmg_Structures" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeKills_Q01", + "templateId": "Quest:Quest_S17_Milestone_MeleeKills_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeKills_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Melee_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeKills_Q02", + "templateId": "Quest:Quest_S17_Milestone_MeleeKills_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeKills_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Melee_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeKills_Q03", + "templateId": "Quest:Quest_S17_Milestone_MeleeKills_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeKills_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Melee_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeKills_Q04", + "templateId": "Quest:Quest_S17_Milestone_MeleeKills_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeKills_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Melee_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_MeleeKills_Q05", + "templateId": "Quest:Quest_S17_Milestone_MeleeKills_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_MeleeKills_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Melee_Elims" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Mod_Vehicles_Q01", + "templateId": "Quest:Quest_S17_Milestone_Mod_Vehicles_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Mod_Vehicles_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Mod_Vehicles" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Mod_Vehicles_Q02", + "templateId": "Quest:Quest_S17_Milestone_Mod_Vehicles_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Mod_Vehicles_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Mod_Vehicles" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Mod_Vehicles_Q03", + "templateId": "Quest:Quest_S17_Milestone_Mod_Vehicles_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Mod_Vehicles_Q03_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Mod_Vehicles" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Mod_Vehicles_Q04", + "templateId": "Quest:Quest_S17_Milestone_Mod_Vehicles_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Mod_Vehicles_Q04_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Mod_Vehicles" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Mod_Vehicles_Q05", + "templateId": "Quest:Quest_S17_Milestone_Mod_Vehicles_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Mod_Vehicles_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Mod_Vehicles" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Top10_Q01", + "templateId": "Quest:Quest_S17_Milestone_Top10_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Top10_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Place_Top10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Top10_Q02", + "templateId": "Quest:Quest_S17_Milestone_Top10_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Top10_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Place_Top10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Top10_Q03", + "templateId": "Quest:Quest_S17_Milestone_Top10_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Top10_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Place_Top10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Top10_Q04", + "templateId": "Quest:Quest_S17_Milestone_Top10_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Top10_Q04_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Place_Top10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Top10_Q05", + "templateId": "Quest:Quest_S17_Milestone_Top10_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Top10_Q05_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Place_Top10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_RebootTeammate_Q01", + "templateId": "Quest:Quest_S17_Milestone_RebootTeammate_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_RebootTeammate_Q01_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_RebootTeammate" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_RebootTeammate_Q02", + "templateId": "Quest:Quest_S17_Milestone_RebootTeammate_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_RebootTeammate_Q02_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_RebootTeammate" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_RebootTeammate_Q03", + "templateId": "Quest:Quest_S17_Milestone_RebootTeammate_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_RebootTeammate_Q03_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_RebootTeammate" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_RebootTeammate_Q04", + "templateId": "Quest:Quest_S17_Milestone_RebootTeammate_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_RebootTeammate_Q04_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_RebootTeammate" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_RebootTeammate_Q05", + "templateId": "Quest:Quest_S17_Milestone_RebootTeammate_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_RebootTeammate_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_RebootTeammate" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_ReviveTeammates_Q01", + "templateId": "Quest:Quest_S17_Milestone_ReviveTeammates_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_ReviveTeammates_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_ReviveTeammates_Q02", + "templateId": "Quest:Quest_S17_Milestone_ReviveTeammates_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_ReviveTeammates_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_ReviveTeammates_Q03", + "templateId": "Quest:Quest_S17_Milestone_ReviveTeammates_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_ReviveTeammates_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_ReviveTeammates_Q04", + "templateId": "Quest:Quest_S17_Milestone_ReviveTeammates_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_ReviveTeammates_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_ReviveTeammates_Q05", + "templateId": "Quest:Quest_S17_Milestone_ReviveTeammates_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_ReviveTeammates_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Revive_Teammates" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q01", + "templateId": "Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_AmmoBoxes_Q01_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q02", + "templateId": "Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_AmmoBoxes_Q02_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q03", + "templateId": "Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_AmmoBoxes_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q04", + "templateId": "Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_AmmoBoxes_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q05", + "templateId": "Quest:Quest_S17_Milestone_Search_AmmoBoxes_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_AmmoBoxes_Q05_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_AmmoBoxes" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_Chests_Q01", + "templateId": "Quest:Quest_S17_Milestone_Search_Chests_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_Chests_Q01_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_Chests" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_Chests_Q02", + "templateId": "Quest:Quest_S17_Milestone_Search_Chests_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_Chests_Q02_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_Chests" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_Chests_Q03", + "templateId": "Quest:Quest_S17_Milestone_Search_Chests_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_Chests_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_Chests" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_Chests_Q04", + "templateId": "Quest:Quest_S17_Milestone_Search_Chests_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_Chests_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_Chests" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_Chests_Q05", + "templateId": "Quest:Quest_S17_Milestone_Search_Chests_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_Chests_Q05_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_Chests" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_Ice_Machines_Q01", + "templateId": "Quest:Quest_S17_Milestone_Search_Ice_Machines_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_Ice_Machines_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_IceMachines" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_Ice_Machines_Q02", + "templateId": "Quest:Quest_S17_Milestone_Search_Ice_Machines_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_Ice_Machines_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_IceMachines" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_Ice_Machines_Q03", + "templateId": "Quest:Quest_S17_Milestone_Search_Ice_Machines_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_Ice_Machines_Q03_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_IceMachines" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_Ice_Machines_Q04", + "templateId": "Quest:Quest_S17_Milestone_Search_Ice_Machines_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_Ice_Machines_Q04_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_IceMachines" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_Ice_Machines_Q05", + "templateId": "Quest:Quest_S17_Milestone_Search_Ice_Machines_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_Ice_Machines_Q05_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_IceMachines" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_SupplyDrop_Q01", + "templateId": "Quest:Quest_S17_Milestone_Search_SupplyDrop_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_SupplyDrop_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_SupplyDrop_Q02", + "templateId": "Quest:Quest_S17_Milestone_Search_SupplyDrop_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_SupplyDrop_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_SupplyDrop_Q03", + "templateId": "Quest:Quest_S17_Milestone_Search_SupplyDrop_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_SupplyDrop_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_SupplyDrop_Q04", + "templateId": "Quest:Quest_S17_Milestone_Search_SupplyDrop_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_SupplyDrop_Q04_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Search_SupplyDrop_Q05", + "templateId": "Quest:Quest_S17_Milestone_Search_SupplyDrop_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Search_SupplyDrop_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Search_SupplyDrop" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_ShakedownOpponents_Q01", + "templateId": "Quest:Quest_S17_Milestone_ShakedownOpponents_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_ShakedownOpponents_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_ShakedownOpponents_Q02", + "templateId": "Quest:Quest_S17_Milestone_ShakedownOpponents_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_ShakedownOpponents_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_ShakedownOpponents_Q03", + "templateId": "Quest:Quest_S17_Milestone_ShakedownOpponents_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_ShakedownOpponents_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_ShakedownOpponents_Q04", + "templateId": "Quest:Quest_S17_Milestone_ShakedownOpponents_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_ShakedownOpponents_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_ShakedownOpponents_Q05", + "templateId": "Quest:Quest_S17_Milestone_ShakedownOpponents_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_ShakedownOpponents_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_ShakedownOpponents" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Spend_Bars_Q01", + "templateId": "Quest:Quest_S17_Milestone_Spend_Bars_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Spend_Bars_Q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Spend_Bars" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Spend_Bars_Q02", + "templateId": "Quest:Quest_S17_Milestone_Spend_Bars_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Spend_Bars_Q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Spend_Bars" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Spend_Bars_Q03", + "templateId": "Quest:Quest_S17_Milestone_Spend_Bars_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Spend_Bars_Q03_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Spend_Bars" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Spend_Bars_Q04", + "templateId": "Quest:Quest_S17_Milestone_Spend_Bars_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Spend_Bars_Q04_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Spend_Bars" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Spend_Bars_Q05", + "templateId": "Quest:Quest_S17_Milestone_Spend_Bars_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Spend_Bars_Q05_obj0", + "count": 100000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Spend_Bars" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_SwimDistance_Q01", + "templateId": "Quest:Quest_S17_Milestone_SwimDistance_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_SwimDistance_Q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_SwimDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_SwimDistance_Q02", + "templateId": "Quest:Quest_S17_Milestone_SwimDistance_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_SwimDistance_Q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_SwimDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_SwimDistance_Q03", + "templateId": "Quest:Quest_S17_Milestone_SwimDistance_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_SwimDistance_Q03_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_SwimDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_SwimDistance_Q04", + "templateId": "Quest:Quest_S17_Milestone_SwimDistance_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_SwimDistance_Q04_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_SwimDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_SwimDistance_Q05", + "templateId": "Quest:Quest_S17_Milestone_SwimDistance_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_SwimDistance_Q05_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_SwimDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Tame_Animals_Q01", + "templateId": "Quest:Quest_S17_Milestone_Tame_Animals_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Tame_Animals_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Tame_Animals" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Tame_Animals_Q02", + "templateId": "Quest:Quest_S17_Milestone_Tame_Animals_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Tame_Animals_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Tame_Animals" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Tame_Animals_Q03", + "templateId": "Quest:Quest_S17_Milestone_Tame_Animals_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Tame_Animals_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Tame_Animals" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Tame_Animals_Q04", + "templateId": "Quest:Quest_S17_Milestone_Tame_Animals_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Tame_Animals_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Tame_Animals" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Tame_Animals_Q05", + "templateId": "Quest:Quest_S17_Milestone_Tame_Animals_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Tame_Animals_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Tame_Animals" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Thank_Driver_Q01", + "templateId": "Quest:Quest_S17_Milestone_Thank_Driver_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Thank_Driver_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Thank_Driver" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Thank_Driver_Q02", + "templateId": "Quest:Quest_S17_Milestone_Thank_Driver_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Thank_Driver_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Thank_Driver" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Thank_Driver_Q03", + "templateId": "Quest:Quest_S17_Milestone_Thank_Driver_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Thank_Driver_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Thank_Driver" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Thank_Driver_Q04", + "templateId": "Quest:Quest_S17_Milestone_Thank_Driver_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Thank_Driver_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Thank_Driver" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Thank_Driver_Q05", + "templateId": "Quest:Quest_S17_Milestone_Thank_Driver_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Thank_Driver_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Thank_Driver" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_UpgradeWeapons_Q01", + "templateId": "Quest:Quest_S17_Milestone_UpgradeWeapons_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_UpgradeWeapons_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_UpgradeWeapons_Q02", + "templateId": "Quest:Quest_S17_Milestone_UpgradeWeapons_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_UpgradeWeapons_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_UpgradeWeapons_Q03", + "templateId": "Quest:Quest_S17_Milestone_UpgradeWeapons_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_UpgradeWeapons_Q03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_UpgradeWeapons_Q04", + "templateId": "Quest:Quest_S17_Milestone_UpgradeWeapons_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_UpgradeWeapons_Q04_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_UpgradeWeapons_Q05", + "templateId": "Quest:Quest_S17_Milestone_UpgradeWeapons_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_UpgradeWeapons_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Upgrade_Weapons" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_UseFishingSpots_Q01", + "templateId": "Quest:Quest_S17_Milestone_UseFishingSpots_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_UseFishingSpots_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_UseFishingSpots_Q02", + "templateId": "Quest:Quest_S17_Milestone_UseFishingSpots_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_UseFishingSpots_Q02_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_UseFishingSpots_Q03", + "templateId": "Quest:Quest_S17_Milestone_UseFishingSpots_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_UseFishingSpots_Q03_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_UseFishingSpots_Q04", + "templateId": "Quest:Quest_S17_Milestone_UseFishingSpots_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_UseFishingSpots_Q04_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_UseFishingSpots_Q05", + "templateId": "Quest:Quest_S17_Milestone_UseFishingSpots_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_UseFishingSpots_Q05_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_UseFishingSpots" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Use_Bandages_Q01", + "templateId": "Quest:Quest_S17_Milestone_Use_Bandages_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Use_Bandages_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Bandages" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Use_Bandages_Q02", + "templateId": "Quest:Quest_S17_Milestone_Use_Bandages_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Use_Bandages_Q02_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Bandages" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Use_Bandages_Q03", + "templateId": "Quest:Quest_S17_Milestone_Use_Bandages_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Use_Bandages_Q03_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Bandages" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Use_Bandages_Q04", + "templateId": "Quest:Quest_S17_Milestone_Use_Bandages_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Use_Bandages_Q04_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Bandages" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Use_Bandages_Q05", + "templateId": "Quest:Quest_S17_Milestone_Use_Bandages_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Use_Bandages_Q05_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Bandages" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Use_Shield_Potions_Q01", + "templateId": "Quest:Quest_S17_Milestone_Use_Shield_Potions_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_Use_Shield_Potions_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Potions" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Use_Shield_Potions_Q02", + "templateId": "Quest:Quest_S17_Milestone_Use_Shield_Potions_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_Use_Shield_Potions_Q02_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Potions" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Use_Shield_Potions_Q03", + "templateId": "Quest:Quest_S17_Milestone_Use_Shield_Potions_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_Use_Shield_Potions_Q03_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Potions" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Use_Shield_Potions_Q04", + "templateId": "Quest:Quest_S17_Milestone_Use_Shield_Potions_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_Use_Shield_Potions_Q04_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Potions" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_Use_Shield_Potions_Q05", + "templateId": "Quest:Quest_S17_Milestone_Use_Shield_Potions_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_Use_Shield_Potions_Q05_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_Use_Potions" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q01", + "templateId": "Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_VehicleDestroy_Structures_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q02", + "templateId": "Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_VehicleDestroy_Structures_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q03", + "templateId": "Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_VehicleDestroy_Structures_Q03_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q04", + "templateId": "Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_VehicleDestroy_Structures_Q04_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q05", + "templateId": "Quest:Quest_S17_Milestone_VehicleDestroy_Structures_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_VehicleDestroy_Structures_Q05_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDestroy_Structures" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_VehicleDistance_Q01", + "templateId": "Quest:Quest_S17_Milestone_VehicleDistance_Q01", + "objectives": [ + { + "name": "Quest_S17_Milestone_VehicleDistance_Q01_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_VehicleDistance_Q02", + "templateId": "Quest:Quest_S17_Milestone_VehicleDistance_Q02", + "objectives": [ + { + "name": "Quest_S17_Milestone_VehicleDistance_Q02_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_VehicleDistance_Q03", + "templateId": "Quest:Quest_S17_Milestone_VehicleDistance_Q03", + "objectives": [ + { + "name": "Quest_S17_Milestone_VehicleDistance_Q03_obj0", + "count": 75000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_VehicleDistance_Q04", + "templateId": "Quest:Quest_S17_Milestone_VehicleDistance_Q04", + "objectives": [ + { + "name": "Quest_S17_Milestone_VehicleDistance_Q04_obj0", + "count": 150000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Milestone_VehicleDistance_Q05", + "templateId": "Quest:Quest_S17_Milestone_VehicleDistance_Q05", + "objectives": [ + { + "name": "Quest_S17_Milestone_VehicleDistance_Q05_obj0", + "count": 500000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Milestone_VehicleDistance" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W01_Epic_Q01", + "templateId": "Quest:Quest_S17_W01_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W01_Epic_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W01_Epic_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S17_W01_Epic_Q01_obj2", + "count": 1 + }, + { + "name": "Quest_S17_W01_Epic_Q01_obj3", + "count": 1 + }, + { + "name": "Quest_S17_W01_Epic_Q01_obj4", + "count": 1 + }, + { + "name": "Quest_S17_W01_Epic_Q01_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_01" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W01_Epic_Q02", + "templateId": "Quest:Quest_S17_W01_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W01_Epic_Q02_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_01" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W01_Epic_Q03", + "templateId": "Quest:Quest_S17_W01_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W01_Epic_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_01" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W01_Epic_Q04", + "templateId": "Quest:Quest_S17_W01_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W01_Epic_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_01" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W01_Epic_Q05", + "templateId": "Quest:Quest_S17_W01_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W01_Epic_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_01" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W01_Epic_Q06", + "templateId": "Quest:Quest_S17_W01_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W01_Epic_Q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_01" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W01_Epic_Q07", + "templateId": "Quest:Quest_S17_W01_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W01_Epic_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_01" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W02_Epic_Q01", + "templateId": "Quest:Quest_S17_W02_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W02_Epic_Q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_02" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W02_Epic_Q02", + "templateId": "Quest:Quest_S17_W02_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W02_Epic_Q02_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_02" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W02_Epic_Q03", + "templateId": "Quest:Quest_S17_W02_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W02_Epic_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q03_obj1", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q03_obj2", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q03_obj3", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q03_obj4", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q03_obj5", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q03_obj6", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q03_obj7", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q03_obj8", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q03_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_02" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W02_Epic_Q04", + "templateId": "Quest:Quest_S17_W02_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W02_Epic_Q04_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_02" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W02_Epic_Q05", + "templateId": "Quest:Quest_S17_W02_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W02_Epic_Q05_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q05_obj1", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q05_obj2", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q05_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_02" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W02_Epic_Q06", + "templateId": "Quest:Quest_S17_W02_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W02_Epic_Q06_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj1", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj2", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj3", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj4", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj5", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj6", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj7", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj8", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj9", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj10", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj11", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj12", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj13", + "count": 1 + }, + { + "name": "Quest_S17_W02_Epic_Q06_obj14", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_02" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W02_Epic_Q07", + "templateId": "Quest:Quest_S17_W02_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W02_Epic_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_02" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W03_Epic_Q01", + "templateId": "Quest:Quest_S17_W03_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W03_Epic_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_03" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W03_Epic_Q02", + "templateId": "Quest:Quest_S17_W03_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W03_Epic_Q02_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_03" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W03_Epic_Q03", + "templateId": "Quest:Quest_S17_W03_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W03_Epic_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_03" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W03_Epic_Q06", + "templateId": "Quest:Quest_S17_W03_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W03_Epic_Q06_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_03" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W03_Epic_Q04", + "templateId": "Quest:Quest_S17_W03_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W03_Epic_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_03" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W03_Epic_Q05", + "templateId": "Quest:Quest_S17_W03_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W03_Epic_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_03" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W03_Epic_Q07", + "templateId": "Quest:Quest_S17_W03_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W03_Epic_Q07_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_03" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W04_Epic_Q01", + "templateId": "Quest:Quest_S17_W04_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W04_Epic_Q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_04" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W04_Epic_Q02", + "templateId": "Quest:Quest_S17_W04_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W04_Epic_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_04" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W04_Epic_Q04", + "templateId": "Quest:Quest_S17_W04_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W04_Epic_Q04_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_04" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W04_Epic_Q03", + "templateId": "Quest:Quest_S17_W04_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W04_Epic_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W04_Epic_Q03_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_04" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W04_Epic_Q05", + "templateId": "Quest:Quest_S17_W04_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W04_Epic_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_04" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W04_Epic_Q06", + "templateId": "Quest:Quest_S17_W04_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W04_Epic_Q06_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_04" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W04_Epic_Q07", + "templateId": "Quest:Quest_S17_W04_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W04_Epic_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_04" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W05_Epic_Q01", + "templateId": "Quest:Quest_S17_W05_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W05_Epic_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_05" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W05_Epic_Q02", + "templateId": "Quest:Quest_S17_W05_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W05_Epic_Q02_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_05" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W05_Epic_Q03", + "templateId": "Quest:Quest_S17_W05_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W05_Epic_Q03_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_05" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W05_Epic_Q04", + "templateId": "Quest:Quest_S17_W05_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W05_Epic_Q04_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_05" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W05_Epic_Q05", + "templateId": "Quest:Quest_S17_W05_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W05_Epic_Q05_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_05" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W05_Epic_Q06", + "templateId": "Quest:Quest_S17_W05_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W05_Epic_Q06_obj0", + "count": 800 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_05" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W05_Epic_Q07", + "templateId": "Quest:Quest_S17_W05_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W05_Epic_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_05" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W06_Epic_Q01", + "templateId": "Quest:Quest_S17_W06_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W06_Epic_Q01_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_06" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W06_Epic_Q02", + "templateId": "Quest:Quest_S17_W06_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W06_Epic_Q02_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_06" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W06_Epic_Q03", + "templateId": "Quest:Quest_S17_W06_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W06_Epic_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_06" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W06_Epic_Q04", + "templateId": "Quest:Quest_S17_W06_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W06_Epic_Q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_06" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W06_Epic_Q05", + "templateId": "Quest:Quest_S17_W06_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W06_Epic_Q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_06" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W06_Epic_Q06", + "templateId": "Quest:Quest_S17_W06_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W06_Epic_Q06_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_06" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W06_Epic_Q07", + "templateId": "Quest:Quest_S17_W06_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W06_Epic_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W06_Epic_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_S17_W06_Epic_Q07_obj2", + "count": 1 + }, + { + "name": "Quest_S17_W06_Epic_Q07_obj3", + "count": 1 + }, + { + "name": "Quest_S17_W06_Epic_Q07_obj4", + "count": 1 + }, + { + "name": "Quest_S17_W06_Epic_Q07_obj5", + "count": 1 + }, + { + "name": "Quest_S17_W06_Epic_Q07_obj6", + "count": 1 + }, + { + "name": "Quest_S17_W06_Epic_Q07_obj7", + "count": 1 + }, + { + "name": "Quest_S17_W06_Epic_Q07_obj8", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_06" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W07_Epic_Q01", + "templateId": "Quest:Quest_S17_W07_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W07_Epic_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_07" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W07_Epic_Q02", + "templateId": "Quest:Quest_S17_W07_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W07_Epic_Q02_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W07_Epic_Q02_obj1", + "count": 1 + }, + { + "name": "Quest_S17_W07_Epic_Q02_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_07" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W07_Epic_Q03", + "templateId": "Quest:Quest_S17_W07_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W07_Epic_Q03_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_07" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W07_Epic_Q04", + "templateId": "Quest:Quest_S17_W07_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W07_Epic_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_07" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W07_Epic_Q05", + "templateId": "Quest:Quest_S17_W07_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W07_Epic_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_07" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W07_Epic_Q06", + "templateId": "Quest:Quest_S17_W07_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W07_Epic_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_07" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W07_Epic_Q07", + "templateId": "Quest:Quest_S17_W07_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W07_Epic_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W07_Epic_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_S17_W07_Epic_Q07_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_07" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W08_Epic_Q01", + "templateId": "Quest:Quest_S17_W08_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W08_Epic_Q01_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_08" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W08_Epic_Q02", + "templateId": "Quest:Quest_S17_W08_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W08_Epic_Q02_obj0", + "count": 750 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_08" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W08_Epic_Q03", + "templateId": "Quest:Quest_S17_W08_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W08_Epic_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W08_Epic_Q03_obj1", + "count": 1 + }, + { + "name": "Quest_S17_W08_Epic_Q03_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_08" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W08_Epic_Q04", + "templateId": "Quest:Quest_S17_W08_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W08_Epic_Q04_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_08" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W08_Epic_Q05", + "templateId": "Quest:Quest_S17_W08_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W08_Epic_Q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_08" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W08_Epic_Q06", + "templateId": "Quest:Quest_S17_W08_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W08_Epic_Q06_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_08" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W08_Epic_Q07", + "templateId": "Quest:Quest_S17_W08_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W08_Epic_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W08_Epic_Q07_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_08" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W09_Epic_Q01", + "templateId": "Quest:Quest_S17_W09_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W09_Epic_Q01_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_09" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W09_Epic_Q02", + "templateId": "Quest:Quest_S17_W09_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W09_Epic_Q02_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W09_Epic_Q02_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_09" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W09_Epic_Q03", + "templateId": "Quest:Quest_S17_W09_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W09_Epic_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_09" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W09_Epic_Q04", + "templateId": "Quest:Quest_S17_W09_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W09_Epic_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_09" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W09_Epic_Q05", + "templateId": "Quest:Quest_S17_W09_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W09_Epic_Q05_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_09" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W09_Epic_Q06", + "templateId": "Quest:Quest_S17_W09_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W09_Epic_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_09" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W09_Epic_Q07", + "templateId": "Quest:Quest_S17_W09_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W09_Epic_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W09_Epic_Q07_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_09" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W10_Epic_Q01", + "templateId": "Quest:Quest_S17_W10_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W10_Epic_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W10_Epic_Q01_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W10_Epic_Q02", + "templateId": "Quest:Quest_S17_W10_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W10_Epic_Q02_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W10_Epic_Q03", + "templateId": "Quest:Quest_S17_W10_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W10_Epic_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W10_Epic_Q03_obj1", + "count": 1 + }, + { + "name": "Quest_S17_W10_Epic_Q03_obj2", + "count": 1 + }, + { + "name": "Quest_S17_W10_Epic_Q03_obj3", + "count": 1 + }, + { + "name": "Quest_S17_W10_Epic_Q03_obj4", + "count": 1 + }, + { + "name": "Quest_S17_W10_Epic_Q03_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W10_Epic_Q04", + "templateId": "Quest:Quest_S17_W10_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W10_Epic_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W10_Epic_Q05", + "templateId": "Quest:Quest_S17_W10_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W10_Epic_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W10_Epic_Q06", + "templateId": "Quest:Quest_S17_W10_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W10_Epic_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W10_Epic_Q07", + "templateId": "Quest:Quest_S17_W10_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W10_Epic_Q07_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_10" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W11_Epic_Q01", + "templateId": "Quest:Quest_S17_W11_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W11_Epic_Q01_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_11" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W11_Epic_Q02", + "templateId": "Quest:Quest_S17_W11_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W11_Epic_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_11" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W11_Epic_Q03", + "templateId": "Quest:Quest_S17_W11_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W11_Epic_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_11" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W11_Epic_Q04", + "templateId": "Quest:Quest_S17_W11_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W11_Epic_Q04_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_11" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W11_Epic_Q05", + "templateId": "Quest:Quest_S17_W11_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W11_Epic_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_11" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W11_Epic_Q06", + "templateId": "Quest:Quest_S17_W11_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W11_Epic_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_11" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W11_Epic_Q07", + "templateId": "Quest:Quest_S17_W11_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W11_Epic_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_11" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W12_Epic_Q01", + "templateId": "Quest:Quest_S17_W12_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W12_Epic_Q01_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_12" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W12_Epic_Q02", + "templateId": "Quest:Quest_S17_W12_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W12_Epic_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_12" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W12_Epic_Q03", + "templateId": "Quest:Quest_S17_W12_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W12_Epic_Q03_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_12" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W12_Epic_Q04", + "templateId": "Quest:Quest_S17_W12_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W12_Epic_Q04_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_12" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W12_Epic_Q05", + "templateId": "Quest:Quest_S17_W12_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W12_Epic_Q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_12" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W12_Epic_Q06", + "templateId": "Quest:Quest_S17_W12_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W12_Epic_Q06_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_12" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W12_Epic_Q07", + "templateId": "Quest:Quest_S17_W12_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W12_Epic_Q07_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_12" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W13_Epic_Q01", + "templateId": "Quest:Quest_S17_W13_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W13_Epic_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q01_obj2", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q01_obj3", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q01_obj4", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q01_obj5", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q01_obj6", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q01_obj7", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q01_obj8", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_13" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W13_Epic_Q02", + "templateId": "Quest:Quest_S17_W13_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W13_Epic_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_13" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W13_Epic_Q03", + "templateId": "Quest:Quest_S17_W13_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W13_Epic_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_13" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W13_Epic_Q04", + "templateId": "Quest:Quest_S17_W13_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W13_Epic_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_13" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W13_Epic_Q05", + "templateId": "Quest:Quest_S17_W13_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W13_Epic_Q05_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q05_obj1", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q05_obj2", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q05_obj3", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q05_obj4", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q05_obj5", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q05_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_13" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W13_Epic_Q06", + "templateId": "Quest:Quest_S17_W13_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W13_Epic_Q06_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_13" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W13_Epic_Q07", + "templateId": "Quest:Quest_S17_W13_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W13_Epic_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S17_W13_Epic_Q07_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_13" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W14_Epic_Q01", + "templateId": "Quest:Quest_S17_W14_Epic_Q01", + "objectives": [ + { + "name": "Quest_S17_W14_Epic_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_14" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W14_Epic_Q02", + "templateId": "Quest:Quest_S17_W14_Epic_Q02", + "objectives": [ + { + "name": "Quest_S17_W14_Epic_Q02_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_14" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W14_Epic_Q04", + "templateId": "Quest:Quest_S17_W14_Epic_Q04", + "objectives": [ + { + "name": "Quest_S17_W14_Epic_Q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_14" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W14_Epic_Q03", + "templateId": "Quest:Quest_S17_W14_Epic_Q03", + "objectives": [ + { + "name": "Quest_S17_W14_Epic_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_14" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W14_Epic_Q05", + "templateId": "Quest:Quest_S17_W14_Epic_Q05", + "objectives": [ + { + "name": "Quest_S17_W14_Epic_Q05_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_14" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W14_Epic_Q06", + "templateId": "Quest:Quest_S17_W14_Epic_Q06", + "objectives": [ + { + "name": "Quest_S17_W14_Epic_Q06_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_14" + }, + { + "itemGuid": "S17-Quest:Quest_S17_W14_Epic_Q07", + "templateId": "Quest:Quest_S17_W14_Epic_Q07", + "objectives": [ + { + "name": "Quest_S17_W14_Epic_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_14" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Week_15", + "templateId": "Quest:Quest_S17_Week_15", + "objectives": [ + { + "name": "Quest_S16_Week_15_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:MissionBundle_S17_Week_15" + }, + { + "itemGuid": "S17-Quest:quest_s17_O2_q01", + "templateId": "Quest:quest_s17_O2_q01", + "objectives": [ + { + "name": "o2_visit", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_O2" + }, + { + "itemGuid": "S17-Quest:quest_s17_w01_alienartifact_purple_01", + "templateId": "Quest:quest_s17_w01_alienartifact_purple_01", + "objectives": [ + { + "name": "quest_s17_w01_alienartifact_purple_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_01" + }, + { + "itemGuid": "S17-Quest:quest_s17_w01_alienartifact_purple_02", + "templateId": "Quest:quest_s17_w01_alienartifact_purple_02", + "objectives": [ + { + "name": "quest_s17_w01_alienartifact_purple_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_01" + }, + { + "itemGuid": "S17-Quest:quest_s17_w01_alienartifact_purple_03", + "templateId": "Quest:quest_s17_w01_alienartifact_purple_03", + "objectives": [ + { + "name": "quest_s17_w01_alienartifact_purple_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_01" + }, + { + "itemGuid": "S17-Quest:quest_s17_w01_alienartifact_purple_04", + "templateId": "Quest:quest_s17_w01_alienartifact_purple_04", + "objectives": [ + { + "name": "quest_s17_w01_alienartifact_purple_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_01" + }, + { + "itemGuid": "S17-Quest:quest_s17_w01_alienartifact_purple_05", + "templateId": "Quest:quest_s17_w01_alienartifact_purple_05", + "objectives": [ + { + "name": "quest_s17_w01_alienartifact_purple_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_01" + }, + { + "itemGuid": "S17-Quest:quest_s17_w02_alienartifact_purple_01", + "templateId": "Quest:quest_s17_w02_alienartifact_purple_01", + "objectives": [ + { + "name": "quest_s17_w02_alienartifact_purple_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_02" + }, + { + "itemGuid": "S17-Quest:quest_s17_w02_alienartifact_purple_02", + "templateId": "Quest:quest_s17_w02_alienartifact_purple_02", + "objectives": [ + { + "name": "quest_s17_w02_alienartifact_purple_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_02" + }, + { + "itemGuid": "S17-Quest:quest_s17_w02_alienartifact_purple_03", + "templateId": "Quest:quest_s17_w02_alienartifact_purple_03", + "objectives": [ + { + "name": "quest_s17_w02_alienartifact_purple_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_02" + }, + { + "itemGuid": "S17-Quest:quest_s17_w02_alienartifact_purple_04", + "templateId": "Quest:quest_s17_w02_alienartifact_purple_04", + "objectives": [ + { + "name": "quest_s17_w02_alienartifact_purple_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_02" + }, + { + "itemGuid": "S17-Quest:quest_s17_w02_alienartifact_purple_05", + "templateId": "Quest:quest_s17_w02_alienartifact_purple_05", + "objectives": [ + { + "name": "quest_s17_w02_alienartifact_purple_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_02" + }, + { + "itemGuid": "S17-Quest:quest_s17_w03_alienartifact_purple_01", + "templateId": "Quest:quest_s17_w03_alienartifact_purple_01", + "objectives": [ + { + "name": "quest_s17_w03_alienartifact_purple_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_03" + }, + { + "itemGuid": "S17-Quest:quest_s17_w03_alienartifact_purple_02", + "templateId": "Quest:quest_s17_w03_alienartifact_purple_02", + "objectives": [ + { + "name": "quest_s17_w03_alienartifact_purple_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_03" + }, + { + "itemGuid": "S17-Quest:quest_s17_w03_alienartifact_purple_03", + "templateId": "Quest:quest_s17_w03_alienartifact_purple_03", + "objectives": [ + { + "name": "quest_s17_w03_alienartifact_purple_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_03" + }, + { + "itemGuid": "S17-Quest:quest_s17_w03_alienartifact_purple_04", + "templateId": "Quest:quest_s17_w03_alienartifact_purple_04", + "objectives": [ + { + "name": "quest_s17_w03_alienartifact_purple_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_03" + }, + { + "itemGuid": "S17-Quest:quest_s17_w03_alienartifact_purple_05", + "templateId": "Quest:quest_s17_w03_alienartifact_purple_05", + "objectives": [ + { + "name": "quest_s17_w03_alienartifact_purple_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_03" + }, + { + "itemGuid": "S17-Quest:quest_s17_w04_alienartifact_purple_01", + "templateId": "Quest:quest_s17_w04_alienartifact_purple_01", + "objectives": [ + { + "name": "quest_s17_w04_alienartifact_purple_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_04" + }, + { + "itemGuid": "S17-Quest:quest_s17_w04_alienartifact_purple_02", + "templateId": "Quest:quest_s17_w04_alienartifact_purple_02", + "objectives": [ + { + "name": "quest_s17_w04_alienartifact_purple_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_04" + }, + { + "itemGuid": "S17-Quest:quest_s17_w04_alienartifact_purple_03", + "templateId": "Quest:quest_s17_w04_alienartifact_purple_03", + "objectives": [ + { + "name": "quest_s17_w04_alienartifact_purple_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_04" + }, + { + "itemGuid": "S17-Quest:quest_s17_w04_alienartifact_purple_04", + "templateId": "Quest:quest_s17_w04_alienartifact_purple_04", + "objectives": [ + { + "name": "quest_s17_w04_alienartifact_purple_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_04" + }, + { + "itemGuid": "S17-Quest:quest_s17_w04_alienartifact_purple_05", + "templateId": "Quest:quest_s17_w04_alienartifact_purple_05", + "objectives": [ + { + "name": "quest_s17_w04_alienartifact_purple_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_04" + }, + { + "itemGuid": "S17-Quest:quest_s17_w05_alienartifact_purple_01", + "templateId": "Quest:quest_s17_w05_alienartifact_purple_01", + "objectives": [ + { + "name": "quest_s17_w05_alienartifact_purple_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_05" + }, + { + "itemGuid": "S17-Quest:quest_s17_w05_alienartifact_purple_02", + "templateId": "Quest:quest_s17_w05_alienartifact_purple_02", + "objectives": [ + { + "name": "quest_s17_w05_alienartifact_purple_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_05" + }, + { + "itemGuid": "S17-Quest:quest_s17_w05_alienartifact_purple_03", + "templateId": "Quest:quest_s17_w05_alienartifact_purple_03", + "objectives": [ + { + "name": "quest_s17_w05_alienartifact_purple_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_05" + }, + { + "itemGuid": "S17-Quest:quest_s17_w05_alienartifact_purple_04", + "templateId": "Quest:quest_s17_w05_alienartifact_purple_04", + "objectives": [ + { + "name": "quest_s17_w05_alienartifact_purple_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_05" + }, + { + "itemGuid": "S17-Quest:quest_s17_w05_alienartifact_purple_05", + "templateId": "Quest:quest_s17_w05_alienartifact_purple_05", + "objectives": [ + { + "name": "quest_s17_w05_alienartifact_purple_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_05" + }, + { + "itemGuid": "S17-Quest:quest_s17_w06_alienartifact_purple_01", + "templateId": "Quest:quest_s17_w06_alienartifact_purple_01", + "objectives": [ + { + "name": "quest_s17_w06_alienartifact_purple_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_06" + }, + { + "itemGuid": "S17-Quest:quest_s17_w06_alienartifact_purple_02", + "templateId": "Quest:quest_s17_w06_alienartifact_purple_02", + "objectives": [ + { + "name": "quest_s17_w06_alienartifact_purple_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_06" + }, + { + "itemGuid": "S17-Quest:quest_s17_w06_alienartifact_purple_03", + "templateId": "Quest:quest_s17_w06_alienartifact_purple_03", + "objectives": [ + { + "name": "quest_s17_w06_alienartifact_purple_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_06" + }, + { + "itemGuid": "S17-Quest:quest_s17_w06_alienartifact_purple_04", + "templateId": "Quest:quest_s17_w06_alienartifact_purple_04", + "objectives": [ + { + "name": "quest_s17_w06_alienartifact_purple_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_06" + }, + { + "itemGuid": "S17-Quest:quest_s17_w06_alienartifact_purple_05", + "templateId": "Quest:quest_s17_w06_alienartifact_purple_05", + "objectives": [ + { + "name": "quest_s17_w06_alienartifact_purple_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_06" + }, + { + "itemGuid": "S17-Quest:quest_s17_w07_alienartifact_purple_01", + "templateId": "Quest:quest_s17_w07_alienartifact_purple_01", + "objectives": [ + { + "name": "quest_s17_w07_alienartifact_purple_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_07" + }, + { + "itemGuid": "S17-Quest:quest_s17_w07_alienartifact_purple_02", + "templateId": "Quest:quest_s17_w07_alienartifact_purple_02", + "objectives": [ + { + "name": "quest_s17_w07_alienartifact_purple_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_07" + }, + { + "itemGuid": "S17-Quest:quest_s17_w07_alienartifact_purple_03", + "templateId": "Quest:quest_s17_w07_alienartifact_purple_03", + "objectives": [ + { + "name": "quest_s17_w07_alienartifact_purple_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_07" + }, + { + "itemGuid": "S17-Quest:quest_s17_w07_alienartifact_purple_04", + "templateId": "Quest:quest_s17_w07_alienartifact_purple_04", + "objectives": [ + { + "name": "quest_s17_w07_alienartifact_purple_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_07" + }, + { + "itemGuid": "S17-Quest:quest_s17_w07_alienartifact_purple_05", + "templateId": "Quest:quest_s17_w07_alienartifact_purple_05", + "objectives": [ + { + "name": "quest_s17_w07_alienartifact_purple_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_07" + }, + { + "itemGuid": "S17-Quest:quest_s17_w08_alienartifact_purple_01", + "templateId": "Quest:quest_s17_w08_alienartifact_purple_01", + "objectives": [ + { + "name": "quest_s17_w08_alienartifact_purple_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_08" + }, + { + "itemGuid": "S17-Quest:quest_s17_w08_alienartifact_purple_02", + "templateId": "Quest:quest_s17_w08_alienartifact_purple_02", + "objectives": [ + { + "name": "quest_s17_w08_alienartifact_purple_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_08" + }, + { + "itemGuid": "S17-Quest:quest_s17_w08_alienartifact_purple_03", + "templateId": "Quest:quest_s17_w08_alienartifact_purple_03", + "objectives": [ + { + "name": "quest_s17_w08_alienartifact_purple_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_08" + }, + { + "itemGuid": "S17-Quest:quest_s17_w08_alienartifact_purple_04", + "templateId": "Quest:quest_s17_w08_alienartifact_purple_04", + "objectives": [ + { + "name": "quest_s17_w08_alienartifact_purple_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_08" + }, + { + "itemGuid": "S17-Quest:quest_s17_w08_alienartifact_purple_05", + "templateId": "Quest:quest_s17_w08_alienartifact_purple_05", + "objectives": [ + { + "name": "quest_s17_w08_alienartifact_purple_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_08" + }, + { + "itemGuid": "S17-Quest:quest_s17_w09_alienartifact_purple_01", + "templateId": "Quest:quest_s17_w09_alienartifact_purple_01", + "objectives": [ + { + "name": "quest_s17_w09_alienartifact_purple_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_09" + }, + { + "itemGuid": "S17-Quest:quest_s17_w09_alienartifact_purple_02", + "templateId": "Quest:quest_s17_w09_alienartifact_purple_02", + "objectives": [ + { + "name": "quest_s17_w09_alienartifact_purple_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_09" + }, + { + "itemGuid": "S17-Quest:quest_s17_w09_alienartifact_purple_03", + "templateId": "Quest:quest_s17_w09_alienartifact_purple_03", + "objectives": [ + { + "name": "quest_s17_w09_alienartifact_purple_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_09" + }, + { + "itemGuid": "S17-Quest:quest_s17_w09_alienartifact_purple_04", + "templateId": "Quest:quest_s17_w09_alienartifact_purple_04", + "objectives": [ + { + "name": "quest_s17_w09_alienartifact_purple_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_09" + }, + { + "itemGuid": "S17-Quest:quest_s17_w09_alienartifact_purple_05", + "templateId": "Quest:quest_s17_w09_alienartifact_purple_05", + "objectives": [ + { + "name": "quest_s17_w09_alienartifact_purple_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_09" + }, + { + "itemGuid": "S17-Quest:quest_s17_w10_alienartifact_purple_01", + "templateId": "Quest:quest_s17_w10_alienartifact_purple_01", + "objectives": [ + { + "name": "quest_s17_w10_alienartifact_purple_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_10" + }, + { + "itemGuid": "S17-Quest:quest_s17_w10_alienartifact_purple_02", + "templateId": "Quest:quest_s17_w10_alienartifact_purple_02", + "objectives": [ + { + "name": "quest_s17_w10_alienartifact_purple_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_10" + }, + { + "itemGuid": "S17-Quest:quest_s17_w10_alienartifact_purple_03", + "templateId": "Quest:quest_s17_w10_alienartifact_purple_03", + "objectives": [ + { + "name": "quest_s17_w10_alienartifact_purple_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_10" + }, + { + "itemGuid": "S17-Quest:quest_s17_w10_alienartifact_purple_04", + "templateId": "Quest:quest_s17_w10_alienartifact_purple_04", + "objectives": [ + { + "name": "quest_s17_w10_alienartifact_purple_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_10" + }, + { + "itemGuid": "S17-Quest:quest_s17_w10_alienartifact_purple_05", + "templateId": "Quest:quest_s17_w10_alienartifact_purple_05", + "objectives": [ + { + "name": "quest_s17_w10_alienartifact_purple_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_AlienArtifacts_Week_10" + }, + { + "itemGuid": "S17-Quest:Quest_s17_Buffet_Q01", + "templateId": "Quest:Quest_s17_Buffet_Q01", + "objectives": [ + { + "name": "Quest_s17_Buffet_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_01" + }, + { + "itemGuid": "S17-Quest:Quest_s17_Buffet_Q02", + "templateId": "Quest:Quest_s17_Buffet_Q02", + "objectives": [ + { + "name": "Quest_s17_Buffet_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_01" + }, + { + "itemGuid": "S17-Quest:Quest_s17_Buffet_Q03", + "templateId": "Quest:Quest_s17_Buffet_Q03", + "objectives": [ + { + "name": "Quest_s17_Buffet_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_s17_Buffet_Q03_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_01" + }, + { + "itemGuid": "S17-Quest:Quest_s17_Buffet_Q04", + "templateId": "Quest:Quest_s17_Buffet_Q04", + "objectives": [ + { + "name": "Quest_s17_Buffet_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_02" + }, + { + "itemGuid": "S17-Quest:Quest_s17_Buffet_Q05", + "templateId": "Quest:Quest_s17_Buffet_Q05", + "objectives": [ + { + "name": "Quest_s17_Buffet_Q05_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_03" + }, + { + "itemGuid": "S17-Quest:Quest_s17_Buffet_Q06", + "templateId": "Quest:Quest_s17_Buffet_Q06", + "objectives": [ + { + "name": "Quest_s17_Buffet_Q06_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_03" + }, + { + "itemGuid": "S17-Quest:Quest_s17_Buffet_Q07", + "templateId": "Quest:Quest_s17_Buffet_Q07", + "objectives": [ + { + "name": "Quest_s17_Buffet_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_03" + }, + { + "itemGuid": "S17-Quest:Quest_s17_Buffet_Q08", + "templateId": "Quest:Quest_s17_Buffet_Q08", + "objectives": [ + { + "name": "Quest_s17_Buffet_Q08_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_03" + }, + { + "itemGuid": "S17-Quest:Quest_s17_Buffet_Q09", + "templateId": "Quest:Quest_s17_Buffet_Q09", + "objectives": [ + { + "name": "Quest_s17_Buffet_Q09_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_04" + }, + { + "itemGuid": "S17-Quest:Quest_s17_Buffet_Q10", + "templateId": "Quest:Quest_s17_Buffet_Q10", + "objectives": [ + { + "name": "Quest_s17_Buffet_Q10_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_04" + }, + { + "itemGuid": "S17-Quest:Quest_s17_Buffet_Q11", + "templateId": "Quest:Quest_s17_Buffet_Q11", + "objectives": [ + { + "name": "Quest_s17_Buffet_Q11_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_04" + }, + { + "itemGuid": "S17-Quest:Quest_s17_Buffet_Q12", + "templateId": "Quest:Quest_s17_Buffet_Q12", + "objectives": [ + { + "name": "Quest_s17_Buffet_Q12_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_04" + }, + { + "itemGuid": "S17-Quest:Quest_s17_Buffet_Hidden", + "templateId": "Quest:Quest_s17_Buffet_Hidden", + "objectives": [ + { + "name": "Quest_s17_Buffet_Hidden_obj0", + "count": 1 + }, + { + "name": "Quest_s17_Buffet_Hidden_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_Buffet_Hidden" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_01", + "templateId": "Quest:Quest_S17_CosmicSummer_01", + "objectives": [ + { + "name": "cosmicsummer_damage_zone_wars", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_02", + "templateId": "Quest:Quest_S17_CosmicSummer_02", + "objectives": [ + { + "name": "cosmicsummer_headshot_zonewars", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_03", + "templateId": "Quest:Quest_S17_CosmicSummer_03", + "objectives": [ + { + "name": "cosmicsummer_heal_zonewars", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_04", + "templateId": "Quest:Quest_S17_CosmicSummer_04", + "objectives": [ + { + "name": "cosmicsummer_kill_contribution_zonewars", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_05", + "templateId": "Quest:Quest_S17_CosmicSummer_05", + "objectives": [ + { + "name": "cosmicsummer_buy_pro100", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_06", + "templateId": "Quest:Quest_S17_CosmicSummer_06", + "objectives": [ + { + "name": "cosmicsummer_damage_rocket_pro100", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_07", + "templateId": "Quest:Quest_S17_CosmicSummer_07", + "objectives": [ + { + "name": "cosmicsummer_revive_pro100", + "count": 20 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_08", + "templateId": "Quest:Quest_S17_CosmicSummer_08", + "objectives": [ + { + "name": "comsicsummer_travel_freakyflights", + "count": 5000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_09", + "templateId": "Quest:Quest_S17_CosmicSummer_09", + "objectives": [ + { + "name": "comsicsummer_spend_freakyflights", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_10", + "templateId": "Quest:Quest_S17_CosmicSummer_10", + "objectives": [ + { + "name": "cosmicsummer_kill_freakyflights", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_11", + "templateId": "Quest:Quest_S17_CosmicSummer_11", + "objectives": [ + { + "name": "cosmicsummer_build_pit", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_12", + "templateId": "Quest:Quest_S17_CosmicSummer_12", + "objectives": [ + { + "name": "cosmicsummer_destroy_pit", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_13", + "templateId": "Quest:Quest_S17_CosmicSummer_13", + "objectives": [ + { + "name": "comsicsummer_elim_sniper_pit", + "count": 1 + }, + { + "name": "comsicsummer_elim_shotgun_pit", + "count": 1 + }, + { + "name": "comsicsummer_elim_pistol_pit", + "count": 1 + }, + { + "name": "comsicsummer_elim_pickaxe_pit", + "count": 1 + }, + { + "name": "comsicsummer_elim_minigun_pit", + "count": 1 + }, + { + "name": "comsicsummer_elim_ar_pit", + "count": 1 + }, + { + "name": "comsicsummer_elim_smg_pit", + "count": 1 + }, + { + "name": "comsicsummer_elim_harpoon_pit", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_14", + "templateId": "Quest:Quest_S17_CosmicSummer_14", + "objectives": [ + { + "name": "cosmicsummer_headshots_pit", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_CompleteEventChallenges_01", + "templateId": "Quest:Quest_S17_CosmicSummer_CompleteEventChallenges_01", + "objectives": [ + { + "name": "cosmicsummer_completequests_01", + "count": 2 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_CompleteEventChallenges_02", + "templateId": "Quest:Quest_S17_CosmicSummer_CompleteEventChallenges_02", + "objectives": [ + { + "name": "cosmicsummer_completequests_02", + "count": 6 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_CosmicSummer_CompleteEventChallenges_03", + "templateId": "Quest:Quest_S17_CosmicSummer_CompleteEventChallenges_03", + "objectives": [ + { + "name": "cosmicsummer_completequests_02", + "count": 12 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_CosmicSummer" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_CompleteEventChallenges_01", + "templateId": "Quest:Quest_S17_IslandGames_CompleteEventChallenges_01", + "objectives": [ + { + "name": "islandgames_completequests_01", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_CompleteEventChallenges_02", + "templateId": "Quest:Quest_S17_IslandGames_CompleteEventChallenges_02", + "objectives": [ + { + "name": "islandgames_completequests_02", + "count": 7 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_CompleteEventChallenges_03", + "templateId": "Quest:Quest_S17_IslandGames_CompleteEventChallenges_03", + "objectives": [ + { + "name": "islandgames_completequests_03", + "count": 9 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q01", + "templateId": "Quest:Quest_S17_IslandGames_Q01", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q01_obj0", + "count": 5500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q02", + "templateId": "Quest:Quest_S17_IslandGames_Q02", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q02_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q03", + "templateId": "Quest:Quest_S17_IslandGames_Q03", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q04", + "templateId": "Quest:Quest_S17_IslandGames_Q04", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q04_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q05", + "templateId": "Quest:Quest_S17_IslandGames_Q05", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q05_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q06", + "templateId": "Quest:Quest_S17_IslandGames_Q06", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q06_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q07", + "templateId": "Quest:Quest_S17_IslandGames_Q07", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q07_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q08", + "templateId": "Quest:Quest_S17_IslandGames_Q08", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q08_obj0", + "count": 750 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q09", + "templateId": "Quest:Quest_S17_IslandGames_Q09", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q09_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q10", + "templateId": "Quest:Quest_S17_IslandGames_Q10", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q10_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q11", + "templateId": "Quest:Quest_S17_IslandGames_Q11", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q11_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q12", + "templateId": "Quest:Quest_S17_IslandGames_Q12", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q12_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q13", + "templateId": "Quest:Quest_S17_IslandGames_Q13", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q13_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q14", + "templateId": "Quest:Quest_S17_IslandGames_Q14", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q14_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:Quest_S17_IslandGames_Q15", + "templateId": "Quest:Quest_S17_IslandGames_Q15", + "objectives": [ + { + "name": "Quest_S17_IslandGames_Q15_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_Event_S17_IslandGames" + }, + { + "itemGuid": "S17-Quest:quest_s17_w01_legendary_q1", + "templateId": "Quest:quest_s17_w01_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w01_legendary_q1_obj0", + "count": 1 + }, + { + "name": "quest_s17_w01_legendary_q1_obj1", + "count": 1 + }, + { + "name": "quest_s17_w01_legendary_q1_obj2", + "count": 1 + }, + { + "name": "quest_s17_w01_legendary_q1_obj3", + "count": 1 + }, + { + "name": "quest_s17_w01_legendary_q1_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_01" + }, + { + "itemGuid": "S17-Quest:quest_s17_w01_legendary_q2", + "templateId": "Quest:quest_s17_w01_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w01_legendary_q2_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_01" + }, + { + "itemGuid": "S17-Quest:quest_s17_w01_legendary_q3", + "templateId": "Quest:quest_s17_w01_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w01_legendary_q3_obj0", + "count": 1 + }, + { + "name": "quest_s17_w01_legendary_q3_obj1", + "count": 1 + }, + { + "name": "quest_s17_w01_legendary_q3_obj2", + "count": 1 + }, + { + "name": "quest_s17_w01_legendary_q3_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_01" + }, + { + "itemGuid": "S17-Quest:quest_s17_w01_legendary_q4", + "templateId": "Quest:quest_s17_w01_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w01_legendary_q4_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_01" + }, + { + "itemGuid": "S17-Quest:quest_s17_w01_legendary_q5", + "templateId": "Quest:quest_s17_w01_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w01_legendary_q5_obj0", + "count": 1 + }, + { + "name": "quest_s17_w01_legendary_q5_obj1", + "count": 1 + }, + { + "name": "quest_s17_w01_legendary_q5_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_01" + }, + { + "itemGuid": "S17-Quest:quest_s17_w02_legendary_q1", + "templateId": "Quest:quest_s17_w02_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w02_legendary_q1_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_02" + }, + { + "itemGuid": "S17-Quest:quest_s17_w02_legendary_q2", + "templateId": "Quest:quest_s17_w02_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w02_legendary_q2_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_02" + }, + { + "itemGuid": "S17-Quest:quest_s17_w02_legendary_q3", + "templateId": "Quest:quest_s17_w02_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w02_legendary_q3_obj0", + "count": 1 + }, + { + "name": "quest_s17_w02_legendary_q3_obj1", + "count": 1 + }, + { + "name": "quest_s17_w02_legendary_q3_obj2", + "count": 1 + }, + { + "name": "quest_s17_w02_legendary_q3_obj3", + "count": 1 + }, + { + "name": "quest_s17_w02_legendary_q3_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_02" + }, + { + "itemGuid": "S17-Quest:quest_s17_w02_legendary_q4", + "templateId": "Quest:quest_s17_w02_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w02_legendary_q4_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_02" + }, + { + "itemGuid": "S17-Quest:quest_s17_w02_legendary_q5", + "templateId": "Quest:quest_s17_w02_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w02_legendary_q5_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_02" + }, + { + "itemGuid": "S17-Quest:quest_s17_w03_legendary_q1", + "templateId": "Quest:quest_s17_w03_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w03_legendary_q1_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_03" + }, + { + "itemGuid": "S17-Quest:quest_s17_w03_legendary_q1_b", + "templateId": "Quest:quest_s17_w03_legendary_q1_b", + "objectives": [ + { + "name": "quest_s17_w03_legendary_q1_b_obj0", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q1_b_obj1", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q1_b_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_03" + }, + { + "itemGuid": "S17-Quest:quest_s17_w03_legendary_q2", + "templateId": "Quest:quest_s17_w03_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w03_legendary_q2_obj0", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q2_obj1", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q2_obj2", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q2_obj3", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q2_obj4", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q2_obj5", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q2_obj6", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q2_obj7", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q2_obj8", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q2_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_03" + }, + { + "itemGuid": "S17-Quest:quest_s17_w03_legendary_q3", + "templateId": "Quest:quest_s17_w03_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w03_legendary_q3_obj0", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q3_obj1", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q3_obj2", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q3_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_03" + }, + { + "itemGuid": "S17-Quest:quest_s17_w03_legendary_q4", + "templateId": "Quest:quest_s17_w03_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w03_legendary_q4_obj0", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q4_obj1", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q4_obj2", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q4_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_03" + }, + { + "itemGuid": "S17-Quest:quest_s17_w03_legendary_q5", + "templateId": "Quest:quest_s17_w03_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w03_legendary_q5_obj0", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q5_obj1", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q5_obj2", + "count": 1 + }, + { + "name": "quest_s17_w03_legendary_q5_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_03" + }, + { + "itemGuid": "S17-Quest:quest_s17_w04_legendary_q1", + "templateId": "Quest:quest_s17_w04_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w04_legendary_q1_obj0", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q1_obj1", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q1_obj2", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q1_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_04" + }, + { + "itemGuid": "S17-Quest:quest_s17_w04_legendary_q2", + "templateId": "Quest:quest_s17_w04_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w04_legendary_q2_obj0", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q2_obj1", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q2_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_04" + }, + { + "itemGuid": "S17-Quest:quest_s17_w04_legendary_q3", + "templateId": "Quest:quest_s17_w04_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w04_legendary_q3_obj0", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q3_obj1", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q3_obj2", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q3_obj3", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q3_obj4", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q3_obj5", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q3_obj6", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q3_obj7", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q3_obj8", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q3_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_04" + }, + { + "itemGuid": "S17-Quest:quest_s17_w04_legendary_q4", + "templateId": "Quest:quest_s17_w04_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w04_legendary_q4_obj0", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q4_obj1", + "count": 1 + }, + { + "name": "quest_s17_w04_legendary_q4_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_04" + }, + { + "itemGuid": "S17-Quest:quest_s17_w04_legendary_q5", + "templateId": "Quest:quest_s17_w04_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w04_legendary_q5_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_04" + }, + { + "itemGuid": "S17-Quest:quest_s17_w05_legendary_q1", + "templateId": "Quest:quest_s17_w05_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w05_legendary_q1_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_05" + }, + { + "itemGuid": "S17-Quest:quest_s17_w05_legendary_q1b", + "templateId": "Quest:quest_s17_w05_legendary_q1b", + "objectives": [ + { + "name": "quest_s17_w05_legendary_q1b_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_05" + }, + { + "itemGuid": "S17-Quest:quest_s17_w05_legendary_q2", + "templateId": "Quest:quest_s17_w05_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w05_legendary_q2_obj0", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q2_obj1", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q2_obj2", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q2_obj3", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q2_obj4", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q2_obj5", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q2_obj6", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q2_obj7", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q2_obj8", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q2_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_05" + }, + { + "itemGuid": "S17-Quest:quest_s17_w05_legendary_q3", + "templateId": "Quest:quest_s17_w05_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w05_legendary_q3_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_05" + }, + { + "itemGuid": "S17-Quest:quest_s17_w05_legendary_q4", + "templateId": "Quest:quest_s17_w05_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w05_legendary_q4_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_05" + }, + { + "itemGuid": "S17-Quest:quest_s17_w05_legendary_q5", + "templateId": "Quest:quest_s17_w05_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w05_legendary_q5_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_05" + }, + { + "itemGuid": "S17-Quest:quest_s17_w06_legendary_q1", + "templateId": "Quest:quest_s17_w06_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w06_legendary_q1_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_06" + }, + { + "itemGuid": "S17-Quest:quest_s17_w06_legendary_q1b", + "templateId": "Quest:quest_s17_w06_legendary_q1b", + "objectives": [ + { + "name": "quest_s17_w06_legendary_q1b_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_06" + }, + { + "itemGuid": "S17-Quest:quest_s17_w06_legendary_q2", + "templateId": "Quest:quest_s17_w06_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w06_legendary_q2_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_06" + }, + { + "itemGuid": "S17-Quest:quest_s17_w06_legendary_q3", + "templateId": "Quest:quest_s17_w06_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w06_legendary_q3_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_06" + }, + { + "itemGuid": "S17-Quest:quest_s17_w06_legendary_q4", + "templateId": "Quest:quest_s17_w06_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w06_legendary_q4_obj0", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj1", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj2", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj3", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj4", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj5", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj6", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj7", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj8", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj9", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj10", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj11", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj12", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj13", + "count": 1 + }, + { + "name": "quest_s17_w06_legendary_q4_obj14", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_06" + }, + { + "itemGuid": "S17-Quest:quest_s17_w06_legendary_q5", + "templateId": "Quest:quest_s17_w06_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w06_legendary_q5_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_06" + }, + { + "itemGuid": "S17-Quest:quest_s17_w07_legendary_q1", + "templateId": "Quest:quest_s17_w07_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w07_legendary_q1_obj0", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q1_obj1", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q1_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_07" + }, + { + "itemGuid": "S17-Quest:quest_s17_w07_legendary_q2", + "templateId": "Quest:quest_s17_w07_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w07_legendary_q2_obj0", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q2_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_07" + }, + { + "itemGuid": "S17-Quest:quest_s17_w07_legendary_q3", + "templateId": "Quest:quest_s17_w07_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w07_legendary_q3_obj0", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q3_obj1", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q3_obj2", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q3_obj3", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q3_obj4", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q3_obj5", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q3_obj6", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q3_obj7", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q3_obj8", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_07" + }, + { + "itemGuid": "S17-Quest:quest_s17_w07_legendary_q4", + "templateId": "Quest:quest_s17_w07_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w07_legendary_q4_obj0", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q4_obj1", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q4_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_07" + }, + { + "itemGuid": "S17-Quest:quest_s17_w07_legendary_q5", + "templateId": "Quest:quest_s17_w07_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w07_legendary_q5_obj0", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q5_obj1", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q5_obj2", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q5_obj3", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q5_obj4", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q5_obj5", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q5_obj6", + "count": 1 + }, + { + "name": "quest_s17_w07_legendary_q5_obj7", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_07" + }, + { + "itemGuid": "S17-Quest:quest_s17_w08_legendary_q1", + "templateId": "Quest:quest_s17_w08_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w08_legendary_q1_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_08" + }, + { + "itemGuid": "S17-Quest:quest_s17_w08_legendary_q1b", + "templateId": "Quest:quest_s17_w08_legendary_q1b", + "objectives": [ + { + "name": "quest_s17_w08_legendary_q1b_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_08" + }, + { + "itemGuid": "S17-Quest:quest_s17_w08_legendary_q2", + "templateId": "Quest:quest_s17_w08_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w08_legendary_q2_obj0", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q2_obj1", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q2_obj2", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q2_obj3", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q2_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_08" + }, + { + "itemGuid": "S17-Quest:quest_s17_w08_legendary_q3", + "templateId": "Quest:quest_s17_w08_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w08_legendary_q3_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_08" + }, + { + "itemGuid": "S17-Quest:quest_s17_w08_legendary_q4", + "templateId": "Quest:quest_s17_w08_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w08_legendary_q4_obj0", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q4_obj1", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q4_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_08" + }, + { + "itemGuid": "S17-Quest:quest_s17_w08_legendary_q5", + "templateId": "Quest:quest_s17_w08_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w08_legendary_q5_obj0", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj1", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj2", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj3", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj4", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj5", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj6", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj7", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj8", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj9", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj10", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj11", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj12", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj13", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj14", + "count": 1 + }, + { + "name": "quest_s17_w08_legendary_q5_obj15", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_08" + }, + { + "itemGuid": "S17-Quest:quest_s17_w09_legendary_q1", + "templateId": "Quest:quest_s17_w09_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w09_legendary_q1_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_09" + }, + { + "itemGuid": "S17-Quest:quest_s17_w09_legendary_q1b", + "templateId": "Quest:quest_s17_w09_legendary_q1b", + "objectives": [ + { + "name": "quest_s17_w09_legendary_q1b_obj0", + "count": 1 + }, + { + "name": "quest_s17_w09_legendary_q1b_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_09" + }, + { + "itemGuid": "S17-Quest:quest_s17_w09_legendary_q2", + "templateId": "Quest:quest_s17_w09_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w09_legendary_q2_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_09" + }, + { + "itemGuid": "S17-Quest:quest_s17_w09_legendary_q3", + "templateId": "Quest:quest_s17_w09_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w09_legendary_q3_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_09" + }, + { + "itemGuid": "S17-Quest:quest_s17_w09_legendary_q4", + "templateId": "Quest:quest_s17_w09_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w09_legendary_q4_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_09" + }, + { + "itemGuid": "S17-Quest:quest_s17_w09_legendary_q5", + "templateId": "Quest:quest_s17_w09_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w09_legendary_q5_obj0", + "count": 1 + }, + { + "name": "quest_s17_w09_legendary_q5_obj1", + "count": 1 + }, + { + "name": "quest_s17_w09_legendary_q5_obj2", + "count": 1 + }, + { + "name": "quest_s17_w09_legendary_q5_obj3", + "count": 1 + }, + { + "name": "quest_s17_w09_legendary_q5_obj4", + "count": 1 + }, + { + "name": "quest_s17_w09_legendary_q5_obj5", + "count": 1 + }, + { + "name": "quest_s17_w09_legendary_q5_obj6", + "count": 1 + }, + { + "name": "quest_s17_w09_legendary_q5_obj7", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_09" + }, + { + "itemGuid": "S17-Quest:quest_s17_w10_legendary_q1", + "templateId": "Quest:quest_s17_w10_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w10_legendary_q1_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_10" + }, + { + "itemGuid": "S17-Quest:quest_s17_w10_legendary_q1b", + "templateId": "Quest:quest_s17_w10_legendary_q1b", + "objectives": [ + { + "name": "quest_s17_w10_legendary_q1b_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_10" + }, + { + "itemGuid": "S17-Quest:quest_s17_w10_legendary_q2", + "templateId": "Quest:quest_s17_w10_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w10_legendary_q2_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_10" + }, + { + "itemGuid": "S17-Quest:quest_s17_w10_legendary_q3", + "templateId": "Quest:quest_s17_w10_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w10_legendary_q3_obj0", + "count": 1 + }, + { + "name": "quest_s17_w10_legendary_q3_obj1", + "count": 1 + }, + { + "name": "quest_s17_w10_legendary_q3_obj2", + "count": 1 + }, + { + "name": "quest_s17_w10_legendary_q3_obj3", + "count": 1 + }, + { + "name": "quest_s17_w10_legendary_q3_obj4", + "count": 1 + }, + { + "name": "quest_s17_w10_legendary_q3_obj5", + "count": 1 + }, + { + "name": "quest_s17_w10_legendary_q3_obj6", + "count": 1 + }, + { + "name": "quest_s17_w10_legendary_q3_obj7", + "count": 1 + }, + { + "name": "quest_s17_w10_legendary_q3_obj8", + "count": 1 + }, + { + "name": "quest_s17_w10_legendary_q3_obj9", + "count": 1 + }, + { + "name": "quest_s17_w10_legendary_q3_obj10", + "count": 1 + }, + { + "name": "quest_s17_w10_legendary_q3_obj11", + "count": 1 + }, + { + "name": "quest_s17_w10_legendary_q3_obj12", + "count": 1 + }, + { + "name": "quest_s17_w10_legendary_q3_obj13", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_10" + }, + { + "itemGuid": "S17-Quest:quest_s17_w10_legendary_q4", + "templateId": "Quest:quest_s17_w10_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w10_legendary_q4_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_10" + }, + { + "itemGuid": "S17-Quest:quest_s17_w10_legendary_q5", + "templateId": "Quest:quest_s17_w10_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w10_legendary_q5_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_10" + }, + { + "itemGuid": "S17-Quest:quest_s17_w11_legendary_q1", + "templateId": "Quest:quest_s17_w11_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w11_legendary_q1_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_11" + }, + { + "itemGuid": "S17-Quest:quest_s17_w11_legendary_q1b", + "templateId": "Quest:quest_s17_w11_legendary_q1b", + "objectives": [ + { + "name": "quest_s17_w11_legendary_q1b_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_11" + }, + { + "itemGuid": "S17-Quest:quest_s17_w11_legendary_q2", + "templateId": "Quest:quest_s17_w11_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w11_legendary_q2_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_11" + }, + { + "itemGuid": "S17-Quest:quest_s17_w11_legendary_q3", + "templateId": "Quest:quest_s17_w11_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w11_legendary_q3_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_11" + }, + { + "itemGuid": "S17-Quest:quest_s17_w11_legendary_q4", + "templateId": "Quest:quest_s17_w11_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w11_legendary_q4_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_11" + }, + { + "itemGuid": "S17-Quest:quest_s17_w11_legendary_q5", + "templateId": "Quest:quest_s17_w11_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w11_legendary_q5_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_11" + }, + { + "itemGuid": "S17-Quest:quest_s17_w12_legendary_q1", + "templateId": "Quest:quest_s17_w12_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w12_legendary_q1_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_12" + }, + { + "itemGuid": "S17-Quest:quest_s17_w12_legendary_q1b", + "templateId": "Quest:quest_s17_w12_legendary_q1b", + "objectives": [ + { + "name": "quest_s17_w12_legendary_q1b_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_12" + }, + { + "itemGuid": "S17-Quest:quest_s17_w12_legendary_q2", + "templateId": "Quest:quest_s17_w12_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w12_legendary_q2_obj0", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q2_obj1", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q2_obj2", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q2_obj3", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q2_obj4", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q2_obj5", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q2_obj6", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q2_obj7", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q2_obj8", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q2_obj9", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q2_obj10", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q2_obj11", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_12" + }, + { + "itemGuid": "S17-Quest:quest_s17_w12_legendary_q3", + "templateId": "Quest:quest_s17_w12_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w12_legendary_q3_obj0", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q3_obj1", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q3_obj2", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q3_obj3", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q3_obj4", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q3_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_12" + }, + { + "itemGuid": "S17-Quest:quest_s17_w12_legendary_q4", + "templateId": "Quest:quest_s17_w12_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w12_legendary_q4_obj0", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q4_obj1", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q4_obj2", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q4_obj3", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q4_obj4", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q4_obj5", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q4_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_12" + }, + { + "itemGuid": "S17-Quest:quest_s17_w12_legendary_q5", + "templateId": "Quest:quest_s17_w12_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w12_legendary_q5_obj0", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q5_obj1", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q5_obj2", + "count": 1 + }, + { + "name": "quest_s17_w12_legendary_q5_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_12" + }, + { + "itemGuid": "S17-Quest:quest_s17_w13_legendary_q1", + "templateId": "Quest:quest_s17_w13_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w13_legendary_q1_obj0", + "count": 1 + }, + { + "name": "quest_s17_w13_legendary_q1_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_13" + }, + { + "itemGuid": "S17-Quest:quest_s17_w13_legendary_q2", + "templateId": "Quest:quest_s17_w13_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w13_legendary_q2_obj0", + "count": 1 + }, + { + "name": "quest_s17_w13_legendary_q2_obj1", + "count": 1 + }, + { + "name": "quest_s17_w13_legendary_q2_obj2", + "count": 1 + }, + { + "name": "quest_s17_w13_legendary_q2_obj3", + "count": 1 + }, + { + "name": "quest_s17_w13_legendary_q2_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_13" + }, + { + "itemGuid": "S17-Quest:quest_s17_w13_legendary_q3", + "templateId": "Quest:quest_s17_w13_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w13_legendary_q3_obj0", + "count": 1 + }, + { + "name": "quest_s17_w13_legendary_q3_obj1", + "count": 1 + }, + { + "name": "quest_s17_w13_legendary_q3_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_13" + }, + { + "itemGuid": "S17-Quest:quest_s17_w13_legendary_q4", + "templateId": "Quest:quest_s17_w13_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w13_legendary_q4_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_13" + }, + { + "itemGuid": "S17-Quest:quest_s17_w13_legendary_q5", + "templateId": "Quest:quest_s17_w13_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w13_legendary_q5_obj0", + "count": 1 + }, + { + "name": "quest_s17_w13_legendary_q5_obj1", + "count": 1 + }, + { + "name": "quest_s17_w13_legendary_q5_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_13" + }, + { + "itemGuid": "S17-Quest:quest_s17_w14_legendary_q1", + "templateId": "Quest:quest_s17_w14_legendary_q1", + "objectives": [ + { + "name": "quest_s17_w14_legendary_q1_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_14" + }, + { + "itemGuid": "S17-Quest:quest_s17_w14_legendary_q1b", + "templateId": "Quest:quest_s17_w14_legendary_q1b", + "objectives": [ + { + "name": "quest_s17_w14_legendary_q1b_obj0", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj1", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj2", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj3", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj4", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj5", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj6", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj7", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj8", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj9", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj10", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj11", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj12", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj13", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj14", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj15", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj16", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj17", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj18", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q1b_obj19", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_14" + }, + { + "itemGuid": "S17-Quest:quest_s17_w14_legendary_q2", + "templateId": "Quest:quest_s17_w14_legendary_q2", + "objectives": [ + { + "name": "quest_s17_w14_legendary_q2_obj0", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q2_obj1", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q2_obj2", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q2_obj3", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q2_obj4", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q2_obj5", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q2_obj6", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q2_obj7", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q2_obj8", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q2_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_14" + }, + { + "itemGuid": "S17-Quest:quest_s17_w14_legendary_q3", + "templateId": "Quest:quest_s17_w14_legendary_q3", + "objectives": [ + { + "name": "quest_s17_w14_legendary_q3_obj0", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q3_obj1", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q3_obj2", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q3_obj3", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q3_obj4", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q3_obj5", + "count": 1 + }, + { + "name": "quest_s17_w14_legendary_q3_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_14" + }, + { + "itemGuid": "S17-Quest:quest_s17_w14_legendary_q4", + "templateId": "Quest:quest_s17_w14_legendary_q4", + "objectives": [ + { + "name": "quest_s17_w14_legendary_q4_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_14" + }, + { + "itemGuid": "S17-Quest:quest_s17_w14_legendary_q5", + "templateId": "Quest:quest_s17_w14_legendary_q5", + "objectives": [ + { + "name": "quest_s17_w14_legendary_q5_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_14" + }, + { + "itemGuid": "S17-Quest:quest_s17_w05_legendary_q1_hidden", + "templateId": "Quest:quest_s17_w05_legendary_q1_hidden", + "objectives": [ + { + "name": "quest_s17_w05_legendary_q1_hidden_obj0", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj1", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj2", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj3", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj4", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj5", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj6", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj7", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj8", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj9", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj10", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj11", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj12", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj13", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj14", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj15", + "count": 1 + }, + { + "name": "quest_s17_w05_legendary_q1_hidden_obj16", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_Week_5_hidden" + }, + { + "itemGuid": "S17-Quest:quest_s17_w11_legendary_WW_q1", + "templateId": "Quest:quest_s17_w11_legendary_WW_q1", + "objectives": [ + { + "name": "quest_s17_w11_legendary_ww_q1_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_11" + }, + { + "itemGuid": "S17-Quest:quest_s17_w11_legendary_WW_q2", + "templateId": "Quest:quest_s17_w11_legendary_WW_q2", + "objectives": [ + { + "name": "quest_s17_w11_legendary_ww_q2_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_11" + }, + { + "itemGuid": "S17-Quest:quest_s17_w11_legendary_WW_q3", + "templateId": "Quest:quest_s17_w11_legendary_WW_q3", + "objectives": [ + { + "name": "quest_s17_w11_legendary_ww_q3_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_11" + }, + { + "itemGuid": "S17-Quest:quest_s17_w12_legendary_WW_q1", + "templateId": "Quest:quest_s17_w12_legendary_WW_q1", + "objectives": [ + { + "name": "quest_s17_w12_legendary_ww_q1_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_12" + }, + { + "itemGuid": "S17-Quest:quest_s17_w12_legendary_WW_q2", + "templateId": "Quest:quest_s17_w12_legendary_WW_q2", + "objectives": [ + { + "name": "quest_s17_w12_legendary_ww_q2_obj0", + "count": 3500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_12" + }, + { + "itemGuid": "S17-Quest:quest_s17_w12_legendary_WW_q3", + "templateId": "Quest:quest_s17_w12_legendary_WW_q3", + "objectives": [ + { + "name": "quest_s17_w12_legendary_ww_q3_obj0", + "count": 15000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_12" + }, + { + "itemGuid": "S17-Quest:quest_s17_w13_legendary_WW_q1a", + "templateId": "Quest:quest_s17_w13_legendary_WW_q1a", + "objectives": [ + { + "name": "quest_s17_w13_legendary_ww_q1a_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_13" + }, + { + "itemGuid": "S17-Quest:quest_s17_w13_legendary_WW_q1b", + "templateId": "Quest:quest_s17_w13_legendary_WW_q1b", + "objectives": [ + { + "name": "quest_s17_w13_legendary_ww_q1b_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_13" + }, + { + "itemGuid": "S17-Quest:quest_s17_w13_legendary_WW_q2a", + "templateId": "Quest:quest_s17_w13_legendary_WW_q2a", + "objectives": [ + { + "name": "quest_s17_w13_legendary_ww_q2a_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_13" + }, + { + "itemGuid": "S17-Quest:quest_s17_w13_legendary_WW_q2b", + "templateId": "Quest:quest_s17_w13_legendary_WW_q2b", + "objectives": [ + { + "name": "quest_s17_w13_legendary_ww_q2b_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_13" + }, + { + "itemGuid": "S17-Quest:quest_s17_w13_legendary_WW_q3a", + "templateId": "Quest:quest_s17_w13_legendary_WW_q3a", + "objectives": [ + { + "name": "quest_s17_w13_legendary_ww_q3a_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_13" + }, + { + "itemGuid": "S17-Quest:quest_s17_w13_legendary_WW_q3b", + "templateId": "Quest:quest_s17_w13_legendary_WW_q3b", + "objectives": [ + { + "name": "quest_s17_w13_legendary_ww_q3b_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_13" + }, + { + "itemGuid": "S17-Quest:quest_s17_w14_legendary_WW_q1", + "templateId": "Quest:quest_s17_w14_legendary_WW_q1", + "objectives": [ + { + "name": "quest_s17_w14_legendary_ww_q1_obj0", + "count": 3000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_14" + }, + { + "itemGuid": "S17-Quest:quest_s17_w14_legendary_WW_q2", + "templateId": "Quest:quest_s17_w14_legendary_WW_q2", + "objectives": [ + { + "name": "quest_s17_w14_legendary_ww_q2_obj0", + "count": 15000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_14" + }, + { + "itemGuid": "S17-Quest:quest_s17_w14_legendary_WW_q3", + "templateId": "Quest:quest_s17_w14_legendary_WW_q3", + "objectives": [ + { + "name": "quest_s17_w14_legendary_ww_q3_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Legendary_WildWeek_14" + }, + { + "itemGuid": "S17-Quest:Quest_S17_Superlevel_q01", + "templateId": "Quest:Quest_S17_Superlevel_q01", + "objectives": [ + { + "name": "quest_s17_Superlevel_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S17-ChallengeBundle:QuestBundle_S17_Superlevel_01" + } + ] + }, + "Season18": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BFF_Event_Schedule", + "templateId": "ChallengeBundleSchedule:Season18_BFF_Event_Schedule", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Complete_BFF" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Birthday_Event_Schedule", + "templateId": "ChallengeBundleSchedule:Season18_Birthday_Event_Schedule", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Complete_Birthday" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BistroHunter_Cosmetic_Schedule", + "templateId": "ChallengeBundleSchedule:Season18_BistroHunter_Cosmetic_Schedule", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Complete_BistroHunter_Cosmetic" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Punchcard_Schedule_P1", + "templateId": "ChallengeBundleSchedule:Season18_BPHiddenCharacter_Punchcard_Schedule_P1", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page1" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Punchcard_Schedule_P2", + "templateId": "ChallengeBundleSchedule:Season18_BPHiddenCharacter_Punchcard_Schedule_P2", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page2" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_01", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_01" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_02", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_02" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_03", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_03" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_04", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_04" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_05", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_05" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_06", + "templateId": "ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_06", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_06" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_07", + "templateId": "ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_07", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_07" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_08", + "templateId": "ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_08", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_08" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_09", + "templateId": "ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_09", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_09" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_10", + "templateId": "ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_10", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_10" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Feat_BundleSchedule", + "templateId": "ChallengeBundleSchedule:Season18_Feat_BundleSchedule", + "granted_bundles": [ + "S18-ChallengeBundle:Season18_Feat_Bundle" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Fortnitemare_Event_Schedule", + "templateId": "ChallengeBundleSchedule:Season18_Fortnitemare_Event_Schedule", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Complete_Fortnitemare" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Fortnitemare_Event_Schedule_Hidden", + "templateId": "ChallengeBundleSchedule:Season18_Fortnitemare_Event_Schedule_Hidden", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Complete_Fortnitemare_Hidden" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_HordeRush_Schedule", + "templateId": "ChallengeBundleSchedule:Season18_HordeRush_Schedule", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Complete_HordeRush" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_01", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_01" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_02", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_02" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_03", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_03" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_04", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_04", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_04" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_05", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_05", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_05" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_06", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_06", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_06" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_07", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_07", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_07" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_08", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_08", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_08" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_09", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_09", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_09" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_10", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_10", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_10" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_11", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_11", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_11" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_12", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_12", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_12" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_13", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_13", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_13" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_14", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_14", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_14" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_15", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_15", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_15" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_16", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_16", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_16" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_17", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_17", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_17" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_18", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_18", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_18" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_19", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_19", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_19" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_20", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_20", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_20" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_21", + "templateId": "ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_21", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_21" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Punchard_York_Event_Schedule", + "templateId": "ChallengeBundleSchedule:Season18_Punchard_York_Event_Schedule", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_Event_S18_Complete_York_York" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Punchard_York_Schedule", + "templateId": "ChallengeBundleSchedule:Season18_Punchard_York_Schedule", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Complete_York_York" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule", + "templateId": "ChallengeBundleSchedule:Season18_Punchcard_Schedule", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Complete_BabaYaga_NewBrew", + "S18-ChallengeBundle:QuestBundle_S18_Complete_CerealBox_PartyLocale", + "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_SpookyStory", + "S18-ChallengeBundle:QuestBundle_S18_Complete_Division_SniperElite", + "S18-ChallengeBundle:QuestBundle_S18_Complete_Dusk_VampireCombat", + "S18-ChallengeBundle:QuestBundle_S18_Complete_GhostHunter_MonsterResearch", + "S18-ChallengeBundle:QuestBundle_S18_Complete_Kitbash_MakingFriends", + "S18-ChallengeBundle:QuestBundle_S18_Complete_Madcap_MushroomMaster", + "S18-ChallengeBundle:QuestBundle_S18_Complete_Penny_BuildPassion", + "S18-ChallengeBundle:QuestBundle_S18_Complete_Pitstop_StuntTraining", + "S18-ChallengeBundle:QuestBundle_S18_Complete_PunkKoi_IOHeist", + "S18-ChallengeBundle:QuestBundle_S18_Complete_ScubaJonesy_SurfTurf", + "S18-ChallengeBundle:QuestBundle_S18_Complete_TeriyakiFish_ScarredExploration", + "S18-ChallengeBundle:QuestBundle_S18_Complete_TheBrat_HotDog", + "S18-ChallengeBundle:QuestBundle_S18_Complete_Wrath_EscapedTenant", + "S18-ChallengeBundle:QuestBundle_S18_Complete_SpaceChimpSuit_WarEffort", + "S18-ChallengeBundle:QuestBundle_S18_Complete_GrimFable_WolfActivity", + "S18-ChallengeBundle:QuestBundle_S18_Complete_BigMouth_ToothAche", + "S18-ChallengeBundle:QuestBundle_S18_Complete_Nitehare_HopAwake", + "S18-ChallengeBundle:QuestBundle_S18_Complete_Raven_DarkSkies", + "S18-ChallengeBundle:QuestBundle_S18_Complete_Dire_WolfPack", + "S18-ChallengeBundle:QuestBundle_S18_Complete_Ragsy_ShieldTechniques", + "S18-ChallengeBundle:QuestBundle_S18_Complete_BistroAstronaut_MonsterHunter", + "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_TheOracleSpeaks", + "S18-ChallengeBundle:QuestBundle_S18_Complete_Ember_FireYoga", + "S18-ChallengeBundle:QuestBundle_S18_Complete_Sledgehammer_BattleOrders", + "S18-ChallengeBundle:QuestBundle_S18_Complete_ShadowOps_ImpromptuTactical", + "S18-ChallengeBundle:QuestBundle_S18_Complete_RustLord_ScrapKing", + "S18-ChallengeBundle:QuestBundle_S18_Complete_HeadbandK_FortJutsu" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule", + "templateId": "ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_07", + "templateId": "ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_07", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_07" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_08", + "templateId": "ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_08", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_08" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_09", + "templateId": "ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_09", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_09" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_10", + "templateId": "ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_10", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_10" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_11", + "templateId": "ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_11", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_11" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_12", + "templateId": "ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_12", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_12" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_1821", + "templateId": "ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_1821", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_1821" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk", + "templateId": "ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_01", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_02", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_03", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_04", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_05", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_06", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_07", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_08", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_09", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_10", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_11", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_12", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_13", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_14", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_15", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_16", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_17", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_18", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_19", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_20", + "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_21" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Soundwave_Event_Schedule", + "templateId": "ChallengeBundleSchedule:Season18_Soundwave_Event_Schedule", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_Event_S18_Soundwave" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Superlevels_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season18_Superlevels_Schedule_01", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_Superlevel_01" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_Textile_Event_Schedule", + "templateId": "ChallengeBundleSchedule:Season18_Textile_Event_Schedule", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_Event_S18_Textile" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_WildWeeks_01_Schedule", + "templateId": "ChallengeBundleSchedule:Season18_WildWeeks_01_Schedule", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_01" + ] + }, + { + "itemGuid": "S18-ChallengeBundleSchedule:Season18_WildWeeks_02_Schedule", + "templateId": "ChallengeBundleSchedule:Season18_WildWeeks_02_Schedule", + "granted_bundles": [ + "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_02" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_BFF", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_BFF", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_Complete_BFF_Event" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BFF_Event_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Birthday", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Birthday", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_Complete_Event_4thBirthday_q01", + "S18-Quest:quest_s18_Complete_Event_4thBirthday_q02", + "S18-Quest:quest_s18_Complete_Event_4thBirthday_q03" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Birthday_Event_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_BistroHunter_Cosmetic", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_BistroHunter_Cosmetic", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_Complete_BistroHunter_Cosmetic" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BistroHunter_Cosmetic_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page1", + "templateId": "ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page1", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q01", + "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q02", + "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q03", + "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q04", + "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Punchcard_Schedule_P1" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page2", + "templateId": "ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page2", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q06", + "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q07", + "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q08", + "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q09", + "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q10" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Punchcard_Schedule_P2" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_01", + "templateId": "ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_01", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_BPHiddenCharacter_q01" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_01" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_02", + "templateId": "ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_02", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_BPHiddenCharacter_q02" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_02" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_03", + "templateId": "ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_03", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_BPHiddenCharacter_q03" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_03" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_04", + "templateId": "ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_04", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_BPHiddenCharacter_q04" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_04" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_05", + "templateId": "ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_05", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_BPHiddenCharacter_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_05" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_06", + "templateId": "ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_06", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_BPHiddenCharacter_q06" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_06" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_07", + "templateId": "ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_07", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_BPHiddenCharacter_q07" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_07" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_08", + "templateId": "ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_08", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_BPHiddenCharacter_q08" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_08" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_09", + "templateId": "ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_09", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_BPHiddenCharacter_q09" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_09" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_10", + "templateId": "ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_10", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_BPHiddenCharacter_q10" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_BPHiddenCharacter_Schedule_10" + }, + { + "itemGuid": "S18-ChallengeBundle:Season18_Feat_Bundle", + "templateId": "ChallengeBundle:Season18_Feat_Bundle", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_feat_land_firsttime", + "S18-Quest:quest_s18_feat_athenarank_solo_1x", + "S18-Quest:quest_s18_feat_athenarank_solo_10x", + "S18-Quest:quest_s18_feat_athenarank_solo_100x", + "S18-Quest:quest_s18_feat_athenarank_solo_10elims", + "S18-Quest:quest_s18_feat_athenarank_duo_1x", + "S18-Quest:quest_s18_feat_athenarank_duo_10x", + "S18-Quest:quest_s18_feat_athenarank_duo_100x", + "S18-Quest:quest_s18_feat_athenarank_trios_1x", + "S18-Quest:quest_s18_feat_athenarank_trios_10x", + "S18-Quest:quest_s18_feat_athenarank_trios_100x", + "S18-Quest:quest_s18_feat_athenarank_squad_1x", + "S18-Quest:quest_s18_feat_athenarank_squad_10x", + "S18-Quest:quest_s18_feat_athenarank_squad_100x", + "S18-Quest:quest_s18_feat_athenarank_rumble_1x", + "S18-Quest:quest_s18_feat_athenarank_rumble_100x", + "S18-Quest:quest_s18_feat_kill_yeet", + "S18-Quest:quest_s18_feat_kill_pickaxe", + "S18-Quest:quest_s18_feat_kill_aftersupplydrop", + "S18-Quest:quest_s18_feat_kill_gliding", + "S18-Quest:quest_s18_feat_throw_consumable", + "S18-Quest:quest_s18_feat_accolade_weaponspecialist__samematch_2", + "S18-Quest:quest_s18_feat_accolade_weaponspecialist__samematch_3", + "S18-Quest:quest_s18_feat_accolade_weaponspecialist__samematch_4", + "S18-Quest:quest_s18_feat_accolade_weaponspecialist__samematch_5", + "S18-Quest:quest_s18_feat_accolade_weaponspecialist__samematch_6", + "S18-Quest:quest_s18_feat_accolade_weaponspecialist__samematch_7", + "S18-Quest:quest_s18_feat_accolade_expert_explosives", + "S18-Quest:quest_s18_feat_accolade_expert_pistol", + "S18-Quest:quest_s18_feat_accolade_expert_smg", + "S18-Quest:quest_s18_feat_accolade_expert_pickaxe", + "S18-Quest:quest_s18_feat_accolade_expert_shotgun", + "S18-Quest:quest_s18_feat_accolade_expert_ar", + "S18-Quest:quest_s18_feat_accolade_expert_sniper", + "S18-Quest:quest_s18_feat_reach_seasonlevel", + "S18-Quest:quest_s18_feat_athenacollection_fish", + "S18-Quest:quest_s18_feat_athenacollection_npc", + "S18-Quest:quest_s18_feat_kill_bounty", + "S18-Quest:quest_s18_feat_spend_goldbars", + "S18-Quest:quest_s18_feat_collect_goldbars", + "S18-Quest:quest_s18_feat_craft_weapon", + "S18-Quest:quest_s18_feat_kill_creature", + "S18-Quest:quest_s18_feat_defend_bounty", + "S18-Quest:quest_s18_feat_evade_bounty", + "S18-Quest:quest_s18_feat_poach_bounty", + "S18-Quest:quest_s18_feat_kill_goldfish", + "S18-Quest:quest_s18_feat_death_goldfish", + "S18-Quest:quest_s18_feat_caught_goldfish" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Feat_BundleSchedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Fortnitemare", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Fortnitemare", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_Complete_Event_Fortnitemare_q01", + "S18-Quest:quest_s18_Complete_Event_Fortnitemare_q02", + "S18-Quest:quest_s18_Complete_Event_Fortnitemare_q03", + "S18-Quest:quest_s18_Complete_DarkJonesy_Oracle", + "S18-Quest:quest_s18_Complete_Bistro_MonsterHunter" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Fortnitemare_Event_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Fortnitemare_Hidden", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Fortnitemare_Hidden", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_Event_Fortnitemares_Hidden" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Fortnitemare_Event_Schedule_Hidden" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_HordeRush", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_HordeRush", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_Complete_HordeRush_Quests", + "S18-Quest:quest_s18_Complete_HordeRush_TeamScore", + "S18-Quest:quest_s18_Complete_HordeRush_TeamPoints" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_HordeRush_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_01", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_01", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_01" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_01" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_02", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_02", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_02" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_02" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_03", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_03", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_03" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_03" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_04", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_04", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_04" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_04" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_05", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_05", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_05" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_06", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_06", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_06" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_06" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_07", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_07", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_07" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_07" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_08", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_08", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_08" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_08" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_09", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_09", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_09" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_09" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_10", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_10", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_10" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_10" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_11", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_11", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_11" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_11" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_12", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_12", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_12" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_12" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_13", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_13", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_13" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_13" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_14", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_14", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_14" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_14" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_15", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_15", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_15" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_15" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_16", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_16", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_16" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_16" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_17", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_17", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_17" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_17" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_18", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_18", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_18" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_18" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_19", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_19", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_19" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_19" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_20", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_20", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_20" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_20" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_21", + "templateId": "ChallengeBundle:QuestBundle_S18_MilestoneStyle_21", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_milestonestyle_21" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_MilestoneStyle_Schedule_21" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Event_S18_Complete_York_York", + "templateId": "ChallengeBundle:QuestBundle_Event_S18_Complete_York_York", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_Complete_York_York" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchard_York_Event_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_York_York", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_York_York", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_York_York_q01", + "S18-Quest:S18_Complete_York_York_q02", + "S18-Quest:S18_Complete_York_York_q03", + "S18-Quest:S18_Complete_York_York_q04", + "S18-Quest:S18_Complete_York_York_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchard_York_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_BabaYaga_NewBrew", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_BabaYaga_NewBrew", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_BabaYaga_NewBrew_q01", + "S18-Quest:S18_Complete_BabaYaga_NewBrew_q02", + "S18-Quest:S18_Complete_BabaYaga_NewBrew_q03", + "S18-Quest:S18_Complete_BabaYaga_NewBrew_q04", + "S18-Quest:S18_Complete_BabaYaga_NewBrew_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_BigMouth_ToothAche", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_BigMouth_ToothAche", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_BigMouth_ToothAche_q01", + "S18-Quest:S18_Complete_BigMouth_ToothAche_q02", + "S18-Quest:S18_Complete_BigMouth_ToothAche_q03", + "S18-Quest:S18_Complete_BigMouth_ToothAche_q04", + "S18-Quest:S18_Complete_BigMouth_ToothAche_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_BistroAstronaut_MonsterHunter", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_BistroAstronaut_MonsterHunter", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_BistroAstronaut_MonsterHunter_q01", + "S18-Quest:S18_Complete_BistroAstronaut_MonsterHunter_q02", + "S18-Quest:S18_Complete_BistroAstronaut_MonsterHunter_q03", + "S18-Quest:S18_Complete_BistroAstronaut_MonsterHunter_q04", + "S18-Quest:S18_Complete_BistroAstronaut_MonsterHunter_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_CerealBox_PartyLocale", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_CerealBox_PartyLocale", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_CerealBox_PartyLocale_q01", + "S18-Quest:S18_Complete_CerealBox_PartyLocale_q02", + "S18-Quest:S18_Complete_CerealBox_PartyLocale_q03", + "S18-Quest:S18_Complete_CerealBox_PartyLocale_q04", + "S18-Quest:S18_Complete_CerealBox_PartyLocale_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_SpookyStory", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_SpookyStory", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_DarkJonesy_SpookyStory_q01", + "S18-Quest:S18_Complete_DarkJonesy_SpookyStory_q02", + "S18-Quest:S18_Complete_DarkJonesy_SpookyStory_q03", + "S18-Quest:S18_Complete_DarkJonesy_SpookyStory_q04", + "S18-Quest:S18_Complete_DarkJonesy_SpookyStory_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_TheOracleSpeaks", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_TheOracleSpeaks", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q01", + "S18-Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q02", + "S18-Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q03", + "S18-Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q04", + "S18-Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Dire_WolfPack", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Dire_WolfPack", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_Dire_WolfPack_q01", + "S18-Quest:S18_Complete_Dire_WolfPack_q02", + "S18-Quest:S18_Complete_Dire_WolfPack_q03", + "S18-Quest:S18_Complete_Dire_WolfPack_q04", + "S18-Quest:S18_Complete_Dire_WolfPack_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Division_SniperElite", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Division_SniperElite", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_Division_SniperElite_q01", + "S18-Quest:S18_Complete_Division_SniperElite_q02", + "S18-Quest:S18_Complete_Division_SniperElite_q03", + "S18-Quest:S18_Complete_Division_SniperElite_q04", + "S18-Quest:S18_Complete_Division_SniperElite_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Dusk_VampireCombat", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Dusk_VampireCombat", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_Dusk_VampireCombat_q01", + "S18-Quest:S18_Complete_Dusk_VampireCombat_q02", + "S18-Quest:S18_Complete_Dusk_VampireCombat_q03", + "S18-Quest:S18_Complete_Dusk_VampireCombat_q04", + "S18-Quest:S18_Complete_Dusk_VampireCombat_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Ember_FireYoga", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Ember_FireYoga", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_Ember_FireYoga_q01", + "S18-Quest:S18_Complete_Ember_FireYoga_q02", + "S18-Quest:S18_Complete_Ember_FireYoga_q03", + "S18-Quest:S18_Complete_Ember_FireYoga_q04", + "S18-Quest:S18_Complete_Ember_FireYoga_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_GhostHunter_MonsterResearch", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_GhostHunter_MonsterResearch", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_GhostHunter_MonsterResearch_q01", + "S18-Quest:S18_Complete_GhostHunter_MonsterResearch_q02", + "S18-Quest:S18_Complete_GhostHunter_MonsterResearch_q03", + "S18-Quest:S18_Complete_GhostHunter_MonsterResearch_q04", + "S18-Quest:S18_Complete_GhostHunter_MonsterResearch_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_GrimFable_WolfActivity", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_GrimFable_WolfActivity", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_GrimFable_WolfActivity_q01", + "S18-Quest:S18_Complete_GrimFable_WolfActivity_q02", + "S18-Quest:S18_Complete_GrimFable_WolfActivity_q03", + "S18-Quest:S18_Complete_GrimFable_WolfActivity_q04", + "S18-Quest:S18_Complete_GrimFable_WolfActivity_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_HeadbandK_FortJutsu", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_HeadbandK_FortJutsu", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_HeadbandK_FortJutsu_q01", + "S18-Quest:S18_Complete_HeadbandK_FortJutsu_q02", + "S18-Quest:S18_Complete_HeadbandK_FortJutsu_q03", + "S18-Quest:S18_Complete_HeadbandK_FortJutsu_q04", + "S18-Quest:S18_Complete_HeadbandK_FortJutsu_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Kitbash_MakingFriends", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Kitbash_MakingFriends", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_Kitbash_MakingFriends_q01", + "S18-Quest:S18_Complete_Kitbash_MakingFriends_q02", + "S18-Quest:S18_Complete_Kitbash_MakingFriends_q03", + "S18-Quest:S18_Complete_Kitbash_MakingFriends_q04", + "S18-Quest:S18_Complete_Kitbash_MakingFriends_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Madcap_MushroomMaster", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Madcap_MushroomMaster", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_Madcap_MushroomMaster_q01", + "S18-Quest:S18_Complete_Madcap_MushroomMaster_q02", + "S18-Quest:S18_Complete_Madcap_MushroomMaster_q03", + "S18-Quest:S18_Complete_Madcap_MushroomMaster_q04", + "S18-Quest:S18_Complete_Madcap_MushroomMaster_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Nitehare_HopAwake", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Nitehare_HopAwake", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_Nitehare_HopAwake_q01", + "S18-Quest:S18_Complete_Nitehare_HopAwake_q02", + "S18-Quest:S18_Complete_Nitehare_HopAwake_q03", + "S18-Quest:S18_Complete_Nitehare_HopAwake_q04", + "S18-Quest:S18_Complete_Nitehare_HopAwake_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Penny_BuildPassion", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Penny_BuildPassion", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_Penny_BuildPassion_q01", + "S18-Quest:S18_Complete_Penny_BuildPassion_q02", + "S18-Quest:S18_Complete_Penny_BuildPassion_q03", + "S18-Quest:S18_Complete_Penny_BuildPassion_q04", + "S18-Quest:S18_Complete_Penny_BuildPassion_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Pitstop_StuntTraining", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Pitstop_StuntTraining", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_Pitstop_StuntTraining_q01", + "S18-Quest:S18_Complete_Pitstop_StuntTraining_q02", + "S18-Quest:S18_Complete_Pitstop_StuntTraining_q03", + "S18-Quest:S18_Complete_Pitstop_StuntTraining_q04", + "S18-Quest:S18_Complete_Pitstop_StuntTraining_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_PunkKoi_IOHeist", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_PunkKoi_IOHeist", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_PunkKoi_IOHeist_q01", + "S18-Quest:S18_Complete_PunkKoi_IOHeist_q02", + "S18-Quest:S18_Complete_PunkKoi_IOHeist_q03", + "S18-Quest:S18_Complete_PunkKoi_IOHeist_q04", + "S18-Quest:S18_Complete_PunkKoi_IOHeist_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Ragsy_ShieldTechniques", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Ragsy_ShieldTechniques", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_Ragsy_ShieldTechniques_q01", + "S18-Quest:S18_Complete_Ragsy_ShieldTechniques_q02", + "S18-Quest:S18_Complete_Ragsy_ShieldTechniques_q03", + "S18-Quest:S18_Complete_Ragsy_ShieldTechniques_q04", + "S18-Quest:S18_Complete_Ragsy_ShieldTechniques_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Raven_DarkSkies", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Raven_DarkSkies", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_Raven_DarkSkies_q01", + "S18-Quest:S18_Complete_Raven_DarkSkies_q02", + "S18-Quest:S18_Complete_Raven_DarkSkies_q03", + "S18-Quest:S18_Complete_Raven_DarkSkies_q04", + "S18-Quest:S18_Complete_Raven_DarkSkies_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_RustLord_ScrapKing", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_RustLord_ScrapKing", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_RustLord_ScrapKing_q01", + "S18-Quest:S18_Complete_RustLord_ScrapKing_q02", + "S18-Quest:S18_Complete_RustLord_ScrapKing_q03", + "S18-Quest:S18_Complete_RustLord_ScrapKing_q04", + "S18-Quest:S18_Complete_RustLord_ScrapKing_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_ScubaJonesy_SurfTurf", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_ScubaJonesy_SurfTurf", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_ScubaJonesy_SurfTurf_q01", + "S18-Quest:S18_Complete_ScubaJonesy_SurfTurf_q02", + "S18-Quest:S18_Complete_ScubaJonesy_SurfTurf_q03", + "S18-Quest:S18_Complete_ScubaJonesy_SurfTurf_q04", + "S18-Quest:S18_Complete_ScubaJonesy_SurfTurf_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_ShadowOps_ImpromptuTactical", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_ShadowOps_ImpromptuTactical", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_ShadowOps_ImpromptuTactical_q01", + "S18-Quest:S18_Complete_ShadowOps_ImpromptuTactical_q02", + "S18-Quest:S18_Complete_ShadowOps_ImpromptuTactical_q03", + "S18-Quest:S18_Complete_ShadowOps_ImpromptuTactical_q04", + "S18-Quest:S18_Complete_ShadowOps_ImpromptuTactical_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Sledgehammer_BattleOrders", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Sledgehammer_BattleOrders", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_Sledgehammer_BattleOrders_q01", + "S18-Quest:S18_Complete_Sledgehammer_BattleOrders_q02", + "S18-Quest:S18_Complete_Sledgehammer_BattleOrders_q03", + "S18-Quest:S18_Complete_Sledgehammer_BattleOrders_q04", + "S18-Quest:S18_Complete_Sledgehammer_BattleOrders_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_SpaceChimpSuit_WarEffort", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_SpaceChimpSuit_WarEffort", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_SpaceChimpSuit_WarEffort_q01", + "S18-Quest:S18_Complete_SpaceChimpSuit_WarEffort_q02", + "S18-Quest:S18_Complete_SpaceChimpSuit_WarEffort_q03", + "S18-Quest:S18_Complete_SpaceChimpSuit_WarEffort_q04", + "S18-Quest:S18_Complete_SpaceChimpSuit_WarEffort_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_TeriyakiFish_ScarredExploration", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_TeriyakiFish_ScarredExploration", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q01", + "S18-Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q02", + "S18-Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q03", + "S18-Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q04", + "S18-Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_TheBrat_HotDog", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_TheBrat_HotDog", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_TheBrat_HotDog_q01", + "S18-Quest:S18_Complete_TheBrat_HotDog_q02", + "S18-Quest:S18_Complete_TheBrat_HotDog_q03", + "S18-Quest:S18_Complete_TheBrat_HotDog_q04", + "S18-Quest:S18_Complete_TheBrat_HotDog_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Complete_Wrath_EscapedTenant", + "templateId": "ChallengeBundle:QuestBundle_S18_Complete_Wrath_EscapedTenant", + "grantedquestinstanceids": [ + "S18-Quest:S18_Complete_Wrath_EscapedTenant_q01", + "S18-Quest:S18_Complete_Wrath_EscapedTenant_q02", + "S18-Quest:S18_Complete_Wrath_EscapedTenant_q03", + "S18-Quest:S18_Complete_Wrath_EscapedTenant_q04", + "S18-Quest:S18_Complete_Wrath_EscapedTenant_q05" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Punchcard_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly", + "templateId": "ChallengeBundle:QuestBundle_S18_Repeatable_Weekly", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "S18-Quest:Quest_S18_Repeatable_PlaceTop10WithFriends", + "S18-Quest:Quest_S18_Repeatable_SpendGoldBars" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_07", + "templateId": "ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_07", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "S18-Quest:Quest_S18_Repeatable_SearchChests_q01", + "S18-Quest:Quest_S18_Repeatable_SearchChests_q02", + "S18-Quest:Quest_S18_Repeatable_SearchChests_q03", + "S18-Quest:Quest_S18_Repeatable_DealDamageAssaultRifles_q01", + "S18-Quest:Quest_S18_Repeatable_DealDamageAssaultRifles_q02", + "S18-Quest:Quest_S18_Repeatable_DealDamageAssaultRifles_q03" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_07" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_08", + "templateId": "ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_08", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "S18-Quest:Quest_S18_Repeatable_HarvestMaterials_q01", + "S18-Quest:Quest_S18_Repeatable_HarvestMaterials_q02", + "S18-Quest:Quest_S18_Repeatable_HarvestMaterials_q03", + "S18-Quest:Quest_S18_Repeatable_EliminatePlayers_q01", + "S18-Quest:Quest_S18_Repeatable_EliminatePlayers_q02", + "S18-Quest:Quest_S18_Repeatable_EliminatePlayers_q03" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_08" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_09", + "templateId": "ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_09", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "S18-Quest:Quest_S18_Repeatable_CatchFish_q01", + "S18-Quest:Quest_S18_Repeatable_CatchFish_q02", + "S18-Quest:Quest_S18_Repeatable_CatchFish_q03", + "S18-Quest:Quest_S18_Repeatable_PlaceTop10_q01", + "S18-Quest:Quest_S18_Repeatable_PlaceTop10_q02", + "S18-Quest:Quest_S18_Repeatable_PlaceTop10_q03" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_09" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_10", + "templateId": "ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_10", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "S18-Quest:Quest_S18_Repeatable_CraftWeapons_q01", + "S18-Quest:Quest_S18_Repeatable_CraftWeapons_q02", + "S18-Quest:Quest_S18_Repeatable_CraftWeapons_q03", + "S18-Quest:Quest_S18_Repeatable_DealDamageSMGs_q01", + "S18-Quest:Quest_S18_Repeatable_DealDamageSMGs_q02", + "S18-Quest:Quest_S18_Repeatable_DealDamageSMGs_q03" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_10" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_11", + "templateId": "ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_11", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "S18-Quest:Quest_S18_Repeatable_SearchAmmoBoxes_q01", + "S18-Quest:Quest_S18_Repeatable_SearchAmmoBoxes_q02", + "S18-Quest:Quest_S18_Repeatable_SearchAmmoBoxes_q03", + "S18-Quest:Quest_S18_Repeatable_DealDamagePistols_q01", + "S18-Quest:Quest_S18_Repeatable_DealDamagePistols_q02", + "S18-Quest:Quest_S18_Repeatable_DealDamagePistols_q03" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_11" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_12", + "templateId": "ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_12", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "S18-Quest:Quest_S18_Repeatable_DestroyOpponentStructures_q01", + "S18-Quest:Quest_S18_Repeatable_DestroyOpponentStructures_q02", + "S18-Quest:Quest_S18_Repeatable_DestroyOpponentStructures_q03", + "S18-Quest:Quest_S18_Repeatable_OutlastOpponents_q01", + "S18-Quest:Quest_S18_Repeatable_OutlastOpponents_q02", + "S18-Quest:Quest_S18_Repeatable_OutlastOpponents_q03" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_12" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_1821", + "templateId": "ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_1821", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "S18-Quest:Quest_S18_Repeatable_ThankTheBusDriver_q01", + "S18-Quest:Quest_S18_Repeatable_ThankTheBusDriver_q02", + "S18-Quest:Quest_S18_Repeatable_ThankTheBusDriver_q03", + "S18-Quest:Quest_S18_Repeatable_DealDamageShotguns_q01", + "S18-Quest:Quest_S18_Repeatable_DealDamageShotguns_q02", + "S18-Quest:Quest_S18_Repeatable_DealDamageShotguns_q03" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Repeatable_Weekly_Schedule_1821" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_01", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_01", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "S18-Quest:quest_s18_fishtoon_collectible_color01" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_02", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_02", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "S18-Quest:quest_s18_fishtoon_collectible_color02" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_03", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_03", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "S18-Quest:quest_s18_fishtoon_collectible_color03" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_04", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_04", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color04", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_05", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_05", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color05", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_06", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_06", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color06", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_07", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_07", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color07", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_08", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_08", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color08", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_09", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_09", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color09", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_10", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_10", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "S18-Quest:quest_s18_fishtoon_collectible_color10" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_11", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_11", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color11", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_12", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_12", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color12", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_13", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_13", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color13", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_14", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_14", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color14", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_15", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_15", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color15", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_16", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_16", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color16", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_17", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_17", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color17", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_18", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_18", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color18", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_19", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_19", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color19", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_20", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_20", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color20", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_21", + "templateId": "ChallengeBundle:QuestBundle_Collectible_FishtoonColor_21", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_fishtoon_collectible_color21", + "S18-Quest:quest_s18_fishtoon_collectible_prereq" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Schedule_Collectibles_FishtoonInk" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Event_S18_Soundwave", + "templateId": "ChallengeBundle:QuestBundle_Event_S18_Soundwave", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_soundwave" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Soundwave_Event_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_Superlevel_01", + "templateId": "ChallengeBundle:QuestBundle_S18_Superlevel_01", + "grantedquestinstanceids": [ + "S18-Quest:Quest_S18_Superlevel_q01" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Superlevels_Schedule_01" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_Event_S18_Textile", + "templateId": "ChallengeBundle:QuestBundle_Event_S18_Textile", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_textile_01", + "S18-Quest:quest_s18_textile_02" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_Textile_Event_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_01", + "templateId": "ChallengeBundle:QuestBundle_S18_WildWeeks_01", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_weekly_strikefromshadows_q01a", + "S18-Quest:quest_s18_weekly_strikefromshadows_q02a", + "S18-Quest:quest_s18_weekly_strikefromshadows_q01b", + "S18-Quest:quest_s18_weekly_strikefromshadows_q02b", + "S18-Quest:quest_s18_weekly_strikefromshadows_q01c", + "S18-Quest:quest_s18_weekly_strikefromshadows_q02c" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_WildWeeks_01_Schedule" + }, + { + "itemGuid": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_02", + "templateId": "ChallengeBundle:QuestBundle_S18_WildWeeks_02", + "grantedquestinstanceids": [ + "S18-Quest:quest_s18_Event_WildWeek2_01", + "S18-Quest:quest_s18_Event_WildWeek2_02", + "S18-Quest:quest_s18_Event_WildWeek2_03", + "S18-Quest:quest_s18_Event_WildWeek2_04", + "S18-Quest:quest_s18_Event_WildWeek2_05", + "S18-Quest:quest_s18_Event_WildWeek2_06" + ], + "challenge_bundle_schedule_id": "S18-ChallengeBundleSchedule:Season18_WildWeeks_02_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S18-Quest:quest_s18_Complete_BFF_Event", + "templateId": "Quest:quest_s18_Complete_BFF_Event", + "objectives": [ + { + "name": "quest_s18_Complete_BFF_Event_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BFF" + }, + { + "itemGuid": "S18-Quest:quest_s18_Complete_Event_4thBirthday_q01", + "templateId": "Quest:quest_s18_Complete_Event_4thBirthday_q01", + "objectives": [ + { + "name": "quest_s18_Complete_Event_4thBirthday_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Birthday" + }, + { + "itemGuid": "S18-Quest:quest_s18_Complete_Event_4thBirthday_q02", + "templateId": "Quest:quest_s18_Complete_Event_4thBirthday_q02", + "objectives": [ + { + "name": "quest_s18_Complete_Event_4thBirthday_q02_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Birthday" + }, + { + "itemGuid": "S18-Quest:quest_s18_Complete_Event_4thBirthday_q03", + "templateId": "Quest:quest_s18_Complete_Event_4thBirthday_q03", + "objectives": [ + { + "name": "quest_s18_Complete_Event_4thBirthday_q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Birthday" + }, + { + "itemGuid": "S18-Quest:quest_s18_Complete_BistroHunter_Cosmetic", + "templateId": "Quest:quest_s18_Complete_BistroHunter_Cosmetic", + "objectives": [ + { + "name": "quest_s18_Complete_BistroHunter_Cosmetic_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BistroHunter_Cosmetic" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q01", + "templateId": "Quest:S18_Complete_BPHiddenCharacter_Quests_q01", + "objectives": [ + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page1" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q02", + "templateId": "Quest:S18_Complete_BPHiddenCharacter_Quests_q02", + "objectives": [ + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page1" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q03", + "templateId": "Quest:S18_Complete_BPHiddenCharacter_Quests_q03", + "objectives": [ + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q03_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page1" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q04", + "templateId": "Quest:S18_Complete_BPHiddenCharacter_Quests_q04", + "objectives": [ + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page1" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q05", + "templateId": "Quest:S18_Complete_BPHiddenCharacter_Quests_q05", + "objectives": [ + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q05_obj0", + "count": 1 + }, + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q05_obj1", + "count": 1 + }, + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q05_obj2", + "count": 1 + }, + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q05_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page1" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q06", + "templateId": "Quest:S18_Complete_BPHiddenCharacter_Quests_q06", + "objectives": [ + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q06_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page2" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q07", + "templateId": "Quest:S18_Complete_BPHiddenCharacter_Quests_q07", + "objectives": [ + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page2" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q08", + "templateId": "Quest:S18_Complete_BPHiddenCharacter_Quests_q08", + "objectives": [ + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q08_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page2" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q09", + "templateId": "Quest:S18_Complete_BPHiddenCharacter_Quests_q09", + "objectives": [ + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q09_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page2" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BPHiddenCharacter_Quests_q10", + "templateId": "Quest:S18_Complete_BPHiddenCharacter_Quests_q10", + "objectives": [ + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q10_obj0", + "count": 1 + }, + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q10_obj1", + "count": 1 + }, + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q10_obj2", + "count": 1 + }, + { + "name": "S18_Complete_BPHiddenCharacter_Quests_q10_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_Punchcard_Page2" + }, + { + "itemGuid": "S18-Quest:Quest_S18_BPHiddenCharacter_q01", + "templateId": "Quest:Quest_S18_BPHiddenCharacter_q01", + "objectives": [ + { + "name": "Quest_S18_BPHiddenCharacter_q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_01" + }, + { + "itemGuid": "S18-Quest:Quest_S18_BPHiddenCharacter_q02", + "templateId": "Quest:Quest_S18_BPHiddenCharacter_q02", + "objectives": [ + { + "name": "Quest_S18_BPHiddenCharacter_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_02" + }, + { + "itemGuid": "S18-Quest:Quest_S18_BPHiddenCharacter_q03", + "templateId": "Quest:Quest_S18_BPHiddenCharacter_q03", + "objectives": [ + { + "name": "Quest_S18_BPHiddenCharacter_q03_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_03" + }, + { + "itemGuid": "S18-Quest:Quest_S18_BPHiddenCharacter_q04", + "templateId": "Quest:Quest_S18_BPHiddenCharacter_q04", + "objectives": [ + { + "name": "Quest_S18_BPHiddenCharacter_q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_04" + }, + { + "itemGuid": "S18-Quest:Quest_S18_BPHiddenCharacter_q05", + "templateId": "Quest:Quest_S18_BPHiddenCharacter_q05", + "objectives": [ + { + "name": "Quest_S18_BPHiddenCharacter_q05_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_05" + }, + { + "itemGuid": "S18-Quest:Quest_S18_BPHiddenCharacter_q06", + "templateId": "Quest:Quest_S18_BPHiddenCharacter_q06", + "objectives": [ + { + "name": "Quest_S18_BPHiddenCharacter_q06_obj0", + "count": 1 + }, + { + "name": "Quest_S18_BPHiddenCharacter_q06_obj1", + "count": 150 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_06" + }, + { + "itemGuid": "S18-Quest:Quest_S18_BPHiddenCharacter_q07", + "templateId": "Quest:Quest_S18_BPHiddenCharacter_q07", + "objectives": [ + { + "name": "Quest_S18_BPHiddenCharacter_q07_obj0", + "count": 1 + }, + { + "name": "Quest_S18_BPHiddenCharacter_q07_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_07" + }, + { + "itemGuid": "S18-Quest:Quest_S18_BPHiddenCharacter_q08", + "templateId": "Quest:Quest_S18_BPHiddenCharacter_q08", + "objectives": [ + { + "name": "Quest_S18_BPHiddenCharacter_q08_obj0", + "count": 1 + }, + { + "name": "Quest_S18_BPHiddenCharacter_q08_obj1", + "count": 2 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_08" + }, + { + "itemGuid": "S18-Quest:Quest_S18_BPHiddenCharacter_q09", + "templateId": "Quest:Quest_S18_BPHiddenCharacter_q09", + "objectives": [ + { + "name": "Quest_S18_BPHiddenCharacter_q09_obj0", + "count": 1 + }, + { + "name": "Quest_S18_BPHiddenCharacter_q09_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_09" + }, + { + "itemGuid": "S18-Quest:Quest_S18_BPHiddenCharacter_q10", + "templateId": "Quest:Quest_S18_BPHiddenCharacter_q10", + "objectives": [ + { + "name": "Quest_S18_BPHiddenCharacter_q10_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_BPHiddenCharacter_10" + }, + { + "itemGuid": "S18-Quest:quest_s18_Complete_Bistro_MonsterHunter", + "templateId": "Quest:quest_s18_Complete_Bistro_MonsterHunter", + "objectives": [ + { + "name": "quest_s18_Complete_Bistro_MonsterHunter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Fortnitemare" + }, + { + "itemGuid": "S18-Quest:quest_s18_Complete_DarkJonesy_Oracle", + "templateId": "Quest:quest_s18_Complete_DarkJonesy_Oracle", + "objectives": [ + { + "name": "quest_s18_Complete_DarkJonesy_Oracle_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Fortnitemare" + }, + { + "itemGuid": "S18-Quest:quest_s18_Complete_Event_Fortnitemare_q01", + "templateId": "Quest:quest_s18_Complete_Event_Fortnitemare_q01", + "objectives": [ + { + "name": "quest_s18_Complete_Event_Fortnitemare_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Fortnitemare" + }, + { + "itemGuid": "S18-Quest:quest_s18_Complete_Event_Fortnitemare_q02", + "templateId": "Quest:quest_s18_Complete_Event_Fortnitemare_q02", + "objectives": [ + { + "name": "quest_s18_Complete_Event_Fortnitemare_q02_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Fortnitemare" + }, + { + "itemGuid": "S18-Quest:quest_s18_Complete_Event_Fortnitemare_q03", + "templateId": "Quest:quest_s18_Complete_Event_Fortnitemare_q03", + "objectives": [ + { + "name": "quest_s18_Complete_Event_Fortnitemare_q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Fortnitemare" + }, + { + "itemGuid": "S18-Quest:quest_s18_Event_Fortnitemares_Hidden", + "templateId": "Quest:quest_s18_Event_Fortnitemares_Hidden", + "objectives": [ + { + "name": "quest_s18_Event_Fortnitemares_hidden_obj0", + "count": 1 + }, + { + "name": "quest_s18_Event_Fortnitemares_hidden_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Fortnitemare_Hidden" + }, + { + "itemGuid": "S18-Quest:quest_s18_Complete_HordeRush_Quests", + "templateId": "Quest:quest_s18_Complete_HordeRush_Quests", + "objectives": [ + { + "name": "quest_s18_Complete_HordeRush_Quests_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_HordeRush" + }, + { + "itemGuid": "S18-Quest:quest_s18_Complete_HordeRush_TeamPoints", + "templateId": "Quest:quest_s18_Complete_HordeRush_TeamPoints", + "objectives": [ + { + "name": "quest_s18_Complete_HordeRush_TeamPoints_obj0", + "count": 2000000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_HordeRush" + }, + { + "itemGuid": "S18-Quest:quest_s18_Complete_HordeRush_TeamScore", + "templateId": "Quest:quest_s18_Complete_HordeRush_TeamScore", + "objectives": [ + { + "name": "quest_s18_Complete_HordeRush_TeamScore_obj0", + "count": 400000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_HordeRush" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_01", + "templateId": "Quest:quest_s18_milestonestyle_01", + "objectives": [ + { + "name": "quest_s18_milestonestyle_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_01" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_02", + "templateId": "Quest:quest_s18_milestonestyle_02", + "objectives": [ + { + "name": "quest_s18_milestonestyle_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_02" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_03", + "templateId": "Quest:quest_s18_milestonestyle_03", + "objectives": [ + { + "name": "quest_s18_milestonestyle_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_03" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_04", + "templateId": "Quest:quest_s18_milestonestyle_04", + "objectives": [ + { + "name": "quest_s18_milestonestyle_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_04" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_05", + "templateId": "Quest:quest_s18_milestonestyle_05", + "objectives": [ + { + "name": "quest_s18_milestonestyle_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_05" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_06", + "templateId": "Quest:quest_s18_milestonestyle_06", + "objectives": [ + { + "name": "quest_s18_milestonestyle_06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_06" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_07", + "templateId": "Quest:quest_s18_milestonestyle_07", + "objectives": [ + { + "name": "quest_s18_milestonestyle_07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_07" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_08", + "templateId": "Quest:quest_s18_milestonestyle_08", + "objectives": [ + { + "name": "quest_s18_milestonestyle_08_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_08" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_09", + "templateId": "Quest:quest_s18_milestonestyle_09", + "objectives": [ + { + "name": "quest_s18_milestonestyle_09_obj0", + "count": 3000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_09" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_10", + "templateId": "Quest:quest_s18_milestonestyle_10", + "objectives": [ + { + "name": "quest_s18_milestonestyle_10_obj0", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj1", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj2", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj3", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj4", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj5", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj6", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj7", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj8", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj9", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj10", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj11", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj12", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj13", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj14", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj15", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj16", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj17", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj18", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj19", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj20", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj21", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj22", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj23", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj24", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj25", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj26", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj27", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj28", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj29", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj30", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj31", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj32", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj33", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj34", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj35", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj36", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj37", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj38", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj39", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj40", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj41", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj42", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj43", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj44", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj45", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj46", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj47", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj48", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj49", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj50", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj51", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj52", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj53", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj54", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj55", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj56", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj57", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj58", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj59", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj60", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj61", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj62", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj63", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj64", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj65", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj66", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj67", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj68", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj69", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj70", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj71", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj72", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj73", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj74", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj75", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj76", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj77", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj78", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj79", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj80", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj81", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj82", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj83", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj84", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj85", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj86", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_10_obj87", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_10" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_11", + "templateId": "Quest:quest_s18_milestonestyle_11", + "objectives": [ + { + "name": "quest_s18_milestonestyle_11_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_11" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_12", + "templateId": "Quest:quest_s18_milestonestyle_12", + "objectives": [ + { + "name": "quest_s18_milestonestyle_12_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_12" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_13", + "templateId": "Quest:quest_s18_milestonestyle_13", + "objectives": [ + { + "name": "quest_s18_milestonestyle_13_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_13" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_14", + "templateId": "Quest:quest_s18_milestonestyle_14", + "objectives": [ + { + "name": "quest_s18_milestonestyle_14_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_14" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_15", + "templateId": "Quest:quest_s18_milestonestyle_15", + "objectives": [ + { + "name": "quest_s18_milestonestyle_15_obj0", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj1", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj2", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj3", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj4", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj5", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj6", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj7", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj8", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj9", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj10", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj11", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj12", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj13", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj14", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj15", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj16", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj17", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj18", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj19", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj20", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj21", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj22", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj23", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj24", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj25", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj26", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj27", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_15_obj28", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_15" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_16", + "templateId": "Quest:quest_s18_milestonestyle_16", + "objectives": [ + { + "name": "quest_s18_milestonestyle_16_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_16" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_17", + "templateId": "Quest:quest_s18_milestonestyle_17", + "objectives": [ + { + "name": "quest_s18_milestonestyle_17_obj0", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_17_obj1", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_17_obj2", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_17_obj3", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_17_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_17" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_18", + "templateId": "Quest:quest_s18_milestonestyle_18", + "objectives": [ + { + "name": "quest_s18_milestonestyle_18_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_18" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_19", + "templateId": "Quest:quest_s18_milestonestyle_19", + "objectives": [ + { + "name": "quest_s18_milestonestyle_19_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_19" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_20", + "templateId": "Quest:quest_s18_milestonestyle_20", + "objectives": [ + { + "name": "quest_s18_milestonestyle_20_obj0", + "count": 21 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_20" + }, + { + "itemGuid": "S18-Quest:quest_s18_milestonestyle_21", + "templateId": "Quest:quest_s18_milestonestyle_21", + "objectives": [ + { + "name": "quest_s18_milestonestyle_21_obj0", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj1", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj2", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj3", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj4", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj5", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj6", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj7", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj8", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj9", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj10", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj11", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj12", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj13", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj14", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj15", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj16", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj17", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj18", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj19", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj20", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj21", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj22", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj23", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj24", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj25", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj26", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj27", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj28", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj29", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj30", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj31", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj32", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj33", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj34", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj35", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj36", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj37", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj38", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj39", + "count": 1 + }, + { + "name": "quest_s18_milestonestyle_21_obj40", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_MilestoneStyle_21" + }, + { + "itemGuid": "S18-Quest:quest_s18_Complete_York_York", + "templateId": "Quest:quest_s18_Complete_York_York", + "objectives": [ + { + "name": "quest_s18_Complete_York_York_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Event_S18_Complete_York_York" + }, + { + "itemGuid": "S18-Quest:S18_Complete_York_York_q01", + "templateId": "Quest:S18_Complete_York_York_q01", + "objectives": [ + { + "name": "S18_Complete_York_York_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_York_York" + }, + { + "itemGuid": "S18-Quest:S18_Complete_York_York_q02", + "templateId": "Quest:S18_Complete_York_York_q02", + "objectives": [ + { + "name": "S18_Complete_York_York_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_York_York" + }, + { + "itemGuid": "S18-Quest:S18_Complete_York_York_q03", + "templateId": "Quest:S18_Complete_York_York_q03", + "objectives": [ + { + "name": "S18_Complete_York_York_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_York_York" + }, + { + "itemGuid": "S18-Quest:S18_Complete_York_York_q04", + "templateId": "Quest:S18_Complete_York_York_q04", + "objectives": [ + { + "name": "S18_Complete_York_York_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_York_York" + }, + { + "itemGuid": "S18-Quest:S18_Complete_York_York_q05", + "templateId": "Quest:S18_Complete_York_York_q05", + "objectives": [ + { + "name": "S18_Complete_York_York_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_York_York" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BabaYaga_NewBrew_q01", + "templateId": "Quest:S18_Complete_BabaYaga_NewBrew_q01", + "objectives": [ + { + "name": "S18_Complete_BabaYaga_NewBrew_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BabaYaga_NewBrew" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BabaYaga_NewBrew_q02", + "templateId": "Quest:S18_Complete_BabaYaga_NewBrew_q02", + "objectives": [ + { + "name": "S18_Complete_BabaYaga_NewBrew_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BabaYaga_NewBrew" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BabaYaga_NewBrew_q03", + "templateId": "Quest:S18_Complete_BabaYaga_NewBrew_q03", + "objectives": [ + { + "name": "S18_Complete_BabaYaga_NewBrew_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BabaYaga_NewBrew" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BabaYaga_NewBrew_q04", + "templateId": "Quest:S18_Complete_BabaYaga_NewBrew_q04", + "objectives": [ + { + "name": "S18_Complete_BabaYaga_NewBrew_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BabaYaga_NewBrew" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BabaYaga_NewBrew_q05", + "templateId": "Quest:S18_Complete_BabaYaga_NewBrew_q05", + "objectives": [ + { + "name": "S18_Complete_BabaYaga_NewBrew_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BabaYaga_NewBrew" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BigMouth_ToothAche_q01", + "templateId": "Quest:S18_Complete_BigMouth_ToothAche_q01", + "objectives": [ + { + "name": "S18_Complete_BigMouth_ToothAche_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BigMouth_ToothAche" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BigMouth_ToothAche_q02", + "templateId": "Quest:S18_Complete_BigMouth_ToothAche_q02", + "objectives": [ + { + "name": "S18_Complete_BigMouth_ToothAche_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BigMouth_ToothAche" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BigMouth_ToothAche_q03", + "templateId": "Quest:S18_Complete_BigMouth_ToothAche_q03", + "objectives": [ + { + "name": "S18_Complete_BigMouth_ToothAche_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BigMouth_ToothAche" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BigMouth_ToothAche_q04", + "templateId": "Quest:S18_Complete_BigMouth_ToothAche_q04", + "objectives": [ + { + "name": "S18_Complete_BigMouth_ToothAche_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BigMouth_ToothAche" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BigMouth_ToothAche_q05", + "templateId": "Quest:S18_Complete_BigMouth_ToothAche_q05", + "objectives": [ + { + "name": "S18_Complete_BigMouth_ToothAche_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BigMouth_ToothAche" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BistroAstronaut_MonsterHunter_q01", + "templateId": "Quest:S18_Complete_BistroAstronaut_MonsterHunter_q01", + "objectives": [ + { + "name": "S18_Complete_BistroAstronaut_MonsterHunter_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BistroAstronaut_MonsterHunter" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BistroAstronaut_MonsterHunter_q02", + "templateId": "Quest:S18_Complete_BistroAstronaut_MonsterHunter_q02", + "objectives": [ + { + "name": "S18_Complete_BistroAstronaut_MonsterHunter_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BistroAstronaut_MonsterHunter" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BistroAstronaut_MonsterHunter_q03", + "templateId": "Quest:S18_Complete_BistroAstronaut_MonsterHunter_q03", + "objectives": [ + { + "name": "S18_Complete_BistroAstronaut_MonsterHunter_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BistroAstronaut_MonsterHunter" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BistroAstronaut_MonsterHunter_q04", + "templateId": "Quest:S18_Complete_BistroAstronaut_MonsterHunter_q04", + "objectives": [ + { + "name": "S18_Complete_BistroAstronaut_MonsterHunter_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BistroAstronaut_MonsterHunter" + }, + { + "itemGuid": "S18-Quest:S18_Complete_BistroAstronaut_MonsterHunter_q05", + "templateId": "Quest:S18_Complete_BistroAstronaut_MonsterHunter_q05", + "objectives": [ + { + "name": "S18_Complete_BistroAstronaut_MonsterHunter_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_BistroAstronaut_MonsterHunter" + }, + { + "itemGuid": "S18-Quest:S18_Complete_CerealBox_PartyLocale_q01", + "templateId": "Quest:S18_Complete_CerealBox_PartyLocale_q01", + "objectives": [ + { + "name": "S18_Complete_CerealBox_PartyLocale_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_CerealBox_PartyLocale" + }, + { + "itemGuid": "S18-Quest:S18_Complete_CerealBox_PartyLocale_q02", + "templateId": "Quest:S18_Complete_CerealBox_PartyLocale_q02", + "objectives": [ + { + "name": "S18_Complete_CerealBox_PartyLocale_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_CerealBox_PartyLocale" + }, + { + "itemGuid": "S18-Quest:S18_Complete_CerealBox_PartyLocale_q03", + "templateId": "Quest:S18_Complete_CerealBox_PartyLocale_q03", + "objectives": [ + { + "name": "S18_Complete_CerealBox_PartyLocale_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_CerealBox_PartyLocale" + }, + { + "itemGuid": "S18-Quest:S18_Complete_CerealBox_PartyLocale_q04", + "templateId": "Quest:S18_Complete_CerealBox_PartyLocale_q04", + "objectives": [ + { + "name": "S18_Complete_CerealBox_PartyLocale_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_CerealBox_PartyLocale" + }, + { + "itemGuid": "S18-Quest:S18_Complete_CerealBox_PartyLocale_q05", + "templateId": "Quest:S18_Complete_CerealBox_PartyLocale_q05", + "objectives": [ + { + "name": "S18_Complete_CerealBox_PartyLocale_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_CerealBox_PartyLocale" + }, + { + "itemGuid": "S18-Quest:S18_Complete_DarkJonesy_SpookyStory_q01", + "templateId": "Quest:S18_Complete_DarkJonesy_SpookyStory_q01", + "objectives": [ + { + "name": "S18_Complete_DarkJonesy_SpookyStory_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_SpookyStory" + }, + { + "itemGuid": "S18-Quest:S18_Complete_DarkJonesy_SpookyStory_q02", + "templateId": "Quest:S18_Complete_DarkJonesy_SpookyStory_q02", + "objectives": [ + { + "name": "S18_Complete_DarkJonesy_SpookyStory_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_SpookyStory" + }, + { + "itemGuid": "S18-Quest:S18_Complete_DarkJonesy_SpookyStory_q03", + "templateId": "Quest:S18_Complete_DarkJonesy_SpookyStory_q03", + "objectives": [ + { + "name": "S18_Complete_DarkJonesy_SpookyStory_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_SpookyStory" + }, + { + "itemGuid": "S18-Quest:S18_Complete_DarkJonesy_SpookyStory_q04", + "templateId": "Quest:S18_Complete_DarkJonesy_SpookyStory_q04", + "objectives": [ + { + "name": "S18_Complete_DarkJonesy_SpookyStory_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_SpookyStory" + }, + { + "itemGuid": "S18-Quest:S18_Complete_DarkJonesy_SpookyStory_q05", + "templateId": "Quest:S18_Complete_DarkJonesy_SpookyStory_q05", + "objectives": [ + { + "name": "S18_Complete_DarkJonesy_SpookyStory_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_SpookyStory" + }, + { + "itemGuid": "S18-Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q01", + "templateId": "Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q01", + "objectives": [ + { + "name": "S18_Complete_DarkJonesy_TheOracleSpeaks_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_TheOracleSpeaks" + }, + { + "itemGuid": "S18-Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q02", + "templateId": "Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q02", + "objectives": [ + { + "name": "S18_Complete_DarkJonesy_TheOracleSpeaks_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_TheOracleSpeaks" + }, + { + "itemGuid": "S18-Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q03", + "templateId": "Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q03", + "objectives": [ + { + "name": "S18_Complete_DarkJonesy_TheOracleSpeaks_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_TheOracleSpeaks" + }, + { + "itemGuid": "S18-Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q04", + "templateId": "Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q04", + "objectives": [ + { + "name": "S18_Complete_DarkJonesy_TheOracleSpeaks_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_TheOracleSpeaks" + }, + { + "itemGuid": "S18-Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q05", + "templateId": "Quest:S18_Complete_DarkJonesy_TheOracleSpeaks_q05", + "objectives": [ + { + "name": "S18_Complete_DarkJonesy_TheOracleSpeaks_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_DarkJonesy_TheOracleSpeaks" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Dire_WolfPack_q01", + "templateId": "Quest:S18_Complete_Dire_WolfPack_q01", + "objectives": [ + { + "name": "S18_Complete_Dire_WolfPack_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Dire_WolfPack" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Dire_WolfPack_q02", + "templateId": "Quest:S18_Complete_Dire_WolfPack_q02", + "objectives": [ + { + "name": "S18_Complete_Dire_WolfPack_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Dire_WolfPack" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Dire_WolfPack_q03", + "templateId": "Quest:S18_Complete_Dire_WolfPack_q03", + "objectives": [ + { + "name": "S18_Complete_Dire_WolfPack_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Dire_WolfPack" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Dire_WolfPack_q04", + "templateId": "Quest:S18_Complete_Dire_WolfPack_q04", + "objectives": [ + { + "name": "S18_Complete_Dire_WolfPack_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Dire_WolfPack" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Dire_WolfPack_q05", + "templateId": "Quest:S18_Complete_Dire_WolfPack_q05", + "objectives": [ + { + "name": "S18_Complete_Dire_WolfPack_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Dire_WolfPack" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Division_SniperElite_q01", + "templateId": "Quest:S18_Complete_Division_SniperElite_q01", + "objectives": [ + { + "name": "S18_Complete_Division_SniperElite_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Division_SniperElite" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Division_SniperElite_q02", + "templateId": "Quest:S18_Complete_Division_SniperElite_q02", + "objectives": [ + { + "name": "S18_Complete_Division_SniperElite_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Division_SniperElite" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Division_SniperElite_q03", + "templateId": "Quest:S18_Complete_Division_SniperElite_q03", + "objectives": [ + { + "name": "S18_Complete_Division_SniperElite_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Division_SniperElite" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Division_SniperElite_q04", + "templateId": "Quest:S18_Complete_Division_SniperElite_q04", + "objectives": [ + { + "name": "S18_Complete_Division_SniperElite_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Division_SniperElite" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Division_SniperElite_q05", + "templateId": "Quest:S18_Complete_Division_SniperElite_q05", + "objectives": [ + { + "name": "S18_Complete_Division_SniperElite_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Division_SniperElite" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Dusk_VampireCombat_q01", + "templateId": "Quest:S18_Complete_Dusk_VampireCombat_q01", + "objectives": [ + { + "name": "S18_Complete_Dusk_VampireCombat_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Dusk_VampireCombat" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Dusk_VampireCombat_q02", + "templateId": "Quest:S18_Complete_Dusk_VampireCombat_q02", + "objectives": [ + { + "name": "S18_Complete_Dusk_VampireCombat_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Dusk_VampireCombat" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Dusk_VampireCombat_q03", + "templateId": "Quest:S18_Complete_Dusk_VampireCombat_q03", + "objectives": [ + { + "name": "S18_Complete_Dusk_VampireCombat_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Dusk_VampireCombat" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Dusk_VampireCombat_q04", + "templateId": "Quest:S18_Complete_Dusk_VampireCombat_q04", + "objectives": [ + { + "name": "S18_Complete_Dusk_VampireCombat_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Dusk_VampireCombat" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Dusk_VampireCombat_q05", + "templateId": "Quest:S18_Complete_Dusk_VampireCombat_q05", + "objectives": [ + { + "name": "S18_Complete_Dusk_VampireCombat_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Dusk_VampireCombat" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Ember_FireYoga_q01", + "templateId": "Quest:S18_Complete_Ember_FireYoga_q01", + "objectives": [ + { + "name": "S18_Complete_Ember_FireYoga_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Ember_FireYoga" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Ember_FireYoga_q02", + "templateId": "Quest:S18_Complete_Ember_FireYoga_q02", + "objectives": [ + { + "name": "S18_Complete_Ember_FireYoga_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Ember_FireYoga" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Ember_FireYoga_q03", + "templateId": "Quest:S18_Complete_Ember_FireYoga_q03", + "objectives": [ + { + "name": "S18_Complete_Ember_FireYoga_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Ember_FireYoga" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Ember_FireYoga_q04", + "templateId": "Quest:S18_Complete_Ember_FireYoga_q04", + "objectives": [ + { + "name": "S18_Complete_Ember_FireYoga_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Ember_FireYoga" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Ember_FireYoga_q05", + "templateId": "Quest:S18_Complete_Ember_FireYoga_q05", + "objectives": [ + { + "name": "S18_Complete_Ember_FireYoga_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Ember_FireYoga" + }, + { + "itemGuid": "S18-Quest:S18_Complete_GhostHunter_MonsterResearch_q01", + "templateId": "Quest:S18_Complete_GhostHunter_MonsterResearch_q01", + "objectives": [ + { + "name": "S18_Complete_GhostHunter_MonsterResearch_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_GhostHunter_MonsterResearch" + }, + { + "itemGuid": "S18-Quest:S18_Complete_GhostHunter_MonsterResearch_q02", + "templateId": "Quest:S18_Complete_GhostHunter_MonsterResearch_q02", + "objectives": [ + { + "name": "S18_Complete_GhostHunter_MonsterResearch_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_GhostHunter_MonsterResearch" + }, + { + "itemGuid": "S18-Quest:S18_Complete_GhostHunter_MonsterResearch_q03", + "templateId": "Quest:S18_Complete_GhostHunter_MonsterResearch_q03", + "objectives": [ + { + "name": "S18_Complete_GhostHunter_MonsterResearch_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_GhostHunter_MonsterResearch" + }, + { + "itemGuid": "S18-Quest:S18_Complete_GhostHunter_MonsterResearch_q04", + "templateId": "Quest:S18_Complete_GhostHunter_MonsterResearch_q04", + "objectives": [ + { + "name": "S18_Complete_GhostHunter_MonsterResearch_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_GhostHunter_MonsterResearch" + }, + { + "itemGuid": "S18-Quest:S18_Complete_GhostHunter_MonsterResearch_q05", + "templateId": "Quest:S18_Complete_GhostHunter_MonsterResearch_q05", + "objectives": [ + { + "name": "S18_Complete_GhostHunter_MonsterResearch_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_GhostHunter_MonsterResearch" + }, + { + "itemGuid": "S18-Quest:S18_Complete_GrimFable_WolfActivity_q01", + "templateId": "Quest:S18_Complete_GrimFable_WolfActivity_q01", + "objectives": [ + { + "name": "S18_Complete_GrimFable_WolfActivity_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_GrimFable_WolfActivity" + }, + { + "itemGuid": "S18-Quest:S18_Complete_GrimFable_WolfActivity_q02", + "templateId": "Quest:S18_Complete_GrimFable_WolfActivity_q02", + "objectives": [ + { + "name": "S18_Complete_GrimFable_WolfActivity_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_GrimFable_WolfActivity" + }, + { + "itemGuid": "S18-Quest:S18_Complete_GrimFable_WolfActivity_q03", + "templateId": "Quest:S18_Complete_GrimFable_WolfActivity_q03", + "objectives": [ + { + "name": "S18_Complete_GrimFable_WolfActivity_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_GrimFable_WolfActivity" + }, + { + "itemGuid": "S18-Quest:S18_Complete_GrimFable_WolfActivity_q04", + "templateId": "Quest:S18_Complete_GrimFable_WolfActivity_q04", + "objectives": [ + { + "name": "S18_Complete_GrimFable_WolfActivity_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_GrimFable_WolfActivity" + }, + { + "itemGuid": "S18-Quest:S18_Complete_GrimFable_WolfActivity_q05", + "templateId": "Quest:S18_Complete_GrimFable_WolfActivity_q05", + "objectives": [ + { + "name": "S18_Complete_GrimFable_WolfActivity_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_GrimFable_WolfActivity" + }, + { + "itemGuid": "S18-Quest:S18_Complete_HeadbandK_FortJutsu_q01", + "templateId": "Quest:S18_Complete_HeadbandK_FortJutsu_q01", + "objectives": [ + { + "name": "S18_Complete_HeadbandK_FortJutsu_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_HeadbandK_FortJutsu" + }, + { + "itemGuid": "S18-Quest:S18_Complete_HeadbandK_FortJutsu_q02", + "templateId": "Quest:S18_Complete_HeadbandK_FortJutsu_q02", + "objectives": [ + { + "name": "S18_Complete_HeadbandK_FortJutsu_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_HeadbandK_FortJutsu" + }, + { + "itemGuid": "S18-Quest:S18_Complete_HeadbandK_FortJutsu_q03", + "templateId": "Quest:S18_Complete_HeadbandK_FortJutsu_q03", + "objectives": [ + { + "name": "S18_Complete_HeadbandK_FortJutsu_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_HeadbandK_FortJutsu" + }, + { + "itemGuid": "S18-Quest:S18_Complete_HeadbandK_FortJutsu_q04", + "templateId": "Quest:S18_Complete_HeadbandK_FortJutsu_q04", + "objectives": [ + { + "name": "S18_Complete_HeadbandK_FortJutsu_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_HeadbandK_FortJutsu" + }, + { + "itemGuid": "S18-Quest:S18_Complete_HeadbandK_FortJutsu_q05", + "templateId": "Quest:S18_Complete_HeadbandK_FortJutsu_q05", + "objectives": [ + { + "name": "S18_Complete_HeadbandK_FortJutsu_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_HeadbandK_FortJutsu" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Kitbash_MakingFriends_q01", + "templateId": "Quest:S18_Complete_Kitbash_MakingFriends_q01", + "objectives": [ + { + "name": "S18_Complete_Kitbash_MakingFriends_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Kitbash_MakingFriends" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Kitbash_MakingFriends_q02", + "templateId": "Quest:S18_Complete_Kitbash_MakingFriends_q02", + "objectives": [ + { + "name": "S18_Complete_Kitbash_MakingFriends_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Kitbash_MakingFriends" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Kitbash_MakingFriends_q03", + "templateId": "Quest:S18_Complete_Kitbash_MakingFriends_q03", + "objectives": [ + { + "name": "S18_Complete_Kitbash_MakingFriends_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Kitbash_MakingFriends" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Kitbash_MakingFriends_q04", + "templateId": "Quest:S18_Complete_Kitbash_MakingFriends_q04", + "objectives": [ + { + "name": "S18_Complete_Kitbash_MakingFriends_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Kitbash_MakingFriends" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Kitbash_MakingFriends_q05", + "templateId": "Quest:S18_Complete_Kitbash_MakingFriends_q05", + "objectives": [ + { + "name": "S18_Complete_Kitbash_MakingFriends_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Kitbash_MakingFriends" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Madcap_MushroomMaster_q01", + "templateId": "Quest:S18_Complete_Madcap_MushroomMaster_q01", + "objectives": [ + { + "name": "S18_Complete_Madcap_MushroomMaster_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Madcap_MushroomMaster" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Madcap_MushroomMaster_q02", + "templateId": "Quest:S18_Complete_Madcap_MushroomMaster_q02", + "objectives": [ + { + "name": "S18_Complete_Madcap_MushroomMaster_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Madcap_MushroomMaster" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Madcap_MushroomMaster_q03", + "templateId": "Quest:S18_Complete_Madcap_MushroomMaster_q03", + "objectives": [ + { + "name": "S18_Complete_Madcap_MushroomMaster_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Madcap_MushroomMaster" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Madcap_MushroomMaster_q04", + "templateId": "Quest:S18_Complete_Madcap_MushroomMaster_q04", + "objectives": [ + { + "name": "S18_Complete_Madcap_MushroomMaster_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Madcap_MushroomMaster" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Madcap_MushroomMaster_q05", + "templateId": "Quest:S18_Complete_Madcap_MushroomMaster_q05", + "objectives": [ + { + "name": "S18_Complete_Madcap_MushroomMaster_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Madcap_MushroomMaster" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Nitehare_HopAwake_q01", + "templateId": "Quest:S18_Complete_Nitehare_HopAwake_q01", + "objectives": [ + { + "name": "S18_Complete_Nitehare_HopAwake_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Nitehare_HopAwake" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Nitehare_HopAwake_q02", + "templateId": "Quest:S18_Complete_Nitehare_HopAwake_q02", + "objectives": [ + { + "name": "S18_Complete_Nitehare_HopAwake_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Nitehare_HopAwake" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Nitehare_HopAwake_q03", + "templateId": "Quest:S18_Complete_Nitehare_HopAwake_q03", + "objectives": [ + { + "name": "S18_Complete_Nitehare_HopAwake_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Nitehare_HopAwake" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Nitehare_HopAwake_q04", + "templateId": "Quest:S18_Complete_Nitehare_HopAwake_q04", + "objectives": [ + { + "name": "S18_Complete_Nitehare_HopAwake_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Nitehare_HopAwake" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Nitehare_HopAwake_q05", + "templateId": "Quest:S18_Complete_Nitehare_HopAwake_q05", + "objectives": [ + { + "name": "S18_Complete_Nitehare_HopAwake_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Nitehare_HopAwake" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Penny_BuildPassion_q01", + "templateId": "Quest:S18_Complete_Penny_BuildPassion_q01", + "objectives": [ + { + "name": "S18_Complete_Penny_BuildPassion_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Penny_BuildPassion" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Penny_BuildPassion_q02", + "templateId": "Quest:S18_Complete_Penny_BuildPassion_q02", + "objectives": [ + { + "name": "S18_Complete_Penny_BuildPassion_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Penny_BuildPassion" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Penny_BuildPassion_q03", + "templateId": "Quest:S18_Complete_Penny_BuildPassion_q03", + "objectives": [ + { + "name": "S18_Complete_Penny_BuildPassion_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Penny_BuildPassion" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Penny_BuildPassion_q04", + "templateId": "Quest:S18_Complete_Penny_BuildPassion_q04", + "objectives": [ + { + "name": "S18_Complete_Penny_BuildPassion_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Penny_BuildPassion" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Penny_BuildPassion_q05", + "templateId": "Quest:S18_Complete_Penny_BuildPassion_q05", + "objectives": [ + { + "name": "S18_Complete_Penny_BuildPassion_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Penny_BuildPassion" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Pitstop_StuntTraining_q01", + "templateId": "Quest:S18_Complete_Pitstop_StuntTraining_q01", + "objectives": [ + { + "name": "S18_Complete_Pitstop_StuntTraining_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Pitstop_StuntTraining" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Pitstop_StuntTraining_q02", + "templateId": "Quest:S18_Complete_Pitstop_StuntTraining_q02", + "objectives": [ + { + "name": "S18_Complete_Pitstop_StuntTraining_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Pitstop_StuntTraining" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Pitstop_StuntTraining_q03", + "templateId": "Quest:S18_Complete_Pitstop_StuntTraining_q03", + "objectives": [ + { + "name": "S18_Complete_Pitstop_StuntTraining_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Pitstop_StuntTraining" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Pitstop_StuntTraining_q04", + "templateId": "Quest:S18_Complete_Pitstop_StuntTraining_q04", + "objectives": [ + { + "name": "S18_Complete_Pitstop_StuntTraining_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Pitstop_StuntTraining" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Pitstop_StuntTraining_q05", + "templateId": "Quest:S18_Complete_Pitstop_StuntTraining_q05", + "objectives": [ + { + "name": "S18_Complete_Pitstop_StuntTraining_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Pitstop_StuntTraining" + }, + { + "itemGuid": "S18-Quest:S18_Complete_PunkKoi_IOHeist_q01", + "templateId": "Quest:S18_Complete_PunkKoi_IOHeist_q01", + "objectives": [ + { + "name": "S18_Complete_PunkKoi_IOHeist_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_PunkKoi_IOHeist" + }, + { + "itemGuid": "S18-Quest:S18_Complete_PunkKoi_IOHeist_q02", + "templateId": "Quest:S18_Complete_PunkKoi_IOHeist_q02", + "objectives": [ + { + "name": "S18_Complete_PunkKoi_IOHeist_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_PunkKoi_IOHeist" + }, + { + "itemGuid": "S18-Quest:S18_Complete_PunkKoi_IOHeist_q03", + "templateId": "Quest:S18_Complete_PunkKoi_IOHeist_q03", + "objectives": [ + { + "name": "S18_Complete_PunkKoi_IOHeist_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_PunkKoi_IOHeist" + }, + { + "itemGuid": "S18-Quest:S18_Complete_PunkKoi_IOHeist_q04", + "templateId": "Quest:S18_Complete_PunkKoi_IOHeist_q04", + "objectives": [ + { + "name": "S18_Complete_PunkKoi_IOHeist_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_PunkKoi_IOHeist" + }, + { + "itemGuid": "S18-Quest:S18_Complete_PunkKoi_IOHeist_q05", + "templateId": "Quest:S18_Complete_PunkKoi_IOHeist_q05", + "objectives": [ + { + "name": "S18_Complete_PunkKoi_IOHeist_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_PunkKoi_IOHeist" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Ragsy_ShieldTechniques_q01", + "templateId": "Quest:S18_Complete_Ragsy_ShieldTechniques_q01", + "objectives": [ + { + "name": "S18_Complete_Ragsy_ShieldTechniques_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Ragsy_ShieldTechniques" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Ragsy_ShieldTechniques_q02", + "templateId": "Quest:S18_Complete_Ragsy_ShieldTechniques_q02", + "objectives": [ + { + "name": "S18_Complete_Ragsy_ShieldTechniques_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Ragsy_ShieldTechniques" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Ragsy_ShieldTechniques_q03", + "templateId": "Quest:S18_Complete_Ragsy_ShieldTechniques_q03", + "objectives": [ + { + "name": "S18_Complete_Ragsy_ShieldTechniques_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Ragsy_ShieldTechniques" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Ragsy_ShieldTechniques_q04", + "templateId": "Quest:S18_Complete_Ragsy_ShieldTechniques_q04", + "objectives": [ + { + "name": "S18_Complete_Ragsy_ShieldTechniques_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Ragsy_ShieldTechniques" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Ragsy_ShieldTechniques_q05", + "templateId": "Quest:S18_Complete_Ragsy_ShieldTechniques_q05", + "objectives": [ + { + "name": "S18_Complete_Ragsy_ShieldTechniques_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Ragsy_ShieldTechniques" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Raven_DarkSkies_q01", + "templateId": "Quest:S18_Complete_Raven_DarkSkies_q01", + "objectives": [ + { + "name": "S18_Complete_Raven_DarkSkies_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Raven_DarkSkies" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Raven_DarkSkies_q02", + "templateId": "Quest:S18_Complete_Raven_DarkSkies_q02", + "objectives": [ + { + "name": "S18_Complete_Raven_DarkSkies_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Raven_DarkSkies" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Raven_DarkSkies_q03", + "templateId": "Quest:S18_Complete_Raven_DarkSkies_q03", + "objectives": [ + { + "name": "S18_Complete_Raven_DarkSkies_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Raven_DarkSkies" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Raven_DarkSkies_q04", + "templateId": "Quest:S18_Complete_Raven_DarkSkies_q04", + "objectives": [ + { + "name": "S18_Complete_Raven_DarkSkies_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Raven_DarkSkies" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Raven_DarkSkies_q05", + "templateId": "Quest:S18_Complete_Raven_DarkSkies_q05", + "objectives": [ + { + "name": "S18_Complete_Raven_DarkSkies_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Raven_DarkSkies" + }, + { + "itemGuid": "S18-Quest:S18_Complete_RustLord_ScrapKing_q01", + "templateId": "Quest:S18_Complete_RustLord_ScrapKing_q01", + "objectives": [ + { + "name": "S18_Complete_RustLord_ScrapKing_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_RustLord_ScrapKing" + }, + { + "itemGuid": "S18-Quest:S18_Complete_RustLord_ScrapKing_q02", + "templateId": "Quest:S18_Complete_RustLord_ScrapKing_q02", + "objectives": [ + { + "name": "S18_Complete_RustLord_ScrapKing_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_RustLord_ScrapKing" + }, + { + "itemGuid": "S18-Quest:S18_Complete_RustLord_ScrapKing_q03", + "templateId": "Quest:S18_Complete_RustLord_ScrapKing_q03", + "objectives": [ + { + "name": "S18_Complete_RustLord_ScrapKing_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_RustLord_ScrapKing" + }, + { + "itemGuid": "S18-Quest:S18_Complete_RustLord_ScrapKing_q04", + "templateId": "Quest:S18_Complete_RustLord_ScrapKing_q04", + "objectives": [ + { + "name": "S18_Complete_RustLord_ScrapKing_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_RustLord_ScrapKing" + }, + { + "itemGuid": "S18-Quest:S18_Complete_RustLord_ScrapKing_q05", + "templateId": "Quest:S18_Complete_RustLord_ScrapKing_q05", + "objectives": [ + { + "name": "S18_Complete_RustLord_ScrapKing_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_RustLord_ScrapKing" + }, + { + "itemGuid": "S18-Quest:S18_Complete_ScubaJonesy_SurfTurf_q01", + "templateId": "Quest:S18_Complete_ScubaJonesy_SurfTurf_q01", + "objectives": [ + { + "name": "S18_Complete_ScubaJonesy_SurfTurf_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_ScubaJonesy_SurfTurf" + }, + { + "itemGuid": "S18-Quest:S18_Complete_ScubaJonesy_SurfTurf_q02", + "templateId": "Quest:S18_Complete_ScubaJonesy_SurfTurf_q02", + "objectives": [ + { + "name": "S18_Complete_ScubaJonesy_SurfTurf_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_ScubaJonesy_SurfTurf" + }, + { + "itemGuid": "S18-Quest:S18_Complete_ScubaJonesy_SurfTurf_q03", + "templateId": "Quest:S18_Complete_ScubaJonesy_SurfTurf_q03", + "objectives": [ + { + "name": "S18_Complete_ScubaJonesy_SurfTurf_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_ScubaJonesy_SurfTurf" + }, + { + "itemGuid": "S18-Quest:S18_Complete_ScubaJonesy_SurfTurf_q04", + "templateId": "Quest:S18_Complete_ScubaJonesy_SurfTurf_q04", + "objectives": [ + { + "name": "S18_Complete_ScubaJonesy_SurfTurf_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_ScubaJonesy_SurfTurf" + }, + { + "itemGuid": "S18-Quest:S18_Complete_ScubaJonesy_SurfTurf_q05", + "templateId": "Quest:S18_Complete_ScubaJonesy_SurfTurf_q05", + "objectives": [ + { + "name": "S18_Complete_ScubaJonesy_SurfTurf_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_ScubaJonesy_SurfTurf" + }, + { + "itemGuid": "S18-Quest:S18_Complete_ShadowOps_ImpromptuTactical_q01", + "templateId": "Quest:S18_Complete_ShadowOps_ImpromptuTactical_q01", + "objectives": [ + { + "name": "S18_Complete_ShadowOps_ImpromptuTactical_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_ShadowOps_ImpromptuTactical" + }, + { + "itemGuid": "S18-Quest:S18_Complete_ShadowOps_ImpromptuTactical_q02", + "templateId": "Quest:S18_Complete_ShadowOps_ImpromptuTactical_q02", + "objectives": [ + { + "name": "S18_Complete_ShadowOps_ImpromptuTactical_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_ShadowOps_ImpromptuTactical" + }, + { + "itemGuid": "S18-Quest:S18_Complete_ShadowOps_ImpromptuTactical_q03", + "templateId": "Quest:S18_Complete_ShadowOps_ImpromptuTactical_q03", + "objectives": [ + { + "name": "S18_Complete_ShadowOps_ImpromptuTactical_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_ShadowOps_ImpromptuTactical" + }, + { + "itemGuid": "S18-Quest:S18_Complete_ShadowOps_ImpromptuTactical_q04", + "templateId": "Quest:S18_Complete_ShadowOps_ImpromptuTactical_q04", + "objectives": [ + { + "name": "S18_Complete_ShadowOps_ImpromptuTactical_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_ShadowOps_ImpromptuTactical" + }, + { + "itemGuid": "S18-Quest:S18_Complete_ShadowOps_ImpromptuTactical_q05", + "templateId": "Quest:S18_Complete_ShadowOps_ImpromptuTactical_q05", + "objectives": [ + { + "name": "S18_Complete_ShadowOps_ImpromptuTactical_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_ShadowOps_ImpromptuTactical" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Sledgehammer_BattleOrders_q01", + "templateId": "Quest:S18_Complete_Sledgehammer_BattleOrders_q01", + "objectives": [ + { + "name": "S18_Complete_Sledgehammer_BattleOrders_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Sledgehammer_BattleOrders" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Sledgehammer_BattleOrders_q02", + "templateId": "Quest:S18_Complete_Sledgehammer_BattleOrders_q02", + "objectives": [ + { + "name": "S18_Complete_Sledgehammer_BattleOrders_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Sledgehammer_BattleOrders" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Sledgehammer_BattleOrders_q03", + "templateId": "Quest:S18_Complete_Sledgehammer_BattleOrders_q03", + "objectives": [ + { + "name": "S18_Complete_Sledgehammer_BattleOrders_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Sledgehammer_BattleOrders" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Sledgehammer_BattleOrders_q04", + "templateId": "Quest:S18_Complete_Sledgehammer_BattleOrders_q04", + "objectives": [ + { + "name": "S18_Complete_Sledgehammer_BattleOrders_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Sledgehammer_BattleOrders" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Sledgehammer_BattleOrders_q05", + "templateId": "Quest:S18_Complete_Sledgehammer_BattleOrders_q05", + "objectives": [ + { + "name": "S18_Complete_Sledgehammer_BattleOrders_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Sledgehammer_BattleOrders" + }, + { + "itemGuid": "S18-Quest:S18_Complete_SpaceChimpSuit_WarEffort_q01", + "templateId": "Quest:S18_Complete_SpaceChimpSuit_WarEffort_q01", + "objectives": [ + { + "name": "S18_Complete_SpaceChimpSuit_WarEffort_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_SpaceChimpSuit_WarEffort" + }, + { + "itemGuid": "S18-Quest:S18_Complete_SpaceChimpSuit_WarEffort_q02", + "templateId": "Quest:S18_Complete_SpaceChimpSuit_WarEffort_q02", + "objectives": [ + { + "name": "S18_Complete_SpaceChimpSuit_WarEffort_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_SpaceChimpSuit_WarEffort" + }, + { + "itemGuid": "S18-Quest:S18_Complete_SpaceChimpSuit_WarEffort_q03", + "templateId": "Quest:S18_Complete_SpaceChimpSuit_WarEffort_q03", + "objectives": [ + { + "name": "S18_Complete_SpaceChimpSuit_WarEffort_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_SpaceChimpSuit_WarEffort" + }, + { + "itemGuid": "S18-Quest:S18_Complete_SpaceChimpSuit_WarEffort_q04", + "templateId": "Quest:S18_Complete_SpaceChimpSuit_WarEffort_q04", + "objectives": [ + { + "name": "S18_Complete_SpaceChimpSuit_WarEffort_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_SpaceChimpSuit_WarEffort" + }, + { + "itemGuid": "S18-Quest:S18_Complete_SpaceChimpSuit_WarEffort_q05", + "templateId": "Quest:S18_Complete_SpaceChimpSuit_WarEffort_q05", + "objectives": [ + { + "name": "S18_Complete_SpaceChimpSuit_WarEffort_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_SpaceChimpSuit_WarEffort" + }, + { + "itemGuid": "S18-Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q01", + "templateId": "Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q01", + "objectives": [ + { + "name": "S18_Complete_TeriyakiFishToon_ScarredExploration_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_TeriyakiFish_ScarredExploration" + }, + { + "itemGuid": "S18-Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q02", + "templateId": "Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q02", + "objectives": [ + { + "name": "S18_Complete_TeriyakiFishToon_ScarredExploration_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_TeriyakiFish_ScarredExploration" + }, + { + "itemGuid": "S18-Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q03", + "templateId": "Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q03", + "objectives": [ + { + "name": "S18_Complete_TeriyakiFishToon_ScarredExploration_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_TeriyakiFish_ScarredExploration" + }, + { + "itemGuid": "S18-Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q04", + "templateId": "Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q04", + "objectives": [ + { + "name": "S18_Complete_TeriyakiFishToon_ScarredExploration_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_TeriyakiFish_ScarredExploration" + }, + { + "itemGuid": "S18-Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q05", + "templateId": "Quest:S18_Complete_TeriyakiFishToon_ScarredExploration_q05", + "objectives": [ + { + "name": "S18_Complete_TeriyakiFishToon_ScarredExploration_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_TeriyakiFish_ScarredExploration" + }, + { + "itemGuid": "S18-Quest:S18_Complete_TheBrat_HotDog_q01", + "templateId": "Quest:S18_Complete_TheBrat_HotDog_q01", + "objectives": [ + { + "name": "S18_Complete_TheBrat_HotDog_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_TheBrat_HotDog" + }, + { + "itemGuid": "S18-Quest:S18_Complete_TheBrat_HotDog_q02", + "templateId": "Quest:S18_Complete_TheBrat_HotDog_q02", + "objectives": [ + { + "name": "S18_Complete_TheBrat_HotDog_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_TheBrat_HotDog" + }, + { + "itemGuid": "S18-Quest:S18_Complete_TheBrat_HotDog_q03", + "templateId": "Quest:S18_Complete_TheBrat_HotDog_q03", + "objectives": [ + { + "name": "S18_Complete_TheBrat_HotDog_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_TheBrat_HotDog" + }, + { + "itemGuid": "S18-Quest:S18_Complete_TheBrat_HotDog_q04", + "templateId": "Quest:S18_Complete_TheBrat_HotDog_q04", + "objectives": [ + { + "name": "S18_Complete_TheBrat_HotDog_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_TheBrat_HotDog" + }, + { + "itemGuid": "S18-Quest:S18_Complete_TheBrat_HotDog_q05", + "templateId": "Quest:S18_Complete_TheBrat_HotDog_q05", + "objectives": [ + { + "name": "S18_Complete_TheBrat_HotDog_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_TheBrat_HotDog" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Wrath_EscapedTenant_q01", + "templateId": "Quest:S18_Complete_Wrath_EscapedTenant_q01", + "objectives": [ + { + "name": "S18_Complete_Wrath_EscapedTenant_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Wrath_EscapedTenant" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Wrath_EscapedTenant_q02", + "templateId": "Quest:S18_Complete_Wrath_EscapedTenant_q02", + "objectives": [ + { + "name": "S18_Complete_Wrath_EscapedTenant_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Wrath_EscapedTenant" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Wrath_EscapedTenant_q03", + "templateId": "Quest:S18_Complete_Wrath_EscapedTenant_q03", + "objectives": [ + { + "name": "S18_Complete_Wrath_EscapedTenant_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Wrath_EscapedTenant" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Wrath_EscapedTenant_q04", + "templateId": "Quest:S18_Complete_Wrath_EscapedTenant_q04", + "objectives": [ + { + "name": "S18_Complete_Wrath_EscapedTenant_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Wrath_EscapedTenant" + }, + { + "itemGuid": "S18-Quest:S18_Complete_Wrath_EscapedTenant_q05", + "templateId": "Quest:S18_Complete_Wrath_EscapedTenant_q05", + "objectives": [ + { + "name": "S18_Complete_Wrath_EscapedTenant_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Complete_Wrath_EscapedTenant" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "templateId": "Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CompleteDailyPunchCards_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_PlaceTop10WithFriends", + "templateId": "Quest:Quest_S18_Repeatable_PlaceTop10WithFriends", + "objectives": [ + { + "name": "Quest_S18_Repeatable_PlaceTop10WithFriends_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_SpendGoldBars", + "templateId": "Quest:Quest_S18_Repeatable_SpendGoldBars", + "objectives": [ + { + "name": "Quest_S18_Repeatable_SpendGoldBars_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "templateId": "Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CompleteDailyPunchCards_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_07" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DealDamageAssaultRifles_q01", + "templateId": "Quest:Quest_S18_Repeatable_DealDamageAssaultRifles_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DealDamageAssaultRifles_q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_07" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DealDamageAssaultRifles_q02", + "templateId": "Quest:Quest_S18_Repeatable_DealDamageAssaultRifles_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DealDamageAssaultRifles_q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_07" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DealDamageAssaultRifles_q03", + "templateId": "Quest:Quest_S18_Repeatable_DealDamageAssaultRifles_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DealDamageAssaultRifles_q03_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_07" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_SearchChests_q01", + "templateId": "Quest:Quest_S18_Repeatable_SearchChests_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_SearchChests_q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_07" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_SearchChests_q02", + "templateId": "Quest:Quest_S18_Repeatable_SearchChests_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_SearchChests_q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_07" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_SearchChests_q03", + "templateId": "Quest:Quest_S18_Repeatable_SearchChests_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_SearchChests_q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_07" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "templateId": "Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CompleteDailyPunchCards_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_08" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_EliminatePlayers_q01", + "templateId": "Quest:Quest_S18_Repeatable_EliminatePlayers_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_EliminatePlayers_q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_08" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_EliminatePlayers_q02", + "templateId": "Quest:Quest_S18_Repeatable_EliminatePlayers_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_EliminatePlayers_q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_08" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_EliminatePlayers_q03", + "templateId": "Quest:Quest_S18_Repeatable_EliminatePlayers_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_EliminatePlayers_q03_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_08" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_HarvestMaterials_q01", + "templateId": "Quest:Quest_S18_Repeatable_HarvestMaterials_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_HarvestMaterials_q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_08" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_HarvestMaterials_q02", + "templateId": "Quest:Quest_S18_Repeatable_HarvestMaterials_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_HarvestMaterials_q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_08" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_HarvestMaterials_q03", + "templateId": "Quest:Quest_S18_Repeatable_HarvestMaterials_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_HarvestMaterials_q03_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_08" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CatchFish_q01", + "templateId": "Quest:Quest_S18_Repeatable_CatchFish_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CatchFish_q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_09" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CatchFish_q02", + "templateId": "Quest:Quest_S18_Repeatable_CatchFish_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CatchFish_q02_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_09" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CatchFish_q03", + "templateId": "Quest:Quest_S18_Repeatable_CatchFish_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CatchFish_q03_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_09" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "templateId": "Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CompleteDailyPunchCards_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_09" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_PlaceTop10_q01", + "templateId": "Quest:Quest_S18_Repeatable_PlaceTop10_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_PlaceTop10_q01_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_09" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_PlaceTop10_q02", + "templateId": "Quest:Quest_S18_Repeatable_PlaceTop10_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_PlaceTop10_q02_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_09" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_PlaceTop10_q03", + "templateId": "Quest:Quest_S18_Repeatable_PlaceTop10_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_PlaceTop10_q03_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_09" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "templateId": "Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CompleteDailyPunchCards_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_10" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CraftWeapons_q01", + "templateId": "Quest:Quest_S18_Repeatable_CraftWeapons_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CraftWeapons_q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_10" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CraftWeapons_q02", + "templateId": "Quest:Quest_S18_Repeatable_CraftWeapons_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CraftWeapons_q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_10" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CraftWeapons_q03", + "templateId": "Quest:Quest_S18_Repeatable_CraftWeapons_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CraftWeapons_q03_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_10" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DealDamageSMGs_q01", + "templateId": "Quest:Quest_S18_Repeatable_DealDamageSMGs_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DealDamageSMGs_q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_10" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DealDamageSMGs_q02", + "templateId": "Quest:Quest_S18_Repeatable_DealDamageSMGs_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DealDamageSMGs_q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_10" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DealDamageSMGs_q03", + "templateId": "Quest:Quest_S18_Repeatable_DealDamageSMGs_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DealDamageSMGs_q03_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_10" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "templateId": "Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CompleteDailyPunchCards_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_11" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DealDamagePistols_q01", + "templateId": "Quest:Quest_S18_Repeatable_DealDamagePistols_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DealDamagePistols_q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_11" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DealDamagePistols_q02", + "templateId": "Quest:Quest_S18_Repeatable_DealDamagePistols_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DealDamagePistols_q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_11" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DealDamagePistols_q03", + "templateId": "Quest:Quest_S18_Repeatable_DealDamagePistols_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DealDamagePistols_q03_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_11" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_SearchAmmoBoxes_q01", + "templateId": "Quest:Quest_S18_Repeatable_SearchAmmoBoxes_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_SearchAmmoBoxes_q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_11" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_SearchAmmoBoxes_q02", + "templateId": "Quest:Quest_S18_Repeatable_SearchAmmoBoxes_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_SearchAmmoBoxes_q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_11" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_SearchAmmoBoxes_q03", + "templateId": "Quest:Quest_S18_Repeatable_SearchAmmoBoxes_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_SearchAmmoBoxes_q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_11" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "templateId": "Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CompleteDailyPunchCards_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_12" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DestroyOpponentStructures_q01", + "templateId": "Quest:Quest_S18_Repeatable_DestroyOpponentStructures_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DestroyOpponentStructures_q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_12" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DestroyOpponentStructures_q02", + "templateId": "Quest:Quest_S18_Repeatable_DestroyOpponentStructures_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DestroyOpponentStructures_q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_12" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DestroyOpponentStructures_q03", + "templateId": "Quest:Quest_S18_Repeatable_DestroyOpponentStructures_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DestroyOpponentStructures_q03_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_12" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_OutlastOpponents_q01", + "templateId": "Quest:Quest_S18_Repeatable_OutlastOpponents_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_OutlastOpponents_q01_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_12" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_OutlastOpponents_q02", + "templateId": "Quest:Quest_S18_Repeatable_OutlastOpponents_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_OutlastOpponents_q02_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_12" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_OutlastOpponents_q03", + "templateId": "Quest:Quest_S18_Repeatable_OutlastOpponents_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_OutlastOpponents_q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_12" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "templateId": "Quest:Quest_S18_Repeatable_CompleteDailyPunchCards", + "objectives": [ + { + "name": "Quest_S18_Repeatable_CompleteDailyPunchCards_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_1821" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DealDamageShotguns_q01", + "templateId": "Quest:Quest_S18_Repeatable_DealDamageShotguns_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DealDamageShotguns_q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_1821" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DealDamageShotguns_q02", + "templateId": "Quest:Quest_S18_Repeatable_DealDamageShotguns_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DealDamageShotguns_q02_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_1821" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_DealDamageShotguns_q03", + "templateId": "Quest:Quest_S18_Repeatable_DealDamageShotguns_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_DealDamageShotguns_q03_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_1821" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_ThankTheBusDriver_q01", + "templateId": "Quest:Quest_S18_Repeatable_ThankTheBusDriver_q01", + "objectives": [ + { + "name": "Quest_S18_Repeatable_ThankTheBusDriver_q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_1821" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_ThankTheBusDriver_q02", + "templateId": "Quest:Quest_S18_Repeatable_ThankTheBusDriver_q02", + "objectives": [ + { + "name": "Quest_S18_Repeatable_ThankTheBusDriver_q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_1821" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Repeatable_ThankTheBusDriver_q03", + "templateId": "Quest:Quest_S18_Repeatable_ThankTheBusDriver_q03", + "objectives": [ + { + "name": "Quest_S18_Repeatable_ThankTheBusDriver_q03_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Repeatable_Weekly_1821" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color01", + "templateId": "Quest:quest_s18_fishtoon_collectible_color01", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color01_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color01_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color01_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_01" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_01" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color02", + "templateId": "Quest:quest_s18_fishtoon_collectible_color02", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color02_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color02_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color02_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_02" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_02" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color03", + "templateId": "Quest:quest_s18_fishtoon_collectible_color03", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color03_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color03_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color03_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_03" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_03" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color04", + "templateId": "Quest:quest_s18_fishtoon_collectible_color04", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color04_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color04_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color04_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_04" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_04" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color05", + "templateId": "Quest:quest_s18_fishtoon_collectible_color05", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color05_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color05_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color05_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_05" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_05" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color06", + "templateId": "Quest:quest_s18_fishtoon_collectible_color06", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color06_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color06_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color06_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_06" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_06" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color07", + "templateId": "Quest:quest_s18_fishtoon_collectible_color07", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color07_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color07_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color07_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_07" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_07" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color08", + "templateId": "Quest:quest_s18_fishtoon_collectible_color08", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color08_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color08_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color08_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_08" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_08" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color09", + "templateId": "Quest:quest_s18_fishtoon_collectible_color09", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color09_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color09_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color09_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_09" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_09" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color10", + "templateId": "Quest:quest_s18_fishtoon_collectible_color10", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color10_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color10_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color10_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_10" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_10" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color11", + "templateId": "Quest:quest_s18_fishtoon_collectible_color11", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color11_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color11_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color11_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_11" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_11" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color12", + "templateId": "Quest:quest_s18_fishtoon_collectible_color12", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color12_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color12_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color12_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_12" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_12" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color13", + "templateId": "Quest:quest_s18_fishtoon_collectible_color13", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color13_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color13_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color13_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_13" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_13" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color14", + "templateId": "Quest:quest_s18_fishtoon_collectible_color14", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color14_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color14_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color14_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_14" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_14" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color15", + "templateId": "Quest:quest_s18_fishtoon_collectible_color15", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color15_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color15_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color15_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_15" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_15" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color16", + "templateId": "Quest:quest_s18_fishtoon_collectible_color16", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color16_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color16_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color16_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_16" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_16" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color17", + "templateId": "Quest:quest_s18_fishtoon_collectible_color17", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color17_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color17_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color17_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_17" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_17" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color18", + "templateId": "Quest:quest_s18_fishtoon_collectible_color18", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color18_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color18_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color18_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_18" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_18" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color19", + "templateId": "Quest:quest_s18_fishtoon_collectible_color19", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color19_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color19_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color19_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_19" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_19" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color20", + "templateId": "Quest:quest_s18_fishtoon_collectible_color20", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color20_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color20_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color20_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_20" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_20" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_color21", + "templateId": "Quest:quest_s18_fishtoon_collectible_color21", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_color21_obj0", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color21_obj1", + "count": 1 + }, + { + "name": "quest_s18_fishtoon_collectible_color21_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_21" + }, + { + "itemGuid": "S18-Quest:quest_s18_fishtoon_collectible_prereq", + "templateId": "Quest:quest_s18_fishtoon_collectible_prereq", + "objectives": [ + { + "name": "quest_s18_fishtoon_collectible_prereq_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Collectible_FishtoonColor_21" + }, + { + "itemGuid": "S18-Quest:quest_s18_soundwave", + "templateId": "Quest:quest_s18_soundwave", + "objectives": [ + { + "name": "quest_s18_soundwave_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Event_S18_Soundwave" + }, + { + "itemGuid": "S18-Quest:Quest_S18_Superlevel_q01", + "templateId": "Quest:Quest_S18_Superlevel_q01", + "objectives": [ + { + "name": "Quest_S18_Superlevel_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_Superlevel_01" + }, + { + "itemGuid": "S18-Quest:quest_s18_textile_01", + "templateId": "Quest:quest_s18_textile_01", + "objectives": [ + { + "name": "quest_s18_textile_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Event_S18_Textile" + }, + { + "itemGuid": "S18-Quest:quest_s18_textile_02", + "templateId": "Quest:quest_s18_textile_02", + "objectives": [ + { + "name": "quest_s18_textile_02_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_Event_S18_Textile" + }, + { + "itemGuid": "S18-Quest:quest_s18_weekly_strikefromshadows_q01a", + "templateId": "Quest:quest_s18_weekly_strikefromshadows_q01a", + "objectives": [ + { + "name": "quest_s18_weekly_strikefromshadows_q01a_obj0", + "count": 140 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_01" + }, + { + "itemGuid": "S18-Quest:quest_s18_weekly_strikefromshadows_q01b", + "templateId": "Quest:quest_s18_weekly_strikefromshadows_q01b", + "objectives": [ + { + "name": "quest_s18_weekly_strikefromshadows_q01b_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_01" + }, + { + "itemGuid": "S18-Quest:quest_s18_weekly_strikefromshadows_q01c", + "templateId": "Quest:quest_s18_weekly_strikefromshadows_q01c", + "objectives": [ + { + "name": "quest_s18_weekly_strikefromshadows_q01c_obj0", + "count": 3500 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_01" + }, + { + "itemGuid": "S18-Quest:quest_s18_weekly_strikefromshadows_q02a", + "templateId": "Quest:quest_s18_weekly_strikefromshadows_q02a", + "objectives": [ + { + "name": "quest_s18_weekly_strikefromshadows_q02a_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_01" + }, + { + "itemGuid": "S18-Quest:quest_s18_weekly_strikefromshadows_q02b", + "templateId": "Quest:quest_s18_weekly_strikefromshadows_q02b", + "objectives": [ + { + "name": "quest_s18_weekly_strikefromshadows_q02b_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_01" + }, + { + "itemGuid": "S18-Quest:quest_s18_weekly_strikefromshadows_q02c", + "templateId": "Quest:quest_s18_weekly_strikefromshadows_q02c", + "objectives": [ + { + "name": "quest_s18_weekly_strikefromshadows_q02b_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_01" + }, + { + "itemGuid": "S18-Quest:quest_s18_Event_WildWeek2_01", + "templateId": "Quest:quest_s18_Event_WildWeek2_01", + "objectives": [ + { + "name": "quest_s18_Event_WildWeeks2_01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_02" + }, + { + "itemGuid": "S18-Quest:quest_s18_Event_WildWeek2_02", + "templateId": "Quest:quest_s18_Event_WildWeek2_02", + "objectives": [ + { + "name": "quest_s18_Event_WildWeeks2_02_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_02" + }, + { + "itemGuid": "S18-Quest:quest_s18_Event_WildWeek2_03", + "templateId": "Quest:quest_s18_Event_WildWeek2_03", + "objectives": [ + { + "name": "quest_s18_Event_WildWeeks2_03_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_02" + }, + { + "itemGuid": "S18-Quest:quest_s18_Event_WildWeek2_04", + "templateId": "Quest:quest_s18_Event_WildWeek2_04", + "objectives": [ + { + "name": "quest_s18_Event_WildWeeks2_04_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_02" + }, + { + "itemGuid": "S18-Quest:quest_s18_Event_WildWeek2_05", + "templateId": "Quest:quest_s18_Event_WildWeek2_05", + "objectives": [ + { + "name": "quest_s18_Event_WildWeeks2_05_obj0", + "count": 3000 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_02" + }, + { + "itemGuid": "S18-Quest:quest_s18_Event_WildWeek2_06", + "templateId": "Quest:quest_s18_Event_WildWeek2_06", + "objectives": [ + { + "name": "quest_s18_Event_WildWeeks2_06_obj0", + "count": 3500 + } + ], + "challenge_bundle_id": "S18-ChallengeBundle:QuestBundle_S18_WildWeeks_02" + } + ] + }, + "Season19": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_1", + "templateId": "ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_1", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_01" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_10", + "templateId": "ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_10", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_10" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_11", + "templateId": "ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_11", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_11" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_2", + "templateId": "ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_2", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_02" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_3", + "templateId": "ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_3", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_03" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_4", + "templateId": "ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_4", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_04" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_5", + "templateId": "ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_5", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_05" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_6", + "templateId": "ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_6", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_06" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_7", + "templateId": "ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_7", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_07" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_8", + "templateId": "ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_8", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_08" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_9", + "templateId": "ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_9", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_09" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_ConvHidden_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_ConvHidden_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_ConvHidden" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Creative_Trey_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_Creative_Trey_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Trey" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_1", + "templateId": "ChallengeBundleSchedule:Season19_Dice_Schedule_1", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Dice_1", + "S19-ChallengeBundle:QuestBundle_S19_Dice_2", + "S19-ChallengeBundle:QuestBundle_S19_Dice_3", + "S19-ChallengeBundle:QuestBundle_S19_Dice_5", + "S19-ChallengeBundle:QuestBundle_S19_Dice_7", + "S19-ChallengeBundle:QuestBundle_S19_Dice_9", + "S19-ChallengeBundle:QuestBundle_S19_Dice_10", + "S19-ChallengeBundle:QuestBundle_S19_Dice_11" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_2", + "templateId": "ChallengeBundleSchedule:Season19_Dice_Schedule_2", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Dice_Hidden_1", + "S19-ChallengeBundle:QuestBundle_S19_Dice_4" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_3", + "templateId": "ChallengeBundleSchedule:Season19_Dice_Schedule_3", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Dice_Hidden_2", + "S19-ChallengeBundle:QuestBundle_S19_Dice_6" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_4", + "templateId": "ChallengeBundleSchedule:Season19_Dice_Schedule_4", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Dice_Hidden_3", + "S19-ChallengeBundle:QuestBundle_S19_Dice_8" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Exosuit_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_Exosuit_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Exosuit", + "S19-ChallengeBundle:QuestBundle_S19_Punchcard_Exosuit" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Feat_BundleSchedule", + "templateId": "ChallengeBundleSchedule:Season19_Feat_BundleSchedule", + "granted_bundles": [ + "S19-ChallengeBundle:Season19_Feat_Bundle" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_GOW_PC_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_GOW_PC_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Punchcard_GOW" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_GOW_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_GOW_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_GOW" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Bird_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Bird_Schedule_01", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Bird_01" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Bird_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Bird_Schedule_02", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Bird_02" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Bird_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Bird_Schedule_03", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Bird_03" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Bunny_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Bunny_Schedule_01", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Bunny_01" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Bunny_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Bunny_Schedule_02", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Bunny_02" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Bunny_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Bunny_Schedule_03", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Bunny_03" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Buttercake_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Buttercake_Schedule_01", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Buttercake_01" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Buttercake_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Buttercake_Schedule_02", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Buttercake_02" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Buttercake_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Buttercake_Schedule_03", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Buttercake_03" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Cat_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Cat_Schedule_01", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Cat_01" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Cat_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Cat_Schedule_02", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Cat_02" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Cat_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Cat_Schedule_03", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Cat_03" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Deer_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Deer_Schedule_01", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Deer_01" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Deer_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Deer_Schedule_02", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Deer_02" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Deer_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Deer_Schedule_03", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Deer_03" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Fox_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Fox_Schedule_01", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Fox_01" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Fox_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Fox_Schedule_02", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Fox_02" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Fox_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Fox_Schedule_03", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Fox_03" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Hyena_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Hyena_Schedule_01", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Hyena_01" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Hyena_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Hyena_Schedule_02", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Hyena_02" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Hyena_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Hyena_Schedule_03", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Hyena_03" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Lizard_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Lizard_Schedule_01", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Lizard_01" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Lizard_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Lizard_Schedule_02", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Lizard_02" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Lizard_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Lizard_Schedule_03", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Lizard_03" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Owl_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Owl_Schedule_01", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Owl_01" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Owl_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Owl_Schedule_02", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Owl_02" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Owl_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Owl_Schedule_03", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Owl_03" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Wolf_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Wolf_Schedule_01", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Wolf_01" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Wolf_Schedule_02", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Wolf_Schedule_02", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Wolf_02" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mask_Wolf_Schedule_03", + "templateId": "ChallengeBundleSchedule:Season19_Mask_Wolf_Schedule_03", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Mask_Wolf_03" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_Milestone_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_Mission_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Logs_Hidden_1", + "S19-ChallengeBundle:MissionBundle_S19_Week_01", + "S19-ChallengeBundle:MissionBundle_S19_Week_02", + "S19-ChallengeBundle:MissionBundle_S19_Week_03", + "S19-ChallengeBundle:MissionBundle_S19_Week_04", + "S19-ChallengeBundle:MissionBundle_S19_Week_05", + "S19-ChallengeBundle:MissionBundle_S19_Week_06", + "S19-ChallengeBundle:MissionBundle_S19_Week_07", + "S19-ChallengeBundle:MissionBundle_S19_Week_08", + "S19-ChallengeBundle:MissionBundle_S19_Week_09", + "S19-ChallengeBundle:MissionBundle_S19_Week_10", + "S19-ChallengeBundle:MissionBundle_S19_Week_11", + "S19-ChallengeBundle:MissionBundle_S19_Week_12", + "S19-ChallengeBundle:MissionBundle_S19_Week_13", + "S19-ChallengeBundle:MissionBundle_S19_Week_14" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_MonarchLevelUpPack_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_MonarchLevelUpPack_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_01", + "S19-ChallengeBundle:QuestBundle_S19_Punchcard_MonarchLevelUpPack", + "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_02", + "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_03", + "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_04" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_PunchCard_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier01", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier02", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier03", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier04", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier05", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier06", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier07", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier08", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier09", + "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier10", + "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W01", + "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W02", + "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W03", + "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W04", + "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W05", + "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W06", + "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W07", + "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W08", + "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W09", + "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W10" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Schedule_WinterfestCrewGrant", + "templateId": "ChallengeBundleSchedule:Season19_Schedule_WinterfestCrewGrant", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_WinterfestCrewGrant" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_Superlevels_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season19_Superlevels_Schedule_01", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_Superlevel_01" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_VictoryCrown_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_VictoryCrown_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:QuestBundle_S19_VictoryCrown" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_WildWeek_Avian_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_WildWeek_Avian_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Avian_W14" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_WildWeek_Bargain_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_WildWeek_Bargain_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_WildWeek_Mobility_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_WildWeek_Mobility_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Mobility_W13" + ] + }, + { + "itemGuid": "S19-ChallengeBundleSchedule:Season19_WildWeek_Primal_Schedule", + "templateId": "ChallengeBundleSchedule:Season19_WildWeek_Primal_Schedule", + "granted_bundles": [ + "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Primal_W12" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_01", + "templateId": "ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_01", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_BPUnlockableCharacter_Hidden", + "S19-Quest:Quest_S19_BPUnlockableCharacter_q01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_1" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_10", + "templateId": "ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_10", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_BPUnlockableCharacter_q10" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_10" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_11", + "templateId": "ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_11", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_BPUnlockableCharacter_q11" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_11" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_02", + "templateId": "ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_02", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_BPUnlockableCharacter_q02" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_2" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_03", + "templateId": "ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_03", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_BPUnlockableCharacter_q03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_3" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_04", + "templateId": "ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_04", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_BPUnlockableCharacter_q04" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_4" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_05", + "templateId": "ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_05", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_BPUnlockableCharacter_q05" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_5" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_06", + "templateId": "ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_06", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_BPUnlockableCharacter_q06" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_6" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_07", + "templateId": "ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_07", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_BPUnlockableCharacter_q07" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_7" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_08", + "templateId": "ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_08", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_BPUnlockableCharacter_q08" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_8" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_09", + "templateId": "ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_09", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_BPUnlockableCharacter_q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_BPUnlockableCharacter_Schedule_9" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_ConvHidden", + "templateId": "ChallengeBundle:QuestBundle_S19_ConvHidden", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_conv_hidden_01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_ConvHidden_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Trey", + "templateId": "ChallengeBundle:QuestBundle_S19_Trey", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_trey_q01", + "S19-Quest:quest_s19_trey_q02", + "S19-Quest:quest_s19_trey_q03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Creative_Trey_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_1", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_1", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_1" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_10", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_10", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_10" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_1" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_11", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_11", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_11" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_1" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_2", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_2", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_02" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_1" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_3", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_3", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_1" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_5", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_5", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_05" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_1" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_7", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_7", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_07" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_1" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_9", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_9", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_1" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_4", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_4", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_04" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_2" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_Hidden_1", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_Hidden_1", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_hidden_1" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_2" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_6", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_6", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_06" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_3" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_Hidden_2", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_Hidden_2", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_hidden_2" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_3" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_8", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_8", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_08" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_4" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Dice_Hidden_3", + "templateId": "ChallengeBundle:QuestBundle_S19_Dice_Hidden_3", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_dice_hidden_3" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Dice_Schedule_4" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Exosuit", + "templateId": "ChallengeBundle:QuestBundle_S19_Exosuit", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_exosuit_01", + "S19-Quest:quest_s19_exosuit_02", + "S19-Quest:quest_s19_exosuit_03", + "S19-Quest:quest_s19_exosuit_04", + "S19-Quest:quest_s19_exosuit_05", + "S19-Quest:quest_s19_exosuit_06", + "S19-Quest:quest_s19_exosuit_07", + "S19-Quest:quest_s19_exosuit_08", + "S19-Quest:quest_s19_exosuit_09", + "S19-Quest:quest_s19_exosuit_10" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Exosuit_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Punchcard_Exosuit", + "templateId": "ChallengeBundle:QuestBundle_S19_Punchcard_Exosuit", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_complete_exosuit_01", + "S19-Quest:quest_s19_complete_exosuit_02", + "S19-Quest:quest_s19_complete_exosuit_03", + "S19-Quest:quest_s19_complete_exosuit_04", + "S19-Quest:quest_s19_complete_exosuit_05" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Exosuit_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:Season19_Feat_Bundle", + "templateId": "ChallengeBundle:Season19_Feat_Bundle", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_feat_accolade_expert_ar", + "S19-Quest:quest_s19_feat_accolade_expert_explosives", + "S19-Quest:quest_s19_feat_accolade_expert_pickaxe", + "S19-Quest:quest_s19_feat_accolade_expert_pistol", + "S19-Quest:quest_s19_feat_accolade_expert_shotgun", + "S19-Quest:quest_s19_feat_accolade_expert_smg", + "S19-Quest:quest_s19_feat_accolade_expert_sniper", + "S19-Quest:quest_s19_feat_accolade_weaponspecialist__samematch_2", + "S19-Quest:quest_s19_feat_accolade_weaponspecialist__samematch_3", + "S19-Quest:quest_s19_feat_accolade_weaponspecialist__samematch_4", + "S19-Quest:quest_s19_feat_accolade_weaponspecialist__samematch_5", + "S19-Quest:quest_s19_feat_accolade_weaponspecialist__samematch_6", + "S19-Quest:quest_s19_feat_accolade_weaponspecialist__samematch_7", + "S19-Quest:quest_s19_feat_athenacollection_fish", + "S19-Quest:quest_s19_feat_athenacollection_npc", + "S19-Quest:quest_s19_feat_athenarank_duo_100x", + "S19-Quest:quest_s19_feat_athenarank_duo_10x", + "S19-Quest:quest_s19_feat_athenarank_duo_1x", + "S19-Quest:quest_s19_feat_athenarank_rumble_100x", + "S19-Quest:quest_s19_feat_athenarank_rumble_1x", + "S19-Quest:quest_s19_feat_athenarank_solo_100x", + "S19-Quest:quest_s19_feat_athenarank_solo_10elims", + "S19-Quest:quest_s19_feat_athenarank_solo_10x", + "S19-Quest:quest_s19_feat_athenarank_solo_1x", + "S19-Quest:quest_s19_feat_athenarank_squad_100x", + "S19-Quest:quest_s19_feat_athenarank_squad_10x", + "S19-Quest:quest_s19_feat_athenarank_squad_1x", + "S19-Quest:quest_s19_feat_athenarank_trios_100x", + "S19-Quest:quest_s19_feat_athenarank_trios_10x", + "S19-Quest:quest_s19_feat_athenarank_trios_1x", + "S19-Quest:quest_s19_feat_caught_goldfish", + "S19-Quest:quest_s19_feat_collect_goldbars", + "S19-Quest:quest_s19_feat_craft_weapon", + "S19-Quest:quest_s19_feat_death_goldfish", + "S19-Quest:quest_s19_feat_defend_bounty", + "S19-Quest:quest_s19_feat_evade_bounty", + "S19-Quest:quest_s19_feat_kill_aftersupplydrop", + "S19-Quest:quest_s19_feat_kill_bounty", + "S19-Quest:quest_s19_feat_kill_creature", + "S19-Quest:quest_s19_feat_kill_gliding", + "S19-Quest:quest_s19_feat_kill_goldfish", + "S19-Quest:quest_s19_feat_kill_pickaxe", + "S19-Quest:quest_s19_feat_kill_yeet", + "S19-Quest:quest_s19_feat_land_firsttime", + "S19-Quest:quest_s19_feat_poach_bounty", + "S19-Quest:quest_s19_feat_reach_seasonlevel", + "S19-Quest:quest_s19_feat_spend_goldbars", + "S19-Quest:quest_s19_feat_throw_consumable" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Feat_BundleSchedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Punchcard_GOW", + "templateId": "ChallengeBundle:QuestBundle_S19_Punchcard_GOW", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_Complete_GOW_05" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_GOW_PC_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_GOW", + "templateId": "ChallengeBundle:QuestBundle_S19_GOW", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_gow_q01", + "S19-Quest:quest_s19_gow_q02", + "S19-Quest:quest_s19_gow_q03", + "S19-Quest:quest_s19_gow_q04", + "S19-Quest:quest_s19_gow_q05" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_GOW_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bird_01", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Bird_01", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_bird_01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Bird_Schedule_01" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bird_02", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Bird_02", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_bird_02" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Bird_Schedule_02" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bird_03", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Bird_03", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_bird_03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Bird_Schedule_03" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bunny_01", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Bunny_01", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_bunny_01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Bunny_Schedule_01" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bunny_02", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Bunny_02", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_bunny_02" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Bunny_Schedule_02" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bunny_03", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Bunny_03", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_bunny_03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Bunny_Schedule_03" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Buttercake_01", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Buttercake_01", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_buttercake_01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Buttercake_Schedule_01" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Buttercake_02", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Buttercake_02", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_buttercake_02" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Buttercake_Schedule_02" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Buttercake_03", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Buttercake_03", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_buttercake_03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Buttercake_Schedule_03" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Cat_01", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Cat_01", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Cat_Schedule_01" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Cat_02", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Cat_02", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_cat_02" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Cat_Schedule_02" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Cat_03", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Cat_03", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_cat_03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Cat_Schedule_03" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Deer_01", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Deer_01", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_deer_01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Deer_Schedule_01" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Deer_02", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Deer_02", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_deer_02" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Deer_Schedule_02" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Deer_03", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Deer_03", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_deer_03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Deer_Schedule_03" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Fox_01", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Fox_01", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_fox_01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Fox_Schedule_01" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Fox_02", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Fox_02", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_fox_02" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Fox_Schedule_02" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Fox_03", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Fox_03", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_fox_03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Fox_Schedule_03" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Hyena_01", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Hyena_01", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_hyena_01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Hyena_Schedule_01" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Hyena_02", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Hyena_02", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_hyena_02" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Hyena_Schedule_02" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Hyena_03", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Hyena_03", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_hyena_03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Hyena_Schedule_03" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Lizard_01", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Lizard_01", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_lizard_01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Lizard_Schedule_01" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Lizard_02", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Lizard_02", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_lizard_02" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Lizard_Schedule_02" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Lizard_03", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Lizard_03", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_lizard_03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Lizard_Schedule_03" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Owl_01", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Owl_01", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_owl_01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Owl_Schedule_01" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Owl_02", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Owl_02", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_owl_02" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Owl_Schedule_02" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Owl_03", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Owl_03", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_owl_03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Owl_Schedule_03" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Wolf_01", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Wolf_01", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_wolf_01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Wolf_Schedule_01" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Wolf_02", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Wolf_02", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_wolf_02" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Wolf_Schedule_02" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Mask_Wolf_03", + "templateId": "ChallengeBundle:QuestBundle_S19_Mask_Wolf_03", + "grantedquestinstanceids": [ + "S19-Quest:quests_s19_mask_prereq", + "S19-Quest:quest_s19_mask_wolf_03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mask_Wolf_Schedule_03" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_CatchFish", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_CatchFish_Q01", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q02", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q03", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q04", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q05", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q06", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q07", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q08", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q09", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q10", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q11", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q12", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q13", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q14", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q15", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q16", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q17", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q18", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q19", + "S19-Quest:Quest_S19_Milestone_CatchFish_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q01", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q02", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q03", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q04", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q05", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q06", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q07", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q08", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q09", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q10", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q11", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q12", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q13", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q14", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q15", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q16", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q17", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q18", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q19", + "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q01", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q02", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q03", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q04", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q05", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q06", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q07", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q08", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q09", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q10", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q11", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q12", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q13", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q14", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q15", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q16", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q17", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q18", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q19", + "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q01", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q02", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q03", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q04", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q05", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q06", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q07", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q08", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q09", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q10", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q11", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q12", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q13", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q14", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q15", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q16", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q17", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q18", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q19", + "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q01", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q02", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q03", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q04", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q05", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q06", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q07", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q08", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q09", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q10", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q11", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q12", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q13", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q14", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q15", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q16", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q17", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q18", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q19", + "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q01", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q02", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q03", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q04", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q05", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q06", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q07", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q08", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q09", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q10", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q11", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q12", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q13", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q14", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q15", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q16", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q17", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q18", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q19", + "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_Eliminations", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_Eliminations_Q01", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q02", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q03", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q04", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q05", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q06", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q07", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q08", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q09", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q10", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q11", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q12", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q13", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q14", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q15", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q16", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q17", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q18", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q19", + "S19-Quest:Quest_S19_Milestone_Eliminations_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q01", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q02", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q03", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q04", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q05", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q06", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q07", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q08", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q09", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q10", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q11", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q12", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q13", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q14", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q15", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q16", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q17", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q18", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q19", + "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q01", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q02", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q03", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q04", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q05", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q06", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q07", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q08", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q09", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q10", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q11", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q12", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q13", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q14", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q15", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q16", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q17", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q18", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q19", + "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q01", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q02", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q03", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q04", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q05", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q06", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q07", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q08", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q09", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q10", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q11", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q12", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q13", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q14", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q15", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q16", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q17", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q18", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q19", + "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q01", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q02", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q03", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q04", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q05", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q06", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q07", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q08", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q09", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q10", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q11", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q12", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q13", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q14", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q15", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q16", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q17", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q18", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q19", + "S19-Quest:Quest_S19_Milestone_OpenVaults_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q01", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q02", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q03", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q04", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q05", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q06", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q07", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q08", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q09", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q10", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q11", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q12", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q13", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q14", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q15", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q16", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q17", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q18", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q19", + "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q01", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q02", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q03", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q04", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q05", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q06", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q07", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q08", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q09", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q10", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q11", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q12", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q13", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q14", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q15", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q16", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q17", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q18", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q19", + "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q01", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q02", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q03", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q04", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q05", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q06", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q07", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q08", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q09", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q10", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q11", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q12", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q13", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q14", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q15", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q16", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q17", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q18", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q19", + "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_SpendBars", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_SpendBars_Q01", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q02", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q03", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q04", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q05", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q06", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q07", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q08", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q09", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q10", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q11", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q12", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q13", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q14", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q15", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q16", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q17", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q18", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q19", + "S19-Quest:Quest_S19_Milestone_SpendBars_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q01", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q02", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q03", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q04", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q05", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q06", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q07", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q08", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q09", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q10", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q11", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q12", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q13", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q14", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q15", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q16", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q17", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q18", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q19", + "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q01", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q02", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q03", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q04", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q05", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q06", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q07", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q08", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q09", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q10", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q11", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q12", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q13", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q14", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q15", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q16", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q17", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q18", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q19", + "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q01", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q02", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q03", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q04", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q05", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q06", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q07", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q08", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q09", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q10", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q11", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q12", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q13", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q14", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q15", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q16", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q17", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q18", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q19", + "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q01", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q02", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q03", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q04", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q05", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q06", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q07", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q08", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q09", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q10", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q11", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q12", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q13", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q14", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q15", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q16", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q17", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q18", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q19", + "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Milestone_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_01", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_01", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W01_Q01", + "S19-Quest:Quest_S19_Weekly_W01_Q02", + "S19-Quest:Quest_S19_Weekly_W01_Q03", + "S19-Quest:Quest_S19_Weekly_W01_Q04", + "S19-Quest:Quest_S19_Weekly_W01_Q05", + "S19-Quest:Quest_S19_Weekly_W01_Q06", + "S19-Quest:Quest_S19_Weekly_W01_Q07", + "S19-Quest:Quest_S19_Weekly_W01_Q08", + "S19-Quest:Quest_S19_Weekly_W01_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_02", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_02", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W02_Q01", + "S19-Quest:Quest_S19_Weekly_W02_Q02", + "S19-Quest:Quest_S19_Weekly_W02_Q03", + "S19-Quest:Quest_S19_Weekly_W02_Q04", + "S19-Quest:Quest_S19_Weekly_W02_Q05", + "S19-Quest:Quest_S19_Weekly_W02_Q06", + "S19-Quest:Quest_S19_Weekly_W02_Q07", + "S19-Quest:Quest_S19_Weekly_W02_Q08", + "S19-Quest:Quest_S19_Weekly_W02_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_03", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_03", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W03_Q01", + "S19-Quest:Quest_S19_Weekly_W03_Q02", + "S19-Quest:Quest_S19_Weekly_W03_Q03", + "S19-Quest:Quest_S19_Weekly_W03_Q04", + "S19-Quest:Quest_S19_Weekly_W03_Q05", + "S19-Quest:Quest_S19_Weekly_W03_Q06", + "S19-Quest:Quest_S19_Weekly_W03_Q07", + "S19-Quest:Quest_S19_Weekly_W03_Q08", + "S19-Quest:Quest_S19_Weekly_W03_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_04", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_04", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W04_Q01", + "S19-Quest:Quest_S19_Weekly_W04_Q02", + "S19-Quest:Quest_S19_Weekly_W04_Q03", + "S19-Quest:Quest_S19_Weekly_W04_Q04", + "S19-Quest:Quest_S19_Weekly_W04_Q05", + "S19-Quest:Quest_S19_Weekly_W04_Q06", + "S19-Quest:Quest_S19_Weekly_W04_Q07", + "S19-Quest:Quest_S19_Weekly_W04_Q08", + "S19-Quest:Quest_S19_Weekly_W04_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_05", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_05", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W05_Q01", + "S19-Quest:Quest_S19_Weekly_W05_Q02", + "S19-Quest:Quest_S19_Weekly_W05_Q03", + "S19-Quest:Quest_S19_Weekly_W05_Q04", + "S19-Quest:Quest_S19_Weekly_W05_Q05", + "S19-Quest:Quest_S19_Weekly_W05_Q06", + "S19-Quest:Quest_S19_Weekly_W05_Q07", + "S19-Quest:Quest_S19_Weekly_W05_Q08", + "S19-Quest:Quest_S19_Weekly_W05_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_06", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_06", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W06_Q01", + "S19-Quest:Quest_S19_Weekly_W06_Q02", + "S19-Quest:Quest_S19_Weekly_W06_Q03", + "S19-Quest:Quest_S19_Weekly_W06_Q04", + "S19-Quest:Quest_S19_Weekly_W06_Q05", + "S19-Quest:Quest_S19_Weekly_W06_Q06", + "S19-Quest:Quest_S19_Weekly_W06_Q07", + "S19-Quest:Quest_S19_Weekly_W06_Q08", + "S19-Quest:Quest_S19_Weekly_W06_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_07", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_07", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W07_Q01", + "S19-Quest:Quest_S19_Weekly_W07_Q02", + "S19-Quest:Quest_S19_Weekly_W07_Q03", + "S19-Quest:Quest_S19_Weekly_W07_Q04", + "S19-Quest:Quest_S19_Weekly_W07_Q05", + "S19-Quest:Quest_S19_Weekly_W07_Q06", + "S19-Quest:Quest_S19_Weekly_W07_Q07", + "S19-Quest:Quest_S19_Weekly_W07_Q08", + "S19-Quest:Quest_S19_Weekly_W07_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_08", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_08", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W08_Q01", + "S19-Quest:Quest_S19_Weekly_W08_Q02", + "S19-Quest:Quest_S19_Weekly_W08_Q03", + "S19-Quest:Quest_S19_Weekly_W08_Q04", + "S19-Quest:Quest_S19_Weekly_W08_Q05", + "S19-Quest:Quest_S19_Weekly_W08_Q06", + "S19-Quest:Quest_S19_Weekly_W08_Q07", + "S19-Quest:Quest_S19_Weekly_W08_Q08", + "S19-Quest:Quest_S19_Weekly_W08_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_09", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_09", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W09_Q01", + "S19-Quest:Quest_S19_Weekly_W09_Q02", + "S19-Quest:Quest_S19_Weekly_W09_Q03", + "S19-Quest:Quest_S19_Weekly_W09_Q04", + "S19-Quest:Quest_S19_Weekly_W09_Q05", + "S19-Quest:Quest_S19_Weekly_W09_Q06", + "S19-Quest:Quest_S19_Weekly_W09_Q07", + "S19-Quest:Quest_S19_Weekly_W09_Q08", + "S19-Quest:Quest_S19_Weekly_W09_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_10", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_10", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W10_Q01", + "S19-Quest:Quest_S19_Weekly_W10_Q02", + "S19-Quest:Quest_S19_Weekly_W10_Q03", + "S19-Quest:Quest_S19_Weekly_W10_Q04", + "S19-Quest:Quest_S19_Weekly_W10_Q05", + "S19-Quest:Quest_S19_Weekly_W10_Q06", + "S19-Quest:Quest_S19_Weekly_W10_Q07", + "S19-Quest:Quest_S19_Weekly_W10_Q08", + "S19-Quest:Quest_S19_Weekly_W10_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_11", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_11", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W11_Q01", + "S19-Quest:Quest_S19_Weekly_W12_Q02", + "S19-Quest:Quest_S19_Weekly_W11_Q03", + "S19-Quest:Quest_S19_Weekly_W11_Q04", + "S19-Quest:Quest_S19_Weekly_W11_Q05", + "S19-Quest:Quest_S19_Weekly_W11_Q06", + "S19-Quest:Quest_S19_Weekly_W11_Q07", + "S19-Quest:Quest_S19_Weekly_W11_Q08", + "S19-Quest:Quest_S19_Weekly_W11_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_12", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_12", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W12_Q01", + "S19-Quest:Quest_S19_Weekly_W11_Q02", + "S19-Quest:Quest_S19_Weekly_W12_Q03", + "S19-Quest:Quest_S19_Weekly_W12_Q04", + "S19-Quest:Quest_S19_Weekly_W12_Q05", + "S19-Quest:Quest_S19_Weekly_W12_Q06", + "S19-Quest:Quest_S19_Weekly_W12_Q07", + "S19-Quest:Quest_S19_Weekly_W12_Q08", + "S19-Quest:Quest_S19_Weekly_W12_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_13", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_13", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W13_Q01", + "S19-Quest:Quest_S19_Weekly_W13_Q02", + "S19-Quest:Quest_S19_Weekly_W13_Q03", + "S19-Quest:Quest_S19_Weekly_W13_Q04", + "S19-Quest:Quest_S19_Weekly_W13_Q05", + "S19-Quest:Quest_S19_Weekly_W13_Q06", + "S19-Quest:Quest_S19_Weekly_W13_Q07", + "S19-Quest:Quest_S19_Weekly_W13_Q08", + "S19-Quest:Quest_S19_Weekly_W13_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_Week_14", + "templateId": "ChallengeBundle:MissionBundle_S19_Week_14", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_W14_Q01", + "S19-Quest:Quest_S19_Weekly_W14_Q02", + "S19-Quest:Quest_S19_Weekly_W14_Q03", + "S19-Quest:Quest_S19_Weekly_W14_Q04", + "S19-Quest:Quest_S19_Weekly_W14_Q05", + "S19-Quest:Quest_S19_Weekly_W14_Q06", + "S19-Quest:Quest_S19_Weekly_W14_Q07", + "S19-Quest:Quest_S19_Weekly_W14_Q08", + "S19-Quest:Quest_S19_Weekly_W14_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Logs_Hidden_1", + "templateId": "ChallengeBundle:QuestBundle_S19_Logs_Hidden_1", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_audiolog_q01" + ], + "questStages": [ + "S19-Quest:quest_s19_audiolog_q02", + "S19-Quest:quest_s19_ReplayLog_01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Mission_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_01", + "templateId": "ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_01", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_monarchleveluppack_w01_01", + "S19-Quest:quest_s19_monarchleveluppack_w01_02", + "S19-Quest:quest_s19_monarchleveluppack_w01_03", + "S19-Quest:quest_s19_monarchleveluppack_w01_04", + "S19-Quest:quest_s19_monarchleveluppack_w01_05", + "S19-Quest:quest_s19_monarchleveluppack_w01_06", + "S19-Quest:quest_s19_monarchleveluppack_w01_07", + "S19-Quest:quest_s19_monarchleveluppack_w02_01", + "S19-Quest:quest_s19_monarchleveluppack_w03_01", + "S19-Quest:quest_s19_monarchleveluppack_w04_01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_MonarchLevelUpPack_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_02", + "templateId": "ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_02", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_monarchleveluppack_w02_02", + "S19-Quest:quest_s19_monarchleveluppack_w02_03", + "S19-Quest:quest_s19_monarchleveluppack_w02_04", + "S19-Quest:quest_s19_monarchleveluppack_w02_05", + "S19-Quest:quest_s19_monarchleveluppack_w02_06", + "S19-Quest:quest_s19_monarchleveluppack_w02_07" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_MonarchLevelUpPack_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_03", + "templateId": "ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_03", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_monarchleveluppack_w03_02", + "S19-Quest:quest_s19_monarchleveluppack_w03_03", + "S19-Quest:quest_s19_monarchleveluppack_w03_04", + "S19-Quest:quest_s19_monarchleveluppack_w03_05", + "S19-Quest:quest_s19_monarchleveluppack_w03_06", + "S19-Quest:quest_s19_monarchleveluppack_w03_07" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_MonarchLevelUpPack_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_04", + "templateId": "ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_04", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_monarchleveluppack_w04_02", + "S19-Quest:quest_s19_monarchleveluppack_w04_03", + "S19-Quest:quest_s19_monarchleveluppack_w04_04", + "S19-Quest:quest_s19_monarchleveluppack_w04_05", + "S19-Quest:quest_s19_monarchleveluppack_w04_06", + "S19-Quest:quest_s19_monarchleveluppack_w04_07" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_MonarchLevelUpPack_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Punchcard_MonarchLevelUpPack", + "templateId": "ChallengeBundle:QuestBundle_S19_Punchcard_MonarchLevelUpPack", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_punchcard_monarchleveluppack_01", + "S19-Quest:quest_s19_punchcard_monarchleveluppack_02", + "S19-Quest:quest_s19_punchcard_monarchleveluppack_03", + "S19-Quest:quest_s19_punchcard_monarchleveluppack_04" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_MonarchLevelUpPack_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier01", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_Tier01", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q01", + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q02" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier02", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_Tier02", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q03", + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q04" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier03", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_Tier03", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q05", + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q06" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier04", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_Tier04", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q07", + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q08" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier05", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_Tier05", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q09", + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q10" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier06", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_Tier06", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q11", + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q12" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier07", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_Tier07", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q13", + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q14" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier08", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_Tier08", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q15", + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q16" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier09", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_Tier09", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q17", + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q18" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier10", + "templateId": "ChallengeBundle:QuestBundle_S19_Milestone_Tier10", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q19", + "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q20" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W01", + "templateId": "ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W01", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W01_Q01", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W01_Q02", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W01_Q03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W02", + "templateId": "ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W02", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W02_Q01", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W02_Q02", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W02_Q03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W03", + "templateId": "ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W03", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W03_Q01", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W03_Q02", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W03_Q03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W04", + "templateId": "ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W04", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W04_Q01", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W04_Q02", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W04_Q03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W05", + "templateId": "ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W05", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W05_Q01", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W05_Q02", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W05_Q03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W06", + "templateId": "ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W06", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W06_Q01", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W06_Q02", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W06_Q03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W07", + "templateId": "ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W07", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W07_Q01", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W07_Q02", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W07_Q03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W08", + "templateId": "ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W08", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W08_Q01", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W08_Q02", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W08_Q03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W09", + "templateId": "ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W09", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W09_Q01", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W09_Q02", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W09_Q03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W10", + "templateId": "ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W10", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W10_Q01", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W10_Q02", + "S19-Quest:Quest_S19_Weekly_CompleteSeason_W10_Q03" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_PunchCard_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_WinterfestCrewGrant", + "templateId": "ChallengeBundle:QuestBundle_S19_WinterfestCrewGrant", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_WinterfestCrewGrant" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Schedule_WinterfestCrewGrant" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_Superlevel_01", + "templateId": "ChallengeBundle:QuestBundle_S19_Superlevel_01", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Superlevel_q01" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_Superlevels_Schedule_01" + }, + { + "itemGuid": "S19-ChallengeBundle:QuestBundle_S19_VictoryCrown", + "templateId": "ChallengeBundle:QuestBundle_S19_VictoryCrown", + "grantedquestinstanceids": [ + "S19-Quest:quest_s19_victorycrown_hidden" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_VictoryCrown_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Avian_W14", + "templateId": "ChallengeBundle:MissionBundle_S19_WildWeek_Avian_W14", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_Avian_Q01", + "S19-Quest:Quest_S19_Weekly_Avian_Q02", + "S19-Quest:Quest_S19_Weekly_Avian_Q03", + "S19-Quest:Quest_S19_Weekly_Avian_Q04", + "S19-Quest:Quest_S19_Weekly_Avian_Q05", + "S19-Quest:Quest_S19_Weekly_Avian_Q06", + "S19-Quest:Quest_S19_Weekly_Avian_Q07", + "S19-Quest:Quest_S19_Weekly_Avian_Q08", + "S19-Quest:Quest_S19_Weekly_Avian_Q09" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_WildWeek_Avian_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15", + "templateId": "ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_Bargain01_Q01", + "S19-Quest:Quest_S19_Weekly_Bargain01_Q02", + "S19-Quest:Quest_S19_Weekly_Bargain01_Q03", + "S19-Quest:Quest_S19_Weekly_Bargain01_Q04", + "S19-Quest:Quest_S19_Weekly_Bargain01_Q05", + "S19-Quest:Quest_S19_Weekly_Bargain02", + "S19-Quest:Quest_S19_Weekly_Bargain03", + "S19-Quest:Quest_S19_Weekly_Bargain04", + "S19-Quest:Quest_S19_Weekly_Bargain06", + "S19-Quest:Quest_S19_Weekly_Bargain07", + "S19-Quest:Quest_S19_Weekly_Bargain08" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_WildWeek_Bargain_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Mobility_W13", + "templateId": "ChallengeBundle:MissionBundle_S19_WildWeek_Mobility_W13", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_Mobility_Q01", + "S19-Quest:Quest_S19_Weekly_Mobility_Q04", + "S19-Quest:Quest_S19_Weekly_Mobility_Q05", + "S19-Quest:Quest_S19_Weekly_Mobility_Q06", + "S19-Quest:Quest_S19_Weekly_Mobility_Q07" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_WildWeek_Mobility_Schedule" + }, + { + "itemGuid": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Primal_W12", + "templateId": "ChallengeBundle:MissionBundle_S19_WildWeek_Primal_W12", + "grantedquestinstanceids": [ + "S19-Quest:Quest_S19_Weekly_Primal_Q01", + "S19-Quest:Quest_S19_Weekly_Primal_Q02", + "S19-Quest:Quest_S19_Weekly_Primal_Q03", + "S19-Quest:Quest_S19_Weekly_Primal_Q04", + "S19-Quest:Quest_S19_Weekly_Primal_Q05", + "S19-Quest:Quest_S19_Weekly_Primal_Q08" + ], + "challenge_bundle_schedule_id": "S19-ChallengeBundleSchedule:Season19_WildWeek_Primal_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S19-Quest:Quest_S19_BPUnlockableCharacter_Hidden", + "templateId": "Quest:Quest_S19_BPUnlockableCharacter_Hidden", + "objectives": [ + { + "name": "Quest_S19_BPUnlockableCharacter_Hidden_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_BPUnlockableCharacter_q01", + "templateId": "Quest:Quest_S19_BPUnlockableCharacter_q01", + "objectives": [ + { + "name": "Quest_S19_BPUnlockableCharacter_q01_obj0", + "count": 1 + }, + { + "name": "Quest_S19_BPUnlockableCharacter_q01_obj1", + "count": 1 + }, + { + "name": "Quest_S19_BPUnlockableCharacter_q01_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_BPUnlockableCharacter_q10", + "templateId": "Quest:Quest_S19_BPUnlockableCharacter_q10", + "objectives": [ + { + "name": "Quest_S19_BPUnlockableCharacter_q10_obj0", + "count": 1 + }, + { + "name": "Quest_S19_BPUnlockableCharacter_q10_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_BPUnlockableCharacter_q11", + "templateId": "Quest:Quest_S19_BPUnlockableCharacter_q11", + "objectives": [ + { + "name": "Quest_S19_BPUnlockableCharacter_q11_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_11" + }, + { + "itemGuid": "S19-Quest:Quest_S19_BPUnlockableCharacter_q02", + "templateId": "Quest:Quest_S19_BPUnlockableCharacter_q02", + "objectives": [ + { + "name": "Quest_S19_BPUnlockableCharacter_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_BPUnlockableCharacter_q03", + "templateId": "Quest:Quest_S19_BPUnlockableCharacter_q03", + "objectives": [ + { + "name": "Quest_S19_BPUnlockableCharacter_q03_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_BPUnlockableCharacter_q04", + "templateId": "Quest:Quest_S19_BPUnlockableCharacter_q04", + "objectives": [ + { + "name": "Quest_S19_BPUnlockableCharacter_q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_BPUnlockableCharacter_q05", + "templateId": "Quest:Quest_S19_BPUnlockableCharacter_q05", + "objectives": [ + { + "name": "Quest_S19_BPUnlockableCharacter_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_BPUnlockableCharacter_q06", + "templateId": "Quest:Quest_S19_BPUnlockableCharacter_q06", + "objectives": [ + { + "name": "Quest_S19_BPUnlockableCharacter_q06_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_BPUnlockableCharacter_q07", + "templateId": "Quest:Quest_S19_BPUnlockableCharacter_q07", + "objectives": [ + { + "name": "Quest_S19_BPUnlockableCharacter_q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_BPUnlockableCharacter_q08", + "templateId": "Quest:Quest_S19_BPUnlockableCharacter_q08", + "objectives": [ + { + "name": "Quest_S19_BPUnlockableCharacter_q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_BPUnlockableCharacter_q09", + "templateId": "Quest:Quest_S19_BPUnlockableCharacter_q09", + "objectives": [ + { + "name": "Quest_S19_BPUnlockableCharacter_q09_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_BPUnlockableCharacter_09" + }, + { + "itemGuid": "S19-Quest:quest_s19_conv_hidden_01", + "templateId": "Quest:quest_s19_conv_hidden_01", + "objectives": [ + { + "name": "quest_s19_conv_hidden_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_ConvHidden" + }, + { + "itemGuid": "S19-Quest:quest_s19_trey_q01", + "templateId": "Quest:quest_s19_trey_q01", + "objectives": [ + { + "name": "quest_s19_trey_q01_obj0", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj1", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj2", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj3", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj4", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj5", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj6", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj7", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj8", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj9", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj10", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj11", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj12", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj13", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj14", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj15", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj16", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj17", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj18", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj19", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj20", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj21", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj22", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj23", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj24", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj25", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj26", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj27", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj28", + "count": 1 + }, + { + "name": "quest_s19_trey_q01_obj29", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Trey" + }, + { + "itemGuid": "S19-Quest:quest_s19_trey_q02", + "templateId": "Quest:quest_s19_trey_q02", + "objectives": [ + { + "name": "quest_s19_trey_q02_obj0", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj1", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj2", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj3", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj4", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj5", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj6", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj7", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj8", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj9", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj10", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj11", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj12", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj13", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj14", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj15", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj16", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj17", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj18", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj19", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj20", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj21", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj22", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj23", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj24", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj25", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj26", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj27", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj28", + "count": 1 + }, + { + "name": "quest_s19_trey_q02_obj29", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Trey" + }, + { + "itemGuid": "S19-Quest:quest_s19_trey_q03", + "templateId": "Quest:quest_s19_trey_q03", + "objectives": [ + { + "name": "quest_s19_trey_q03_obj0", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj1", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj2", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj3", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj4", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj5", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj6", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj7", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj8", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj9", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj10", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj11", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj12", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj13", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj14", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj15", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj16", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj17", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj18", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj19", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj20", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj21", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj22", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj23", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj24", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj25", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj26", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj27", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj28", + "count": 1 + }, + { + "name": "quest_s19_trey_q03_obj29", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Trey" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_01", + "templateId": "Quest:quest_s19_dice_01", + "objectives": [ + { + "name": "quest_s19_dice_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_1" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_10", + "templateId": "Quest:quest_s19_dice_10", + "objectives": [ + { + "name": "quest_s19_dice_10_obj0", + "count": 1 + }, + { + "name": "quest_s19_dice_10_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_10" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_11", + "templateId": "Quest:quest_s19_dice_11", + "objectives": [ + { + "name": "quest_s19_dice_11_obj0", + "count": 1 + }, + { + "name": "quest_s19_dice_11_obj1", + "count": 1 + }, + { + "name": "quest_s19_dice_11_obj2", + "count": 1 + }, + { + "name": "quest_s19_dice_11_obj3", + "count": 1 + }, + { + "name": "quest_s19_dice_11_obj4", + "count": 1 + }, + { + "name": "quest_s19_dice_11_obj5", + "count": 1 + }, + { + "name": "quest_s19_dice_11_obj6", + "count": 1 + }, + { + "name": "quest_s19_dice_11_obj7", + "count": 1 + }, + { + "name": "quest_s19_dice_11_obj8", + "count": 1 + }, + { + "name": "quest_s19_dice_11_obj9", + "count": 1 + }, + { + "name": "quest_s19_dice_11_obj10", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_11" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_02", + "templateId": "Quest:quest_s19_dice_02", + "objectives": [ + { + "name": "quest_s19_dice_02_obj0", + "count": 1 + }, + { + "name": "quest_s19_dice_02_obj1", + "count": 1 + }, + { + "name": "quest_s19_dice_02_obj2", + "count": 1 + }, + { + "name": "quest_s19_dice_02_obj3", + "count": 1 + }, + { + "name": "quest_s19_dice_02_obj4", + "count": 1 + }, + { + "name": "quest_s19_dice_02_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_2" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_03", + "templateId": "Quest:quest_s19_dice_03", + "objectives": [ + { + "name": "quest_s19_dice_03_obj0", + "count": 1 + }, + { + "name": "quest_s19_dice_03_obj1", + "count": 1 + }, + { + "name": "quest_s19_dice_03_obj2", + "count": 1 + }, + { + "name": "quest_s19_dice_03_obj3", + "count": 1 + }, + { + "name": "quest_s19_dice_03_obj4", + "count": 1 + }, + { + "name": "quest_s19_dice_03_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_3" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_05", + "templateId": "Quest:quest_s19_dice_05", + "objectives": [ + { + "name": "quest_s19_dice_05_obj0", + "count": 1 + }, + { + "name": "quest_s19_dice_05_obj1", + "count": 1 + }, + { + "name": "quest_s19_dice_05_obj2", + "count": 1 + }, + { + "name": "quest_s19_dice_05_obj3", + "count": 1 + }, + { + "name": "quest_s19_dice_05_obj4", + "count": 1 + }, + { + "name": "quest_s19_dice_05_obj5", + "count": 1 + }, + { + "name": "quest_s19_dice_05_obj6", + "count": 1 + }, + { + "name": "quest_s19_dice_05_obj7", + "count": 1 + }, + { + "name": "quest_s19_dice_05_obj8", + "count": 1 + }, + { + "name": "quest_s19_dice_05_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_5" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_07", + "templateId": "Quest:quest_s19_dice_07", + "objectives": [ + { + "name": "quest_s19_dice_07_obj0", + "count": 1 + }, + { + "name": "quest_s19_dice_07_obj1", + "count": 1 + }, + { + "name": "quest_s19_dice_07_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_7" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_09", + "templateId": "Quest:quest_s19_dice_09", + "objectives": [ + { + "name": "quest_s19_dice_09_obj0", + "count": 1 + }, + { + "name": "quest_s19_dice_09_obj1", + "count": 1 + }, + { + "name": "quest_s19_dice_09_obj2", + "count": 1 + }, + { + "name": "quest_s19_dice_09_obj3", + "count": 1 + }, + { + "name": "quest_s19_dice_09_obj4", + "count": 1 + }, + { + "name": "quest_s19_dice_09_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_9" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_04", + "templateId": "Quest:quest_s19_dice_04", + "objectives": [ + { + "name": "quest_s19_dice_04_obj0", + "count": 1 + }, + { + "name": "quest_s19_dice_04_obj1", + "count": 1 + }, + { + "name": "quest_s19_dice_04_obj2", + "count": 1 + }, + { + "name": "quest_s19_dice_04_obj3", + "count": 1 + }, + { + "name": "quest_s19_dice_04_obj4", + "count": 1 + }, + { + "name": "quest_s19_dice_04_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_4" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_hidden_1", + "templateId": "Quest:quest_s19_dice_hidden_1", + "objectives": [ + { + "name": "quest_s19_dice_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_Hidden_1" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_06", + "templateId": "Quest:quest_s19_dice_06", + "objectives": [ + { + "name": "quest_s19_dice_06_obj0", + "count": 1 + }, + { + "name": "quest_s19_dice_06_obj1", + "count": 1 + }, + { + "name": "quest_s19_dice_06_obj2", + "count": 1 + }, + { + "name": "quest_s19_dice_06_obj3", + "count": 1 + }, + { + "name": "quest_s19_dice_06_obj4", + "count": 1 + }, + { + "name": "quest_s19_dice_06_obj5", + "count": 1 + }, + { + "name": "quest_s19_dice_06_obj6", + "count": 1 + }, + { + "name": "quest_s19_dice_06_obj7", + "count": 1 + }, + { + "name": "quest_s19_dice_06_obj8", + "count": 1 + }, + { + "name": "quest_s19_dice_06_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_6" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_hidden_2", + "templateId": "Quest:quest_s19_dice_hidden_2", + "objectives": [ + { + "name": "quest_s19_dice_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_Hidden_2" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_08", + "templateId": "Quest:quest_s19_dice_08", + "objectives": [ + { + "name": "quest_s19_dice_08_obj0", + "count": 1 + }, + { + "name": "quest_s19_dice_08_obj1", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_8" + }, + { + "itemGuid": "S19-Quest:quest_s19_dice_hidden_3", + "templateId": "Quest:quest_s19_dice_hidden_3", + "objectives": [ + { + "name": "quest_s19_dice_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Dice_Hidden_3" + }, + { + "itemGuid": "S19-Quest:quest_s19_exosuit_01", + "templateId": "Quest:quest_s19_exosuit_01", + "objectives": [ + { + "name": "quest_s19_exosuit_01_obj0", + "count": 1 + }, + { + "name": "quest_s19_exosuit_01_obj1", + "count": 1 + }, + { + "name": "quest_s19_exosuit_01_obj2", + "count": 1 + }, + { + "name": "quest_s19_exosuit_01_obj3", + "count": 1 + }, + { + "name": "quest_s19_exosuit_01_obj4", + "count": 1 + }, + { + "name": "quest_s19_exosuit_01_obj5", + "count": 1 + }, + { + "name": "quest_s19_exosuit_01_obj6", + "count": 1 + }, + { + "name": "quest_s19_exosuit_01_obj7", + "count": 1 + }, + { + "name": "quest_s19_exosuit_01_obj8", + "count": 1 + }, + { + "name": "quest_s19_exosuit_01_obj9", + "count": 1 + }, + { + "name": "quest_s19_exosuit_01_obj10", + "count": 1 + }, + { + "name": "quest_s19_exosuit_01_obj11", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_exosuit_02", + "templateId": "Quest:quest_s19_exosuit_02", + "objectives": [ + { + "name": "quest_s19_exosuit_02_obj0", + "count": 1 + }, + { + "name": "quest_s19_exosuit_02_obj1", + "count": 1 + }, + { + "name": "quest_s19_exosuit_02_obj2", + "count": 1 + }, + { + "name": "quest_s19_exosuit_02_obj3", + "count": 1 + }, + { + "name": "quest_s19_exosuit_02_obj4", + "count": 1 + }, + { + "name": "quest_s19_exosuit_02_obj5", + "count": 1 + }, + { + "name": "quest_s19_exosuit_02_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_exosuit_03", + "templateId": "Quest:quest_s19_exosuit_03", + "objectives": [ + { + "name": "quest_s19_exosuit_03_obj0", + "count": 1 + }, + { + "name": "quest_s19_exosuit_03_obj1", + "count": 1 + }, + { + "name": "quest_s19_exosuit_03_obj2", + "count": 1 + }, + { + "name": "quest_s19_exosuit_03_obj3", + "count": 1 + }, + { + "name": "quest_s19_exosuit_03_obj4", + "count": 1 + }, + { + "name": "quest_s19_exosuit_03_obj5", + "count": 1 + }, + { + "name": "quest_s19_exosuit_03_obj6", + "count": 1 + }, + { + "name": "quest_s19_exosuit_03_obj7", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_exosuit_04", + "templateId": "Quest:quest_s19_exosuit_04", + "objectives": [ + { + "name": "quest_s19_exosuit_04_obj0", + "count": 1 + }, + { + "name": "quest_s19_exosuit_04_obj1", + "count": 1 + }, + { + "name": "quest_s19_exosuit_04_obj2", + "count": 1 + }, + { + "name": "quest_s19_exosuit_04_obj3", + "count": 1 + }, + { + "name": "quest_s19_exosuit_04_obj4", + "count": 1 + }, + { + "name": "quest_s19_exosuit_04_obj5", + "count": 1 + }, + { + "name": "quest_s19_exosuit_04_obj6", + "count": 1 + }, + { + "name": "quest_s19_exosuit_04_obj7", + "count": 1 + }, + { + "name": "quest_s19_exosuit_04_obj8", + "count": 1 + }, + { + "name": "quest_s19_exosuit_04_obj9", + "count": 1 + }, + { + "name": "quest_s19_exosuit_04_obj10", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_exosuit_05", + "templateId": "Quest:quest_s19_exosuit_05", + "objectives": [ + { + "name": "quest_s19_exosuit_05_obj0", + "count": 1 + }, + { + "name": "quest_s19_exosuit_05_obj1", + "count": 1 + }, + { + "name": "quest_s19_exosuit_05_obj2", + "count": 1 + }, + { + "name": "quest_s19_exosuit_05_obj3", + "count": 1 + }, + { + "name": "quest_s19_exosuit_05_obj4", + "count": 1 + }, + { + "name": "quest_s19_exosuit_05_obj5", + "count": 1 + }, + { + "name": "quest_s19_exosuit_05_obj6", + "count": 1 + }, + { + "name": "quest_s19_exosuit_05_obj7", + "count": 1 + }, + { + "name": "quest_s19_exosuit_05_obj8", + "count": 1 + }, + { + "name": "quest_s19_exosuit_05_obj9", + "count": 1 + }, + { + "name": "quest_s19_exosuit_05_obj10", + "count": 1 + }, + { + "name": "quest_s19_exosuit_05_obj11", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_exosuit_06", + "templateId": "Quest:quest_s19_exosuit_06", + "objectives": [ + { + "name": "quest_s19_exosuit_06_obj0", + "count": 1 + }, + { + "name": "quest_s19_exosuit_06_obj1", + "count": 1 + }, + { + "name": "quest_s19_exosuit_06_obj2", + "count": 1 + }, + { + "name": "quest_s19_exosuit_06_obj3", + "count": 1 + }, + { + "name": "quest_s19_exosuit_06_obj4", + "count": 1 + }, + { + "name": "quest_s19_exosuit_06_obj5", + "count": 1 + }, + { + "name": "quest_s19_exosuit_06_obj6", + "count": 1 + }, + { + "name": "quest_s19_exosuit_06_obj7", + "count": 1 + }, + { + "name": "quest_s19_exosuit_06_obj8", + "count": 1 + }, + { + "name": "quest_s19_exosuit_06_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_exosuit_07", + "templateId": "Quest:quest_s19_exosuit_07", + "objectives": [ + { + "name": "quest_s19_exosuit_07_obj0", + "count": 1 + }, + { + "name": "quest_s19_exosuit_07_obj1", + "count": 1 + }, + { + "name": "quest_s19_exosuit_07_obj2", + "count": 1 + }, + { + "name": "quest_s19_exosuit_07_obj3", + "count": 1 + }, + { + "name": "quest_s19_exosuit_07_obj4", + "count": 1 + }, + { + "name": "quest_s19_exosuit_07_obj5", + "count": 1 + }, + { + "name": "quest_s19_exosuit_07_obj6", + "count": 1 + }, + { + "name": "quest_s19_exosuit_07_obj7", + "count": 1 + }, + { + "name": "quest_s19_exosuit_07_obj8", + "count": 1 + }, + { + "name": "quest_s19_exosuit_07_obj9", + "count": 1 + }, + { + "name": "quest_s19_exosuit_07_obj10", + "count": 1 + }, + { + "name": "quest_s19_exosuit_07_obj11", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_exosuit_08", + "templateId": "Quest:quest_s19_exosuit_08", + "objectives": [ + { + "name": "quest_s19_exosuit_08_obj0", + "count": 1 + }, + { + "name": "quest_s19_exosuit_08_obj1", + "count": 1 + }, + { + "name": "quest_s19_exosuit_08_obj2", + "count": 1 + }, + { + "name": "quest_s19_exosuit_08_obj3", + "count": 1 + }, + { + "name": "quest_s19_exosuit_08_obj4", + "count": 1 + }, + { + "name": "quest_s19_exosuit_08_obj5", + "count": 1 + }, + { + "name": "quest_s19_exosuit_08_obj6", + "count": 1 + }, + { + "name": "quest_s19_exosuit_08_obj7", + "count": 1 + }, + { + "name": "quest_s19_exosuit_08_obj8", + "count": 1 + }, + { + "name": "quest_s19_exosuit_08_obj9", + "count": 1 + }, + { + "name": "quest_s19_exosuit_08_obj10", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_exosuit_09", + "templateId": "Quest:quest_s19_exosuit_09", + "objectives": [ + { + "name": "quest_s19_exosuit_09_obj0", + "count": 1 + }, + { + "name": "quest_s19_exosuit_09_obj1", + "count": 1 + }, + { + "name": "quest_s19_exosuit_09_obj2", + "count": 1 + }, + { + "name": "quest_s19_exosuit_09_obj3", + "count": 1 + }, + { + "name": "quest_s19_exosuit_09_obj4", + "count": 1 + }, + { + "name": "quest_s19_exosuit_09_obj5", + "count": 1 + }, + { + "name": "quest_s19_exosuit_09_obj6", + "count": 1 + }, + { + "name": "quest_s19_exosuit_09_obj7", + "count": 1 + }, + { + "name": "quest_s19_exosuit_09_obj8", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_exosuit_10", + "templateId": "Quest:quest_s19_exosuit_10", + "objectives": [ + { + "name": "quest_s19_exosuit_10_obj0", + "count": 1 + }, + { + "name": "quest_s19_exosuit_10_obj1", + "count": 1 + }, + { + "name": "quest_s19_exosuit_10_obj2", + "count": 1 + }, + { + "name": "quest_s19_exosuit_10_obj3", + "count": 1 + }, + { + "name": "quest_s19_exosuit_10_obj4", + "count": 1 + }, + { + "name": "quest_s19_exosuit_10_obj5", + "count": 1 + }, + { + "name": "quest_s19_exosuit_10_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_complete_exosuit_01", + "templateId": "Quest:quest_s19_complete_exosuit_01", + "objectives": [ + { + "name": "quest_s19_complete_exosuit_01_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Punchcard_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_complete_exosuit_02", + "templateId": "Quest:quest_s19_complete_exosuit_02", + "objectives": [ + { + "name": "quest_s19_complete_exosuit_02_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Punchcard_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_complete_exosuit_03", + "templateId": "Quest:quest_s19_complete_exosuit_03", + "objectives": [ + { + "name": "quest_s19_complete_exosuit_03_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Punchcard_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_complete_exosuit_04", + "templateId": "Quest:quest_s19_complete_exosuit_04", + "objectives": [ + { + "name": "quest_s19_complete_exosuit_04_obj0", + "count": 8 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Punchcard_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_complete_exosuit_05", + "templateId": "Quest:quest_s19_complete_exosuit_05", + "objectives": [ + { + "name": "quest_s19_complete_exosuit_05_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Punchcard_Exosuit" + }, + { + "itemGuid": "S19-Quest:quest_s19_Complete_GOW_05", + "templateId": "Quest:quest_s19_Complete_GOW_05", + "objectives": [ + { + "name": "quest_s19_Complete_GOW_05_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Punchcard_GOW" + }, + { + "itemGuid": "S19-Quest:quest_s19_gow_q01", + "templateId": "Quest:quest_s19_gow_q01", + "objectives": [ + { + "name": "quest_s19_gow_q01_obj0", + "count": 1 + }, + { + "name": "quest_s19_gow_q01_obj1", + "count": 1 + }, + { + "name": "quest_s19_gow_q01_obj2", + "count": 1 + }, + { + "name": "quest_s19_gow_q01_obj3", + "count": 1 + }, + { + "name": "quest_s19_gow_q01_obj4", + "count": 1 + }, + { + "name": "quest_s19_gow_q01_obj5", + "count": 1 + }, + { + "name": "quest_s19_gow_q01_obj6", + "count": 1 + }, + { + "name": "quest_s19_gow_q01_obj7", + "count": 1 + }, + { + "name": "quest_s19_gow_q01_obj8", + "count": 1 + }, + { + "name": "quest_s19_gow_q01_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_GOW" + }, + { + "itemGuid": "S19-Quest:quest_s19_gow_q02", + "templateId": "Quest:quest_s19_gow_q02", + "objectives": [ + { + "name": "quest_s19_gow_q02_obj0", + "count": 1 + }, + { + "name": "quest_s19_gow_q02_obj1", + "count": 1 + }, + { + "name": "quest_s19_gow_q02_obj2", + "count": 1 + }, + { + "name": "quest_s19_gow_q02_obj3", + "count": 1 + }, + { + "name": "quest_s19_gow_q02_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_GOW" + }, + { + "itemGuid": "S19-Quest:quest_s19_gow_q03", + "templateId": "Quest:quest_s19_gow_q03", + "objectives": [ + { + "name": "quest_s19_gow_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_GOW" + }, + { + "itemGuid": "S19-Quest:quest_s19_gow_q04", + "templateId": "Quest:quest_s19_gow_q04", + "objectives": [ + { + "name": "quest_s19_gow_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_GOW" + }, + { + "itemGuid": "S19-Quest:quest_s19_gow_q05", + "templateId": "Quest:quest_s19_gow_q05", + "objectives": [ + { + "name": "quest_s19_gow_q05_obj0", + "count": 1 + }, + { + "name": "quest_s19_gow_q05_obj1", + "count": 1 + }, + { + "name": "quest_s19_gow_q05_obj2", + "count": 1 + }, + { + "name": "quest_s19_gow_q05_obj3", + "count": 1 + }, + { + "name": "quest_s19_gow_q05_obj4", + "count": 1 + }, + { + "name": "quest_s19_gow_q05_obj5", + "count": 1 + }, + { + "name": "quest_s19_gow_q05_obj6", + "count": 1 + }, + { + "name": "quest_s19_gow_q05_obj7", + "count": 1 + }, + { + "name": "quest_s19_gow_q05_obj8", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_GOW" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bird_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_bird_01", + "templateId": "Quest:quest_s19_mask_bird_01", + "objectives": [ + { + "name": "quest_s19_mask_bird_01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bird_01" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bird_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_bird_02", + "templateId": "Quest:quest_s19_mask_bird_02", + "objectives": [ + { + "name": "quest_s19_mask_bird_02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bird_02" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bird_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_bird_03", + "templateId": "Quest:quest_s19_mask_bird_03", + "objectives": [ + { + "name": "quest_s19_mask_bird_03_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bird_03" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bunny_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_bunny_01", + "templateId": "Quest:quest_s19_mask_bunny_01", + "objectives": [ + { + "name": "quest_s19_mask_bunny_01_obj0", + "count": 1 + }, + { + "name": "quest_s19_mask_bunny_01_obj1", + "count": 1 + }, + { + "name": "quest_s19_mask_bunny_01_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bunny_01" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bunny_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_bunny_02", + "templateId": "Quest:quest_s19_mask_bunny_02", + "objectives": [ + { + "name": "quest_s19_mask_bunny_02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bunny_02" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bunny_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_bunny_03", + "templateId": "Quest:quest_s19_mask_bunny_03", + "objectives": [ + { + "name": "quest_s19_mask_bunny_03_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Bunny_03" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Buttercake_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_buttercake_01", + "templateId": "Quest:quest_s19_mask_buttercake_01", + "objectives": [ + { + "name": "quest_s19_mask_buttercake_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Buttercake_01" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Buttercake_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_buttercake_02", + "templateId": "Quest:quest_s19_mask_buttercake_02", + "objectives": [ + { + "name": "quest_s19_mask_buttercake_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Buttercake_02" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Buttercake_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_buttercake_03", + "templateId": "Quest:quest_s19_mask_buttercake_03", + "objectives": [ + { + "name": "quest_s19_mask_buttercake_03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Buttercake_03" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Cat_01" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Cat_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_cat_02", + "templateId": "Quest:quest_s19_mask_cat_02", + "objectives": [ + { + "name": "quest_s19_mask_cat_02_obj0", + "count": 1 + }, + { + "name": "quest_s19_mask_cat_02_obj1", + "count": 1 + }, + { + "name": "quest_s19_mask_cat_02_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Cat_02" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Cat_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_cat_03", + "templateId": "Quest:quest_s19_mask_cat_03", + "objectives": [ + { + "name": "quest_s19_mask_cat_03_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Cat_03" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Deer_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_deer_01", + "templateId": "Quest:quest_s19_mask_deer_01", + "objectives": [ + { + "name": "quest_s19_mask_deer_01_obj0", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_01_obj1", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_01_obj2", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_01_obj3", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_01_obj4", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_01_obj5", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_01_obj6", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_01_obj7", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Deer_01" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Deer_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_deer_02", + "templateId": "Quest:quest_s19_mask_deer_02", + "objectives": [ + { + "name": "quest_s19_mask_deer_02_obj0", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_02_obj1", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_02_obj2", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_02_obj3", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_02_obj4", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_02_obj5", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_02_obj6", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_02_obj7", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_02_obj8", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_02_obj9", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_02_obj10", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_02_obj11", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_02_obj12", + "count": 1 + }, + { + "name": "quest_s19_mask_deer_02_obj13", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Deer_02" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Deer_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_deer_03", + "templateId": "Quest:quest_s19_mask_deer_03", + "objectives": [ + { + "name": "quest_s19_mask_deer_03_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Deer_03" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Fox_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_fox_01", + "templateId": "Quest:quest_s19_mask_fox_01", + "objectives": [ + { + "name": "quest_s19_mask_fox_01_obj0", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj1", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj2", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj3", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj4", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj5", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj6", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj7", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj8", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj9", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj10", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj11", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj12", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj13", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj14", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj15", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj16", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj17", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj18", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj19", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj20", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj21", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj22", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj23", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj24", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj25", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj26", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj27", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj28", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_01_obj29", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Fox_01" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Fox_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_fox_02", + "templateId": "Quest:quest_s19_mask_fox_02", + "objectives": [ + { + "name": "quest_s19_mask_fox_02_obj0", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj1", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj2", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj3", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj4", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj5", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj6", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj7", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj8", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj9", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj10", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj11", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj12", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj13", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj14", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj15", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj16", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj17", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj18", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj19", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj20", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj21", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj22", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj23", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj24", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj25", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj26", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj27", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj28", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_02_obj29", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Fox_02" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Fox_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_fox_03", + "templateId": "Quest:quest_s19_mask_fox_03", + "objectives": [ + { + "name": "quest_s19_mask_fox_03_obj0", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj1", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj2", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj3", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj4", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj5", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj6", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj7", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj8", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj9", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj10", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj11", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj12", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj13", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj14", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj15", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj16", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj17", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj18", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj19", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj20", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj21", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj22", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj23", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj24", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj25", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj26", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj27", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj28", + "count": 1 + }, + { + "name": "quest_s19_mask_fox_03_obj29", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Fox_03" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Hyena_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_hyena_01", + "templateId": "Quest:quest_s19_mask_hyena_01", + "objectives": [ + { + "name": "quest_s19_mask_hyena_01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Hyena_01" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Hyena_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_hyena_02", + "templateId": "Quest:quest_s19_mask_hyena_02", + "objectives": [ + { + "name": "quest_s19_mask_hyena_02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Hyena_02" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Hyena_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_hyena_03", + "templateId": "Quest:quest_s19_mask_hyena_03", + "objectives": [ + { + "name": "quest_s19_mask_hyena_03_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Hyena_03" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Lizard_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_lizard_01", + "templateId": "Quest:quest_s19_mask_lizard_01", + "objectives": [ + { + "name": "quest_s19_mask_lizard_01_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Lizard_01" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Lizard_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_lizard_02", + "templateId": "Quest:quest_s19_mask_lizard_02", + "objectives": [ + { + "name": "quest_s19_mask_lizard_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Lizard_02" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Lizard_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_lizard_03", + "templateId": "Quest:quest_s19_mask_lizard_03", + "objectives": [ + { + "name": "quest_s19_mask_lizard_03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Lizard_03" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Owl_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_owl_01", + "templateId": "Quest:quest_s19_mask_owl_01", + "objectives": [ + { + "name": "quest_s19_mask_owl_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Owl_01" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Owl_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_owl_02", + "templateId": "Quest:quest_s19_mask_owl_02", + "objectives": [ + { + "name": "quest_s19_mask_owl_02_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Owl_02" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Owl_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_owl_03", + "templateId": "Quest:quest_s19_mask_owl_03", + "objectives": [ + { + "name": "quest_s19_mask_owl_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Owl_03" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Wolf_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_wolf_01", + "templateId": "Quest:quest_s19_mask_wolf_01", + "objectives": [ + { + "name": "quest_s19_mask_wolf_01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Wolf_01" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Wolf_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_wolf_02", + "templateId": "Quest:quest_s19_mask_wolf_02", + "objectives": [ + { + "name": "quest_s19_mask_wolf_02_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Wolf_02" + }, + { + "itemGuid": "S19-Quest:quests_s19_mask_prereq", + "templateId": "Quest:quests_s19_mask_prereq", + "objectives": [ + { + "name": "quests_s19_mask_prereq_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Wolf_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_mask_wolf_03", + "templateId": "Quest:quest_s19_mask_wolf_03", + "objectives": [ + { + "name": "quest_s19_mask_wolf_03_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Mask_Wolf_03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q01", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q01_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q02", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q02_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q03", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q03_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q04", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q04_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q05", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q06", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q06_obj0", + "count": 120 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q07", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q07_obj0", + "count": 140 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q08", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q08_obj0", + "count": 160 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q09", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q09_obj0", + "count": 180 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q10", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q10_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q11", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q11_obj0", + "count": 220 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q12", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q12_obj0", + "count": 240 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q13", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q13_obj0", + "count": 260 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q14", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q14_obj0", + "count": 280 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q15", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q15_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q16", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q16_obj0", + "count": 320 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q17", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q17_obj0", + "count": 340 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q18", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q18_obj0", + "count": 360 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q19", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q19_obj0", + "count": 380 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CatchFish_Q20", + "templateId": "Quest:Quest_S19_Milestone_CatchFish_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_CatchFish_Q20_obj0", + "count": 400 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CatchFish" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q01", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q02", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q02_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q03", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q03_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q04", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q04_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q05", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q06", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q06_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q07", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q07_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q08", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q08_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q09", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q09_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q10", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q10_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q11", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q11_obj0", + "count": 110 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q12", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q12_obj0", + "count": 120 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q13", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q13_obj0", + "count": 130 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q14", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q14_obj0", + "count": 140 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q15", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q15_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q16", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q16_obj0", + "count": 160 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q17", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q17_obj0", + "count": 170 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q18", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q18_obj0", + "count": 180 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q19", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q19_obj0", + "count": 190 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteBounties_Q20", + "templateId": "Quest:Quest_S19_Milestone_CompleteBounties_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteBounties_Q20_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_CompleteBounties" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q01", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q02", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q03", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q03_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q04", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q05", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q05_obj0", + "count": 125 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q06", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q06_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q07", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q07_obj0", + "count": 175 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q08", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q08_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q09", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q09_obj0", + "count": 225 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q10", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q10_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q11", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q11_obj0", + "count": 275 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q12", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q12_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q13", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q13_obj0", + "count": 325 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q14", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q14_obj0", + "count": 350 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q15", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q15_obj0", + "count": 375 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q16", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q16_obj0", + "count": 400 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q17", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q17_obj0", + "count": 425 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q18", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q18_obj0", + "count": 450 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q19", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q19_obj0", + "count": 475 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ConsumeForagedItems_Q20", + "templateId": "Quest:Quest_S19_Milestone_ConsumeForagedItems_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_ConsumeForagedItems_Q20_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q01", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q01_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q02", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q02_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q03", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q03_obj0", + "count": 15000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q04", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q04_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q05", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q05_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q06", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q06_obj0", + "count": 30000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q07", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q07_obj0", + "count": 35000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q08", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q08_obj0", + "count": 40000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q09", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q09_obj0", + "count": 45000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q10", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q10_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q11", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q11_obj0", + "count": 55000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q12", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q12_obj0", + "count": 60000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q13", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q13_obj0", + "count": 65000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q14", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q14_obj0", + "count": 70000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q15", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q15_obj0", + "count": 75000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q16", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q16_obj0", + "count": 80000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q17", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q17_obj0", + "count": 85000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q18", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q18_obj0", + "count": 90000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q19", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q19_obj0", + "count": 95000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DamageOpponents_Q20", + "templateId": "Quest:Quest_S19_Milestone_DamageOpponents_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_DamageOpponents_Q20_obj0", + "count": 100000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DamageOpponents" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q01", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q01_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q02", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q02_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q03", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q03_obj0", + "count": 750 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q04", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q05", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q05_obj0", + "count": 1250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q06", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q06_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q07", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q07_obj0", + "count": 1750 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q08", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q08_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q09", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q09_obj0", + "count": 2250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q10", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q10_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q11", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q11_obj0", + "count": 2750 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q12", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q12_obj0", + "count": 3000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q13", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q13_obj0", + "count": 3250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q14", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q14_obj0", + "count": 3500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q15", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q15_obj0", + "count": 3750 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q16", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q16_obj0", + "count": 4000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q17", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q17_obj0", + "count": 4250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q18", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q18_obj0", + "count": 4500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q19", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q19_obj0", + "count": 4750 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q20", + "templateId": "Quest:Quest_S19_Milestone_DestroyOpponentStructures_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyOpponentStructures_Q20_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q01", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q01_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q02", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q02_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q03", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q03_obj0", + "count": 750 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q04", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q04_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q05", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q05_obj0", + "count": 1250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q06", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q06_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q07", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q07_obj0", + "count": 1750 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q08", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q08_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q09", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q09_obj0", + "count": 2250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q10", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q10_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q11", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q11_obj0", + "count": 2750 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q12", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q12_obj0", + "count": 3000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q13", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q13_obj0", + "count": 3250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q14", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q14_obj0", + "count": 3500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q15", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q15_obj0", + "count": 3750 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q16", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q16_obj0", + "count": 4000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q17", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q17_obj0", + "count": 4250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q18", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q18_obj0", + "count": 4500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q19", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q19_obj0", + "count": 4750 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_DestroyTrees_Q20", + "templateId": "Quest:Quest_S19_Milestone_DestroyTrees_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_DestroyTrees_Q20_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_DestroyTrees" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q01", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q02", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q03", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q03_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q04", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q05", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q05_obj0", + "count": 125 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q06", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q06_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q07", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q07_obj0", + "count": 175 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q08", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q08_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q09", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q09_obj0", + "count": 225 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q10", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q10_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q11", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q11_obj0", + "count": 275 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q12", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q12_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q13", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q13_obj0", + "count": 325 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q14", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q14_obj0", + "count": 350 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q15", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q15_obj0", + "count": 375 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q16", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q16_obj0", + "count": 400 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q17", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q17_obj0", + "count": 425 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q18", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q18_obj0", + "count": 450 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q19", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q19_obj0", + "count": 475 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_Eliminations_Q20", + "templateId": "Quest:Quest_S19_Milestone_Eliminations_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_Eliminations_Q20_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Eliminations" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q01", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q02", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q03", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q03_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q04", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q04_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q05", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q05_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q06", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q06_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q07", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q07_obj0", + "count": 35 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q08", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q08_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q09", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q09_obj0", + "count": 45 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q10", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q10_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q11", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q11_obj0", + "count": 55 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q12", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q12_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q13", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q13_obj0", + "count": 65 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q14", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q14_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q15", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q15_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q16", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q16_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q17", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q17_obj0", + "count": 85 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q18", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q18_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q19", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q19_obj0", + "count": 95 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q20", + "templateId": "Quest:Quest_S19_Milestone_FeedButterBerriesToButterCake_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_FeedButterBerriesToButterCake_Q20_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_FeedButterBerriesToButterCake" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q01", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q01_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q02", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q02_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q03", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q03_obj0", + "count": 7500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q04", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q04_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q05", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q05_obj0", + "count": 12500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q06", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q06_obj0", + "count": 15000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q07", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q07_obj0", + "count": 17500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q08", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q08_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q09", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q09_obj0", + "count": 22500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q10", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q10_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q11", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q11_obj0", + "count": 27500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q12", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q12_obj0", + "count": 30000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q13", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q13_obj0", + "count": 32500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q14", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q14_obj0", + "count": 35000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q15", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q15_obj0", + "count": 37500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q16", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q16_obj0", + "count": 40000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q17", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q17_obj0", + "count": 42500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q18", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q18_obj0", + "count": 45000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q19", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q19_obj0", + "count": 47500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HarvestMaterials_Q20", + "templateId": "Quest:Quest_S19_Milestone_HarvestMaterials_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_HarvestMaterials_Q20_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q01", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q02", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q03", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q03_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q04", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q05", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q05_obj0", + "count": 125 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q06", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q06_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q07", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q07_obj0", + "count": 175 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q08", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q08_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q09", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q09_obj0", + "count": 225 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q10", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q10_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q11", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q11_obj0", + "count": 275 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q12", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q12_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q13", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q13_obj0", + "count": 325 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q14", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q14_obj0", + "count": 350 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q15", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q15_obj0", + "count": 375 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q16", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q16_obj0", + "count": 400 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q17", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q17_obj0", + "count": 425 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q18", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q18_obj0", + "count": 450 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q19", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q19_obj0", + "count": 475 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_HuntWildlife_Q20", + "templateId": "Quest:Quest_S19_Milestone_HuntWildlife_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_HuntWildlife_Q20_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_HuntWildlife" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q01", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q02", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q03", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q03_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q04", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q04_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q05", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q05_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q06", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q06_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q07", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q07_obj0", + "count": 35 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q08", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q08_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q09", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q09_obj0", + "count": 45 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q10", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q10_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q11", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q11_obj0", + "count": 55 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q12", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q12_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q13", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q13_obj0", + "count": 65 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q14", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q14_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q15", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q15_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q16", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q16_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q17", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q17_obj0", + "count": 85 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q18", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q18_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q19", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q19_obj0", + "count": 95 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_OpenVaults_Q20", + "templateId": "Quest:Quest_S19_Milestone_OpenVaults_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_OpenVaults_Q20_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_OpenVaults" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q01", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q01_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q02", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q02_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q03", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q03_obj0", + "count": 45 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q04", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q04_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q05", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q05_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q06", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q06_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q07", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q07_obj0", + "count": 105 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q08", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q08_obj0", + "count": 120 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q09", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q09_obj0", + "count": 135 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q10", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q10_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q11", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q11_obj0", + "count": 165 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q12", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q12_obj0", + "count": 180 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q13", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q13_obj0", + "count": 195 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q14", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q14_obj0", + "count": 210 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q15", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q15_obj0", + "count": 225 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q16", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q16_obj0", + "count": 240 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q17", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q17_obj0", + "count": 255 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q18", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q18_obj0", + "count": 270 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q19", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q19_obj0", + "count": 285 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_PlaceTop10_Q20", + "templateId": "Quest:Quest_S19_Milestone_PlaceTop10_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_PlaceTop10_Q20_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_PlaceTop10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q01", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q02", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q03", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q03_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q04", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q04_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q05", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q05_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q06", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q06_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q07", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q07_obj0", + "count": 35 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q08", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q08_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q09", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q09_obj0", + "count": 45 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q10", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q10_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q11", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q11_obj0", + "count": 55 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q12", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q12_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q13", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q13_obj0", + "count": 65 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q14", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q14_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q15", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q15_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q16", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q16_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q17", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q17_obj0", + "count": 85 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q18", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q18_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q19", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q19_obj0", + "count": 95 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_RebootTeammates_Q20", + "templateId": "Quest:Quest_S19_Milestone_RebootTeammates_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_RebootTeammates_Q20_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_RebootTeammates" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q01", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q01_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q02", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q02_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q03", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q03_obj0", + "count": 225 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q04", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q04_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q05", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q05_obj0", + "count": 375 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q06", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q06_obj0", + "count": 450 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q07", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q07_obj0", + "count": 525 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q08", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q08_obj0", + "count": 600 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q09", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q09_obj0", + "count": 675 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q10", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q10_obj0", + "count": 750 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q11", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q11_obj0", + "count": 825 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q12", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q12_obj0", + "count": 900 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q13", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q13_obj0", + "count": 975 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q14", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q14_obj0", + "count": 1050 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q15", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q15_obj0", + "count": 1125 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q16", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q16_obj0", + "count": 1200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q17", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q17_obj0", + "count": 1275 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q18", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q18_obj0", + "count": 1350 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q19", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q19_obj0", + "count": 1425 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q20", + "templateId": "Quest:Quest_S19_Milestone_SearchChestsOrAmmo_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_SearchChestsOrAmmo_Q20_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q01", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q01_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q02", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q02_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q03", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q03_obj0", + "count": 7500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q04", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q04_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q05", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q05_obj0", + "count": 12500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q06", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q06_obj0", + "count": 15000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q07", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q07_obj0", + "count": 17500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q08", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q08_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q09", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q09_obj0", + "count": 22500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q10", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q10_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q11", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q11_obj0", + "count": 27500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q12", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q12_obj0", + "count": 30000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q13", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q13_obj0", + "count": 32500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q14", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q14_obj0", + "count": 35000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q15", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q15_obj0", + "count": 37500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q16", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q16_obj0", + "count": 40000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q17", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q17_obj0", + "count": 42500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q18", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q18_obj0", + "count": 45000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q19", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q19_obj0", + "count": 47500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_SpendBars_Q20", + "templateId": "Quest:Quest_S19_Milestone_SpendBars_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_SpendBars_Q20_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_SpendBars" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q01", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q02", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q02_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q03", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q03_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q04", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q04_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q05", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q06", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q06_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q07", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q07_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q08", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q08_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q09", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q09_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q10", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q10_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q11", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q11_obj0", + "count": 110 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q12", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q12_obj0", + "count": 120 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q13", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q13_obj0", + "count": 130 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q14", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q14_obj0", + "count": 140 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q15", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q15_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q16", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q16_obj0", + "count": 160 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q17", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q17_obj0", + "count": 170 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q18", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q18_obj0", + "count": 180 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q19", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q19_obj0", + "count": 190 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_ThankTheBusDriver_Q20", + "templateId": "Quest:Quest_S19_Milestone_ThankTheBusDriver_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_ThankTheBusDriver_Q20_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q01", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q01_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q02", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q02_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q03", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q03_obj0", + "count": 15000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q04", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q04_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q05", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q05_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q06", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q06_obj0", + "count": 30000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q07", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q07_obj0", + "count": 35000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q08", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q08_obj0", + "count": 40000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q09", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q09_obj0", + "count": 45000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q10", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q10_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q11", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q11_obj0", + "count": 55000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q12", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q12_obj0", + "count": 60000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q13", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q13_obj0", + "count": 65000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q14", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q14_obj0", + "count": 70000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q15", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q15_obj0", + "count": 75000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q16", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q16_obj0", + "count": 80000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q17", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q17_obj0", + "count": 85000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q18", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q18_obj0", + "count": 90000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q19", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q19_obj0", + "count": 95000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q20", + "templateId": "Quest:Quest_S19_Milestone_TravelDistanceOnVehicle_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_TravelDistanceOnVehicle_Q20_obj0", + "count": 100000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_TravelDistanceOnVehicle" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q01", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q01_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q02", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q02_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q03", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q03_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q04", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q04_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q05", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q05_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q06", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q06_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q07", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q07_obj0", + "count": 350 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q08", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q08_obj0", + "count": 400 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q09", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q09_obj0", + "count": 450 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q10", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q10_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q11", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q11_obj0", + "count": 550 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q12", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q12_obj0", + "count": 600 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q13", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q13_obj0", + "count": 650 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q14", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q14_obj0", + "count": 700 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q15", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q15_obj0", + "count": 750 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q16", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q16_obj0", + "count": 800 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q17", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q17_obj0", + "count": 850 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q18", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q18_obj0", + "count": 900 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q19", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q19_obj0", + "count": 950 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q20", + "templateId": "Quest:Quest_S19_Milestone_UseBandagesOrMedkits_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_UseBandagesOrMedkits_Q20_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q01", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q02", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q02_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q03", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q03_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q04", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q04_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q05", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q06", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q06_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q07", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q07_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q08", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q08_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q09", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q09_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q10", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q10_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q11", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q11_obj0", + "count": 110 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q12", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q12_obj0", + "count": 120 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q13", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q13_obj0", + "count": 130 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q14", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q14_obj0", + "count": 140 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q15", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q15_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q16", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q16_obj0", + "count": 160 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q17", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q17_obj0", + "count": 170 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q18", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q18_obj0", + "count": 180 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q19", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q19_obj0", + "count": 190 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_VendingMachinePurchases_Q20", + "templateId": "Quest:Quest_S19_Milestone_VendingMachinePurchases_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_VendingMachinePurchases_Q20_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W01_Q01", + "templateId": "Quest:Quest_S19_Weekly_W01_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W01_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W01_Q02", + "templateId": "Quest:Quest_S19_Weekly_W01_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W01_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W01_Q03", + "templateId": "Quest:Quest_S19_Weekly_W01_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W01_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q03_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q03_obj2", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q03_obj3", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q03_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W01_Q04", + "templateId": "Quest:Quest_S19_Weekly_W01_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W01_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q04_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W01_Q05", + "templateId": "Quest:Quest_S19_Weekly_W01_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W01_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W01_Q06", + "templateId": "Quest:Quest_S19_Weekly_W01_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W01_Q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W01_Q07", + "templateId": "Quest:Quest_S19_Weekly_W01_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W01_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q07_obj2", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q07_obj3", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q07_obj4", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q07_obj5", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q07_obj6", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q07_obj7", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q07_obj8", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q07_obj9", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q07_obj10", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q07_obj11", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q07_obj12", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W01_Q07_obj13", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W01_Q08", + "templateId": "Quest:Quest_S19_Weekly_W01_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W01_Q08_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W01_Q09", + "templateId": "Quest:Quest_S19_Weekly_W01_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W01_Q09_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W02_Q01", + "templateId": "Quest:Quest_S19_Weekly_W02_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W02_Q01_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W02_Q02", + "templateId": "Quest:Quest_S19_Weekly_W02_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W02_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W02_Q03", + "templateId": "Quest:Quest_S19_Weekly_W02_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W02_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W02_Q04", + "templateId": "Quest:Quest_S19_Weekly_W02_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W02_Q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W02_Q05", + "templateId": "Quest:Quest_S19_Weekly_W02_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W02_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W02_Q06", + "templateId": "Quest:Quest_S19_Weekly_W02_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W02_Q06_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W02_Q07", + "templateId": "Quest:Quest_S19_Weekly_W02_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W02_Q07_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W02_Q08", + "templateId": "Quest:Quest_S19_Weekly_W02_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W02_Q08_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W02_Q09", + "templateId": "Quest:Quest_S19_Weekly_W02_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W02_Q09_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W03_Q01", + "templateId": "Quest:Quest_S19_Weekly_W03_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W03_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W03_Q02", + "templateId": "Quest:Quest_S19_Weekly_W03_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W03_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W03_Q03", + "templateId": "Quest:Quest_S19_Weekly_W03_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W03_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W03_Q04", + "templateId": "Quest:Quest_S19_Weekly_W03_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W03_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W03_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W03_Q04_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W03_Q05", + "templateId": "Quest:Quest_S19_Weekly_W03_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W03_Q05_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W03_Q06", + "templateId": "Quest:Quest_S19_Weekly_W03_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W03_Q06_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W03_Q07", + "templateId": "Quest:Quest_S19_Weekly_W03_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W03_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W03_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W03_Q07_obj2", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W03_Q07_obj3", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W03_Q07_obj4", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W03_Q07_obj5", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W03_Q07_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W03_Q08", + "templateId": "Quest:Quest_S19_Weekly_W03_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W03_Q08_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W03_Q09", + "templateId": "Quest:Quest_S19_Weekly_W03_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W03_Q09_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W04_Q01", + "templateId": "Quest:Quest_S19_Weekly_W04_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W04_Q01_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W04_Q02", + "templateId": "Quest:Quest_S19_Weekly_W04_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W04_Q02_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W04_Q03", + "templateId": "Quest:Quest_S19_Weekly_W04_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W04_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W04_Q04", + "templateId": "Quest:Quest_S19_Weekly_W04_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W04_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W04_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W04_Q04_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W04_Q05", + "templateId": "Quest:Quest_S19_Weekly_W04_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W04_Q05_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W04_Q06", + "templateId": "Quest:Quest_S19_Weekly_W04_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W04_Q06_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W04_Q07", + "templateId": "Quest:Quest_S19_Weekly_W04_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W04_Q07_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W04_Q08", + "templateId": "Quest:Quest_S19_Weekly_W04_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W04_Q08_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W04_Q09", + "templateId": "Quest:Quest_S19_Weekly_W04_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W04_Q09_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W05_Q01", + "templateId": "Quest:Quest_S19_Weekly_W05_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W05_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W05_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W05_Q01_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W05_Q02", + "templateId": "Quest:Quest_S19_Weekly_W05_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W05_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W05_Q03", + "templateId": "Quest:Quest_S19_Weekly_W05_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W05_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W05_Q04", + "templateId": "Quest:Quest_S19_Weekly_W05_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W05_Q04_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W05_Q05", + "templateId": "Quest:Quest_S19_Weekly_W05_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W05_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W05_Q06", + "templateId": "Quest:Quest_S19_Weekly_W05_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W05_Q06_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W05_Q06_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W05_Q06_obj2", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W05_Q06_obj3", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W05_Q06_obj4", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W05_Q06_obj5", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W05_Q06_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W05_Q07", + "templateId": "Quest:Quest_S19_Weekly_W05_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W05_Q07_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W05_Q08", + "templateId": "Quest:Quest_S19_Weekly_W05_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W05_Q08_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W05_Q09", + "templateId": "Quest:Quest_S19_Weekly_W05_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W05_Q09_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W06_Q01", + "templateId": "Quest:Quest_S19_Weekly_W06_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W06_Q01_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W06_Q02", + "templateId": "Quest:Quest_S19_Weekly_W06_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W06_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W06_Q03", + "templateId": "Quest:Quest_S19_Weekly_W06_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W06_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W06_Q04", + "templateId": "Quest:Quest_S19_Weekly_W06_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W06_Q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W06_Q05", + "templateId": "Quest:Quest_S19_Weekly_W06_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W06_Q05_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W06_Q06", + "templateId": "Quest:Quest_S19_Weekly_W06_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W06_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W06_Q07", + "templateId": "Quest:Quest_S19_Weekly_W06_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W06_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W06_Q08", + "templateId": "Quest:Quest_S19_Weekly_W06_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W06_Q08_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W06_Q09", + "templateId": "Quest:Quest_S19_Weekly_W06_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W06_Q09_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W07_Q01", + "templateId": "Quest:Quest_S19_Weekly_W07_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W07_Q01_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W07_Q02", + "templateId": "Quest:Quest_S19_Weekly_W07_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W07_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W07_Q03", + "templateId": "Quest:Quest_S19_Weekly_W07_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W07_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W07_Q04", + "templateId": "Quest:Quest_S19_Weekly_W07_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W07_Q04_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W07_Q05", + "templateId": "Quest:Quest_S19_Weekly_W07_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W07_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W07_Q06", + "templateId": "Quest:Quest_S19_Weekly_W07_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W07_Q06_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W07_Q07", + "templateId": "Quest:Quest_S19_Weekly_W07_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W07_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W07_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W07_Q07_obj2", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W07_Q07_obj3", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W07_Q07_obj4", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W07_Q07_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W07_Q08", + "templateId": "Quest:Quest_S19_Weekly_W07_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W07_Q08_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W07_Q09", + "templateId": "Quest:Quest_S19_Weekly_W07_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W07_Q09_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W08_Q01", + "templateId": "Quest:Quest_S19_Weekly_W08_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W08_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W08_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W08_Q01_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W08_Q02", + "templateId": "Quest:Quest_S19_Weekly_W08_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W08_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W08_Q03", + "templateId": "Quest:Quest_S19_Weekly_W08_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W08_Q03_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W08_Q04", + "templateId": "Quest:Quest_S19_Weekly_W08_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W08_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W08_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W08_Q04_obj2", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W08_Q04_obj3", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W08_Q04_obj4", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W08_Q04_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W08_Q05", + "templateId": "Quest:Quest_S19_Weekly_W08_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W08_Q05_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W08_Q06", + "templateId": "Quest:Quest_S19_Weekly_W08_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W08_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W08_Q07", + "templateId": "Quest:Quest_S19_Weekly_W08_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W08_Q07_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W08_Q08", + "templateId": "Quest:Quest_S19_Weekly_W08_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W08_Q08_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W08_Q09", + "templateId": "Quest:Quest_S19_Weekly_W08_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W08_Q09_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W09_Q01", + "templateId": "Quest:Quest_S19_Weekly_W09_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W09_Q01_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W09_Q02", + "templateId": "Quest:Quest_S19_Weekly_W09_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W09_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W09_Q03", + "templateId": "Quest:Quest_S19_Weekly_W09_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W09_Q03_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W09_Q04", + "templateId": "Quest:Quest_S19_Weekly_W09_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W09_Q04_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W09_Q05", + "templateId": "Quest:Quest_S19_Weekly_W09_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W09_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W09_Q06", + "templateId": "Quest:Quest_S19_Weekly_W09_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W09_Q06_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W09_Q07", + "templateId": "Quest:Quest_S19_Weekly_W09_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W09_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W09_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W09_Q07_obj2", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W09_Q07_obj3", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W09_Q07_obj4", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W09_Q07_obj5", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W09_Q07_obj6", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W09_Q07_obj7", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W09_Q07_obj8", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W09_Q07_obj9", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W09_Q07_obj10", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W09_Q07_obj11", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W09_Q07_obj12", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W09_Q07_obj13", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W09_Q08", + "templateId": "Quest:Quest_S19_Weekly_W09_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W09_Q08_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W09_Q09", + "templateId": "Quest:Quest_S19_Weekly_W09_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W09_Q09_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W10_Q01", + "templateId": "Quest:Quest_S19_Weekly_W10_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W10_Q01_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W10_Q02", + "templateId": "Quest:Quest_S19_Weekly_W10_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W10_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W10_Q03", + "templateId": "Quest:Quest_S19_Weekly_W10_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W10_Q03_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W10_Q04", + "templateId": "Quest:Quest_S19_Weekly_W10_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W10_Q04_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W10_Q05", + "templateId": "Quest:Quest_S19_Weekly_W10_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W10_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W10_Q06", + "templateId": "Quest:Quest_S19_Weekly_W10_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W10_Q06_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj2", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj3", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj4", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj5", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj6", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj7", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj8", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj9", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj10", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj11", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj12", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj13", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj14", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj15", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj16", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj17", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj18", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj19", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj20", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj21", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj22", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj23", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj24", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj25", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj26", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj27", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj28", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj29", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj30", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj31", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj32", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj33", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj34", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj35", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj36", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj37", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj38", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj39", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj40", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj41", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj42", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj43", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj44", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W10_Q06_obj45", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W10_Q07", + "templateId": "Quest:Quest_S19_Weekly_W10_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W10_Q07_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W10_Q08", + "templateId": "Quest:Quest_S19_Weekly_W10_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W10_Q08_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W10_Q09", + "templateId": "Quest:Quest_S19_Weekly_W10_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W10_Q09_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W11_Q01", + "templateId": "Quest:Quest_S19_Weekly_W11_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W11_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W11_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W11_Q01_obj2", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W11_Q01_obj3", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W11_Q01_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_11" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W11_Q03", + "templateId": "Quest:Quest_S19_Weekly_W11_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W11_Q03_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_11" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W11_Q04", + "templateId": "Quest:Quest_S19_Weekly_W11_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W11_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_11" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W11_Q05", + "templateId": "Quest:Quest_S19_Weekly_W11_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W11_Q05_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_11" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W11_Q06", + "templateId": "Quest:Quest_S19_Weekly_W11_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W11_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_11" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W11_Q07", + "templateId": "Quest:Quest_S19_Weekly_W11_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W11_Q07_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_11" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W11_Q08", + "templateId": "Quest:Quest_S19_Weekly_W11_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W11_Q08_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_11" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W11_Q09", + "templateId": "Quest:Quest_S19_Weekly_W11_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W11_Q09_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_11" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W12_Q02", + "templateId": "Quest:Quest_S19_Weekly_W12_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W12_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_11" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W11_Q02", + "templateId": "Quest:Quest_S19_Weekly_W11_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W11_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W12_Q01", + "templateId": "Quest:Quest_S19_Weekly_W12_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W12_Q01_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W12_Q03", + "templateId": "Quest:Quest_S19_Weekly_W12_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W12_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W12_Q04", + "templateId": "Quest:Quest_S19_Weekly_W12_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W12_Q04_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W12_Q05", + "templateId": "Quest:Quest_S19_Weekly_W12_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W12_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W12_Q06", + "templateId": "Quest:Quest_S19_Weekly_W12_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W12_Q06_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W12_Q07", + "templateId": "Quest:Quest_S19_Weekly_W12_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W12_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W12_Q08", + "templateId": "Quest:Quest_S19_Weekly_W12_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W12_Q08_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W12_Q09", + "templateId": "Quest:Quest_S19_Weekly_W12_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W12_Q09_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W13_Q01", + "templateId": "Quest:Quest_S19_Weekly_W13_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W13_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W13_Q02", + "templateId": "Quest:Quest_S19_Weekly_W13_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W13_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W13_Q03", + "templateId": "Quest:Quest_S19_Weekly_W13_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W13_Q03_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W13_Q04", + "templateId": "Quest:Quest_S19_Weekly_W13_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W13_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W13_Q05", + "templateId": "Quest:Quest_S19_Weekly_W13_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W13_Q05_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W13_Q06", + "templateId": "Quest:Quest_S19_Weekly_W13_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W13_Q06_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W13_Q07", + "templateId": "Quest:Quest_S19_Weekly_W13_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W13_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W13_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W13_Q07_obj2", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W13_Q07_obj3", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W13_Q07_obj4", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W13_Q07_obj5", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W13_Q07_obj6", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W13_Q07_obj7", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W13_Q07_obj8", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W13_Q07_obj9", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W13_Q07_obj10", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W13_Q07_obj11", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W13_Q07_obj12", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W13_Q08", + "templateId": "Quest:Quest_S19_Weekly_W13_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W13_Q08_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W13_Q09", + "templateId": "Quest:Quest_S19_Weekly_W13_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W13_Q09_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W14_Q01", + "templateId": "Quest:Quest_S19_Weekly_W14_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_W14_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W14_Q02", + "templateId": "Quest:Quest_S19_Weekly_W14_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_W14_Q02_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W14_Q03", + "templateId": "Quest:Quest_S19_Weekly_W14_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_W14_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W14_Q04", + "templateId": "Quest:Quest_S19_Weekly_W14_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_W14_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q04_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W14_Q05", + "templateId": "Quest:Quest_S19_Weekly_W14_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_W14_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W14_Q06", + "templateId": "Quest:Quest_S19_Weekly_W14_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_W14_Q06_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj2", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj3", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj4", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj5", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj6", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj7", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj8", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj9", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj10", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj11", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj12", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj13", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj14", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_W14_Q06_obj15", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W14_Q07", + "templateId": "Quest:Quest_S19_Weekly_W14_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_W14_Q07_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W14_Q08", + "templateId": "Quest:Quest_S19_Weekly_W14_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_W14_Q08_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_W14_Q09", + "templateId": "Quest:Quest_S19_Weekly_W14_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_W14_Q09_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_Week_14" + }, + { + "itemGuid": "S19-Quest:quest_s19_audiolog_q01", + "templateId": "Quest:quest_s19_audiolog_q01", + "objectives": [ + { + "name": "quest_s19_audiolog_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Logs_Hidden_1" + }, + { + "itemGuid": "S19-Quest:quest_s19_audiolog_q02", + "templateId": "Quest:quest_s19_audiolog_q02", + "objectives": [ + { + "name": "quest_s19_audiolog_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Logs_Hidden_1" + }, + { + "itemGuid": "S19-Quest:quest_s19_ReplayLog_01", + "templateId": "Quest:quest_s19_ReplayLog_01", + "objectives": [ + { + "name": "quest_s19_replaylog_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Logs_Hidden_1" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w01_01", + "templateId": "Quest:quest_s19_monarchleveluppack_w01_01", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w01_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w01_02", + "templateId": "Quest:quest_s19_monarchleveluppack_w01_02", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w01_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w01_03", + "templateId": "Quest:quest_s19_monarchleveluppack_w01_03", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w01_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w01_04", + "templateId": "Quest:quest_s19_monarchleveluppack_w01_04", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w01_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w01_05", + "templateId": "Quest:quest_s19_monarchleveluppack_w01_05", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w01_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w01_06", + "templateId": "Quest:quest_s19_monarchleveluppack_w01_06", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w01_06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w01_07", + "templateId": "Quest:quest_s19_monarchleveluppack_w01_07", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w01_07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w02_01", + "templateId": "Quest:quest_s19_monarchleveluppack_w02_01", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w02_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w03_01", + "templateId": "Quest:quest_s19_monarchleveluppack_w03_01", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w03_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w04_01", + "templateId": "Quest:quest_s19_monarchleveluppack_w04_01", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w04_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w02_02", + "templateId": "Quest:quest_s19_monarchleveluppack_w02_02", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w02_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w02_03", + "templateId": "Quest:quest_s19_monarchleveluppack_w02_03", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w02_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w02_04", + "templateId": "Quest:quest_s19_monarchleveluppack_w02_04", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w02_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w02_05", + "templateId": "Quest:quest_s19_monarchleveluppack_w02_05", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w02_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w02_06", + "templateId": "Quest:quest_s19_monarchleveluppack_w02_06", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w02_06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w02_07", + "templateId": "Quest:quest_s19_monarchleveluppack_w02_07", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w02_07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_02" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w03_02", + "templateId": "Quest:quest_s19_monarchleveluppack_w03_02", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w03_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w03_03", + "templateId": "Quest:quest_s19_monarchleveluppack_w03_03", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w03_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w03_04", + "templateId": "Quest:quest_s19_monarchleveluppack_w03_04", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w03_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w03_05", + "templateId": "Quest:quest_s19_monarchleveluppack_w03_05", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w03_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w03_06", + "templateId": "Quest:quest_s19_monarchleveluppack_w03_06", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w03_06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w03_07", + "templateId": "Quest:quest_s19_monarchleveluppack_w03_07", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w03_07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_03" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w04_02", + "templateId": "Quest:quest_s19_monarchleveluppack_w04_02", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w04_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_04" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w04_03", + "templateId": "Quest:quest_s19_monarchleveluppack_w04_03", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w04_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_04" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w04_04", + "templateId": "Quest:quest_s19_monarchleveluppack_w04_04", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w04_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_04" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w04_05", + "templateId": "Quest:quest_s19_monarchleveluppack_w04_05", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w04_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_04" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w04_06", + "templateId": "Quest:quest_s19_monarchleveluppack_w04_06", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w04_06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_04" + }, + { + "itemGuid": "S19-Quest:quest_s19_monarchleveluppack_w04_07", + "templateId": "Quest:quest_s19_monarchleveluppack_w04_07", + "objectives": [ + { + "name": "quest_s19_monarchleveluppack_w04_07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_MonarchLevelUpPack_04" + }, + { + "itemGuid": "S19-Quest:quest_s19_punchcard_monarchleveluppack_01", + "templateId": "Quest:quest_s19_punchcard_monarchleveluppack_01", + "objectives": [ + { + "name": "quest_s19_punchcard_monarchleveluppack_01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Punchcard_MonarchLevelUpPack" + }, + { + "itemGuid": "S19-Quest:quest_s19_punchcard_monarchleveluppack_02", + "templateId": "Quest:quest_s19_punchcard_monarchleveluppack_02", + "objectives": [ + { + "name": "quest_s19_punchcard_monarchleveluppack_02_obj0", + "count": 14 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Punchcard_MonarchLevelUpPack" + }, + { + "itemGuid": "S19-Quest:quest_s19_punchcard_monarchleveluppack_03", + "templateId": "Quest:quest_s19_punchcard_monarchleveluppack_03", + "objectives": [ + { + "name": "quest_s19_punchcard_monarchleveluppack_03_obj0", + "count": 21 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Punchcard_MonarchLevelUpPack" + }, + { + "itemGuid": "S19-Quest:quest_s19_punchcard_monarchleveluppack_04", + "templateId": "Quest:quest_s19_punchcard_monarchleveluppack_04", + "objectives": [ + { + "name": "quest_s19_punchcard_monarchleveluppack_04_obj0", + "count": 28 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Punchcard_MonarchLevelUpPack" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q01", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q01", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q02", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q02", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q02_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q03", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q03", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q03_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q04", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q04", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q04_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q05", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q05", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q06", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q06", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q06_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q07", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q07", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q07_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q08", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q08", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q08_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q09", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q09", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q09_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q10", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q10", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q10_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q11", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q11", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q11_obj0", + "count": 125 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q12", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q12", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q12_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q13", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q13", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q13_obj0", + "count": 175 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q14", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q14", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q14_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q15", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q15", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q15_obj0", + "count": 225 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q16", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q16", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q16_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q17", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q17", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q17_obj0", + "count": 275 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q18", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q18", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q18_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q19", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q19", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q19_obj0", + "count": 325 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Milestone_CompleteQuests_Q20", + "templateId": "Quest:Quest_S19_Milestone_CompleteQuests_Q20", + "objectives": [ + { + "name": "Quest_S19_Milestone_CompleteQuests_Q20_obj0", + "count": 350 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Milestone_Tier10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W01_Q01", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W01_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W01_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W01_Q02", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W01_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W01_Q02_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W01_Q03", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W01_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W01_Q03_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W01" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W02_Q01", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W02_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W02_Q01_obj0", + "count": 13 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W02_Q02", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W02_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W02_Q02_obj0", + "count": 16 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W02_Q03", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W02_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W02_Q03_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W02" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W03_Q01", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W03_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W03_Q01_obj0", + "count": 23 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W03_Q02", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W03_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W03_Q02_obj0", + "count": 26 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W03_Q03", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W03_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W03_Q03_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W03" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W04_Q01", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W04_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W04_Q01_obj0", + "count": 33 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W04_Q02", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W04_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W04_Q02_obj0", + "count": 36 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W04_Q03", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W04_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W04_Q03_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W04" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W05_Q01", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W05_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W05_Q01_obj0", + "count": 43 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W05_Q02", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W05_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W05_Q02_obj0", + "count": 46 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W05_Q03", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W05_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W05_Q03_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W05" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W06_Q01", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W06_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W06_Q01_obj0", + "count": 53 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W06_Q02", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W06_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W06_Q02_obj0", + "count": 56 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W06_Q03", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W06_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W06_Q03_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W06" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W07_Q01", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W07_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W07_Q01_obj0", + "count": 63 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W07_Q02", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W07_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W07_Q02_obj0", + "count": 66 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W07_Q03", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W07_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W07_Q03_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W07" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W08_Q01", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W08_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W08_Q01_obj0", + "count": 73 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W08_Q02", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W08_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W08_Q02_obj0", + "count": 76 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W08_Q03", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W08_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W08_Q03_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W08" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W09_Q01", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W09_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W09_Q01_obj0", + "count": 83 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W09_Q02", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W09_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W09_Q02_obj0", + "count": 86 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W09_Q03", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W09_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W09_Q03_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W09" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W10_Q01", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W10_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W10_Q01_obj0", + "count": 93 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W10_Q02", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W10_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W10_Q02_obj0", + "count": 96 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W10" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_CompleteSeason_W10_Q03", + "templateId": "Quest:Quest_S19_Weekly_CompleteSeason_W10_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_CompleteSeason_W10_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Weekly_CompleteSeason_W10" + }, + { + "itemGuid": "S19-Quest:quest_s19_winterfestcrewgrant", + "templateId": "Quest:quest_s19_winterfestcrewgrant", + "objectives": [ + { + "name": "quest_s19_winterfestcrewgrant", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_WinterfestCrewGrant" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Superlevel_q01", + "templateId": "Quest:Quest_S19_Superlevel_q01", + "objectives": [ + { + "name": "Quest_S18_Superlevel_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_Superlevel_01" + }, + { + "itemGuid": "S19-Quest:quest_s19_victorycrown_hidden", + "templateId": "Quest:quest_s19_victorycrown_hidden", + "objectives": [ + { + "name": "quest_s19_victorycrown_hidden_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:QuestBundle_S19_VictoryCrown" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Avian_Q01", + "templateId": "Quest:Quest_S19_Weekly_Avian_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_Avian_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Avian_W14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Avian_Q02", + "templateId": "Quest:Quest_S19_Weekly_Avian_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_Avian_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Avian_W14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Avian_Q03", + "templateId": "Quest:Quest_S19_Weekly_Avian_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_Avian_Q03_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Avian_W14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Avian_Q04", + "templateId": "Quest:Quest_S19_Weekly_Avian_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_Avian_Q04_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Avian_W14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Avian_Q05", + "templateId": "Quest:Quest_S19_Weekly_Avian_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_Avian_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Avian_W14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Avian_Q06", + "templateId": "Quest:Quest_S19_Weekly_Avian_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_Avian_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Avian_W14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Avian_Q07", + "templateId": "Quest:Quest_S19_Weekly_Avian_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_Avian_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Avian_W14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Avian_Q08", + "templateId": "Quest:Quest_S19_Weekly_Avian_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_Avian_Q08_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Avian_W14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Avian_Q09", + "templateId": "Quest:Quest_S19_Weekly_Avian_Q09", + "objectives": [ + { + "name": "Quest_S19_Weekly_Avian_Q09_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Avian_W14" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Bargain01_Q01", + "templateId": "Quest:Quest_S19_Weekly_Bargain01_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_Bargain01_Q01_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Bargain01_Q02", + "templateId": "Quest:Quest_S19_Weekly_Bargain01_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_Bargain01_Q02_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Bargain01_Q03", + "templateId": "Quest:Quest_S19_Weekly_Bargain01_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_Bargain01_Q03_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Bargain01_Q04", + "templateId": "Quest:Quest_S19_Weekly_Bargain01_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_Bargain01_Q04_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Bargain01_Q05", + "templateId": "Quest:Quest_S19_Weekly_Bargain01_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_Bargain01_Q05_obj0", + "count": 3000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Bargain02", + "templateId": "Quest:Quest_S19_Weekly_Bargain02", + "objectives": [ + { + "name": "Quest_S19_Weekly_Bargain02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Bargain03", + "templateId": "Quest:Quest_S19_Weekly_Bargain03", + "objectives": [ + { + "name": "Quest_S19_Weekly_Bargain03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Bargain04", + "templateId": "Quest:Quest_S19_Weekly_Bargain04", + "objectives": [ + { + "name": "Quest_S19_Weekly_Bargain04_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Bargain06", + "templateId": "Quest:Quest_S19_Weekly_Bargain06", + "objectives": [ + { + "name": "Quest_S19_Weekly_Bargain06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Bargain07", + "templateId": "Quest:Quest_S19_Weekly_Bargain07", + "objectives": [ + { + "name": "Quest_S19_Weekly_Bargain07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Bargain08", + "templateId": "Quest:Quest_S19_Weekly_Bargain08", + "objectives": [ + { + "name": "Quest_S19_Weekly_Bargain08_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Mobility_Q01", + "templateId": "Quest:Quest_S19_Weekly_Mobility_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_Mobility_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Mobility_W13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Mobility_Q04", + "templateId": "Quest:Quest_S19_Weekly_Mobility_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_Mobility_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_Mobility_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_Mobility_Q04_obj2", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_Mobility_Q04_obj3", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_Mobility_Q04_obj4", + "count": 1 + }, + { + "name": "Quest_S19_Weekly_Mobility_Q04_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Mobility_W13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Mobility_Q05", + "templateId": "Quest:Quest_S19_Weekly_Mobility_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_Mobility_Q05_obj0", + "count": 350 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Mobility_W13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Mobility_Q06", + "templateId": "Quest:Quest_S19_Weekly_Mobility_Q06", + "objectives": [ + { + "name": "Quest_S19_Weekly_Mobility_Q06_obj0", + "count": 150000 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Mobility_W13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Mobility_Q07", + "templateId": "Quest:Quest_S19_Weekly_Mobility_Q07", + "objectives": [ + { + "name": "Quest_S19_Weekly_Mobility_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Mobility_W13" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Primal_Q01", + "templateId": "Quest:Quest_S19_Weekly_Primal_Q01", + "objectives": [ + { + "name": "Quest_S19_Weekly_Primal_Q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Primal_W12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Primal_Q02", + "templateId": "Quest:Quest_S19_Weekly_Primal_Q02", + "objectives": [ + { + "name": "Quest_S19_Weekly_Primal_Q02_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Primal_W12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Primal_Q03", + "templateId": "Quest:Quest_S19_Weekly_Primal_Q03", + "objectives": [ + { + "name": "Quest_S19_Weekly_Primal_Q03_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Primal_W12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Primal_Q04", + "templateId": "Quest:Quest_S19_Weekly_Primal_Q04", + "objectives": [ + { + "name": "Quest_S19_Weekly_Primal_Q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Primal_W12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Primal_Q05", + "templateId": "Quest:Quest_S19_Weekly_Primal_Q05", + "objectives": [ + { + "name": "Quest_S19_Weekly_Primal_Q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Primal_W12" + }, + { + "itemGuid": "S19-Quest:Quest_S19_Weekly_Primal_Q08", + "templateId": "Quest:Quest_S19_Weekly_Primal_Q08", + "objectives": [ + { + "name": "Quest_S19_Weekly_Primal_Q08_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S19-ChallengeBundle:MissionBundle_S19_WildWeek_Primal_W12" + } + ] + }, + "Season20": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_Alfredo_Schedule", + "templateId": "ChallengeBundleSchedule:Season20_Alfredo_Schedule", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_Alfredo" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_BPUnlockableCharacter_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season20_BPUnlockableCharacter_Schedule_01", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_01", + "S20-ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_Goals" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_Buttercake_Schedule", + "templateId": "ChallengeBundleSchedule:Season20_Buttercake_Schedule", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_10_Buttercake", + "S20-ChallengeBundle:QuestBundle_S20_20_Buttercake", + "S20-ChallengeBundle:QuestBundle_S20_30_Buttercake" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase1", + "templateId": "ChallengeBundleSchedule:Season20_CovertOps_Phase1", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase1", + "S20-ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase1" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase2", + "templateId": "ChallengeBundleSchedule:Season20_CovertOps_Phase2", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase2_PreReq", + "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase2", + "S20-ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase2" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase3", + "templateId": "ChallengeBundleSchedule:Season20_CovertOps_Phase3", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase3_PreReq", + "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase3", + "S20-ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase3" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase4", + "templateId": "ChallengeBundleSchedule:Season20_CovertOps_Phase4", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase4_PreReq", + "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase4", + "S20-ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase4" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_EGS_Volcanic_Schedule", + "templateId": "ChallengeBundleSchedule:Season20_EGS_Volcanic_Schedule", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_EGS_Volcanic", + "S20-ChallengeBundle:QuestBundle_S20_EGS_Volcanic_BonusGoal" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_Feat_BundleSchedule", + "templateId": "ChallengeBundleSchedule:Season20_Feat_BundleSchedule", + "granted_bundles": [ + "S20-ChallengeBundle:Season20_Feat_Bundle" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_LevelUpPack_Schedule", + "templateId": "ChallengeBundleSchedule:Season20_LevelUpPack_Schedule", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_01", + "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_PunchCard", + "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_02", + "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_03", + "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_04" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule", + "templateId": "ChallengeBundleSchedule:Season20_Milestone_Schedule", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_Mission_Schedule", + "templateId": "ChallengeBundleSchedule:Season20_Mission_Schedule", + "granted_bundles": [ + "S20-ChallengeBundle:MissionBundle_S20_TutorialQuests", + "S20-ChallengeBundle:MissionBundle_S20_Week_01", + "S20-ChallengeBundle:MissionBundle_S20_Week_02", + "S20-ChallengeBundle:MissionBundle_S20_Week_03", + "S20-ChallengeBundle:MissionBundle_S20_Week_04", + "S20-ChallengeBundle:MissionBundle_S20_Week_05", + "S20-ChallengeBundle:MissionBundle_S20_Week_06", + "S20-ChallengeBundle:MissionBundle_S20_Week_07", + "S20-ChallengeBundle:MissionBundle_S20_Week_08", + "S20-ChallengeBundle:MissionBundle_S20_Week_09", + "S20-ChallengeBundle:MissionBundle_S20_Week_10" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_Noble_Schedule", + "templateId": "ChallengeBundleSchedule:Season20_Noble_Schedule", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_Noble", + "S20-ChallengeBundle:QuestBundle_S20_Noble_BonusGoal" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_NoPermitSchedule", + "templateId": "ChallengeBundleSchedule:Season20_NoPermitSchedule", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_NoPermit" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_NoPermitSchedule_Participation", + "templateId": "ChallengeBundleSchedule:Season20_NoPermitSchedule_Participation", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_NoPermit_Participation" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule", + "templateId": "ChallengeBundleSchedule:Season20_PunchCard_Schedule", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier01", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier02", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier03", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier04", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier05", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier06", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier07", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier08", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier09", + "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier10", + "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W01", + "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W02", + "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W03", + "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W04", + "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W05", + "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W06", + "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W07", + "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W08", + "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W09", + "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W10" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_Schedule_Collectibles_Pickaxe", + "templateId": "ChallengeBundleSchedule:Season20_Schedule_Collectibles_Pickaxe", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_01", + "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone", + "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_02", + "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_03", + "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_04", + "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_05", + "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_06", + "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_07", + "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_08" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_Schedule_Narrative", + "templateId": "ChallengeBundleSchedule:Season20_Schedule_Narrative", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_Narrative_W01", + "S20-ChallengeBundle:QuestBundle_Narrative_W02", + "S20-ChallengeBundle:QuestBundle_Narrative_W03", + "S20-ChallengeBundle:QuestBundle_Narrative_W04", + "S20-ChallengeBundle:QuestBundle_Narrative_W05", + "S20-ChallengeBundle:QuestBundle_Narrative_W06", + "S20-ChallengeBundle:QuestBundle_Narrative_W07", + "S20-ChallengeBundle:QuestBundle_Narrative_W08", + "S20-ChallengeBundle:QuestBundle_Narrative_W09", + "S20-ChallengeBundle:QuestBundle_Narrative_W10", + "S20-ChallengeBundle:QuestBundle_Narrative_W11" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_Soundwave_Schedule", + "templateId": "ChallengeBundleSchedule:Season20_Soundwave_Schedule", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_Soundwave" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_Superlevels_Schedule_01", + "templateId": "ChallengeBundleSchedule:Season20_Superlevels_Schedule_01", + "granted_bundles": [ + "S20-ChallengeBundle:QuestBundle_S20_Superlevel_01" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_WildWeek_Bargain_Schedule", + "templateId": "ChallengeBundleSchedule:Season20_WildWeek_Bargain_Schedule", + "granted_bundles": [ + "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Bargain_W11" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_WildWeek_Chocolate_Schedule", + "templateId": "ChallengeBundleSchedule:Season20_WildWeek_Chocolate_Schedule", + "granted_bundles": [ + "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10" + ] + }, + { + "itemGuid": "S20-ChallengeBundleSchedule:Season20_WildWeek_Purple_Schedule", + "templateId": "ChallengeBundleSchedule:Season20_WildWeek_Purple_Schedule", + "granted_bundles": [ + "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Purple_W9" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Alfredo", + "templateId": "ChallengeBundle:QuestBundle_S20_Alfredo", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_alfredo_q01" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Alfredo_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_01", + "templateId": "ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_01", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_BPUnlockableCharacter_q02", + "S20-Quest:Quest_S20_BPUnlockableCharacter_q03", + "S20-Quest:Quest_S20_BPUnlockableCharacter_q04", + "S20-Quest:Quest_S20_BPUnlockableCharacter_q06", + "S20-Quest:Quest_S20_BPUnlockableCharacter_q07", + "S20-Quest:Quest_S20_BPUnlockableCharacter_q08", + "S20-Quest:Quest_S20_BPUnlockableCharacter_q09" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_BPUnlockableCharacter_Schedule_01" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_Goals", + "templateId": "ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_Goals", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_BPUnlockableCharacter_q05", + "S20-Quest:Quest_S20_BPUnlockableCharacter_q01" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_BPUnlockableCharacter_Schedule_01" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_10_Buttercake", + "templateId": "ChallengeBundle:QuestBundle_S20_10_Buttercake", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_buttercake_discover_snowmounds" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Buttercake_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_20_Buttercake", + "templateId": "ChallengeBundle:QuestBundle_S20_20_Buttercake", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_buttercake_gather_klomberries_simple" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Buttercake_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_30_Buttercake", + "templateId": "ChallengeBundle:QuestBundle_S20_30_Buttercake", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_buttercake_discover_sandmounds", + "S20-Quest:quest_s20_buttercake_geyser" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Buttercake_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase1", + "templateId": "ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase1", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_CompleteCovertOps_Q01" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase1" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase1", + "templateId": "ChallengeBundle:QuestBundle_S20_CovertOps_Phase1", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_CovertOps_Phase1_Q01", + "S20-Quest:Quest_S20_CovertOps_Phase1_D01", + "S20-Quest:Quest_S20_CovertOps_Phase1_D02", + "S20-Quest:Quest_S20_CovertOps_Phase1_D03" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase1" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase2", + "templateId": "ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase2", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_CompleteCovertOps_Q02" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase2" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase2", + "templateId": "ChallengeBundle:QuestBundle_S20_CovertOps_Phase2", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_CovertOps_Phase2_Q02", + "S20-Quest:Quest_S20_CovertOps_Phase2_D01", + "S20-Quest:Quest_S20_CovertOps_Phase2_D02" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase2" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase2_PreReq", + "templateId": "ChallengeBundle:QuestBundle_S20_CovertOps_Phase2_PreReq", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_CovertOps_Phase2_PreReq" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase2" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase3", + "templateId": "ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase3", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_CompleteCovertOps_Q03" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase3" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase3", + "templateId": "ChallengeBundle:QuestBundle_S20_CovertOps_Phase3", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_CovertOps_Phase3_Q03", + "S20-Quest:Quest_S20_CovertOps_Phase3_D01" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase3" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase3_PreReq", + "templateId": "ChallengeBundle:QuestBundle_S20_CovertOps_Phase3_PreReq", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_CovertOps_Phase3_PreReq" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase3" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase4", + "templateId": "ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase4", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_CompleteCovertOps_Q04" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase4" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase4", + "templateId": "ChallengeBundle:QuestBundle_S20_CovertOps_Phase4", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_CovertOps_Phase4_Q04" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase4" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase4_PreReq", + "templateId": "ChallengeBundle:QuestBundle_S20_CovertOps_Phase4_PreReq", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_CovertOps_Phase4_PreReq" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_CovertOps_Phase4" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_EGS_Volcanic", + "templateId": "ChallengeBundle:QuestBundle_S20_EGS_Volcanic", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_EGS_Volcanic_Q01", + "S20-Quest:Quest_S20_EGS_Volcanic_Q02", + "S20-Quest:Quest_S20_EGS_Volcanic_Q03" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_EGS_Volcanic_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_EGS_Volcanic_BonusGoal", + "templateId": "ChallengeBundle:QuestBundle_S20_EGS_Volcanic_BonusGoal", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_EGS_Volcanic_BonusGoal" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_EGS_Volcanic_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_01", + "templateId": "ChallengeBundle:QuestBundle_S20_LevelUpPack_01", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_LevelUpPack_W01_01", + "S20-Quest:Quest_S20_LevelUpPack_W01_02", + "S20-Quest:Quest_S20_LevelUpPack_W01_03", + "S20-Quest:Quest_S20_LevelUpPack_W01_04", + "S20-Quest:Quest_S20_LevelUpPack_W01_05", + "S20-Quest:Quest_S20_LevelUpPack_W01_06", + "S20-Quest:Quest_S20_LevelUpPack_W01_07" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_LevelUpPack_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_02", + "templateId": "ChallengeBundle:QuestBundle_S20_LevelUpPack_02", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_LevelUpPack_W02_01", + "S20-Quest:Quest_S20_LevelUpPack_W02_02", + "S20-Quest:Quest_S20_LevelUpPack_W02_03", + "S20-Quest:Quest_S20_LevelUpPack_W02_04", + "S20-Quest:Quest_S20_LevelUpPack_W02_05", + "S20-Quest:Quest_S20_LevelUpPack_W02_06", + "S20-Quest:Quest_S20_LevelUpPack_W02_07" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_LevelUpPack_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_03", + "templateId": "ChallengeBundle:QuestBundle_S20_LevelUpPack_03", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_LevelUpPack_W03_01", + "S20-Quest:Quest_S20_LevelUpPack_W03_02", + "S20-Quest:Quest_S20_LevelUpPack_W03_03", + "S20-Quest:Quest_S20_LevelUpPack_W03_04", + "S20-Quest:Quest_S20_LevelUpPack_W03_05", + "S20-Quest:Quest_S20_LevelUpPack_W03_06", + "S20-Quest:Quest_S20_LevelUpPack_W03_07" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_LevelUpPack_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_04", + "templateId": "ChallengeBundle:QuestBundle_S20_LevelUpPack_04", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_LevelUpPack_W04_01", + "S20-Quest:Quest_S20_LevelUpPack_W04_02", + "S20-Quest:Quest_S20_LevelUpPack_W04_03", + "S20-Quest:Quest_S20_LevelUpPack_W04_04", + "S20-Quest:Quest_S20_LevelUpPack_W04_05", + "S20-Quest:Quest_S20_LevelUpPack_W04_06", + "S20-Quest:Quest_S20_LevelUpPack_W04_07" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_LevelUpPack_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_PunchCard", + "templateId": "ChallengeBundle:QuestBundle_S20_LevelUpPack_PunchCard", + "grantedquestinstanceids": [ + "S20-Quest:Quests_S20_LevelUpPack_PunchCard_01", + "S20-Quest:Quests_S20_LevelUpPack_PunchCard_02", + "S20-Quest:Quests_S20_LevelUpPack_PunchCard_03", + "S20-Quest:Quests_S20_LevelUpPack_PunchCard_04" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_LevelUpPack_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_CatchFish", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_CatchFish_Q01", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q02", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q03", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q04", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q05", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q06", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q07", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q08", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q09", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q10", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q11", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q12", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q13", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q14", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q15", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q16", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q17", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q18", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q19", + "S20-Quest:Quest_S20_Milestone_CatchFish_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q01", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q02", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q03", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q04", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q05", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q06", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q07", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q08", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q09", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q10", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q11", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q12", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q13", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q14", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q15", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q16", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q17", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q18", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q19", + "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q01", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q02", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q03", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q04", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q05", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q06", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q07", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q08", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q09", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q10", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q11", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q12", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q13", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q14", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q15", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q16", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q17", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q18", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q19", + "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q01", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q02", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q03", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q04", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q05", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q06", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q07", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q08", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q09", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q10", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q11", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q12", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q13", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q14", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q15", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q16", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q17", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q18", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q19", + "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q01", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q02", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q03", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q04", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q05", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q06", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q07", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q08", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q09", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q10", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q11", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q12", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q13", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q14", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q15", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q16", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q17", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q18", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q19", + "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q01", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q02", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q03", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q04", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q05", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q06", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q07", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q08", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q09", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q10", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q11", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q12", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q13", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q14", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q15", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q16", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q17", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q18", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q19", + "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q01", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q02", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q03", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q04", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q05", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q06", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q07", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q08", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q09", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q10", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q11", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q12", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q13", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q14", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q15", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q16", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q17", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q18", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q19", + "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_Eliminations", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_Eliminations_Q01", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q02", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q03", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q04", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q05", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q06", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q07", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q08", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q09", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q10", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q11", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q12", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q13", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q14", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q15", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q16", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q17", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q18", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q19", + "S20-Quest:Quest_S20_Milestone_Eliminations_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q01", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q02", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q03", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q04", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q05", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q06", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q07", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q08", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q09", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q10", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q11", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q12", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q13", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q14", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q15", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q16", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q17", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q18", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q19", + "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q01", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q02", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q03", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q04", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q05", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q06", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q07", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q08", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q09", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q10", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q11", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q12", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q13", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q14", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q15", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q16", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q17", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q18", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q19", + "S20-Quest:Quest_S20_Milestone_OpenVaults_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q01", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q02", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q03", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q04", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q05", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q06", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q07", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q08", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q09", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q10", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q11", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q12", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q13", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q14", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q15", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q16", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q17", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q18", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q19", + "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q01", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q02", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q03", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q04", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q05", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q06", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q07", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q08", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q09", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q10", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q11", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q12", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q13", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q14", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q15", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q16", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q17", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q18", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q19", + "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q01", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q02", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q03", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q04", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q05", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q06", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q07", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q08", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q09", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q10", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q11", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q12", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q13", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q14", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q15", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q16", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q17", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q18", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q19", + "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_SpendBars", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_SpendBars_Q01", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q02", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q03", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q04", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q05", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q06", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q07", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q08", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q09", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q10", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q11", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q12", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q13", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q14", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q15", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q16", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q17", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q18", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q19", + "S20-Quest:Quest_S20_Milestone_SpendBars_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_TankDamage", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_TankDamage_Q01", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q02", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q03", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q04", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q05", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q06", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q07", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q08", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q09", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q10", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q11", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q12", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q13", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q14", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q15", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q16", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q17", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q18", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q19", + "S20-Quest:Quest_S20_Milestone_TankDamage_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q01", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q02", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q03", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q04", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q05", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q06", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q07", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q08", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q09", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q10", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q11", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q12", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q13", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q14", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q15", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q16", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q17", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q18", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q19", + "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q01", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q02", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q03", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q04", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q05", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q06", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q07", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q08", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q09", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q10", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q11", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q12", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q13", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q14", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q15", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q16", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q17", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q18", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q19", + "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q01", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q02", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q03", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q04", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q05", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q06", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q07", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q08", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q09", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q10", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q11", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q12", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q13", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q14", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q15", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q16", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q17", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q18", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q19", + "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q01", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q02", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q03", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q04", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q05", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q06", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q07", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q08", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q09", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q10", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q11", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q12", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q13", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q14", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q15", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q16", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q17", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q18", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q19", + "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Milestone_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_TutorialQuests", + "templateId": "ChallengeBundle:MissionBundle_S20_TutorialQuests", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Tutorial_Q01" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Mission_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_Week_01", + "templateId": "ChallengeBundle:MissionBundle_S20_Week_01", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_W01_Q01", + "S20-Quest:Quest_S20_Weekly_W01_Q02", + "S20-Quest:Quest_S20_Weekly_W01_Q03", + "S20-Quest:Quest_S20_Weekly_W01_Q04", + "S20-Quest:Quest_S20_Weekly_W01_Q05", + "S20-Quest:Quest_S20_Weekly_W01_Q06", + "S20-Quest:Quest_S20_Weekly_W01_Q07", + "S20-Quest:Quest_S20_Weekly_W01_Q08", + "S20-Quest:Quest_S20_Weekly_W01_Q09" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Mission_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_Week_02", + "templateId": "ChallengeBundle:MissionBundle_S20_Week_02", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_W02_Q01", + "S20-Quest:Quest_S20_Weekly_W02_Q02", + "S20-Quest:Quest_S20_Weekly_W02_Q03", + "S20-Quest:Quest_S20_Weekly_W02_Q04", + "S20-Quest:Quest_S20_Weekly_W02_Q05", + "S20-Quest:Quest_S20_Weekly_W02_Q06", + "S20-Quest:Quest_S20_Weekly_W02_Q07", + "S20-Quest:Quest_S20_Weekly_W02_Q08", + "S20-Quest:Quest_S20_Weekly_W02_Q09" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Mission_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_Week_03", + "templateId": "ChallengeBundle:MissionBundle_S20_Week_03", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_W03_Q01", + "S20-Quest:Quest_S20_Weekly_W03_Q02", + "S20-Quest:Quest_S20_Weekly_W03_Q03", + "S20-Quest:Quest_S20_Weekly_W03_Q04", + "S20-Quest:Quest_S20_Weekly_W03_Q05", + "S20-Quest:Quest_S20_Weekly_W03_Q06", + "S20-Quest:Quest_S20_Weekly_W03_Q07", + "S20-Quest:Quest_S20_Weekly_W03_Q08", + "S20-Quest:Quest_S20_Weekly_W03_Q09" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Mission_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_Week_04", + "templateId": "ChallengeBundle:MissionBundle_S20_Week_04", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_W04_Q01", + "S20-Quest:Quest_S20_Weekly_W04_Q02", + "S20-Quest:Quest_S20_Weekly_W04_Q03", + "S20-Quest:Quest_S20_Weekly_W04_Q04", + "S20-Quest:Quest_S20_Weekly_W04_Q05", + "S20-Quest:Quest_S20_Weekly_W04_Q06", + "S20-Quest:Quest_S20_Weekly_W04_Q07", + "S20-Quest:Quest_S20_Weekly_W04_Q08", + "S20-Quest:Quest_S20_Weekly_W04_Q09" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Mission_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_Week_05", + "templateId": "ChallengeBundle:MissionBundle_S20_Week_05", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_W05_Q01", + "S20-Quest:Quest_S20_Weekly_W05_Q02", + "S20-Quest:Quest_S20_Weekly_W05_Q03", + "S20-Quest:Quest_S20_Weekly_W05_Q04", + "S20-Quest:Quest_S20_Weekly_W05_Q05", + "S20-Quest:Quest_S20_Weekly_W05_Q06", + "S20-Quest:Quest_S20_Weekly_W05_Q07", + "S20-Quest:Quest_S20_Weekly_W05_Q08", + "S20-Quest:Quest_S20_Weekly_W05_Q09" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Mission_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_Week_06", + "templateId": "ChallengeBundle:MissionBundle_S20_Week_06", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_W06_Q01", + "S20-Quest:Quest_S20_Weekly_W06_Q02", + "S20-Quest:Quest_S20_Weekly_W06_Q03", + "S20-Quest:Quest_S20_Weekly_W06_Q04", + "S20-Quest:Quest_S20_Weekly_W06_Q05", + "S20-Quest:Quest_S20_Weekly_W06_Q06", + "S20-Quest:Quest_S20_Weekly_W06_Q07", + "S20-Quest:Quest_S20_Weekly_W06_Q08", + "S20-Quest:Quest_S20_Weekly_W06_Q09" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Mission_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_Week_07", + "templateId": "ChallengeBundle:MissionBundle_S20_Week_07", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_W07_Q01", + "S20-Quest:Quest_S20_Weekly_W07_Q02", + "S20-Quest:Quest_S20_Weekly_W07_Q03", + "S20-Quest:Quest_S20_Weekly_W07_Q04", + "S20-Quest:Quest_S20_Weekly_W07_Q05", + "S20-Quest:Quest_S20_Weekly_W07_Q06", + "S20-Quest:Quest_S20_Weekly_W07_Q07", + "S20-Quest:Quest_S20_Weekly_W07_Q08", + "S20-Quest:Quest_S20_Weekly_W07_Q09" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Mission_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_Week_08", + "templateId": "ChallengeBundle:MissionBundle_S20_Week_08", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_W08_Q01", + "S20-Quest:Quest_S20_Weekly_W08_Q02", + "S20-Quest:Quest_S20_Weekly_W08_Q03", + "S20-Quest:Quest_S20_Weekly_W08_Q04", + "S20-Quest:Quest_S20_Weekly_W08_Q05", + "S20-Quest:Quest_S20_Weekly_W08_Q06", + "S20-Quest:Quest_S20_Weekly_W08_Q07", + "S20-Quest:Quest_S20_Weekly_W08_Q08", + "S20-Quest:Quest_S20_Weekly_W08_Q09" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Mission_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_Week_09", + "templateId": "ChallengeBundle:MissionBundle_S20_Week_09", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_W09_Q01", + "S20-Quest:Quest_S20_Weekly_W09_Q02", + "S20-Quest:Quest_S20_Weekly_W09_Q03", + "S20-Quest:Quest_S20_Weekly_W09_Q04", + "S20-Quest:Quest_S20_Weekly_W09_Q05", + "S20-Quest:Quest_S20_Weekly_W09_Q06", + "S20-Quest:Quest_S20_Weekly_W09_Q07", + "S20-Quest:Quest_S20_Weekly_W09_Q08", + "S20-Quest:Quest_S20_Weekly_W09_Q09" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Mission_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_Week_10", + "templateId": "ChallengeBundle:MissionBundle_S20_Week_10", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_W10_Q01", + "S20-Quest:Quest_S20_Weekly_W10_Q02", + "S20-Quest:Quest_S20_Weekly_W10_Q03", + "S20-Quest:Quest_S20_Weekly_W10_Q04", + "S20-Quest:Quest_S20_Weekly_W10_Q05", + "S20-Quest:Quest_S20_Weekly_W10_Q06", + "S20-Quest:Quest_S20_Weekly_W10_Q07", + "S20-Quest:Quest_S20_Weekly_W10_Q08", + "S20-Quest:Quest_S20_Weekly_W10_Q09" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Mission_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Noble", + "templateId": "ChallengeBundle:QuestBundle_S20_Noble", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Noble_Q01", + "S20-Quest:Quest_S20_Noble_Q02", + "S20-Quest:Quest_S20_Noble_Q03", + "S20-Quest:Quest_S20_Noble_Q04", + "S20-Quest:Quest_S20_Noble_Q05", + "S20-Quest:Quest_S20_Noble_Q07" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Noble_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Noble_BonusGoal", + "templateId": "ChallengeBundle:QuestBundle_S20_Noble_BonusGoal", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Noble_BonusGoal" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Noble_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_NoPermit", + "templateId": "ChallengeBundle:QuestBundle_S20_NoPermit", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_nopermit_q01", + "S20-Quest:quest_s20_nopermit_q04", + "S20-Quest:quest_s20_nopermit_participation_q01" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_NoPermitSchedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_NoPermit_Participation", + "templateId": "ChallengeBundle:QuestBundle_S20_NoPermit_Participation", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_nopermit_participation_q02" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_NoPermitSchedule_Participation" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier01", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_Tier01", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q01", + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q02" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier02", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_Tier02", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q03", + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q04" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier03", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_Tier03", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q05", + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q06" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier04", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_Tier04", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q07", + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q08" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier05", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_Tier05", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q09", + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q10" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier06", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_Tier06", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q11", + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q12" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier07", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_Tier07", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q13", + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q14" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier08", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_Tier08", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q15", + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q16" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier09", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_Tier09", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q17", + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q18" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier10", + "templateId": "ChallengeBundle:QuestBundle_S20_Milestone_Tier10", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q19", + "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W01", + "templateId": "ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W01", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W01_Q01", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W01_Q02", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W01_Q03" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W02", + "templateId": "ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W02", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W02_Q01", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W02_Q02", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W02_Q03" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W03", + "templateId": "ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W03", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W03_Q01", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W03_Q02", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W03_Q03" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W04", + "templateId": "ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W04", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W04_Q01", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W04_Q02", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W04_Q03" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W05", + "templateId": "ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W05", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W05_Q01", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W05_Q02", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W05_Q03" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W06", + "templateId": "ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W06", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W06_Q01", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W06_Q02", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W06_Q03" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W07", + "templateId": "ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W07", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W07_Q01", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W07_Q02", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W07_Q03" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W08", + "templateId": "ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W08", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W08_Q01", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W08_Q02", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W08_Q03" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W09", + "templateId": "ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W09", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W09_Q01", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W09_Q02", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W09_Q03" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W10", + "templateId": "ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W10", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W10_Q01", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W10_Q02", + "S20-Quest:Quest_S20_Weekly_CompleteSeason_W10_Q03" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_PunchCard_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_01", + "templateId": "ChallengeBundle:QuestBundle_Collectible_PickaxeColor_01", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_pickaxe_collectible_color01", + "S20-Quest:quest_s20_pickaxe_collectible_color02", + "S20-Quest:quest_s20_pickaxe_collectible_color24" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Collectibles_Pickaxe" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_02", + "templateId": "ChallengeBundle:QuestBundle_Collectible_PickaxeColor_02", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_pickaxe_collectible_color09", + "S20-Quest:quest_s20_pickaxe_collectible_color11", + "S20-Quest:quest_s20_pickaxe_collectible_color16" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Collectibles_Pickaxe" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_03", + "templateId": "ChallengeBundle:QuestBundle_Collectible_PickaxeColor_03", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_pickaxe_collectible_color03", + "S20-Quest:quest_s20_pickaxe_collectible_color06", + "S20-Quest:quest_s20_pickaxe_collectible_color10" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Collectibles_Pickaxe" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_04", + "templateId": "ChallengeBundle:QuestBundle_Collectible_PickaxeColor_04", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_pickaxe_collectible_color04", + "S20-Quest:quest_s20_pickaxe_collectible_color18", + "S20-Quest:quest_s20_pickaxe_collectible_color21" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Collectibles_Pickaxe" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_05", + "templateId": "ChallengeBundle:QuestBundle_Collectible_PickaxeColor_05", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_pickaxe_collectible_color05", + "S20-Quest:quest_s20_pickaxe_collectible_color14", + "S20-Quest:quest_s20_pickaxe_collectible_color17" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Collectibles_Pickaxe" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_06", + "templateId": "ChallengeBundle:QuestBundle_Collectible_PickaxeColor_06", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_pickaxe_collectible_color07", + "S20-Quest:quest_s20_pickaxe_collectible_color22", + "S20-Quest:quest_s20_pickaxe_collectible_color23" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Collectibles_Pickaxe" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_07", + "templateId": "ChallengeBundle:QuestBundle_Collectible_PickaxeColor_07", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_pickaxe_collectible_color08", + "S20-Quest:quest_s20_pickaxe_collectible_color15", + "S20-Quest:quest_s20_pickaxe_collectible_color20" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Collectibles_Pickaxe" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_08", + "templateId": "ChallengeBundle:QuestBundle_Collectible_PickaxeColor_08", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_pickaxe_collectible_color12", + "S20-Quest:quest_s20_pickaxe_collectible_color13", + "S20-Quest:quest_s20_pickaxe_collectible_color19" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Collectibles_Pickaxe" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone", + "templateId": "ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q01", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q02", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q03", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q04", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q05", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q06", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q07", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q08", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q09", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q10", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q11", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q12", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q13", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q14", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q15", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q16", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q17", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q18", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q19", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q20", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q21", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q22", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q23", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q24", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q25", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q26", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q27", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q28", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q29", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q30", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q31", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q32", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q33", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q34", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q35", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q36", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q37", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q38", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q39", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q40", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q41", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q42", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q43", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q44", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q45", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q46", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q47", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q48", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q49", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q50", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q51", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q52", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q53", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q54", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q55", + "S20-Quest:Quest_S20_Pickaxe_Milestone_Q56" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Collectibles_Pickaxe" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Narrative_W01", + "templateId": "ChallengeBundle:QuestBundle_Narrative_W01", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_narrative_w01_granter_hidden_noperm" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Narrative" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Narrative_W02", + "templateId": "ChallengeBundle:QuestBundle_Narrative_W02", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_narrative_w02_granter_hidden_noperm" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Narrative" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Narrative_W03", + "templateId": "ChallengeBundle:QuestBundle_Narrative_W03", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_narrative_w03_granter" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Narrative" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Narrative_W04", + "templateId": "ChallengeBundle:QuestBundle_Narrative_W04", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_narrative_w04_granter" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Narrative" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Narrative_W05", + "templateId": "ChallengeBundle:QuestBundle_Narrative_W05", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_narrative_w05_granter" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Narrative" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Narrative_W06", + "templateId": "ChallengeBundle:QuestBundle_Narrative_W06", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_narrative_w06_granter" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Narrative" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Narrative_W07", + "templateId": "ChallengeBundle:QuestBundle_Narrative_W07", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_narrative_w07_granter" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Narrative" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Narrative_W08", + "templateId": "ChallengeBundle:QuestBundle_Narrative_W08", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_narrative_w08_granter" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Narrative" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Narrative_W09", + "templateId": "ChallengeBundle:QuestBundle_Narrative_W09", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_narrative_w09_granter" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Narrative" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Narrative_W10", + "templateId": "ChallengeBundle:QuestBundle_Narrative_W10", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_narrative_w10_granter" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Narrative" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_Narrative_W11", + "templateId": "ChallengeBundle:QuestBundle_Narrative_W11", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_narrative_w11_granter" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Schedule_Narrative" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Soundwave", + "templateId": "ChallengeBundle:QuestBundle_S20_Soundwave", + "grantedquestinstanceids": [ + "S20-Quest:quest_s20_soundwave_q01" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Soundwave_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:QuestBundle_S20_Superlevel_01", + "templateId": "ChallengeBundle:QuestBundle_S20_Superlevel_01", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Superlevel_q01" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_Superlevels_Schedule_01" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Bargain_W11", + "templateId": "ChallengeBundle:MissionBundle_S20_WildWeek_Bargain_W11", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_Bargain_Q01", + "S20-Quest:Quest_S20_Weekly_Bargain_Q02", + "S20-Quest:Quest_S20_Weekly_Bargain_Q03", + "S20-Quest:Quest_S20_Weekly_Bargain_Q04", + "S20-Quest:Quest_S20_Weekly_Bargain_Q05", + "S20-Quest:Quest_S20_Weekly_Bargain_Q06", + "S20-Quest:Quest_S20_Weekly_Bargain_Q07", + "S20-Quest:Quest_S20_Weekly_Bargain_Q08", + "S20-Quest:Quest_S20_Weekly_Bargain_Q09", + "S20-Quest:Quest_S20_Weekly_Bargain_Q10" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_WildWeek_Bargain_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10", + "templateId": "ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_Chocolate_Q1A", + "S20-Quest:Quest_S20_Weekly_Chocolate_Q1B", + "S20-Quest:Quest_S20_Weekly_Chocolate_Q1C", + "S20-Quest:Quest_S20_Weekly_Chocolate_Q2A", + "S20-Quest:Quest_S20_Weekly_Chocolate_Q2B", + "S20-Quest:Quest_S20_Weekly_Chocolate_Q2C", + "S20-Quest:Quest_S20_Weekly_Chocolate_Q01", + "S20-Quest:Quest_S20_Weekly_Chocolate_Q03", + "S20-Quest:Quest_S20_Weekly_Chocolate_Q05", + "S20-Quest:Quest_S20_Weekly_Chocolate_Q02", + "S20-Quest:Quest_S20_Weekly_Chocolate_Q09" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_WildWeek_Chocolate_Schedule" + }, + { + "itemGuid": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Purple_W9", + "templateId": "ChallengeBundle:MissionBundle_S20_WildWeek_Purple_W9", + "grantedquestinstanceids": [ + "S20-Quest:Quest_S20_Weekly_Purple_Q1A", + "S20-Quest:Quest_S20_Weekly_Purple_Q1B", + "S20-Quest:Quest_S20_Weekly_Purple_Q1C", + "S20-Quest:Quest_S20_Weekly_Purple_Q1D", + "S20-Quest:Quest_S20_Weekly_Purple_Q03", + "S20-Quest:Quest_S20_Weekly_Purple_Q05", + "S20-Quest:Quest_S20_Weekly_Purple_Q06", + "S20-Quest:Quest_S20_Weekly_Purple_Q08", + "S20-Quest:Quest_S20_Weekly_Purple_Q02" + ], + "challenge_bundle_schedule_id": "S20-ChallengeBundleSchedule:Season20_WildWeek_Purple_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S20-Quest:quest_s20_alfredo_q01", + "templateId": "Quest:quest_s20_alfredo_q01", + "objectives": [ + { + "name": "quest_s20_alfredo_q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Alfredo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_BPUnlockableCharacter_q02", + "templateId": "Quest:Quest_S20_BPUnlockableCharacter_q02", + "objectives": [ + { + "name": "Quest_S20_BPUnlockableCharacter_q02_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_BPUnlockableCharacter_q03", + "templateId": "Quest:Quest_S20_BPUnlockableCharacter_q03", + "objectives": [ + { + "name": "Quest_S20_BPUnlockableCharacter_q03_obj0", + "count": 1 + }, + { + "name": "Quest_S20_BPUnlockableCharacter_q03_obj1", + "count": 1 + }, + { + "name": "Quest_S20_BPUnlockableCharacter_q03_obj2", + "count": 1 + }, + { + "name": "Quest_S20_BPUnlockableCharacter_q03_obj3", + "count": 1 + }, + { + "name": "Quest_S20_BPUnlockableCharacter_q03_obj4", + "count": 1 + }, + { + "name": "Quest_S20_BPUnlockableCharacter_q03_obj5", + "count": 1 + }, + { + "name": "Quest_S20_BPUnlockableCharacter_q03_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_BPUnlockableCharacter_q04", + "templateId": "Quest:Quest_S20_BPUnlockableCharacter_q04", + "objectives": [ + { + "name": "Quest_S20_BPUnlockableCharacter_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_BPUnlockableCharacter_q06", + "templateId": "Quest:Quest_S20_BPUnlockableCharacter_q06", + "objectives": [ + { + "name": "Quest_S20_BPUnlockableCharacter_q06_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_BPUnlockableCharacter_q07", + "templateId": "Quest:Quest_S20_BPUnlockableCharacter_q07", + "objectives": [ + { + "name": "Quest_S20_BPUnlockableCharacter_q07_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_BPUnlockableCharacter_q08", + "templateId": "Quest:Quest_S20_BPUnlockableCharacter_q08", + "objectives": [ + { + "name": "Quest_S20_BPUnlockableCharacter_q08_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_BPUnlockableCharacter_q09", + "templateId": "Quest:Quest_S20_BPUnlockableCharacter_q09", + "objectives": [ + { + "name": "Quest_S20_BPUnlockableCharacter_q09_obj0", + "count": 1 + }, + { + "name": "Quest_S20_BPUnlockableCharacter_q09_obj1", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_BPUnlockableCharacter_q01", + "templateId": "Quest:Quest_S20_BPUnlockableCharacter_q01", + "objectives": [ + { + "name": "Quest_S20_BPUnlockableCharacter_q01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_Goals" + }, + { + "itemGuid": "S20-Quest:Quest_S20_BPUnlockableCharacter_q05", + "templateId": "Quest:Quest_S20_BPUnlockableCharacter_q05", + "objectives": [ + { + "name": "Quest_S20_BPUnlockableCharacter_q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_BPUnlockableCharacter_Goals" + }, + { + "itemGuid": "S20-Quest:quest_s20_buttercake_discover_snowmounds", + "templateId": "Quest:quest_s20_buttercake_discover_snowmounds", + "objectives": [ + { + "name": "quest_s20_buttercake_discover_snowmounds_obj0", + "count": 1 + }, + { + "name": "quest_s20_buttercake_discover_snowmounds_obj1", + "count": 1 + }, + { + "name": "quest_s20_buttercake_discover_snowmounds_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_10_Buttercake" + }, + { + "itemGuid": "S20-Quest:quest_s20_buttercake_gather_klomberries_simple", + "templateId": "Quest:quest_s20_buttercake_gather_klomberries_simple", + "objectives": [ + { + "name": "quest_s20_buttercake_gather_klomberries_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_20_Buttercake" + }, + { + "itemGuid": "S20-Quest:quest_s20_buttercake_discover_sandmounds", + "templateId": "Quest:quest_s20_buttercake_discover_sandmounds", + "objectives": [ + { + "name": "quest_s20_buttercake_discover_sandmounds_obj0", + "count": 1 + }, + { + "name": "quest_s20_buttercake_discover_sandmounds_obj1", + "count": 1 + }, + { + "name": "quest_s20_buttercake_discover_sandmounds_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_30_Buttercake" + }, + { + "itemGuid": "S20-Quest:quest_s20_buttercake_geyser", + "templateId": "Quest:quest_s20_buttercake_geyser", + "objectives": [ + { + "name": "quest_s20_buttercake_geyser_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_30_Buttercake" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CompleteCovertOps_Q01", + "templateId": "Quest:Quest_S20_CompleteCovertOps_Q01", + "objectives": [ + { + "name": "Quest_S20_CompleteCovertOps_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S20_CompleteCovertOps_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S20_CompleteCovertOps_Q01_obj2", + "count": 1 + }, + { + "name": "Quest_S20_CompleteCovertOps_Q01_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase1" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CovertOps_Phase1_D01", + "templateId": "Quest:Quest_S20_CovertOps_Phase1_D01", + "objectives": [ + { + "name": "Quest_S20_CovertOps_Phase1_D01_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase1" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CovertOps_Phase1_D02", + "templateId": "Quest:Quest_S20_CovertOps_Phase1_D02", + "objectives": [ + { + "name": "Quest_S20_CovertOps_Phase1_D02_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase1" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CovertOps_Phase1_D03", + "templateId": "Quest:Quest_S20_CovertOps_Phase1_D03", + "objectives": [ + { + "name": "Quest_S20_CovertOps_Phase1_D03_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase1" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CovertOps_Phase1_Q01", + "templateId": "Quest:Quest_S20_CovertOps_Phase1_Q01", + "objectives": [ + { + "name": "Quest_S20_CovertOps_Phase1_Q01_obj000", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase1_Q01_obj2", + "count": 10 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase1" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CompleteCovertOps_Q02", + "templateId": "Quest:Quest_S20_CompleteCovertOps_Q02", + "objectives": [ + { + "name": "Quest_S20_CompleteCovertOps_Q02_obj0", + "count": 1 + }, + { + "name": "Quest_S20_CompleteCovertOps_Q02_obj1", + "count": 1 + }, + { + "name": "Quest_S20_CompleteCovertOps_Q02_obj2", + "count": 1 + }, + { + "name": "Quest_S20_CompleteCovertOps_Q02_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase2" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CovertOps_Phase2_D01", + "templateId": "Quest:Quest_S20_CovertOps_Phase2_D01", + "objectives": [ + { + "name": "Quest_S20_CovertOps_Phase2_D01_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase2" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CovertOps_Phase2_D02", + "templateId": "Quest:Quest_S20_CovertOps_Phase2_D02", + "objectives": [ + { + "name": "Quest_S20_CovertOps_Phase2_D02_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase2" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CovertOps_Phase2_Q02", + "templateId": "Quest:Quest_S20_CovertOps_Phase2_Q02", + "objectives": [ + { + "name": "Quest_S20_CovertOps_Phase2_Q02_obj000", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase2_Q02_obj2", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase2_Q02_obj3", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase2_Q02_obj4", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase2_Q02_obj5", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase2_Q02_obj6", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase2" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CovertOps_Phase2_PreReq", + "templateId": "Quest:Quest_S20_CovertOps_Phase2_PreReq", + "objectives": [ + { + "name": "Quest_S20_CovertOps_Phase2_PreReq_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase2_PreReq" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CompleteCovertOps_Q03", + "templateId": "Quest:Quest_S20_CompleteCovertOps_Q03", + "objectives": [ + { + "name": "Quest_S20_CompleteCovertOps_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_S20_CompleteCovertOps_Q03_obj1", + "count": 1 + }, + { + "name": "Quest_S20_CompleteCovertOps_Q03_obj2", + "count": 1 + }, + { + "name": "Quest_S20_CompleteCovertOps_Q03_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase3" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CovertOps_Phase3_D01", + "templateId": "Quest:Quest_S20_CovertOps_Phase3_D01", + "objectives": [ + { + "name": "Quest_S20_CovertOps_Phase3_D01_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase3" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CovertOps_Phase3_Q03", + "templateId": "Quest:Quest_S20_CovertOps_Phase3_Q03", + "objectives": [ + { + "name": "Quest_S20_CovertOps_Phase3_Q03_obj000", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase3_Q03_obj2", + "count": 300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase3" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CovertOps_Phase3_PreReq", + "templateId": "Quest:Quest_S20_CovertOps_Phase3_PreReq", + "objectives": [ + { + "name": "Quest_S20_CovertOps_Phase3_PreReq_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase3_PreReq" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CompleteCovertOps_Q04", + "templateId": "Quest:Quest_S20_CompleteCovertOps_Q04", + "objectives": [ + { + "name": "Quest_S20_CompleteCovertOps_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S20_CompleteCovertOps_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_S20_CompleteCovertOps_Q04_obj2", + "count": 1 + }, + { + "name": "Quest_S20_CompleteCovertOps_Q04_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_BonusGoal_Phase4" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CovertOps_Phase4_Q04", + "templateId": "Quest:Quest_S20_CovertOps_Phase4_Q04", + "objectives": [ + { + "name": "Quest_S20_CovertOps_Phase4_Q01_obj000", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase4_Q04_obj2", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase4_Q04_obj3", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase4_Q04_obj4", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase4_Q04_obj5", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase4_Q04_obj6", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase4_Q04_obj7", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase4_Q04_obj8", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase4_Q04_obj9", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase4_Q04_obj12", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase4_Q04_obj13", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase4_Q04_obj14", + "count": 1 + }, + { + "name": "Quest_S20_CovertOps_Phase4_Q04_obj15", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase4" + }, + { + "itemGuid": "S20-Quest:Quest_S20_CovertOps_Phase4_PreReq", + "templateId": "Quest:Quest_S20_CovertOps_Phase4_PreReq", + "objectives": [ + { + "name": "Quest_S20_CovertOps_Phase4_PreReq_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_CovertOps_Phase4_PreReq" + }, + { + "itemGuid": "S20-Quest:Quest_S20_EGS_Volcanic_Q01", + "templateId": "Quest:Quest_S20_EGS_Volcanic_Q01", + "objectives": [ + { + "name": "Quest_S20_EGS_Volcanic_Q01_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_EGS_Volcanic" + }, + { + "itemGuid": "S20-Quest:Quest_S20_EGS_Volcanic_Q02", + "templateId": "Quest:Quest_S20_EGS_Volcanic_Q02", + "objectives": [ + { + "name": "Quest_S20_EGS_Volcanic_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_EGS_Volcanic" + }, + { + "itemGuid": "S20-Quest:Quest_S20_EGS_Volcanic_Q03", + "templateId": "Quest:Quest_S20_EGS_Volcanic_Q03", + "objectives": [ + { + "name": "Quest_S20_EGS_Volcanic_Q03_obj0", + "count": 2100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_EGS_Volcanic" + }, + { + "itemGuid": "S20-Quest:Quest_S20_EGS_Volcanic_BonusGoal", + "templateId": "Quest:Quest_S20_EGS_Volcanic_BonusGoal", + "objectives": [ + { + "name": "Quest_S20_EGS_Volcanic_BonusGoal_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_EGS_Volcanic_BonusGoal" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W01_01", + "templateId": "Quest:Quest_S20_LevelUpPack_W01_01", + "objectives": [ + { + "name": "quest_s20_leveluppack_w01_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W01_02", + "templateId": "Quest:Quest_S20_LevelUpPack_W01_02", + "objectives": [ + { + "name": "quest_s20_leveluppack_w01_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W01_03", + "templateId": "Quest:Quest_S20_LevelUpPack_W01_03", + "objectives": [ + { + "name": "quest_s20_leveluppack_w01_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W01_04", + "templateId": "Quest:Quest_S20_LevelUpPack_W01_04", + "objectives": [ + { + "name": "quest_s20_leveluppack_w01_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W01_05", + "templateId": "Quest:Quest_S20_LevelUpPack_W01_05", + "objectives": [ + { + "name": "quest_s20_leveluppack_w01_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W01_06", + "templateId": "Quest:Quest_S20_LevelUpPack_W01_06", + "objectives": [ + { + "name": "quest_s20_leveluppack_w01_06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W01_07", + "templateId": "Quest:Quest_S20_LevelUpPack_W01_07", + "objectives": [ + { + "name": "quest_s20_leveluppack_w01_07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W02_01", + "templateId": "Quest:Quest_S20_LevelUpPack_W02_01", + "objectives": [ + { + "name": "quest_s20_leveluppack_w02_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W02_02", + "templateId": "Quest:Quest_S20_LevelUpPack_W02_02", + "objectives": [ + { + "name": "quest_s20_leveluppack_w02_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W02_03", + "templateId": "Quest:Quest_S20_LevelUpPack_W02_03", + "objectives": [ + { + "name": "quest_s20_leveluppack_w02_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W02_04", + "templateId": "Quest:Quest_S20_LevelUpPack_W02_04", + "objectives": [ + { + "name": "quest_s20_leveluppack_w02_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W02_05", + "templateId": "Quest:Quest_S20_LevelUpPack_W02_05", + "objectives": [ + { + "name": "quest_s20_leveluppack_w02_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W02_06", + "templateId": "Quest:Quest_S20_LevelUpPack_W02_06", + "objectives": [ + { + "name": "quest_s20_leveluppack_w02_06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W02_07", + "templateId": "Quest:Quest_S20_LevelUpPack_W02_07", + "objectives": [ + { + "name": "quest_s20_leveluppack_w02_07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W03_01", + "templateId": "Quest:Quest_S20_LevelUpPack_W03_01", + "objectives": [ + { + "name": "quest_s20_leveluppack_w03_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W03_02", + "templateId": "Quest:Quest_S20_LevelUpPack_W03_02", + "objectives": [ + { + "name": "quest_s20_leveluppack_w03_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W03_03", + "templateId": "Quest:Quest_S20_LevelUpPack_W03_03", + "objectives": [ + { + "name": "quest_s20_leveluppack_w03_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W03_04", + "templateId": "Quest:Quest_S20_LevelUpPack_W03_04", + "objectives": [ + { + "name": "quest_s20_leveluppack_w03_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W03_05", + "templateId": "Quest:Quest_S20_LevelUpPack_W03_05", + "objectives": [ + { + "name": "quest_s20_leveluppack_w03_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W03_06", + "templateId": "Quest:Quest_S20_LevelUpPack_W03_06", + "objectives": [ + { + "name": "quest_s20_leveluppack_w03_06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W03_07", + "templateId": "Quest:Quest_S20_LevelUpPack_W03_07", + "objectives": [ + { + "name": "quest_s20_leveluppack_w03_07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W04_01", + "templateId": "Quest:Quest_S20_LevelUpPack_W04_01", + "objectives": [ + { + "name": "quest_s20_leveluppack_w04_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W04_02", + "templateId": "Quest:Quest_S20_LevelUpPack_W04_02", + "objectives": [ + { + "name": "quest_s20_leveluppack_w04_02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W04_03", + "templateId": "Quest:Quest_S20_LevelUpPack_W04_03", + "objectives": [ + { + "name": "quest_s20_leveluppack_w04_03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W04_04", + "templateId": "Quest:Quest_S20_LevelUpPack_W04_04", + "objectives": [ + { + "name": "quest_s20_leveluppack_w04_04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W04_05", + "templateId": "Quest:Quest_S20_LevelUpPack_W04_05", + "objectives": [ + { + "name": "quest_s20_leveluppack_w04_05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W04_06", + "templateId": "Quest:Quest_S20_LevelUpPack_W04_06", + "objectives": [ + { + "name": "quest_s20_leveluppack_w04_06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_LevelUpPack_W04_07", + "templateId": "Quest:Quest_S20_LevelUpPack_W04_07", + "objectives": [ + { + "name": "quest_s20_leveluppack_w04_07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_04" + }, + { + "itemGuid": "S20-Quest:Quests_S20_LevelUpPack_PunchCard_01", + "templateId": "Quest:Quests_S20_LevelUpPack_PunchCard_01", + "objectives": [ + { + "name": "quest_s20_leveluppack_punchcard_01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_PunchCard" + }, + { + "itemGuid": "S20-Quest:Quests_S20_LevelUpPack_PunchCard_02", + "templateId": "Quest:Quests_S20_LevelUpPack_PunchCard_02", + "objectives": [ + { + "name": "quest_s20_leveluppack_punchcard_02_obj0", + "count": 14 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_PunchCard" + }, + { + "itemGuid": "S20-Quest:Quests_S20_LevelUpPack_PunchCard_03", + "templateId": "Quest:Quests_S20_LevelUpPack_PunchCard_03", + "objectives": [ + { + "name": "quest_s20_leveluppack_punchcard_03_obj0", + "count": 21 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_PunchCard" + }, + { + "itemGuid": "S20-Quest:Quests_S20_LevelUpPack_PunchCard_04", + "templateId": "Quest:Quests_S20_LevelUpPack_PunchCard_04", + "objectives": [ + { + "name": "quest_s20_leveluppack_punchcard_04_obj0", + "count": 28 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_LevelUpPack_PunchCard" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q01", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q01_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q02", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q02_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q03", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q03_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q04", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q04_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q05", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q05_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q06", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q06_obj0", + "count": 120 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q07", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q07_obj0", + "count": 140 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q08", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q08_obj0", + "count": 160 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q09", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q09_obj0", + "count": 180 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q10", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q10_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q11", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q11_obj0", + "count": 220 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q12", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q12_obj0", + "count": 240 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q13", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q13_obj0", + "count": 260 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q14", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q14_obj0", + "count": 280 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q15", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q15_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q16", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q16_obj0", + "count": 320 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q17", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q17_obj0", + "count": 340 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q18", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q18_obj0", + "count": 360 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q19", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q19_obj0", + "count": 380 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CatchFish_Q20", + "templateId": "Quest:Quest_S20_Milestone_CatchFish_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_CatchFish_Q20_obj0", + "count": 400 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CatchFish" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q01", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q02", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q02_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q03", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q03_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q04", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q04_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q05", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q06", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q06_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q07", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q07_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q08", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q08_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q09", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q09_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q10", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q10_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q11", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q11_obj0", + "count": 110 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q12", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q12_obj0", + "count": 120 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q13", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q13_obj0", + "count": 130 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q14", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q14_obj0", + "count": 140 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q15", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q15_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q16", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q16_obj0", + "count": 160 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q17", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q17_obj0", + "count": 170 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q18", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q18_obj0", + "count": 180 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q19", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q19_obj0", + "count": 190 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteBounties_Q20", + "templateId": "Quest:Quest_S20_Milestone_CompleteBounties_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteBounties_Q20_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_CompleteBounties" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q01", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q02", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q03", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q03_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q04", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q05", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q05_obj0", + "count": 125 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q06", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q06_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q07", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q07_obj0", + "count": 175 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q08", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q08_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q09", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q09_obj0", + "count": 225 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q10", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q10_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q11", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q11_obj0", + "count": 275 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q12", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q12_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q13", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q13_obj0", + "count": 325 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q14", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q14_obj0", + "count": 350 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q15", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q15_obj0", + "count": 375 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q16", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q16_obj0", + "count": 400 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q17", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q17_obj0", + "count": 425 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q18", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q18_obj0", + "count": 450 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q19", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q19_obj0", + "count": 475 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ConsumeForagedItems_Q20", + "templateId": "Quest:Quest_S20_Milestone_ConsumeForagedItems_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_ConsumeForagedItems_Q20_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ConsumeForagedItems" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q01", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q01_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q02", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q02_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q03", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q03_obj0", + "count": 7500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q04", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q04_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q05", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q05_obj0", + "count": 12500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q06", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q06_obj0", + "count": 15000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q07", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q07_obj0", + "count": 17500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q08", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q08_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q09", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q09_obj0", + "count": 22500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q10", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q10_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q11", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q11_obj0", + "count": 27500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q12", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q12_obj0", + "count": 30000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q13", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q13_obj0", + "count": 32500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q14", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q14_obj0", + "count": 35000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q15", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q15_obj0", + "count": 37500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q16", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q16_obj0", + "count": 40000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q17", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q17_obj0", + "count": 42500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q18", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q18_obj0", + "count": 45000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q19", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q19_obj0", + "count": 47500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageIOForces_Q20", + "templateId": "Quest:Quest_S20_Milestone_DamageIOForces_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageIOForces_Q20_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageIOForces" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q01", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q01_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q02", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q02_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q03", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q03_obj0", + "count": 15000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q04", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q04_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q05", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q05_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q06", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q06_obj0", + "count": 30000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q07", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q07_obj0", + "count": 35000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q08", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q08_obj0", + "count": 40000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q09", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q09_obj0", + "count": 45000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q10", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q10_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q11", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q11_obj0", + "count": 55000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q12", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q12_obj0", + "count": 60000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q13", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q13_obj0", + "count": 65000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q14", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q14_obj0", + "count": 70000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q15", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q15_obj0", + "count": 75000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q16", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q16_obj0", + "count": 80000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q17", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q17_obj0", + "count": 85000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q18", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q18_obj0", + "count": 90000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q19", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q19_obj0", + "count": 95000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DamageOpponents_Q20", + "templateId": "Quest:Quest_S20_Milestone_DamageOpponents_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_DamageOpponents_Q20_obj0", + "count": 100000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DamageOpponents" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q01", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q01_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q02", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q02_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q03", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q03_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q04", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q04_obj0", + "count": 400 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q05", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q06", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q06_obj0", + "count": 600 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q07", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q07_obj0", + "count": 700 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q08", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q08_obj0", + "count": 800 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q09", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q09_obj0", + "count": 900 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q10", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q10_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q11", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q11_obj0", + "count": 1100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q12", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q12_obj0", + "count": 1200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q13", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q13_obj0", + "count": 1300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q14", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q14_obj0", + "count": 1400 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q15", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q15_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q16", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q16_obj0", + "count": 1600 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q17", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q17_obj0", + "count": 1700 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q18", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q18_obj0", + "count": 1800 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q19", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q19_obj0", + "count": 1900 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q20", + "templateId": "Quest:Quest_S20_Milestone_DestroyOpponentStructures_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyOpponentStructures_Q20_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyOpponentStructures" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q01", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q01_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q02", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q02_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q03", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q03_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q04", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q04_obj0", + "count": 400 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q05", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q06", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q06_obj0", + "count": 600 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q07", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q07_obj0", + "count": 700 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q08", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q08_obj0", + "count": 800 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q09", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q09_obj0", + "count": 900 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q10", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q10_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q11", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q11_obj0", + "count": 1100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q12", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q12_obj0", + "count": 1200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q13", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q13_obj0", + "count": 1300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q14", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q14_obj0", + "count": 1400 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q15", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q15_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q16", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q16_obj0", + "count": 1600 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q17", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q17_obj0", + "count": 1700 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q18", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q18_obj0", + "count": 1800 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q19", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q19_obj0", + "count": 1900 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_DestroyTrees_Q20", + "templateId": "Quest:Quest_S20_Milestone_DestroyTrees_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_DestroyTrees_Q20_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_DestroyTrees" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q01", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q01_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q02", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q03", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q03_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q04", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q04_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q05", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q05_obj0", + "count": 125 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q06", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q06_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q07", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q07_obj0", + "count": 175 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q08", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q08_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q09", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q09_obj0", + "count": 225 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q10", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q10_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q11", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q11_obj0", + "count": 275 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q12", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q12_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q13", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q13_obj0", + "count": 325 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q14", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q14_obj0", + "count": 350 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q15", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q15_obj0", + "count": 375 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q16", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q16_obj0", + "count": 400 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q17", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q17_obj0", + "count": 425 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q18", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q18_obj0", + "count": 450 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q19", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q19_obj0", + "count": 475 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_Eliminations_Q20", + "templateId": "Quest:Quest_S20_Milestone_Eliminations_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_Eliminations_Q20_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Eliminations" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q01", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q01_obj0", + "count": 125 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q02", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q02_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q03", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q03_obj0", + "count": 375 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q04", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q04_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q05", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q05_obj0", + "count": 625 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q06", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q06_obj0", + "count": 750 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q07", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q07_obj0", + "count": 875 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q08", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q08_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q09", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q09_obj0", + "count": 1125 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q10", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q10_obj0", + "count": 1250 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q11", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q11_obj0", + "count": 1375 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q12", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q12_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q13", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q13_obj0", + "count": 1625 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q14", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q14_obj0", + "count": 1750 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q15", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q15_obj0", + "count": 1875 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q16", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q16_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q17", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q17_obj0", + "count": 2125 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q18", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q18_obj0", + "count": 2250 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q19", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q19_obj0", + "count": 2375 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_HarvestMaterials_Q20", + "templateId": "Quest:Quest_S20_Milestone_HarvestMaterials_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_HarvestMaterials_Q20_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_HarvestMaterials" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q01", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q02", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q03", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q03_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q04", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q04_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q05", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q05_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q06", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q06_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q07", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q07_obj0", + "count": 35 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q08", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q08_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q09", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q09_obj0", + "count": 45 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q10", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q10_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q11", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q11_obj0", + "count": 55 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q12", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q12_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q13", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q13_obj0", + "count": 65 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q14", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q14_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q15", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q15_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q16", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q16_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q17", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q17_obj0", + "count": 85 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q18", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q18_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q19", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q19_obj0", + "count": 95 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_OpenVaults_Q20", + "templateId": "Quest:Quest_S20_Milestone_OpenVaults_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_OpenVaults_Q20_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_OpenVaults" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q01", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q01_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q02", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q02_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q03", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q03_obj0", + "count": 45 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q04", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q04_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q05", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q05_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q06", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q06_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q07", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q07_obj0", + "count": 105 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q08", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q08_obj0", + "count": 120 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q09", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q09_obj0", + "count": 135 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q10", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q10_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q11", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q11_obj0", + "count": 165 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q12", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q12_obj0", + "count": 180 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q13", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q13_obj0", + "count": 195 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q14", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q14_obj0", + "count": 210 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q15", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q15_obj0", + "count": 225 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q16", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q16_obj0", + "count": 240 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q17", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q17_obj0", + "count": 255 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q18", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q18_obj0", + "count": 270 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q19", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q19_obj0", + "count": 285 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_PlaceTop10_Q20", + "templateId": "Quest:Quest_S20_Milestone_PlaceTop10_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_PlaceTop10_Q20_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_PlaceTop10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q01", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q02", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q03", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q03_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q04", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q04_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q05", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q05_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q06", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q06_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q07", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q07_obj0", + "count": 35 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q08", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q08_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q09", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q09_obj0", + "count": 45 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q10", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q10_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q11", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q11_obj0", + "count": 55 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q12", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q12_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q13", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q13_obj0", + "count": 65 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q14", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q14_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q15", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q15_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q16", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q16_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q17", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q17_obj0", + "count": 85 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q18", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q18_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q19", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q19_obj0", + "count": 95 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_RebootTeammates_Q20", + "templateId": "Quest:Quest_S20_Milestone_RebootTeammates_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_RebootTeammates_Q20_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_RebootTeammates" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q01", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q01_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q02", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q02_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q03", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q03_obj0", + "count": 225 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q04", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q04_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q05", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q05_obj0", + "count": 375 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q06", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q06_obj0", + "count": 450 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q07", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q07_obj0", + "count": 525 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q08", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q08_obj0", + "count": 600 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q09", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q09_obj0", + "count": 675 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q10", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q10_obj0", + "count": 750 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q11", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q11_obj0", + "count": 825 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q12", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q12_obj0", + "count": 900 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q13", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q13_obj0", + "count": 975 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q14", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q14_obj0", + "count": 1050 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q15", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q15_obj0", + "count": 1125 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q16", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q16_obj0", + "count": 1200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q17", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q17_obj0", + "count": 1275 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q18", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q18_obj0", + "count": 1350 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q19", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q19_obj0", + "count": 1425 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q20", + "templateId": "Quest:Quest_S20_Milestone_SearchChestsOrAmmo_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_SearchChestsOrAmmo_Q20_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SearchChestsOrAmmo" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q01", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q01_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q02", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q02_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q03", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q03_obj0", + "count": 3000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q04", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q04_obj0", + "count": 4000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q05", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q05_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q06", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q06_obj0", + "count": 6000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q07", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q07_obj0", + "count": 7000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q08", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q08_obj0", + "count": 8000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q09", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q09_obj0", + "count": 9000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q10", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q10_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q11", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q11_obj0", + "count": 11000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q12", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q12_obj0", + "count": 12000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q13", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q13_obj0", + "count": 13000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q14", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q14_obj0", + "count": 14000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q15", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q15_obj0", + "count": 15000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q16", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q16_obj0", + "count": 16000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q17", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q17_obj0", + "count": 17000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q18", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q18_obj0", + "count": 18000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q19", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q19_obj0", + "count": 19000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_SpendBars_Q20", + "templateId": "Quest:Quest_S20_Milestone_SpendBars_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_SpendBars_Q20_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_SpendBars" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q01", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q01_obj0", + "count": 1750 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q02", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q02_obj0", + "count": 3500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q03", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q03_obj0", + "count": 5250 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q04", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q04_obj0", + "count": 7000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q05", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q05_obj0", + "count": 8750 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q06", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q06_obj0", + "count": 10500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q07", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q07_obj0", + "count": 12250 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q08", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q08_obj0", + "count": 14000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q09", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q09_obj0", + "count": 15750 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q10", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q10_obj0", + "count": 17500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q11", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q11_obj0", + "count": 19250 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q12", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q12_obj0", + "count": 21000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q13", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q13_obj0", + "count": 22750 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q14", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q14_obj0", + "count": 24500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q15", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q15_obj0", + "count": 26250 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q16", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q16_obj0", + "count": 28000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q17", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q17_obj0", + "count": 29750 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q18", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q18_obj0", + "count": 31500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q19", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q19_obj0", + "count": 33250 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TankDamage_Q20", + "templateId": "Quest:Quest_S20_Milestone_TankDamage_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_TankDamage_Q20_obj0", + "count": 35000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TankDamage" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q01", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q02", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q02_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q03", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q03_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q04", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q04_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q05", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q06", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q06_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q07", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q07_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q08", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q08_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q09", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q09_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q10", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q10_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q11", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q11_obj0", + "count": 110 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q12", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q12_obj0", + "count": 120 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q13", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q13_obj0", + "count": 130 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q14", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q14_obj0", + "count": 140 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q15", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q15_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q16", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q16_obj0", + "count": 160 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q17", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q17_obj0", + "count": 170 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q18", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q18_obj0", + "count": 180 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q19", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q19_obj0", + "count": 190 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_ThankTheBusDriver_Q20", + "templateId": "Quest:Quest_S20_Milestone_ThankTheBusDriver_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_ThankTheBusDriver_Q20_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_ThankTheBusDriver" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q01", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q01_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q02", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q02_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q03", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q03_obj0", + "count": 15000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q04", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q04_obj0", + "count": 20000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q05", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q05_obj0", + "count": 25000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q06", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q06_obj0", + "count": 30000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q07", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q07_obj0", + "count": 35000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q08", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q08_obj0", + "count": 40000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q09", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q09_obj0", + "count": 45000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q10", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q10_obj0", + "count": 50000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q11", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q11_obj0", + "count": 55000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q12", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q12_obj0", + "count": 60000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q13", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q13_obj0", + "count": 65000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q14", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q14_obj0", + "count": 70000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q15", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q15_obj0", + "count": 75000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q16", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q16_obj0", + "count": 80000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q17", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q17_obj0", + "count": 85000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q18", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q18_obj0", + "count": 90000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q19", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q19_obj0", + "count": 95000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q20", + "templateId": "Quest:Quest_S20_Milestone_TravelDistanceInVehicle_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_TravelDistanceInVehicle_Q20_obj0", + "count": 100000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_TravelDistanceInVehicle" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q01", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q01_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q02", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q02_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q03", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q03_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q04", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q04_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q05", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q05_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q06", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q06_obj0", + "count": 3000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q07", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q07_obj0", + "count": 3500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q08", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q08_obj0", + "count": 4000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q09", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q09_obj0", + "count": 4500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q10", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q10_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q11", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q11_obj0", + "count": 5500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q12", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q12_obj0", + "count": 6000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q13", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q13_obj0", + "count": 6500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q14", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q14_obj0", + "count": 7500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q15", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q15_obj0", + "count": 7000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q16", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q16_obj0", + "count": 8000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q17", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q17_obj0", + "count": 8500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q18", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q18_obj0", + "count": 9000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q19", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q19_obj0", + "count": 9500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q20", + "templateId": "Quest:Quest_S20_Milestone_UseBandagesOrMedkits_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_UseBandagesOrMedkits_Q20_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_UseBandagesOrMedkits" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q01", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q02", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q02_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q03", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q03_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q04", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q04_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q05", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q06", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q06_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q07", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q07_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q08", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q08_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q09", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q09_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q10", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q10_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q11", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q11_obj0", + "count": 110 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q12", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q12_obj0", + "count": 120 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q13", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q13_obj0", + "count": 130 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q14", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q14_obj0", + "count": 140 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q15", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q15_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q16", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q16_obj0", + "count": 160 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q17", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q17_obj0", + "count": 170 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q18", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q18_obj0", + "count": 180 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q19", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q19_obj0", + "count": 190 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_VendingMachinePurchases_Q20", + "templateId": "Quest:Quest_S20_Milestone_VendingMachinePurchases_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_VendingMachinePurchases_Q20_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_VendingMachinePurchases" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Tutorial_Q01", + "templateId": "Quest:Quest_S20_Tutorial_Q01", + "objectives": [ + { + "name": "Quest_S20_Tutorial_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Tutorial_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S20_Tutorial_Q01_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_TutorialQuests" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W01_Q01", + "templateId": "Quest:Quest_S20_Weekly_W01_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_W01_Q01_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W01_Q02", + "templateId": "Quest:Quest_S20_Weekly_W01_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_W01_Q02_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W01_Q02_obj001", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W01_Q03", + "templateId": "Quest:Quest_S20_Weekly_W01_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_W01_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W01_Q04", + "templateId": "Quest:Quest_S20_Weekly_W01_Q04", + "objectives": [ + { + "name": "Quest_S20_Weekly_W01_Q04_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W01_Q05", + "templateId": "Quest:Quest_S20_Weekly_W01_Q05", + "objectives": [ + { + "name": "Quest_S20_Weekly_W01_Q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W01_Q06", + "templateId": "Quest:Quest_S20_Weekly_W01_Q06", + "objectives": [ + { + "name": "Quest_S20_Weekly_W01_Q06_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W01_Q07", + "templateId": "Quest:Quest_S20_Weekly_W01_Q07", + "objectives": [ + { + "name": "Quest_S20_Weekly_W01_Q07_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W01_Q08", + "templateId": "Quest:Quest_S20_Weekly_W01_Q08", + "objectives": [ + { + "name": "Quest_S20_Weekly_W01_Q08_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W01_Q09", + "templateId": "Quest:Quest_S20_Weekly_W01_Q09", + "objectives": [ + { + "name": "Quest_S20_Weekly_W01_Q09_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W02_Q01", + "templateId": "Quest:Quest_S20_Weekly_W02_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_W02_Q01_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W02_Q02", + "templateId": "Quest:Quest_S20_Weekly_W02_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_W02_Q02_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W02_Q03", + "templateId": "Quest:Quest_S20_Weekly_W02_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_W02_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W02_Q03_obj1", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W02_Q03_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W02_Q04", + "templateId": "Quest:Quest_S20_Weekly_W02_Q04", + "objectives": [ + { + "name": "Quest_S20_Weekly_W02_Q04_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W02_Q05", + "templateId": "Quest:Quest_S20_Weekly_W02_Q05", + "objectives": [ + { + "name": "Quest_S20_Weekly_W02_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W02_Q06", + "templateId": "Quest:Quest_S20_Weekly_W02_Q06", + "objectives": [ + { + "name": "Quest_S20_Weekly_W02_Q06_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W02_Q07", + "templateId": "Quest:Quest_S20_Weekly_W02_Q07", + "objectives": [ + { + "name": "Quest_S20_Weekly_W02_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W02_Q08", + "templateId": "Quest:Quest_S20_Weekly_W02_Q08", + "objectives": [ + { + "name": "Quest_S20_Weekly_W02_Q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W02_Q09", + "templateId": "Quest:Quest_S20_Weekly_W02_Q09", + "objectives": [ + { + "name": "Quest_S20_Weekly_W02_Q09_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W03_Q01", + "templateId": "Quest:Quest_S20_Weekly_W03_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_W03_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W03_Q01_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W03_Q02", + "templateId": "Quest:Quest_S20_Weekly_W03_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_W03_Q02_obj000", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W03_Q03", + "templateId": "Quest:Quest_S20_Weekly_W03_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_W03_Q03_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W03_Q04", + "templateId": "Quest:Quest_S20_Weekly_W03_Q04", + "objectives": [ + { + "name": "Quest_S20_Weekly_W03_Q04_obj000", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W03_Q05", + "templateId": "Quest:Quest_S20_Weekly_W03_Q05", + "objectives": [ + { + "name": "Quest_S20_Weekly_W03_Q05_obj000", + "count": 75 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W03_Q06", + "templateId": "Quest:Quest_S20_Weekly_W03_Q06", + "objectives": [ + { + "name": "Quest_S20_Weekly_W03_Q06_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W03_Q07", + "templateId": "Quest:Quest_S20_Weekly_W03_Q07", + "objectives": [ + { + "name": "Quest_S20_Weekly_W03_Q07_obj000", + "count": 50 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W03_Q08", + "templateId": "Quest:Quest_S20_Weekly_W03_Q08", + "objectives": [ + { + "name": "Quest_S20_Weekly_W03_Q08_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W03_Q09", + "templateId": "Quest:Quest_S20_Weekly_W03_Q09", + "objectives": [ + { + "name": "Quest_S20_Weekly_W03_Q09_obj000", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W04_Q01", + "templateId": "Quest:Quest_S20_Weekly_W04_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_W04_Q01_obj000", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W04_Q02", + "templateId": "Quest:Quest_S20_Weekly_W04_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_W04_Q02_obj000", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W04_Q02_obj001", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W04_Q03", + "templateId": "Quest:Quest_S20_Weekly_W04_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_W04_Q03_obj000", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W04_Q03_obj8", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W04_Q03_obj10", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W04_Q03_obj11", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W04_Q03_obj12", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W04_Q03_obj13", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W04_Q03_obj14", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W04_Q03_obj15", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W04_Q03_obj16", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W04_Q03_obj17", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W04_Q03_obj18", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W04_Q03_obj19", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W04_Q03_obj20", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W04_Q04", + "templateId": "Quest:Quest_S20_Weekly_W04_Q04", + "objectives": [ + { + "name": "Quest_S20_Weekly_W04_Q04_obj000", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W04_Q05", + "templateId": "Quest:Quest_S20_Weekly_W04_Q05", + "objectives": [ + { + "name": "Quest_S20_Weekly_W04_Q05_obj000", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W04_Q06", + "templateId": "Quest:Quest_S20_Weekly_W04_Q06", + "objectives": [ + { + "name": "Quest_S20_Weekly_W04_Q06_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W04_Q07", + "templateId": "Quest:Quest_S20_Weekly_W04_Q07", + "objectives": [ + { + "name": "Quest_S20_Weekly_W04_Q07_obj000", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W04_Q08", + "templateId": "Quest:Quest_S20_Weekly_W04_Q08", + "objectives": [ + { + "name": "Quest_S20_Weekly_W04_Q08_obj000", + "count": 75 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W04_Q09", + "templateId": "Quest:Quest_S20_Weekly_W04_Q09", + "objectives": [ + { + "name": "Quest_S20_Weekly_W04_Q09_obj000", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W05_Q01", + "templateId": "Quest:Quest_S20_Weekly_W05_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_W05_Q01_obj0", + "count": 3 + }, + { + "name": "Quest_S20_Weekly_W05_Q01_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W05_Q02", + "templateId": "Quest:Quest_S20_Weekly_W05_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_W05_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W05_Q03", + "templateId": "Quest:Quest_S20_Weekly_W05_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_W05_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W05_Q03_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W05_Q04", + "templateId": "Quest:Quest_S20_Weekly_W05_Q04", + "objectives": [ + { + "name": "Quest_S20_Weekly_W05_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W05_Q05", + "templateId": "Quest:Quest_S20_Weekly_W05_Q05", + "objectives": [ + { + "name": "Quest_S20_Weekly_W05_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W05_Q06", + "templateId": "Quest:Quest_S20_Weekly_W05_Q06", + "objectives": [ + { + "name": "Quest_S20_Weekly_W05_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W05_Q07", + "templateId": "Quest:Quest_S20_Weekly_W05_Q07", + "objectives": [ + { + "name": "Quest_S20_Weekly_W05_Q07_obj0", + "count": 600 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W05_Q08", + "templateId": "Quest:Quest_S20_Weekly_W05_Q08", + "objectives": [ + { + "name": "Quest_S20_Weekly_W05_Q08_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W05_Q09", + "templateId": "Quest:Quest_S20_Weekly_W05_Q09", + "objectives": [ + { + "name": "Quest_S20_Weekly_W05_Q09_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W06_Q01", + "templateId": "Quest:Quest_S20_Weekly_W06_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_W06_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W06_Q02", + "templateId": "Quest:Quest_S20_Weekly_W06_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_W06_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W06_Q03", + "templateId": "Quest:Quest_S20_Weekly_W06_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_W06_Q03_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W06_Q04", + "templateId": "Quest:Quest_S20_Weekly_W06_Q04", + "objectives": [ + { + "name": "Quest_S20_Weekly_W06_Q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W06_Q05", + "templateId": "Quest:Quest_S20_Weekly_W06_Q05", + "objectives": [ + { + "name": "Quest_S20_Weekly_W06_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W06_Q06", + "templateId": "Quest:Quest_S20_Weekly_W06_Q06", + "objectives": [ + { + "name": "Quest_S20_Weekly_W06_Q06_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W06_Q07", + "templateId": "Quest:Quest_S20_Weekly_W06_Q07", + "objectives": [ + { + "name": "Quest_S20_Weekly_W06_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W06_Q08", + "templateId": "Quest:Quest_S20_Weekly_W06_Q08", + "objectives": [ + { + "name": "Quest_S20_Weekly_W06_Q08_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W06_Q09", + "templateId": "Quest:Quest_S20_Weekly_W06_Q09", + "objectives": [ + { + "name": "Quest_S20_Weekly_W06_Q09_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W07_Q01", + "templateId": "Quest:Quest_S20_Weekly_W07_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_W07_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W07_Q02", + "templateId": "Quest:Quest_S20_Weekly_W07_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_W07_Q02_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj1", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj2", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj3", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj4", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj5", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj6", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj7", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj8", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj9", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj10", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj11", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj12", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj13", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj14", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q02_obj15", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W07_Q03", + "templateId": "Quest:Quest_S20_Weekly_W07_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_W07_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W07_Q04", + "templateId": "Quest:Quest_S20_Weekly_W07_Q04", + "objectives": [ + { + "name": "Quest_S20_Weekly_W07_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q04_obj2", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q04_obj3", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q04_obj4", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q04_obj5", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q04_obj6", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W07_Q04_obj7", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W07_Q05", + "templateId": "Quest:Quest_S20_Weekly_W07_Q05", + "objectives": [ + { + "name": "Quest_S20_Weekly_W07_Q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W07_Q06", + "templateId": "Quest:Quest_S20_Weekly_W07_Q06", + "objectives": [ + { + "name": "Quest_S20_Weekly_W07_Q06_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W07_Q07", + "templateId": "Quest:Quest_S20_Weekly_W07_Q07", + "objectives": [ + { + "name": "Quest_S20_Weekly_W07_Q07_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W07_Q08", + "templateId": "Quest:Quest_S20_Weekly_W07_Q08", + "objectives": [ + { + "name": "Quest_S20_Weekly_W07_Q08_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W07_Q09", + "templateId": "Quest:Quest_S20_Weekly_W07_Q09", + "objectives": [ + { + "name": "Quest_S20_Weekly_W07_Q09_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W08_Q01", + "templateId": "Quest:Quest_S20_Weekly_W08_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_W08_Q01_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W08_Q02", + "templateId": "Quest:Quest_S20_Weekly_W08_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_W08_Q02_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W08_Q03", + "templateId": "Quest:Quest_S20_Weekly_W08_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_W08_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W08_Q03_obj1", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W08_Q03_obj2", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W08_Q03_obj3", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W08_Q03_obj4", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W08_Q03_obj5", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W08_Q03_obj6", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W08_Q03_obj7", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W08_Q03_obj8", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W08_Q03_obj9", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W08_Q03_obj10", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W08_Q03_obj11", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W08_Q04", + "templateId": "Quest:Quest_S20_Weekly_W08_Q04", + "objectives": [ + { + "name": "Quest_S20_Weekly_W08_Q04_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W08_Q05", + "templateId": "Quest:Quest_S20_Weekly_W08_Q05", + "objectives": [ + { + "name": "Quest_S20_Weekly_W08_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W08_Q06", + "templateId": "Quest:Quest_S20_Weekly_W08_Q06", + "objectives": [ + { + "name": "Quest_S20_Weekly_W08_Q06_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W08_Q07", + "templateId": "Quest:Quest_S20_Weekly_W08_Q07", + "objectives": [ + { + "name": "Quest_S20_Weekly_W08_Q07_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W08_Q08", + "templateId": "Quest:Quest_S20_Weekly_W08_Q08", + "objectives": [ + { + "name": "Quest_S20_Weekly_W08_Q08_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W08_Q09", + "templateId": "Quest:Quest_S20_Weekly_W08_Q09", + "objectives": [ + { + "name": "Quest_S20_Weekly_W08_Q09_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W09_Q01", + "templateId": "Quest:Quest_S20_Weekly_W09_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_W09_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W09_Q02", + "templateId": "Quest:Quest_S20_Weekly_W09_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_W09_Q02_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W09_Q03", + "templateId": "Quest:Quest_S20_Weekly_W09_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_W09_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W09_Q04", + "templateId": "Quest:Quest_S20_Weekly_W09_Q04", + "objectives": [ + { + "name": "Quest_S20_Weekly_W09_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W09_Q05", + "templateId": "Quest:Quest_S20_Weekly_W09_Q05", + "objectives": [ + { + "name": "Quest_S20_Weekly_W09_Q05_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W09_Q05_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W09_Q06", + "templateId": "Quest:Quest_S20_Weekly_W09_Q06", + "objectives": [ + { + "name": "Quest_S20_Weekly_W09_Q06_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W09_Q07", + "templateId": "Quest:Quest_S20_Weekly_W09_Q07", + "objectives": [ + { + "name": "Quest_S20_Weekly_W09_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W09_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W09_Q07_obj2", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W09_Q07_obj3", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_W09_Q07_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W09_Q08", + "templateId": "Quest:Quest_S20_Weekly_W09_Q08", + "objectives": [ + { + "name": "Quest_S20_Weekly_W09_Q08_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W09_Q09", + "templateId": "Quest:Quest_S20_Weekly_W09_Q09", + "objectives": [ + { + "name": "Quest_S20_Weekly_W09_Q09_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W10_Q01", + "templateId": "Quest:Quest_S20_Weekly_W10_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_W10_Q01_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W10_Q02", + "templateId": "Quest:Quest_S20_Weekly_W10_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_W10_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W10_Q03", + "templateId": "Quest:Quest_S20_Weekly_W10_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_W10_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W10_Q04", + "templateId": "Quest:Quest_S20_Weekly_W10_Q04", + "objectives": [ + { + "name": "Quest_S20_Weekly_W10_Q04_obj0", + "count": 1200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W10_Q05", + "templateId": "Quest:Quest_S20_Weekly_W10_Q05", + "objectives": [ + { + "name": "Quest_S20_Weekly_W10_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W10_Q06", + "templateId": "Quest:Quest_S20_Weekly_W10_Q06", + "objectives": [ + { + "name": "Quest_S20_Weekly_W10_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W10_Q07", + "templateId": "Quest:Quest_S20_Weekly_W10_Q07", + "objectives": [ + { + "name": "Quest_S20_Weekly_W10_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W10_Q08", + "templateId": "Quest:Quest_S20_Weekly_W10_Q08", + "objectives": [ + { + "name": "Quest_S20_Weekly_W10_Q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_W10_Q09", + "templateId": "Quest:Quest_S20_Weekly_W10_Q09", + "objectives": [ + { + "name": "Quest_S20_Weekly_W10_Q09_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_Week_10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Noble_Q01", + "templateId": "Quest:Quest_S20_Noble_Q01", + "objectives": [ + { + "name": "Quest_S20_Noble_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Noble" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Noble_Q02", + "templateId": "Quest:Quest_S20_Noble_Q02", + "objectives": [ + { + "name": "Quest_S20_Noble_Q02_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Noble" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Noble_Q03", + "templateId": "Quest:Quest_S20_Noble_Q03", + "objectives": [ + { + "name": "Quest_S20_Noble_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Noble_Q03_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Noble" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Noble_Q04", + "templateId": "Quest:Quest_S20_Noble_Q04", + "objectives": [ + { + "name": "Quest_S20_Noble_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Noble" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Noble_Q05", + "templateId": "Quest:Quest_S20_Noble_Q05", + "objectives": [ + { + "name": "Quest_S20_Noble_Q05_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Noble_Q05_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Noble" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Noble_Q07", + "templateId": "Quest:Quest_S20_Noble_Q07", + "objectives": [ + { + "name": "Quest_S20_Noble_Q07_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Noble" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Noble_BonusGoal", + "templateId": "Quest:Quest_S20_Noble_BonusGoal", + "objectives": [ + { + "name": "Quest_S20_Noble_BonusGoal_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Noble_BonusGoal" + }, + { + "itemGuid": "S20-Quest:quest_s20_nopermit_participation_q01", + "templateId": "Quest:quest_s20_nopermit_participation_q01", + "objectives": [ + { + "name": "quest_s20_nopermit_participation_01", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_NoPermit" + }, + { + "itemGuid": "S20-Quest:quest_s20_nopermit_q01", + "templateId": "Quest:quest_s20_nopermit_q01", + "objectives": [ + { + "name": "quest_s20_nopermit_q01_intro", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q01_obj0", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q01_obj1", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q01_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_NoPermit" + }, + { + "itemGuid": "S20-Quest:quest_s20_nopermit_q04", + "templateId": "Quest:quest_s20_nopermit_q04", + "objectives": [ + { + "name": "quest_s20_nopermit_q04_jammertoken", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj0", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj1", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj2", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj3", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj4", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj5", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj6", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj7", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj8", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj9", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj10", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj11", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj12", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj13", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj14", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj15", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj16", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj17", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj18", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj19", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj20", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj21", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj22", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj23", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj24", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj25", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj26", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj27", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj28", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj29", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj30", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj31", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj32", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj33", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj34", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj35", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj36", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj37", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj38", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj39", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj40", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj41", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj42", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj43", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj44", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj45", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj46", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj47", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj48", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj49", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj50", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj51", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj52", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj53", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj54", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_obj55", + "count": 1 + }, + { + "name": "quest_s20_nopermit_q04_impossible", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_NoPermit" + }, + { + "itemGuid": "S20-Quest:quest_s20_nopermit_participation_q02", + "templateId": "Quest:quest_s20_nopermit_participation_q02", + "objectives": [ + { + "name": "quest_s20_nopermit_participation_02", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_NoPermit_Participation" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q01", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q01", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q02", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q02", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q02_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q03", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q03", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q03_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q04", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q04", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q04_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q05", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q05", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q06", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q06", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q06_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q07", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q07", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q07_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q08", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q08", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q08_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q09", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q09", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q09_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q10", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q10", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q10_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q11", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q11", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q11_obj0", + "count": 125 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q12", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q12", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q12_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q13", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q13", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q13_obj0", + "count": 175 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q14", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q14", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q14_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q15", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q15", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q15_obj0", + "count": 225 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q16", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q16", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q16_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q17", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q17", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q17_obj0", + "count": 275 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q18", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q18", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q18_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q19", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q19", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q19_obj0", + "count": 325 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Milestone_CompleteQuests_Q20", + "templateId": "Quest:Quest_S20_Milestone_CompleteQuests_Q20", + "objectives": [ + { + "name": "Quest_S20_Milestone_CompleteQuests_Q20_obj0", + "count": 350 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Milestone_Tier10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W01_Q01", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W01_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W01_Q01_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W01_Q02", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W01_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W01_Q02_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W01_Q03", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W01_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W01_Q03_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W02_Q01", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W02_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W02_Q01_obj0", + "count": 9 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W02_Q02", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W02_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W02_Q02_obj0", + "count": 11 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W02_Q03", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W02_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W02_Q03_obj0", + "count": 14 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W02" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W03_Q01", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W03_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W03_Q01_obj0", + "count": 16 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W03_Q02", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W03_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W03_Q02_obj0", + "count": 18 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W03_Q03", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W03_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W03_Q03_obj0", + "count": 21 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W03" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W04_Q01", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W04_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W04_Q01_obj0", + "count": 23 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W04_Q02", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W04_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W04_Q02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W04_Q03", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W04_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W04_Q03_obj0", + "count": 28 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W04" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W05_Q01", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W05_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W05_Q01_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W05_Q02", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W05_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W05_Q02_obj0", + "count": 32 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W05_Q03", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W05_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W05_Q03_obj0", + "count": 35 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W05" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W06_Q01", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W06_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W06_Q01_obj0", + "count": 37 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W06_Q02", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W06_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W06_Q02_obj0", + "count": 39 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W06_Q03", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W06_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W06_Q03_obj0", + "count": 42 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W06" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W07_Q01", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W07_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W07_Q01_obj0", + "count": 44 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W07_Q02", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W07_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W07_Q02_obj0", + "count": 46 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W07_Q03", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W07_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W07_Q03_obj0", + "count": 49 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W07" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W08_Q01", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W08_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W08_Q01_obj0", + "count": 51 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W08_Q02", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W08_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W08_Q02_obj0", + "count": 53 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W08_Q03", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W08_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W08_Q03_obj0", + "count": 56 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W09_Q01", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W09_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W09_Q01_obj0", + "count": 58 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W09_Q02", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W09_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W09_Q02_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W09_Q03", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W09_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W09_Q03_obj0", + "count": 63 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W09" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W10_Q01", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W10_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W10_Q01_obj0", + "count": 65 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W10_Q02", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W10_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W10_Q02_obj0", + "count": 67 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_CompleteSeason_W10_Q03", + "templateId": "Quest:Quest_S20_Weekly_CompleteSeason_W10_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_CompleteSeason_W10_Q03_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Weekly_CompleteSeason_W10" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color01", + "templateId": "Quest:quest_s20_pickaxe_collectible_color01", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color01_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color01_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color01_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_01" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color02", + "templateId": "Quest:quest_s20_pickaxe_collectible_color02", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color02_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color02_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color02_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_01" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color24", + "templateId": "Quest:quest_s20_pickaxe_collectible_color24", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color24_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color24_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color24_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_01" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color09", + "templateId": "Quest:quest_s20_pickaxe_collectible_color09", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color09_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color09_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color09_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_02" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color11", + "templateId": "Quest:quest_s20_pickaxe_collectible_color11", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color11_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color11_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color11_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_02" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color16", + "templateId": "Quest:quest_s20_pickaxe_collectible_color16", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color16_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color16_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color16_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_02" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color03", + "templateId": "Quest:quest_s20_pickaxe_collectible_color03", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color03_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color03_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color03_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_03" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color06", + "templateId": "Quest:quest_s20_pickaxe_collectible_color06", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color06_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color06_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color06_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_03" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color10", + "templateId": "Quest:quest_s20_pickaxe_collectible_color10", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color10_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color10_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color10_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_03" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color04", + "templateId": "Quest:quest_s20_pickaxe_collectible_color04", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color04_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color04_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color04_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_04" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color18", + "templateId": "Quest:quest_s20_pickaxe_collectible_color18", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color18_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color18_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color18_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_04" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color21", + "templateId": "Quest:quest_s20_pickaxe_collectible_color21", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color21_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color21_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color21_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_04" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color05", + "templateId": "Quest:quest_s20_pickaxe_collectible_color05", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color05_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color05_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color05_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_05" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color14", + "templateId": "Quest:quest_s20_pickaxe_collectible_color14", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color14_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color14_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color14_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_05" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color17", + "templateId": "Quest:quest_s20_pickaxe_collectible_color17", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color17_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color17_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color17_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_05" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color07", + "templateId": "Quest:quest_s20_pickaxe_collectible_color07", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color07_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color07_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color07_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_06" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color22", + "templateId": "Quest:quest_s20_pickaxe_collectible_color22", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color22_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color22_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color22_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_06" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color23", + "templateId": "Quest:quest_s20_pickaxe_collectible_color23", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color23_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color23_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color23_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_06" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color08", + "templateId": "Quest:quest_s20_pickaxe_collectible_color08", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color08_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color08_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color08_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_07" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color15", + "templateId": "Quest:quest_s20_pickaxe_collectible_color15", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color15_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color15_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color15_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_07" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color20", + "templateId": "Quest:quest_s20_pickaxe_collectible_color20", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color20_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color20_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color20_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_07" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color12", + "templateId": "Quest:quest_s20_pickaxe_collectible_color12", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color12_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color12_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color12_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_08" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color13", + "templateId": "Quest:quest_s20_pickaxe_collectible_color13", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color13_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color13_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color13_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_08" + }, + { + "itemGuid": "S20-Quest:quest_s20_pickaxe_collectible_color19", + "templateId": "Quest:quest_s20_pickaxe_collectible_color19", + "objectives": [ + { + "name": "quest_s20_pickaxe_collectible_color19_obj000", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color19_obj001", + "count": 1 + }, + { + "name": "quest_s20_pickaxe_collectible_color19_obj002", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Collectible_PickaxeColor_08" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q01", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q01", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q02", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q02", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q02_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q03", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q03", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q04", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q04", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q04_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q05", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q05", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q05_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q06", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q06", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q06_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q07", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q07", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q07_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q08", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q08", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q08_obj0", + "count": 8 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q09", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q09", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q09_obj0", + "count": 9 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q10", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q10", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q10_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q11", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q11", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q11_obj0", + "count": 11 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q12", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q12", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q12_obj0", + "count": 12 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q13", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q13", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q13_obj0", + "count": 13 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q14", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q14", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q14_obj0", + "count": 14 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q15", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q15", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q15_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q16", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q16", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q16_obj0", + "count": 16 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q17", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q17", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q17_obj0", + "count": 17 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q18", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q18", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q18_obj0", + "count": 18 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q19", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q19", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q19_obj0", + "count": 19 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q20", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q20", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q20_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q21", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q21", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q21_obj0", + "count": 21 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q22", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q22", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q22_obj0", + "count": 22 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q23", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q23", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q23_obj0", + "count": 23 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q24", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q24", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q24_obj0", + "count": 24 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q25", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q25", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q25_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q26", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q26", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q26_obj0", + "count": 26 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q27", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q27", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q27_obj0", + "count": 27 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q28", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q28", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q28_obj0", + "count": 28 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q29", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q29", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q29_obj0", + "count": 29 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q30", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q30", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q30_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q31", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q31", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q31_obj0", + "count": 31 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q32", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q32", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q32_obj0", + "count": 32 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q33", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q33", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q33_obj0", + "count": 33 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q34", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q34", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q34_obj0", + "count": 34 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q35", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q35", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q35_obj0", + "count": 35 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q36", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q36", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q36_obj0", + "count": 36 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q37", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q37", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q37_obj0", + "count": 37 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q38", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q38", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q38_obj0", + "count": 38 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q39", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q39", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q39_obj0", + "count": 39 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q40", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q40", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q40_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q41", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q41", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q41_obj0", + "count": 41 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q42", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q42", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q42_obj0", + "count": 42 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q43", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q43", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q43_obj0", + "count": 43 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q44", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q44", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q44_obj0", + "count": 44 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q45", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q45", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q45_obj0", + "count": 45 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q46", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q46", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q46_obj0", + "count": 46 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q47", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q47", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q47_obj0", + "count": 47 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q48", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q48", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q48_obj0", + "count": 48 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q49", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q49", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q49_obj0", + "count": 49 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q50", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q50", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q50_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q51", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q51", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q51_obj0", + "count": 51 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q52", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q52", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q52_obj0", + "count": 52 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q53", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q53", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q53_obj0", + "count": 53 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q54", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q54", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q54_obj0", + "count": 54 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q55", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q55", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q55_obj0", + "count": 55 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Pickaxe_Milestone_Q56", + "templateId": "Quest:Quest_S20_Pickaxe_Milestone_Q56", + "objectives": [ + { + "name": "Quest_S20_Pickaxe_Milestone_Q56_obj0", + "count": 56 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_PickaxeCollectible_Milestone" + }, + { + "itemGuid": "S20-Quest:quest_s20_narrative_w01_granter_hidden_noperm", + "templateId": "Quest:quest_s20_narrative_w01_granter_hidden_noperm", + "objectives": [ + { + "name": "quest_s20_narrative_w01_granter_hidden_noperm_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Narrative_W01" + }, + { + "itemGuid": "S20-Quest:quest_s20_narrative_w02_granter_hidden_noperm", + "templateId": "Quest:quest_s20_narrative_w02_granter_hidden_noperm", + "objectives": [ + { + "name": "quest_s20_narrative_w02_granter_hidden_noperm_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Narrative_W02" + }, + { + "itemGuid": "S20-Quest:quest_s20_narrative_w03_granter", + "templateId": "Quest:quest_s20_narrative_w03_granter", + "objectives": [ + { + "name": "quest_s20_narrative_w03_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Narrative_W03" + }, + { + "itemGuid": "S20-Quest:quest_s20_narrative_w04_granter", + "templateId": "Quest:quest_s20_narrative_w04_granter", + "objectives": [ + { + "name": "quest_s20_narrative_w04_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Narrative_W04" + }, + { + "itemGuid": "S20-Quest:quest_s20_narrative_w05_granter", + "templateId": "Quest:quest_s20_narrative_w05_granter", + "objectives": [ + { + "name": "quest_s20_narrative_w05_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Narrative_W05" + }, + { + "itemGuid": "S20-Quest:quest_s20_narrative_w06_granter", + "templateId": "Quest:quest_s20_narrative_w06_granter", + "objectives": [ + { + "name": "quest_s20_narrative_w06_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Narrative_W06" + }, + { + "itemGuid": "S20-Quest:quest_s20_narrative_w07_granter", + "templateId": "Quest:quest_s20_narrative_w07_granter", + "objectives": [ + { + "name": "quest_s20_narrative_w07_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Narrative_W07" + }, + { + "itemGuid": "S20-Quest:quest_s20_narrative_w08_granter", + "templateId": "Quest:quest_s20_narrative_w08_granter", + "objectives": [ + { + "name": "quest_s20_narrative_w08_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Narrative_W08" + }, + { + "itemGuid": "S20-Quest:quest_s20_narrative_w09_granter", + "templateId": "Quest:quest_s20_narrative_w09_granter", + "objectives": [ + { + "name": "quest_s20_narrative_w09_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Narrative_W09" + }, + { + "itemGuid": "S20-Quest:quest_s20_narrative_w10_granter", + "templateId": "Quest:quest_s20_narrative_w10_granter", + "objectives": [ + { + "name": "quest_s20_narrative_w10_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Narrative_W10" + }, + { + "itemGuid": "S20-Quest:quest_s20_narrative_w11_granter", + "templateId": "Quest:quest_s20_narrative_w11_granter", + "objectives": [ + { + "name": "quest_s20_narrative_w11_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_Narrative_W11" + }, + { + "itemGuid": "S20-Quest:quest_s20_soundwave_q01", + "templateId": "Quest:quest_s20_soundwave_q01", + "objectives": [ + { + "name": "quest_s20_soundwave_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Soundwave" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Superlevel_q01", + "templateId": "Quest:Quest_S20_Superlevel_q01", + "objectives": [ + { + "name": "Quest_S20_Superlevel_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:QuestBundle_S20_Superlevel_01" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Bargain_Q01", + "templateId": "Quest:Quest_S20_Weekly_Bargain_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_Bargain01_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Bargain_W11" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Bargain_Q02", + "templateId": "Quest:Quest_S20_Weekly_Bargain_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_Bargain_Q02_obj0", + "count": 1000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Bargain_W11" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Bargain_Q03", + "templateId": "Quest:Quest_S20_Weekly_Bargain_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_Bargain_Q03_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Bargain_W11" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Bargain_Q04", + "templateId": "Quest:Quest_S20_Weekly_Bargain_Q04", + "objectives": [ + { + "name": "Quest_S20_Weekly_Bargain_Q04_obj0", + "count": 3000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Bargain_W11" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Bargain_Q05", + "templateId": "Quest:Quest_S20_Weekly_Bargain_Q05", + "objectives": [ + { + "name": "Quest_S20_Weekly_Bargain_Q05_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Bargain_W11" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Bargain_Q06", + "templateId": "Quest:Quest_S20_Weekly_Bargain_Q06", + "objectives": [ + { + "name": "Quest_S20_Weekly_Bargain_06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Bargain_W11" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Bargain_Q07", + "templateId": "Quest:Quest_S20_Weekly_Bargain_Q07", + "objectives": [ + { + "name": "Quest_S20_Weekly_Bargain_Q07_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Bargain_W11" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Bargain_Q08", + "templateId": "Quest:Quest_S20_Weekly_Bargain_Q08", + "objectives": [ + { + "name": "Quest_S20_Weekly_Bargain_Q08_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Bargain_W11" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Bargain_Q09", + "templateId": "Quest:Quest_S20_Weekly_Bargain_Q09", + "objectives": [ + { + "name": "Quest_S20_Weekly_Bargain_Q09_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Bargain_W11" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Bargain_Q10", + "templateId": "Quest:Quest_S20_Weekly_Bargain_Q10", + "objectives": [ + { + "name": "Quest_S20_Weekly_Bargain_Q10_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Bargain_W11" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Chocolate_Q01", + "templateId": "Quest:Quest_S20_Weekly_Chocolate_Q01", + "objectives": [ + { + "name": "Quest_S20_Weekly_Chocolate_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Chocolate_Q02", + "templateId": "Quest:Quest_S20_Weekly_Chocolate_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_Chocolate_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Chocolate_Q03", + "templateId": "Quest:Quest_S20_Weekly_Chocolate_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_Chocolate_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Chocolate_Q05", + "templateId": "Quest:Quest_S20_Weekly_Chocolate_Q05", + "objectives": [ + { + "name": "Quest_S20_Weekly_Chocolate_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Chocolate_Q09", + "templateId": "Quest:Quest_S20_Weekly_Chocolate_Q09", + "objectives": [ + { + "name": "Quest_S20_Weekly_Chocolate_Q09_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_Chocolate_Q09_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Chocolate_Q1A", + "templateId": "Quest:Quest_S20_Weekly_Chocolate_Q1A", + "objectives": [ + { + "name": "Quest_S20_Weekly_Chocolate_Q1A_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Chocolate_Q1B", + "templateId": "Quest:Quest_S20_Weekly_Chocolate_Q1B", + "objectives": [ + { + "name": "Quest_S20_Weekly_Chocolate_Q1B_obj0", + "count": 2500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Chocolate_Q1C", + "templateId": "Quest:Quest_S20_Weekly_Chocolate_Q1C", + "objectives": [ + { + "name": "Quest_S20_Weekly_Chocolate_Q1C_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Chocolate_Q2A", + "templateId": "Quest:Quest_S20_Weekly_Chocolate_Q2A", + "objectives": [ + { + "name": "Quest_S20_Weekly_Chocolate_Q2A_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Chocolate_Q2B", + "templateId": "Quest:Quest_S20_Weekly_Chocolate_Q2B", + "objectives": [ + { + "name": "Quest_S20_Weekly_Chocolate_Q2B_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Chocolate_Q2C", + "templateId": "Quest:Quest_S20_Weekly_Chocolate_Q2C", + "objectives": [ + { + "name": "Quest_S20_Weekly_Chocolate_Q2C_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Chocolate_W10" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Purple_Q02", + "templateId": "Quest:Quest_S20_Weekly_Purple_Q02", + "objectives": [ + { + "name": "Quest_S20_Weekly_Purple_Q02_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Purple_W9" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Purple_Q03", + "templateId": "Quest:Quest_S20_Weekly_Purple_Q03", + "objectives": [ + { + "name": "Quest_S20_Weekly_Purple_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Purple_W9" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Purple_Q05", + "templateId": "Quest:Quest_S20_Weekly_Purple_Q05", + "objectives": [ + { + "name": "Quest_S20_Weekly_Purple_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Purple_W9" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Purple_Q06", + "templateId": "Quest:Quest_S20_Weekly_Purple_Q06", + "objectives": [ + { + "name": "Quest_S20_Weekly_Purple_Q06_obj0", + "count": 1 + }, + { + "name": "Quest_S20_Weekly_Purple_Q06_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Purple_W9" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Purple_Q08", + "templateId": "Quest:Quest_S20_Weekly_Purple_Q08", + "objectives": [ + { + "name": "Quest_S20_Weekly_Purple_Q08_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Purple_W9" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Purple_Q1A", + "templateId": "Quest:Quest_S20_Weekly_Purple_Q1A", + "objectives": [ + { + "name": "Quest_S20_Weekly_Purple_Q1A_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Purple_W9" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Purple_Q1B", + "templateId": "Quest:Quest_S20_Weekly_Purple_Q1B", + "objectives": [ + { + "name": "Quest_S20_Weekly_Purple_Q1B_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Purple_W9" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Purple_Q1C", + "templateId": "Quest:Quest_S20_Weekly_Purple_Q1C", + "objectives": [ + { + "name": "Quest_S20_Weekly_Purple_Q1C_obj0", + "count": 4500 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Purple_W9" + }, + { + "itemGuid": "S20-Quest:Quest_S20_Weekly_Purple_Q1D", + "templateId": "Quest:Quest_S20_Weekly_Purple_Q1D", + "objectives": [ + { + "name": "Quest_S20_Weekly_Purple_Q1D_obj0", + "count": 10000 + } + ], + "challenge_bundle_id": "S20-ChallengeBundle:MissionBundle_S20_WildWeek_Purple_W9" + } + ] + }, + "Season21": { + "ChallengeBundleSchedules": [ + { + "itemGuid": "S21-ChallengeBundleSchedule:S21_Stamina_Schedule", + "templateId": "ChallengeBundleSchedule:S21_Stamina_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard", + "S21-ChallengeBundle:QuestBundle_S21_Stamina_Balls", + "S21-ChallengeBundle:QuestBundle_S21_Stamina_Bonus", + "S21-ChallengeBundle:QuestBundle_S21_Stamina", + "S21-ChallengeBundle:QuestBundle_S21_Stamina_02", + "S21-ChallengeBundle:QuestBundle_S21_Stamina_03", + "S21-ChallengeBundle:QuestBundle_S21_Stamina_04", + "S21-ChallengeBundle:QuestBundle_S21_Stamina_05", + "S21-ChallengeBundle:QuestBundle_S21_Stamina_06", + "S21-ChallengeBundle:QuestBundle_S21_Stamina_07" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_FallFest_Schedule", + "templateId": "ChallengeBundleSchedule:Season21_FallFest_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:QuestBundle_S21_FallFest", + "S21-ChallengeBundle:QuestBundle_S21_FallFest_PunchCard" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_Feat_BundleSchedule", + "templateId": "ChallengeBundleSchedule:Season21_Feat_BundleSchedule", + "granted_bundles": [ + "S21-ChallengeBundle:Season21_Feat_Bundle" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_IslandHop_Schedule", + "templateId": "ChallengeBundleSchedule:Season21_IslandHop_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:QuestBundle_S21_IslandHopper", + "S21-ChallengeBundle:QuestBundle_S21_IslandHopper_PunchCard" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_LevelUpPack_Schedule", + "templateId": "ChallengeBundleSchedule:Season21_LevelUpPack_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_01", + "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_PunchCard", + "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_02", + "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_03", + "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_04" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule", + "templateId": "ChallengeBundleSchedule:Season21_Mission_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:MissionBundle_S21_Week_00", + "S21-ChallengeBundle:MissionBundle_S21_Week_01", + "S21-ChallengeBundle:MissionBundle_S21_Week_02", + "S21-ChallengeBundle:MissionBundle_S21_Week_03", + "S21-ChallengeBundle:MissionBundle_S21_Week_04", + "S21-ChallengeBundle:MissionBundle_S21_Week_05", + "S21-ChallengeBundle:MissionBundle_S21_Week_06", + "S21-ChallengeBundle:MissionBundle_S21_Week_07", + "S21-ChallengeBundle:MissionBundle_S21_Week_08", + "S21-ChallengeBundle:MissionBundle_S21_Week_09", + "S21-ChallengeBundle:MissionBundle_S21_Week_10", + "S21-ChallengeBundle:MissionBundle_S21_Week_11", + "S21-ChallengeBundle:MissionBundle_S21_Week_12", + "S21-ChallengeBundle:MissionBundle_S21_Week_13", + "S21-ChallengeBundle:MissionBundle_S21_Week_14" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_NarrativePunchCard_Schedule", + "templateId": "ChallengeBundleSchedule:Season21_NarrativePunchCard_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W01", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W02", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W03", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W04", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W05", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W06", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W07", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W08", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W09" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_NoSweatSummer_Schedule", + "templateId": "ChallengeBundleSchedule:Season21_NoSweatSummer_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer", + "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Marketing", + "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Recall", + "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_BonusGoals", + "S21-ChallengeBundle:QuestBundle_S21_SummerEventVO", + "S21-ChallengeBundle:QuestBundle_S21_NoSweat_Crew", + "S21-ChallengeBundle:QuestBundle_S21_SweatyRebuildSummer", + "S21-ChallengeBundle:QuestBundle_S21_SweatyRebuildSummer_BonusGoals", + "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Recall_Q08" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule", + "templateId": "ChallengeBundleSchedule:Season21_PunchCard_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier01", + "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier02", + "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier03", + "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier04", + "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier05", + "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier06", + "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier07", + "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier08", + "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier09", + "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier10", + "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W01", + "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W02", + "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W03", + "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W04", + "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W05", + "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W06", + "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W07", + "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W08", + "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W09", + "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W10" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_RLLive_Schedule", + "templateId": "ChallengeBundleSchedule:Season21_RLLive_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:QuestBundle_S21_RLLive" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_Schedule_Canary", + "templateId": "ChallengeBundleSchedule:Season21_Schedule_Canary", + "granted_bundles": [ + "S21-ChallengeBundle:QuestBundle_S21_Canary", + "S21-ChallengeBundle:QuestBundle_S21_Canary_BonusGoal" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter", + "templateId": "ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter", + "granted_bundles": [ + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W02", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W03", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W04", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W05", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W06", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W07", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W08", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W09", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W10", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W11", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W12", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W13", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W14", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W15", + "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W16" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_Schedule_Narrative", + "templateId": "ChallengeBundleSchedule:Season21_Schedule_Narrative", + "granted_bundles": [ + "S21-ChallengeBundle:QuestBundle_S21_Narrative_W01", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_W02", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_W03", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_W04", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_W05", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_W06", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_W07", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_W08", + "S21-ChallengeBundle:QuestBundle_S21_Narrative_W09" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_Soundwave_Gen_Schedule", + "templateId": "ChallengeBundleSchedule:Season21_Soundwave_Gen_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:QuestBundle_S21_Soundwave_Gen" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_WildWeek_Bargain_Schedule", + "templateId": "ChallengeBundleSchedule:Season21_WildWeek_Bargain_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Bargain_W15" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_WildWeek_Ignition_Schedule", + "templateId": "ChallengeBundleSchedule:Season21_WildWeek_Ignition_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Ignition_W14" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Season21_WildWeek_Shadow_Schedule", + "templateId": "ChallengeBundleSchedule:Season21_WildWeek_Shadow_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Shadow_W13" + ] + }, + { + "itemGuid": "S21-ChallengeBundleSchedule:Tutorial_Schedule", + "templateId": "ChallengeBundleSchedule:Tutorial_Schedule", + "granted_bundles": [ + "S21-ChallengeBundle:Tutorial_Bundle" + ] + } + ], + "ChallengeBundles": [ + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Stamina", + "templateId": "ChallengeBundle:QuestBundle_S21_Stamina", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_stamina_d01_q01", + "S21-Quest:quest_s21_stamina_d01_q02", + "S21-Quest:quest_s21_stamina_d01_q04", + "S21-Quest:quest_s21_stamina_d01_q05", + "S21-Quest:quest_s21_stamina_d01_q06", + "S21-Quest:quest_s21_stamina_d01_q07", + "S21-Quest:quest_s21_stamina_d01_q09", + "S21-Quest:quest_s21_stamina_d01_q10", + "S21-Quest:quest_s21_stamina_d01_q08" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:S21_Stamina_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Stamina_02", + "templateId": "ChallengeBundle:QuestBundle_S21_Stamina_02", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_stamina_d02_q01", + "S21-Quest:quest_s21_stamina_d02_q02", + "S21-Quest:quest_s21_stamina_d02_q03", + "S21-Quest:quest_s21_stamina_d02_q04", + "S21-Quest:quest_s21_stamina_d02_q05", + "S21-Quest:quest_s21_stamina_d02_q06", + "S21-Quest:quest_s21_stamina_d02_q07", + "S21-Quest:quest_s21_stamina_d02_q08", + "S21-Quest:quest_s21_stamina_d02_q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:S21_Stamina_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Stamina_03", + "templateId": "ChallengeBundle:QuestBundle_S21_Stamina_03", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_stamina_d03_q01", + "S21-Quest:quest_s21_stamina_d03_q02", + "S21-Quest:quest_s21_stamina_d03_q03", + "S21-Quest:quest_s21_stamina_d03_q04", + "S21-Quest:quest_s21_stamina_d03_q05", + "S21-Quest:quest_s21_stamina_d03_q06", + "S21-Quest:quest_s21_stamina_d03_q07", + "S21-Quest:quest_s21_stamina_d03_q08", + "S21-Quest:quest_s21_stamina_d03_q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:S21_Stamina_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Stamina_04", + "templateId": "ChallengeBundle:QuestBundle_S21_Stamina_04", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_stamina_d04_q1", + "S21-Quest:quest_s21_stamina_d04_q2", + "S21-Quest:quest_s21_stamina_d04_q03", + "S21-Quest:quest_s21_stamina_d04_q04", + "S21-Quest:quest_s21_stamina_d04_q05", + "S21-Quest:quest_s21_stamina_d04_q06", + "S21-Quest:quest_s21_stamina_d04_q07", + "S21-Quest:quest_s21_stamina_d04_q08", + "S21-Quest:quest_s21_stamina_d04_q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:S21_Stamina_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Stamina_05", + "templateId": "ChallengeBundle:QuestBundle_S21_Stamina_05", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_stamina_d05_q01", + "S21-Quest:quest_s21_stamina_d05_q02", + "S21-Quest:quest_s21_stamina_d05_q04", + "S21-Quest:quest_s21_stamina_d05_q05", + "S21-Quest:quest_s21_stamina_d05_q06", + "S21-Quest:quest_s21_stamina_d05_q07", + "S21-Quest:quest_s21_stamina_d05_q08", + "S21-Quest:quest_s21_stamina_d05_q09", + "S21-Quest:quest_s21_stamina_d05_q10" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:S21_Stamina_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Stamina_06", + "templateId": "ChallengeBundle:QuestBundle_S21_Stamina_06", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_stamina_d06_q03", + "S21-Quest:quest_s21_stamina_d06_q04", + "S21-Quest:quest_s21_stamina_d06_q05", + "S21-Quest:quest_s21_stamina_d06_q06", + "S21-Quest:quest_s21_stamina_d06_q07", + "S21-Quest:quest_s21_stamina_d06_q08", + "S21-Quest:quest_s21_stamina_d06_q09", + "S21-Quest:quest_s21_stamina_d06_q10" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:S21_Stamina_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Stamina_07", + "templateId": "ChallengeBundle:QuestBundle_S21_Stamina_07", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_stamina_d07_q02", + "S21-Quest:quest_s21_stamina_d07_q03", + "S21-Quest:quest_s21_stamina_d07_q04", + "S21-Quest:quest_s21_stamina_d07_q05", + "S21-Quest:quest_s21_stamina_d07_q06", + "S21-Quest:quest_s21_stamina_d07_q07", + "S21-Quest:quest_s21_stamina_d07_q08", + "S21-Quest:quest_s21_stamina_d07_q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:S21_Stamina_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Balls", + "templateId": "ChallengeBundle:QuestBundle_S21_Stamina_Balls", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_stamina_w01_q01", + "S21-Quest:quest_s21_stamina_w02_q01", + "S21-Quest:quest_s21_stamina_w03_q01", + "S21-Quest:quest_s21_stamina_w04_q01", + "S21-Quest:quest_s21_stamina_w05_q01", + "S21-Quest:quest_s21_stamina_w06_q01", + "S21-Quest:quest_s21_stamina_w07_q01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:S21_Stamina_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Bonus", + "templateId": "ChallengeBundle:QuestBundle_S21_Stamina_Bonus", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_stamina_bonus" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:S21_Stamina_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard", + "templateId": "ChallengeBundle:QuestBundle_S21_Stamina_Punchcard", + "grantedquestinstanceids": [ + "S21-Quest:punchcard_s21_stamina_q01", + "S21-Quest:punchcard_s21_stamina_q02", + "S21-Quest:punchcard_s21_stamina_q03", + "S21-Quest:punchcard_s21_stamina_q04", + "S21-Quest:punchcard_s21_stamina_q05", + "S21-Quest:punchcard_s21_stamina_q06", + "S21-Quest:punchcard_s21_stamina_q07", + "S21-Quest:punchcard_s21_stamina_q08", + "S21-Quest:punchcard_s21_stamina_q09", + "S21-Quest:punchcard_s21_stamina_q10", + "S21-Quest:punchcard_s21_stamina_q11", + "S21-Quest:punchcard_s21_stamina_q12" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:S21_Stamina_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_FallFest", + "templateId": "ChallengeBundle:QuestBundle_S21_FallFest", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_fallfest_q01", + "S21-Quest:quest_s21_fallfest_q02", + "S21-Quest:quest_s21_fallfest_q03", + "S21-Quest:quest_s21_fallfest_q04", + "S21-Quest:quest_s21_fallfest_q05", + "S21-Quest:quest_s21_fallfest_q06", + "S21-Quest:quest_s21_fallfest_q07", + "S21-Quest:quest_s21_fallfest_q08", + "S21-Quest:quest_s21_fallfest_q09", + "S21-Quest:quest_s21_fallfest_q10", + "S21-Quest:quest_s21_fallfest_q11", + "S21-Quest:quest_s21_fallfest_q12", + "S21-Quest:quest_s21_fallfest_q13" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_FallFest_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_FallFest_PunchCard", + "templateId": "ChallengeBundle:QuestBundle_S21_FallFest_PunchCard", + "grantedquestinstanceids": [ + "S21-Quest:punchcard_s21_fallfest_q01", + "S21-Quest:punchcard_s21_fallfest_q02", + "S21-Quest:punchcard_s21_fallfest_q03", + "S21-Quest:punchcard_s21_fallfest_q04" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_FallFest_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:Season21_Feat_Bundle", + "templateId": "ChallengeBundle:Season21_Feat_Bundle", + "grantedquestinstanceids": [ + "S21-Quest:quest_S21_feat_accolade_expert_ar", + "S21-Quest:quest_S21_feat_accolade_expert_explosives", + "S21-Quest:quest_S21_feat_accolade_expert_pickaxe", + "S21-Quest:quest_S21_feat_accolade_expert_pistol", + "S21-Quest:quest_S21_feat_accolade_expert_shotgun", + "S21-Quest:quest_S21_feat_accolade_expert_smg", + "S21-Quest:quest_S21_feat_accolade_expert_sniper", + "S21-Quest:quest_S21_feat_accolade_weaponspecialist__samematch_2", + "S21-Quest:quest_S21_feat_accolade_weaponspecialist__samematch_3", + "S21-Quest:quest_S21_feat_accolade_weaponspecialist__samematch_4", + "S21-Quest:quest_S21_feat_accolade_weaponspecialist__samematch_5", + "S21-Quest:quest_S21_feat_accolade_weaponspecialist__samematch_6", + "S21-Quest:quest_S21_feat_accolade_weaponspecialist__samematch_7", + "S21-Quest:quest_S21_feat_athenacollection_fish", + "S21-Quest:quest_S21_feat_athenacollection_npc", + "S21-Quest:quest_S21_feat_athenarank_duo_100x", + "S21-Quest:quest_S21_feat_athenarank_duo_10x", + "S21-Quest:quest_S21_feat_athenarank_duo_1x", + "S21-Quest:quest_S21_feat_athenarank_rumble_100x", + "S21-Quest:quest_S21_feat_athenarank_rumble_1x", + "S21-Quest:quest_S21_feat_athenarank_solo_100x", + "S21-Quest:quest_S21_feat_athenarank_solo_10elims", + "S21-Quest:quest_S21_feat_athenarank_solo_10x", + "S21-Quest:quest_S21_feat_athenarank_solo_1x", + "S21-Quest:quest_S21_feat_athenarank_squad_100x", + "S21-Quest:quest_S21_feat_athenarank_squad_10x", + "S21-Quest:quest_S21_feat_athenarank_squad_1x", + "S21-Quest:quest_S21_feat_athenarank_trios_100x", + "S21-Quest:quest_S21_feat_athenarank_trios_10x", + "S21-Quest:quest_S21_feat_athenarank_trios_1x", + "S21-Quest:quest_S21_feat_caught_goldfish", + "S21-Quest:quest_S21_feat_collect_goldbars", + "S21-Quest:quest_S21_feat_death_goldfish", + "S21-Quest:quest_S21_feat_defend_bounty", + "S21-Quest:quest_S21_feat_evade_bounty", + "S21-Quest:quest_S21_feat_kill_aftersupplydrop", + "S21-Quest:quest_S21_feat_kill_bounty", + "S21-Quest:quest_S21_feat_kill_gliding", + "S21-Quest:quest_S21_feat_kill_goldfish", + "S21-Quest:quest_S21_feat_kill_pickaxe", + "S21-Quest:quest_S21_feat_kill_yeet", + "S21-Quest:quest_S21_feat_land_firsttime", + "S21-Quest:quest_S21_feat_poach_bounty", + "S21-Quest:quest_S21_feat_reach_seasonlevel", + "S21-Quest:quest_S21_feat_spend_goldbars", + "S21-Quest:quest_S21_feat_throw_consumable" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Feat_BundleSchedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_IslandHopper", + "templateId": "ChallengeBundle:QuestBundle_S21_IslandHopper", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_islandhopper_q01", + "S21-Quest:quest_s21_islandhopper_q02", + "S21-Quest:quest_s21_islandhopper_q03", + "S21-Quest:quest_s21_islandhopper_q04", + "S21-Quest:quest_s21_islandhopper_q05", + "S21-Quest:quest_s21_islandhopper_q06" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_IslandHop_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_IslandHopper_PunchCard", + "templateId": "ChallengeBundle:QuestBundle_S21_IslandHopper_PunchCard", + "grantedquestinstanceids": [ + "S21-Quest:punchcard_s21_islandhopper_q01", + "S21-Quest:punchcard_s21_islandhopper_q02", + "S21-Quest:punchcard_s21_islandhopper_q03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_IslandHop_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_01", + "templateId": "ChallengeBundle:QuestBundle_S21_LevelUpPack_01", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_LevelUpPack_W01_01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_LevelUpPack_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_02", + "templateId": "ChallengeBundle:QuestBundle_S21_LevelUpPack_02", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_LevelUpPack_W02_01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_LevelUpPack_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_03", + "templateId": "ChallengeBundle:QuestBundle_S21_LevelUpPack_03", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_LevelUpPack_W03_01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_LevelUpPack_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_04", + "templateId": "ChallengeBundle:QuestBundle_S21_LevelUpPack_04", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_LevelUpPack_W04_01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_LevelUpPack_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_PunchCard", + "templateId": "ChallengeBundle:QuestBundle_S21_LevelUpPack_PunchCard", + "grantedquestinstanceids": [ + "S21-Quest:Quests_S21_LevelUpPack_PunchCard_01", + "S21-Quest:Quests_S21_LevelUpPack_PunchCard_02", + "S21-Quest:Quests_S21_LevelUpPack_PunchCard_03", + "S21-Quest:Quests_S21_LevelUpPack_PunchCard_04" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_LevelUpPack_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_00", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_00", + "grantedquestinstanceids": [ + "S21-Quest:Quest_s21_Weekly_W00_Q01", + "S21-Quest:Quest_s21_Weekly_W00_Q02", + "S21-Quest:Quest_s21_Weekly_W00_Q03", + "S21-Quest:Quest_s21_Weekly_W00_Q04", + "S21-Quest:Quest_s21_Weekly_W00_Q05", + "S21-Quest:Quest_s21_Weekly_W00_Q06", + "S21-Quest:Quest_s21_Weekly_W00_Q07", + "S21-Quest:Quest_s21_Weekly_W00_Q08", + "S21-Quest:Quest_s21_Weekly_W00_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_01", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_01", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_W01_Q01", + "S21-Quest:Quest_S21_Weekly_W01_Q02", + "S21-Quest:Quest_S21_Weekly_W01_Q03", + "S21-Quest:Quest_S21_Weekly_W01_Q04", + "S21-Quest:Quest_S21_Weekly_W01_Q05", + "S21-Quest:Quest_S21_Weekly_W01_Q06", + "S21-Quest:Quest_S21_Weekly_W01_Q07", + "S21-Quest:Quest_S21_Weekly_W01_Q08", + "S21-Quest:Quest_S21_Weekly_W01_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_02", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_02", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_W02_Q01", + "S21-Quest:Quest_S21_Weekly_W02_Q02", + "S21-Quest:Quest_S21_Weekly_W02_Q03", + "S21-Quest:Quest_S21_Weekly_W02_Q04", + "S21-Quest:Quest_S21_Weekly_W02_Q05", + "S21-Quest:Quest_S21_Weekly_W02_Q06", + "S21-Quest:Quest_S21_Weekly_W02_Q07", + "S21-Quest:Quest_S21_Weekly_W02_Q08", + "S21-Quest:Quest_S21_Weekly_W02_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_03", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_03", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_W03_Q01", + "S21-Quest:Quest_S21_Weekly_W03_Q02", + "S21-Quest:Quest_S21_Weekly_W03_Q03", + "S21-Quest:Quest_S21_Weekly_W03_Q04", + "S21-Quest:Quest_S21_Weekly_W03_Q05", + "S21-Quest:Quest_S21_Weekly_W03_Q06", + "S21-Quest:Quest_S21_Weekly_W03_Q07", + "S21-Quest:Quest_S21_Weekly_W03_Q08", + "S21-Quest:Quest_S21_Weekly_W03_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_04", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_04", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_W04_Q01", + "S21-Quest:Quest_S21_Weekly_W04_Q02", + "S21-Quest:Quest_S21_Weekly_W04_Q03", + "S21-Quest:Quest_S21_Weekly_W04_Q04", + "S21-Quest:Quest_S21_Weekly_W04_Q05", + "S21-Quest:Quest_S21_Weekly_W04_Q06", + "S21-Quest:Quest_S21_Weekly_W04_Q07", + "S21-Quest:Quest_S21_Weekly_W04_Q08", + "S21-Quest:Quest_S21_Weekly_W04_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_05", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_05", + "grantedquestinstanceids": [ + "S21-Quest:Quest_s21_Weekly_W05_Q01", + "S21-Quest:Quest_s21_Weekly_W05_Q02", + "S21-Quest:Quest_s21_Weekly_W05_Q03", + "S21-Quest:Quest_s21_Weekly_W05_Q04", + "S21-Quest:Quest_s21_Weekly_W05_Q05", + "S21-Quest:Quest_s21_Weekly_W05_Q06", + "S21-Quest:Quest_s21_Weekly_W05_Q07", + "S21-Quest:Quest_s21_Weekly_W05_Q08", + "S21-Quest:Quest_s21_Weekly_W05_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_06", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_06", + "grantedquestinstanceids": [ + "S21-Quest:Quest_s21_Weekly_W06_Q01", + "S21-Quest:Quest_s21_Weekly_W06_Q02", + "S21-Quest:Quest_s21_Weekly_W06_Q03", + "S21-Quest:Quest_s21_Weekly_W06_Q04", + "S21-Quest:Quest_s21_Weekly_W06_Q05", + "S21-Quest:Quest_s21_Weekly_W06_Q06", + "S21-Quest:Quest_s21_Weekly_W06_Q07", + "S21-Quest:Quest_s21_Weekly_W06_Q08", + "S21-Quest:Quest_s21_Weekly_W06_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_07", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_07", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_W07_Q01", + "S21-Quest:Quest_S21_Weekly_W07_Q02", + "S21-Quest:Quest_S21_Weekly_W07_Q03", + "S21-Quest:Quest_S21_Weekly_W07_Q04", + "S21-Quest:Quest_S21_Weekly_W07_Q05", + "S21-Quest:Quest_S21_Weekly_W07_Q06", + "S21-Quest:Quest_S21_Weekly_W07_Q07", + "S21-Quest:Quest_S21_Weekly_W07_Q08", + "S21-Quest:Quest_S21_Weekly_W07_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_08", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_08", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_W08_Q01", + "S21-Quest:Quest_S21_Weekly_W08_Q02", + "S21-Quest:Quest_S21_Weekly_W08_Q03", + "S21-Quest:Quest_S21_Weekly_W08_Q04", + "S21-Quest:Quest_S21_Weekly_W08_Q05", + "S21-Quest:Quest_S21_Weekly_W08_Q06", + "S21-Quest:Quest_S21_Weekly_W08_Q07", + "S21-Quest:Quest_S21_Weekly_W08_Q08", + "S21-Quest:Quest_S21_Weekly_W08_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_09", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_09", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_W09_Q01", + "S21-Quest:Quest_S21_Weekly_W09_Q02", + "S21-Quest:Quest_S21_Weekly_W09_Q03", + "S21-Quest:Quest_S21_Weekly_W09_Q04", + "S21-Quest:Quest_S21_Weekly_W09_Q05", + "S21-Quest:Quest_S21_Weekly_W09_Q06", + "S21-Quest:Quest_S21_Weekly_W09_Q07", + "S21-Quest:Quest_S21_Weekly_W09_Q08", + "S21-Quest:Quest_S21_Weekly_W09_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_10", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_10", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_W10_Q01", + "S21-Quest:Quest_S21_Weekly_W10_Q02", + "S21-Quest:Quest_S21_Weekly_W10_Q03", + "S21-Quest:Quest_S21_Weekly_W10_Q04", + "S21-Quest:Quest_S21_Weekly_W10_Q05", + "S21-Quest:Quest_S21_Weekly_W10_Q06", + "S21-Quest:Quest_S21_Weekly_W10_Q07", + "S21-Quest:Quest_S21_Weekly_W10_Q08", + "S21-Quest:Quest_S21_Weekly_W10_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_11", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_11", + "grantedquestinstanceids": [ + "S21-Quest:Quest_s21_Weekly_W11_Q01", + "S21-Quest:Quest_s21_Weekly_W11_Q02", + "S21-Quest:Quest_s21_Weekly_W11_Q03", + "S21-Quest:Quest_s21_Weekly_W11_Q04", + "S21-Quest:Quest_s21_Weekly_W11_Q05", + "S21-Quest:Quest_s21_Weekly_W11_Q06", + "S21-Quest:Quest_s21_Weekly_W11_Q07", + "S21-Quest:Quest_s21_Weekly_W11_Q08", + "S21-Quest:Quest_s21_Weekly_W11_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_12", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_12", + "grantedquestinstanceids": [ + "S21-Quest:Quest_s21_Weekly_W12_Q01", + "S21-Quest:Quest_s21_Weekly_W12_Q02", + "S21-Quest:Quest_s21_Weekly_W12_Q03", + "S21-Quest:Quest_s21_Weekly_W12_Q04", + "S21-Quest:Quest_s21_Weekly_W12_Q05", + "S21-Quest:Quest_s21_Weekly_W12_Q06", + "S21-Quest:Quest_s21_Weekly_W12_Q07", + "S21-Quest:Quest_s21_Weekly_W12_Q08", + "S21-Quest:Quest_s21_Weekly_W12_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_13", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_13", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_W13_Q01", + "S21-Quest:Quest_S21_Weekly_W13_Q02", + "S21-Quest:Quest_S21_Weekly_W13_Q03", + "S21-Quest:Quest_S21_Weekly_W13_Q04", + "S21-Quest:Quest_S21_Weekly_W13_Q05", + "S21-Quest:Quest_S21_Weekly_W13_Q06", + "S21-Quest:Quest_S21_Weekly_W13_Q07", + "S21-Quest:Quest_S21_Weekly_W13_Q08", + "S21-Quest:Quest_S21_Weekly_W13_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_Week_14", + "templateId": "ChallengeBundle:MissionBundle_S21_Week_14", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_W14_Q01", + "S21-Quest:Quest_S21_Weekly_W14_Q02", + "S21-Quest:Quest_S21_Weekly_W14_Q03", + "S21-Quest:Quest_S21_Weekly_W14_Q04", + "S21-Quest:Quest_S21_Weekly_W14_Q05", + "S21-Quest:Quest_S21_Weekly_W14_Q06", + "S21-Quest:Quest_S21_Weekly_W14_Q07", + "S21-Quest:Quest_S21_Weekly_W14_Q08", + "S21-Quest:Quest_S21_Weekly_W14_Q09" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Mission_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W01", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W01", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Narrative_CompleteSeason_W01_Q01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NarrativePunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W02", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W02", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Narrative_CompleteSeason_W02_Q01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NarrativePunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W03", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W03", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Narrative_CompleteSeason_W03_Q01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NarrativePunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W04", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W04", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Narrative_CompleteSeason_W04_Q01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NarrativePunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W05", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W05", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Narrative_CompleteSeason_W05_Q01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NarrativePunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W06", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W06", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Narrative_CompleteSeason_W06_Q01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NarrativePunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W07", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W07", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Narrative_CompleteSeason_W07_Q01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NarrativePunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W08", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W08", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Narrative_CompleteSeason_W08_Q01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NarrativePunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W09", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W09", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Narrative_CompleteSeason_W09_Q01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NarrativePunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer", + "templateId": "ChallengeBundle:QuestBundle_S21_NoSweatSummer", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_NoSweat_Q00", + "S21-Quest:Quest_S21_NoSweat_Q01", + "S21-Quest:Quest_S21_NoSweat_Q02", + "S21-Quest:Quest_S21_NoSweat_Q03", + "S21-Quest:Quest_S21_NoSweat_Q15", + "S21-Quest:Quest_S21_NoSweat_Q16" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NoSweatSummer_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_BonusGoals", + "templateId": "ChallengeBundle:QuestBundle_S21_NoSweatSummer_BonusGoals", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_NoSweat_BonusGoal01", + "S21-Quest:Quest_S21_NoSweat_BonusGoal02", + "S21-Quest:Quest_S21_NoSweat_BonusGoal03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NoSweatSummer_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Marketing", + "templateId": "ChallengeBundle:QuestBundle_S21_NoSweatSummer_Marketing", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_NoSweat_Q04", + "S21-Quest:Quest_S21_NoSweat_Q05", + "S21-Quest:Quest_S21_NoSweat_Q06", + "S21-Quest:Quest_S21_NoSweat_Q07" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NoSweatSummer_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Recall", + "templateId": "ChallengeBundle:QuestBundle_S21_NoSweatSummer_Recall", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_NoSweat_Q09", + "S21-Quest:Quest_S21_NoSweat_Q10", + "S21-Quest:Quest_S21_NoSweat_Q11", + "S21-Quest:Quest_S21_NoSweat_Q12", + "S21-Quest:Quest_S21_NoSweat_Q13", + "S21-Quest:Quest_S21_NoSweat_Q14" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NoSweatSummer_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Recall_Q08", + "templateId": "ChallengeBundle:QuestBundle_S21_NoSweatSummer_Recall_Q08", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_NoSweat_Q08S1" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NoSweatSummer_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_NoSweat_Crew", + "templateId": "ChallengeBundle:QuestBundle_S21_NoSweat_Crew", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_NoSweat_Crew_Q01", + "S21-Quest:Quest_S21_NoSweat_Crew_Q02" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NoSweatSummer_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_SummerEventVO", + "templateId": "ChallengeBundle:QuestBundle_S21_SummerEventVO", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_SummerEvent_VO_Dialogue_Q01", + "S21-Quest:Quest_S21_SummerEvent_VO_02_Granter", + "S21-Quest:Quest_S21_SummerEvent_VO_03_Granter", + "S21-Quest:Quest_S21_SummerEvent_VO_Dialogue_Q02", + "S21-Quest:Quest_S21_SummerEvent_VO_Dialogue_Q03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NoSweatSummer_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_SweatyRebuildSummer", + "templateId": "ChallengeBundle:QuestBundle_S21_SweatyRebuildSummer", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Sweaty_01_Q01", + "S21-Quest:Quest_S21_Sweaty_02_Q01", + "S21-Quest:Quest_S21_Sweaty_03_Q01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NoSweatSummer_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_SweatyRebuildSummer_BonusGoals", + "templateId": "ChallengeBundle:QuestBundle_S21_SweatyRebuildSummer_BonusGoals", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Sweaty_BonusGoal01", + "S21-Quest:Quest_S21_Sweaty_BonusGoal02", + "S21-Quest:Quest_S21_Sweaty_BonusGoal03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_NoSweatSummer_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier01", + "templateId": "ChallengeBundle:QuestBundle_S21_Milestone_Tier01", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q01", + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q02" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier02", + "templateId": "ChallengeBundle:QuestBundle_S21_Milestone_Tier02", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q03", + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q04" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier03", + "templateId": "ChallengeBundle:QuestBundle_S21_Milestone_Tier03", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q05", + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q06" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier04", + "templateId": "ChallengeBundle:QuestBundle_S21_Milestone_Tier04", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q07", + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q08" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier05", + "templateId": "ChallengeBundle:QuestBundle_S21_Milestone_Tier05", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q09", + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q10" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier06", + "templateId": "ChallengeBundle:QuestBundle_S21_Milestone_Tier06", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q11", + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q12" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier07", + "templateId": "ChallengeBundle:QuestBundle_S21_Milestone_Tier07", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q13", + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q14" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier08", + "templateId": "ChallengeBundle:QuestBundle_S21_Milestone_Tier08", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q15", + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q16" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier09", + "templateId": "ChallengeBundle:QuestBundle_S21_Milestone_Tier09", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q17", + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q18" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier10", + "templateId": "ChallengeBundle:QuestBundle_S21_Milestone_Tier10", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q19", + "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q20" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W01", + "templateId": "ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W01", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W01_Q01", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W01_Q02", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W01_Q03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W02", + "templateId": "ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W02", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W02_Q01", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W02_Q02", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W02_Q03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W03", + "templateId": "ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W03", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W03_Q01", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W03_Q02", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W03_Q03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W04", + "templateId": "ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W04", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W04_Q01", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W04_Q02", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W04_Q03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W05", + "templateId": "ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W05", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W05_Q01", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W05_Q02", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W05_Q03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W06", + "templateId": "ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W06", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W06_Q01", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W06_Q02", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W06_Q03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W07", + "templateId": "ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W07", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W07_Q01", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W07_Q02", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W07_Q03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W08", + "templateId": "ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W08", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W08_Q01", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W08_Q02", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W08_Q03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W09", + "templateId": "ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W09", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W09_Q01", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W09_Q02", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W09_Q03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W10", + "templateId": "ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W10", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W10_Q01", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W10_Q02", + "S21-Quest:Quest_S21_Weekly_CompleteSeason_W10_Q03" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_PunchCard_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_RLLive", + "templateId": "ChallengeBundle:QuestBundle_S21_RLLive", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_rllive_q01", + "S21-Quest:quest_s21_rllive_q02", + "S21-Quest:quest_s21_rllive_q03", + "S21-Quest:quest_s21_rllive_q04" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_RLLive_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Canary", + "templateId": "ChallengeBundle:QuestBundle_S21_Canary", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Canary_Q02", + "S21-Quest:Quest_S21_Canary_Q03", + "S21-Quest:Quest_S21_Canary_Q04", + "S21-Quest:Quest_S21_Canary_Q05", + "S21-Quest:Quest_S21_Canary_Q06", + "S21-Quest:Quest_S21_Canary_Q07", + "S21-Quest:Quest_S21_Canary_Q08", + "S21-Quest:Quest_S21_Canary_Q09", + "S21-Quest:Quest_S21_Canary_Q10" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_Canary" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Canary_BonusGoal", + "templateId": "ChallengeBundle:QuestBundle_S21_Canary_BonusGoal", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_Canary_Q01", + "S21-Quest:Quest_S21_Canary_BonusGoal" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_Canary" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm01", + "S21-Quest:quest_s21_customizablecharacter_arm02", + "S21-Quest:quest_s21_customizablecharacter_arm03", + "S21-Quest:quest_s21_customizablecharacter_arm04", + "S21-Quest:quest_s21_customizablecharacter_arm05", + "S21-Quest:quest_s21_customizablecharacter_arm06", + "S21-Quest:quest_s21_customizablecharacter_head01", + "S21-Quest:quest_s21_customizablecharacter_head02", + "S21-Quest:quest_s21_customizablecharacter_head03", + "S21-Quest:quest_s21_customizablecharacter_head04", + "S21-Quest:quest_s21_customizablecharacter_head05", + "S21-Quest:quest_s21_customizablecharacter_head06", + "S21-Quest:quest_s21_customizablecharacter_leg01", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W02", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W02", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm07", + "S21-Quest:quest_s21_customizablecharacter_head07", + "S21-Quest:quest_s21_customizablecharacter_chest01", + "S21-Quest:quest_s21_customizablecharacter_leg02", + "S21-Quest:quest_s21_customizablecharacter_leg03", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W03", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W03", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm08", + "S21-Quest:quest_s21_customizablecharacter_head08", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W04", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W04", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm09", + "S21-Quest:quest_s21_customizablecharacter_head09", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W05", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W05", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm10", + "S21-Quest:quest_s21_customizablecharacter_head10", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W06", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W06", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm11", + "S21-Quest:quest_s21_customizablecharacter_head11", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W07", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W07", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm12", + "S21-Quest:quest_s21_customizablecharacter_head12", + "S21-Quest:quest_s21_customizablecharacter_chest02", + "S21-Quest:quest_s21_customizablecharacter_leg04", + "S21-Quest:quest_s21_customizablecharacter_leg05", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W08", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W08", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm13", + "S21-Quest:quest_s21_customizablecharacter_head13", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W09", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W09", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_head14", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W10", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W10", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm14", + "S21-Quest:quest_s21_customizablecharacter_head15", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W11", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W11", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm15", + "S21-Quest:quest_s21_customizablecharacter_head16", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W12", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W12", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm16", + "S21-Quest:quest_s21_customizablecharacter_head17", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W13", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W13", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm17", + "S21-Quest:quest_s21_customizablecharacter_head18", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W14", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W14", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm18", + "S21-Quest:quest_s21_customizablecharacter_head19", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W15", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W15", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm19", + "S21-Quest:quest_s21_customizablecharacter_head20", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W16", + "templateId": "ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W16", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_customizablecharacter_arm20", + "S21-Quest:quest_s21_customizablecharacter_prereq_w01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_CustomizableCharacter" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W01", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_W01", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_narrative_w01_q01_s01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_Narrative" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W02", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_W02", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_narrative_w02_granter" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_Narrative" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W03", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_W03", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_narrative_w03_granter" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_Narrative" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W04", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_W04", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_narrative_w04_granter" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_Narrative" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W05", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_W05", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_narrative_w05_granter" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_Narrative" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W06", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_W06", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_narrative_w06_granter" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_Narrative" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W07", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_W07", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_narrative_w07_granter" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_Narrative" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W08", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_W08", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_narrative_w08_granter" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_Narrative" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W09", + "templateId": "ChallengeBundle:QuestBundle_S21_Narrative_W09", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_narrative_w09_granter" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Schedule_Narrative" + }, + { + "itemGuid": "S21-ChallengeBundle:QuestBundle_S21_Soundwave_Gen", + "templateId": "ChallengeBundle:QuestBundle_S21_Soundwave_Gen", + "grantedquestinstanceids": [ + "S21-Quest:quest_s21_soundwave_q01" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_Soundwave_Gen_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Bargain_W15", + "templateId": "ChallengeBundle:MissionBundle_S21_WildWeek_Bargain_W15", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_WW_Bargain_Q06", + "S21-Quest:Quest_S21_WW_Bargain_Q07", + "S21-Quest:Quest_S21_WW_Bargain_Q08", + "S21-Quest:Quest_S21_WW_Bargain_Q09", + "S21-Quest:Quest_S21_WW_Bargain_Q10" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_WildWeek_Bargain_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Ignition_W14", + "templateId": "ChallengeBundle:MissionBundle_S21_WildWeek_Ignition_W14", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_WW_Ignition_Q06", + "S21-Quest:Quest_S21_WW_Ignition_Q07", + "S21-Quest:Quest_S21_WW_Ignition_Q08", + "S21-Quest:Quest_S21_WW_Ignition_Q09", + "S21-Quest:Quest_S21_WW_Ignition_Q10" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_WildWeek_Ignition_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Shadow_W13", + "templateId": "ChallengeBundle:MissionBundle_S21_WildWeek_Shadow_W13", + "grantedquestinstanceids": [ + "S21-Quest:Quest_S21_WW_Shadow_Q06", + "S21-Quest:Quest_S21_WW_Shadow_Q07", + "S21-Quest:Quest_S21_WW_Shadow_Q08", + "S21-Quest:Quest_S21_WW_Shadow_Q09", + "S21-Quest:Quest_S21_WW_Shadow_Q10" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Season21_WildWeek_Shadow_Schedule" + }, + { + "itemGuid": "S21-ChallengeBundle:Tutorial_Bundle", + "templateId": "ChallengeBundle:Tutorial_Bundle", + "grantedquestinstanceids": [ + "S21-Quest:Quest_Tutorial_Sprint", + "S21-Quest:Quest_Tutorial_Clamber", + "S21-Quest:Quest_Tutorial_Slide" + ], + "challenge_bundle_schedule_id": "S21-ChallengeBundleSchedule:Tutorial_Schedule" + } + ], + "Quests": [ + { + "itemGuid": "S21-Quest:quest_s21_stamina_d01_q01", + "templateId": "Quest:quest_s21_stamina_d01_q01", + "objectives": [ + { + "name": "quest_s21_stamina_d01_q01_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d01_q02", + "templateId": "Quest:quest_s21_stamina_d01_q02", + "objectives": [ + { + "name": "quest_s21_stamina_d01_q02_obj1", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d01_q04", + "templateId": "Quest:quest_s21_stamina_d01_q04", + "objectives": [ + { + "name": "quest_s21_stamina_d01_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d01_q05", + "templateId": "Quest:quest_s21_stamina_d01_q05", + "objectives": [ + { + "name": "quest_s21_stamina_d01_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d01_q06", + "templateId": "Quest:quest_s21_stamina_d01_q06", + "objectives": [ + { + "name": "quest_s21_stamina_d01_q06_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d01_q07", + "templateId": "Quest:quest_s21_stamina_d01_q07", + "objectives": [ + { + "name": "quest_s21_stamina_d01_q07_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d01_q08", + "templateId": "Quest:quest_s21_stamina_d01_q08", + "objectives": [ + { + "name": "quest_s21_stamina_d01_q08_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d01_q09", + "templateId": "Quest:quest_s21_stamina_d01_q09", + "objectives": [ + { + "name": "quest_s21_stamina_d01_q09_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d01_q10", + "templateId": "Quest:quest_s21_stamina_d01_q10", + "objectives": [ + { + "name": "quest_s21_stamina_d01_q10_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d02_q01", + "templateId": "Quest:quest_s21_stamina_d02_q01", + "objectives": [ + { + "name": "quest_s21_stamina_d02_q01_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_02" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d02_q02", + "templateId": "Quest:quest_s21_stamina_d02_q02", + "objectives": [ + { + "name": "quest_s21_stamina_d02_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_02" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d02_q03", + "templateId": "Quest:quest_s21_stamina_d02_q03", + "objectives": [ + { + "name": "quest_s21_stamina_d02_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_02" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d02_q04", + "templateId": "Quest:quest_s21_stamina_d02_q04", + "objectives": [ + { + "name": "quest_s21_stamina_d02_q04_obj1", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_02" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d02_q05", + "templateId": "Quest:quest_s21_stamina_d02_q05", + "objectives": [ + { + "name": "quest_s21_stamina_d02_q05_obj1", + "count": 2 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_02" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d02_q06", + "templateId": "Quest:quest_s21_stamina_d02_q06", + "objectives": [ + { + "name": "quest_s21_stamina_d02_q06_obj1", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_02" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d02_q07", + "templateId": "Quest:quest_s21_stamina_d02_q07", + "objectives": [ + { + "name": "quest_s21_stamina_d02_q07_obj1", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_02" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d02_q08", + "templateId": "Quest:quest_s21_stamina_d02_q08", + "objectives": [ + { + "name": "quest_s21_stamina_d02_q08_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_02" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d02_q09", + "templateId": "Quest:quest_s21_stamina_d02_q09", + "objectives": [ + { + "name": "quest_s21_stamina_d02_q09_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_02" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d03_q01", + "templateId": "Quest:quest_s21_stamina_d03_q01", + "objectives": [ + { + "name": "quest_s21_stamina_d03_q01_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_03" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d03_q02", + "templateId": "Quest:quest_s21_stamina_d03_q02", + "objectives": [ + { + "name": "quest_s21_stamina_d03_q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_03" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d03_q03", + "templateId": "Quest:quest_s21_stamina_d03_q03", + "objectives": [ + { + "name": "quest_s21_stamina_d03_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_03" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d03_q04", + "templateId": "Quest:quest_s21_stamina_d03_q04", + "objectives": [ + { + "name": "quest_s21_stamina_d03_q04_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_03" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d03_q05", + "templateId": "Quest:quest_s21_stamina_d03_q05", + "objectives": [ + { + "name": "quest_s21_stamina_d03_q05_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_03" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d03_q06", + "templateId": "Quest:quest_s21_stamina_d03_q06", + "objectives": [ + { + "name": "quest_s21_stamina_d03_q06_obj1", + "count": 600 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_03" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d03_q07", + "templateId": "Quest:quest_s21_stamina_d03_q07", + "objectives": [ + { + "name": "quest_s21_stamina_d03_q07_obj1", + "count": 1000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_03" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d03_q08", + "templateId": "Quest:quest_s21_stamina_d03_q08", + "objectives": [ + { + "name": "quest_s21_stamina_d03_q08_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_03" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d03_q09", + "templateId": "Quest:quest_s21_stamina_d03_q09", + "objectives": [ + { + "name": "quest_s21_stamina_d03_q09_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_03" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d04_q03", + "templateId": "Quest:quest_s21_stamina_d04_q03", + "objectives": [ + { + "name": "quest_s21_stamina_d04_q03_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_04" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d04_q04", + "templateId": "Quest:quest_s21_stamina_d04_q04", + "objectives": [ + { + "name": "quest_s21_stamina_d04_q04_obj1", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_04" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d04_q05", + "templateId": "Quest:quest_s21_stamina_d04_q05", + "objectives": [ + { + "name": "quest_s21_stamina_d04_q05_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_04" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d04_q06", + "templateId": "Quest:quest_s21_stamina_d04_q06", + "objectives": [ + { + "name": "quest_s21_stamina_d04_q06_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_04" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d04_q07", + "templateId": "Quest:quest_s21_stamina_d04_q07", + "objectives": [ + { + "name": "quest_s21_stamina_d04_q07_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_04" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d04_q08", + "templateId": "Quest:quest_s21_stamina_d04_q08", + "objectives": [ + { + "name": "quest_s21_stamina_d04_q08_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_04" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d04_q09", + "templateId": "Quest:quest_s21_stamina_d04_q09", + "objectives": [ + { + "name": "quest_s21_stamina_d04_q09_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_04" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d04_q1", + "templateId": "Quest:quest_s21_stamina_d04_q1", + "objectives": [ + { + "name": "quest_s21_stamina_d04_q1_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_04" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d04_q2", + "templateId": "Quest:quest_s21_stamina_d04_q2", + "objectives": [ + { + "name": "quest_s21_stamina_d04_q2_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_04" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d05_q01", + "templateId": "Quest:quest_s21_stamina_d05_q01", + "objectives": [ + { + "name": "quest_s21_stamina_d05_q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_05" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d05_q02", + "templateId": "Quest:quest_s21_stamina_d05_q02", + "objectives": [ + { + "name": "quest_s21_stamina_d05_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_05" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d05_q04", + "templateId": "Quest:quest_s21_stamina_d05_q04", + "objectives": [ + { + "name": "quest_s21_stamina_d05_q04_obj2", + "count": 1 + }, + { + "name": "quest_s21_stamina_d05_q04_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_05" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d05_q05", + "templateId": "Quest:quest_s21_stamina_d05_q05", + "objectives": [ + { + "name": "quest_s21_stamina_d05_q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_05" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d05_q06", + "templateId": "Quest:quest_s21_stamina_d05_q06", + "objectives": [ + { + "name": "quest_s21_stamina_d05_q06_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_05" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d05_q07", + "templateId": "Quest:quest_s21_stamina_d05_q07", + "objectives": [ + { + "name": "quest_s21_stamina_d05_q07_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_05" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d05_q08", + "templateId": "Quest:quest_s21_stamina_d05_q08", + "objectives": [ + { + "name": "quest_s21_stamina_d05_q08_obj0", + "count": 1 + }, + { + "name": "quest_s21_stamina_d05_q08_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_05" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d05_q09", + "templateId": "Quest:quest_s21_stamina_d05_q09", + "objectives": [ + { + "name": "quest_s21_stamina_d05_q09_obj2", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_05" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d05_q10", + "templateId": "Quest:quest_s21_stamina_d05_q10", + "objectives": [ + { + "name": "quest_s21_stamina_d05_q10_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_05" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d06_q03", + "templateId": "Quest:quest_s21_stamina_d06_q03", + "objectives": [ + { + "name": "quest_s21_stamina_d06_q03_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_06" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d06_q04", + "templateId": "Quest:quest_s21_stamina_d06_q04", + "objectives": [ + { + "name": "quest_s21_stamina_d06_q04_obj1", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_06" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d06_q05", + "templateId": "Quest:quest_s21_stamina_d06_q05", + "objectives": [ + { + "name": "quest_s21_stamina_d06_q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_06" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d06_q06", + "templateId": "Quest:quest_s21_stamina_d06_q06", + "objectives": [ + { + "name": "quest_s21_stamina_d06_q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_06" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d06_q07", + "templateId": "Quest:quest_s21_stamina_d06_q07", + "objectives": [ + { + "name": "quest_s21_stamina_d06_q07_obj0", + "count": 750 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_06" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d06_q08", + "templateId": "Quest:quest_s21_stamina_d06_q08", + "objectives": [ + { + "name": "quest_s21_stamina_d06_q08_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_06" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d06_q09", + "templateId": "Quest:quest_s21_stamina_d06_q09", + "objectives": [ + { + "name": "quest_s21_stamina_d06_q09_obj0", + "count": 1 + }, + { + "name": "quest_s21_stamina_d06_q09_obj1", + "count": 1 + }, + { + "name": "quest_s21_stamina_d06_q09_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_06" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d06_q10", + "templateId": "Quest:quest_s21_stamina_d06_q10", + "objectives": [ + { + "name": "quest_s21_stamina_d06_q10_obj3", + "count": 300 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_06" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d07_q02", + "templateId": "Quest:quest_s21_stamina_d07_q02", + "objectives": [ + { + "name": "quest_s21_stamina_d07_q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_07" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d07_q03", + "templateId": "Quest:quest_s21_stamina_d07_q03", + "objectives": [ + { + "name": "quest_s21_stamina_d07_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_07" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d07_q04", + "templateId": "Quest:quest_s21_stamina_d07_q04", + "objectives": [ + { + "name": "quest_s21_stamina_d07_q04_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_07" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d07_q05", + "templateId": "Quest:quest_s21_stamina_d07_q05", + "objectives": [ + { + "name": "quest_s21_stamina_d07_q05_obj0", + "count": 1 + }, + { + "name": "quest_s21_stamina_d07_q05_obj1", + "count": 1 + }, + { + "name": "quest_s21_stamina_d07_q05_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_07" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d07_q06", + "templateId": "Quest:quest_s21_stamina_d07_q06", + "objectives": [ + { + "name": "quest_s21_stamina_d07_q06_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_07" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d07_q07", + "templateId": "Quest:quest_s21_stamina_d07_q07", + "objectives": [ + { + "name": "quest_s21_stamina_d07_q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_07" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d07_q08", + "templateId": "Quest:quest_s21_stamina_d07_q08", + "objectives": [ + { + "name": "quest_s21_stamina_d07_q08_obj0", + "count": 1 + }, + { + "name": "quest_s21_stamina_d07_q08_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_07" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_d07_q09", + "templateId": "Quest:quest_s21_stamina_d07_q09", + "objectives": [ + { + "name": "quest_s21_stamina_d07_q09_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_07" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_w01_q01", + "templateId": "Quest:quest_s21_stamina_w01_q01", + "objectives": [ + { + "name": "quest_s21_stamina_w01_q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Balls" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_w02_q01", + "templateId": "Quest:quest_s21_stamina_w02_q01", + "objectives": [ + { + "name": "quest_s21_stamina_w02_q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Balls" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_w03_q01", + "templateId": "Quest:quest_s21_stamina_w03_q01", + "objectives": [ + { + "name": "quest_s21_stamina_w03_q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Balls" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_w04_q01", + "templateId": "Quest:quest_s21_stamina_w04_q01", + "objectives": [ + { + "name": "quest_s21_stamina_w04_q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Balls" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_w05_q01", + "templateId": "Quest:quest_s21_stamina_w05_q01", + "objectives": [ + { + "name": "quest_s21_stamina_w05_q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Balls" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_w06_q01", + "templateId": "Quest:quest_s21_stamina_w06_q01", + "objectives": [ + { + "name": "quest_s21_stamina_w06_q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Balls" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_w07_q01", + "templateId": "Quest:quest_s21_stamina_w07_q01", + "objectives": [ + { + "name": "quest_s21_stamina_w07_q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Balls" + }, + { + "itemGuid": "S21-Quest:quest_s21_stamina_bonus", + "templateId": "Quest:quest_s21_stamina_bonus", + "objectives": [ + { + "name": "quest_s21_stamina_bonus_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Bonus" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_stamina_q01", + "templateId": "Quest:punchcard_s21_stamina_q01", + "objectives": [ + { + "name": "punchcard_s21_stamina_q01_obj0", + "count": 10000000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_stamina_q02", + "templateId": "Quest:punchcard_s21_stamina_q02", + "objectives": [ + { + "name": "punchcard_s21_stamina_q02_obj0", + "count": 20000000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_stamina_q03", + "templateId": "Quest:punchcard_s21_stamina_q03", + "objectives": [ + { + "name": "punchcard_s21_stamina_q03_obj0", + "count": 30000000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_stamina_q04", + "templateId": "Quest:punchcard_s21_stamina_q04", + "objectives": [ + { + "name": "punchcard_s21_stamina_q04_obj0", + "count": 40000000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_stamina_q05", + "templateId": "Quest:punchcard_s21_stamina_q05", + "objectives": [ + { + "name": "punchcard_s21_stamina_q05_obj0", + "count": 50000000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_stamina_q06", + "templateId": "Quest:punchcard_s21_stamina_q06", + "objectives": [ + { + "name": "punchcard_s21_stamina_q06_obj0", + "count": 60000000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_stamina_q07", + "templateId": "Quest:punchcard_s21_stamina_q07", + "objectives": [ + { + "name": "punchcard_s21_stamina_q07_obj0", + "count": 70000000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_stamina_q08", + "templateId": "Quest:punchcard_s21_stamina_q08", + "objectives": [ + { + "name": "punchcard_s21_stamina_q08_obj0", + "count": 80000000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_stamina_q09", + "templateId": "Quest:punchcard_s21_stamina_q09", + "objectives": [ + { + "name": "punchcard_s21_stamina_q09_obj0", + "count": 90000000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_stamina_q10", + "templateId": "Quest:punchcard_s21_stamina_q10", + "objectives": [ + { + "name": "punchcard_s21_stamina_q10_obj0", + "count": 100000000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_stamina_q11", + "templateId": "Quest:punchcard_s21_stamina_q11", + "objectives": [ + { + "name": "punchcard_s21_stamina_q11_obj0", + "count": 110000000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_stamina_q12", + "templateId": "Quest:punchcard_s21_stamina_q12", + "objectives": [ + { + "name": "punchcard_s21_stamina_q12_obj0", + "count": 120000000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Stamina_Punchcard" + }, + { + "itemGuid": "S21-Quest:quest_s21_fallfest_q01", + "templateId": "Quest:quest_s21_fallfest_q01", + "objectives": [ + { + "name": "quest_s21_fallfest_q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest" + }, + { + "itemGuid": "S21-Quest:quest_s21_fallfest_q02", + "templateId": "Quest:quest_s21_fallfest_q02", + "objectives": [ + { + "name": "quest_s21_fallfest_q02_obj0", + "count": 55 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest" + }, + { + "itemGuid": "S21-Quest:quest_s21_fallfest_q03", + "templateId": "Quest:quest_s21_fallfest_q03", + "objectives": [ + { + "name": "quest_s21_fallfest_q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest" + }, + { + "itemGuid": "S21-Quest:quest_s21_fallfest_q04", + "templateId": "Quest:quest_s21_fallfest_q04", + "objectives": [ + { + "name": "quest_s21_fallfest_q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest" + }, + { + "itemGuid": "S21-Quest:quest_s21_fallfest_q05", + "templateId": "Quest:quest_s21_fallfest_q05", + "objectives": [ + { + "name": "quest_s21_fallfest_q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest" + }, + { + "itemGuid": "S21-Quest:quest_s21_fallfest_q06", + "templateId": "Quest:quest_s21_fallfest_q06", + "objectives": [ + { + "name": "quest_s21_fallfest_q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest" + }, + { + "itemGuid": "S21-Quest:quest_s21_fallfest_q07", + "templateId": "Quest:quest_s21_fallfest_q07", + "objectives": [ + { + "name": "quest_s21_fallfest_q07_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest" + }, + { + "itemGuid": "S21-Quest:quest_s21_fallfest_q08", + "templateId": "Quest:quest_s21_fallfest_q08", + "objectives": [ + { + "name": "quest_s21_fallfest_q08_obj0", + "count": 5000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest" + }, + { + "itemGuid": "S21-Quest:quest_s21_fallfest_q09", + "templateId": "Quest:quest_s21_fallfest_q09", + "objectives": [ + { + "name": "quest_s21_fallfest_q09_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest" + }, + { + "itemGuid": "S21-Quest:quest_s21_fallfest_q10", + "templateId": "Quest:quest_s21_fallfest_q10", + "objectives": [ + { + "name": "quest_s21_fallfest_q10_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest" + }, + { + "itemGuid": "S21-Quest:quest_s21_fallfest_q11", + "templateId": "Quest:quest_s21_fallfest_q11", + "objectives": [ + { + "name": "quest_s21_fallfest_q11_obj0", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q11_obj1", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q11_obj2", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q11_obj3", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q11_obj4", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q11_obj5", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q11_obj6", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q11_obj7", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q11_obj8", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q11_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest" + }, + { + "itemGuid": "S21-Quest:quest_s21_fallfest_q12", + "templateId": "Quest:quest_s21_fallfest_q12", + "objectives": [ + { + "name": "quest_s21_fallfest_q12_obj0", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q12_obj1", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q12_obj2", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q12_obj3", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q12_obj4", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q12_obj5", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q12_obj6", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q12_obj7", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q12_obj8", + "count": 1 + }, + { + "name": "quest_s21_fallfest_q12_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest" + }, + { + "itemGuid": "S21-Quest:quest_s21_fallfest_q13", + "templateId": "Quest:quest_s21_fallfest_q13", + "objectives": [ + { + "name": "quest_s21_fallfest_q13_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_fallfest_q01", + "templateId": "Quest:punchcard_s21_fallfest_q01", + "objectives": [ + { + "name": "punchcard_s21_fallfest_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest_PunchCard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_fallfest_q02", + "templateId": "Quest:punchcard_s21_fallfest_q02", + "objectives": [ + { + "name": "punchcard_s21_fallfest_q02_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest_PunchCard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_fallfest_q03", + "templateId": "Quest:punchcard_s21_fallfest_q03", + "objectives": [ + { + "name": "punchcard_s21_fallfest_q03_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest_PunchCard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_fallfest_q04", + "templateId": "Quest:punchcard_s21_fallfest_q04", + "objectives": [ + { + "name": "punchcard_s21_fallfest_q04_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_FallFest_PunchCard" + }, + { + "itemGuid": "S21-Quest:quest_s21_islandhopper_q01", + "templateId": "Quest:quest_s21_islandhopper_q01", + "objectives": [ + { + "name": "quest_s21_islandhopper_q01_obj0", + "count": 3000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_IslandHopper" + }, + { + "itemGuid": "S21-Quest:quest_s21_islandhopper_q02", + "templateId": "Quest:quest_s21_islandhopper_q02", + "objectives": [ + { + "name": "quest_s21_islandhopper_q02_obj0", + "count": 8 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_IslandHopper" + }, + { + "itemGuid": "S21-Quest:quest_s21_islandhopper_q03", + "templateId": "Quest:quest_s21_islandhopper_q03", + "objectives": [ + { + "name": "quest_s21_islandhopper_q03_obj0", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj1", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj2", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj3", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj4", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj5", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj6", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj7", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj8", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj9", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj10", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj11", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj12", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj13", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj14", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj15", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q03_obj16", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_IslandHopper" + }, + { + "itemGuid": "S21-Quest:quest_s21_islandhopper_q04", + "templateId": "Quest:quest_s21_islandhopper_q04", + "objectives": [ + { + "name": "quest_s21_islandhopper_q04_obj0", + "count": 5 + }, + { + "name": "quest_s21_islandhopper_q04_obj1", + "count": 50 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_IslandHopper" + }, + { + "itemGuid": "S21-Quest:quest_s21_islandhopper_q05", + "templateId": "Quest:quest_s21_islandhopper_q05", + "objectives": [ + { + "name": "quest_s21_islandhopper_q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_IslandHopper" + }, + { + "itemGuid": "S21-Quest:quest_s21_islandhopper_q06", + "templateId": "Quest:quest_s21_islandhopper_q06", + "objectives": [ + { + "name": "quest_s21_islandhopper_q06_obj0", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q06_obj1", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q06_obj2", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q06_obj3", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q06_obj4", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q06_obj5", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q06_obj6", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q06_obj7", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q08_obj0", + "count": 1 + }, + { + "name": "quest_s21_islandhopper_q06_obj9", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_IslandHopper" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_islandhopper_q01", + "templateId": "Quest:punchcard_s21_islandhopper_q01", + "objectives": [ + { + "name": "punchcard_s21_islandhopper_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_IslandHopper_PunchCard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_islandhopper_q02", + "templateId": "Quest:punchcard_s21_islandhopper_q02", + "objectives": [ + { + "name": "punchcard_s21_islandhopper_q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_IslandHopper_PunchCard" + }, + { + "itemGuid": "S21-Quest:punchcard_s21_islandhopper_q03", + "templateId": "Quest:punchcard_s21_islandhopper_q03", + "objectives": [ + { + "name": "punchcard_s21_islandhopper_q03_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_IslandHopper_PunchCard" + }, + { + "itemGuid": "S21-Quest:Quest_S21_LevelUpPack_W01_01", + "templateId": "Quest:Quest_S21_LevelUpPack_W01_01", + "objectives": [ + { + "name": "Quest_S21_LevelUpPack_W01_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_LevelUpPack_W02_01", + "templateId": "Quest:Quest_S21_LevelUpPack_W02_01", + "objectives": [ + { + "name": "Quest_S21_LevelUpPack_W02_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_LevelUpPack_W03_01", + "templateId": "Quest:Quest_S21_LevelUpPack_W03_01", + "objectives": [ + { + "name": "Quest_S21_LevelUpPack_W03_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_LevelUpPack_W04_01", + "templateId": "Quest:Quest_S21_LevelUpPack_W04_01", + "objectives": [ + { + "name": "Quest_S21_LevelUpPack_W04_01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_04" + }, + { + "itemGuid": "S21-Quest:Quests_S21_LevelUpPack_PunchCard_01", + "templateId": "Quest:Quests_S21_LevelUpPack_PunchCard_01", + "objectives": [ + { + "name": "Quests_S21_LevelUpPack_PunchCard_01_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_PunchCard" + }, + { + "itemGuid": "S21-Quest:Quests_S21_LevelUpPack_PunchCard_02", + "templateId": "Quest:Quests_S21_LevelUpPack_PunchCard_02", + "objectives": [ + { + "name": "Quests_S21_LevelUpPack_PunchCard_02_obj0", + "count": 14 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_PunchCard" + }, + { + "itemGuid": "S21-Quest:Quests_S21_LevelUpPack_PunchCard_03", + "templateId": "Quest:Quests_S21_LevelUpPack_PunchCard_03", + "objectives": [ + { + "name": "Quests_S21_LevelUpPack_PunchCard_03_obj0", + "count": 21 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_PunchCard" + }, + { + "itemGuid": "S21-Quest:Quests_S21_LevelUpPack_PunchCard_04", + "templateId": "Quest:Quests_S21_LevelUpPack_PunchCard_04", + "objectives": [ + { + "name": "Quests_S21_LevelUpPack_PunchCard_04_obj0", + "count": 28 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_LevelUpPack_PunchCard" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W00_Q01", + "templateId": "Quest:Quest_s21_Weekly_W00_Q01", + "objectives": [ + { + "name": "Quest_s21_Weekly_W00_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W00_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W00_Q01_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_00" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W00_Q02", + "templateId": "Quest:Quest_s21_Weekly_W00_Q02", + "objectives": [ + { + "name": "Quest_s21_Weekly_W00_Q02_obj0", + "count": 2000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_00" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W00_Q03", + "templateId": "Quest:Quest_s21_Weekly_W00_Q03", + "objectives": [ + { + "name": "Quest_s21_Weekly_W00_Q03_obj0", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W00_Q03_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_00" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W00_Q04", + "templateId": "Quest:Quest_s21_Weekly_W00_Q04", + "objectives": [ + { + "name": "Quest_s21_Weekly_W00_Q04_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_00" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W00_Q05", + "templateId": "Quest:Quest_s21_Weekly_W00_Q05", + "objectives": [ + { + "name": "Quest_s21_Weekly_W00_Q05_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_00" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W00_Q06", + "templateId": "Quest:Quest_s21_Weekly_W00_Q06", + "objectives": [ + { + "name": "Quest_s21_Weekly_W00_Q06_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_00" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W00_Q07", + "templateId": "Quest:Quest_s21_Weekly_W00_Q07", + "objectives": [ + { + "name": "Quest_s21_Weekly_W00_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W00_Q07_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_00" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W00_Q08", + "templateId": "Quest:Quest_s21_Weekly_W00_Q08", + "objectives": [ + { + "name": "Quest_s21_Weekly_W00_Q08_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_00" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W00_Q09", + "templateId": "Quest:Quest_s21_Weekly_W00_Q09", + "objectives": [ + { + "name": "Quest_s21_Weekly_W00_Q09_obj0", + "count": 400 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_00" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W01_Q01", + "templateId": "Quest:Quest_S21_Weekly_W01_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_W01_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W01_Q02", + "templateId": "Quest:Quest_S21_Weekly_W01_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_W01_Q02_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W01_Q03", + "templateId": "Quest:Quest_S21_Weekly_W01_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_W01_Q03_obj1", + "count": 50 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W01_Q04", + "templateId": "Quest:Quest_S21_Weekly_W01_Q04", + "objectives": [ + { + "name": "Quest_S21_Weekly_W01_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W01_Q04_obj2", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W01_Q04_obj3", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W01_Q04_obj4", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W01_Q04_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W01_Q05", + "templateId": "Quest:Quest_S21_Weekly_W01_Q05", + "objectives": [ + { + "name": "Quest_S21_Weekly_W01_Q05_obj1", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W01_Q06", + "templateId": "Quest:Quest_S21_Weekly_W01_Q06", + "objectives": [ + { + "name": "Quest_S21_Weekly_W01_Q06_obj1", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W01_Q07", + "templateId": "Quest:Quest_S21_Weekly_W01_Q07", + "objectives": [ + { + "name": "Quest_S21_Weekly_W01_Q07_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W01_Q08", + "templateId": "Quest:Quest_S21_Weekly_W01_Q08", + "objectives": [ + { + "name": "Quest_S21_Weekly_W01_Q08_obj1", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W01_Q09", + "templateId": "Quest:Quest_S21_Weekly_W01_Q09", + "objectives": [ + { + "name": "Quest_S21_Weekly_W01_Q09_obj1", + "count": 300 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W02_Q01", + "templateId": "Quest:Quest_S21_Weekly_W02_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_W02_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W02_Q02", + "templateId": "Quest:Quest_S21_Weekly_W02_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_W02_Q02_obj1", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W02_Q03", + "templateId": "Quest:Quest_S21_Weekly_W02_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_W02_Q03_obj1", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W02_Q04", + "templateId": "Quest:Quest_S21_Weekly_W02_Q04", + "objectives": [ + { + "name": "Quest_S21_Weekly_W02_Q04_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W02_Q05", + "templateId": "Quest:Quest_S21_Weekly_W02_Q05", + "objectives": [ + { + "name": "Quest_S21_Weekly_W02_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W02_Q06", + "templateId": "Quest:Quest_S21_Weekly_W02_Q06", + "objectives": [ + { + "name": "Quest_S21_Weekly_W02_Q06_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W02_Q07", + "templateId": "Quest:Quest_S21_Weekly_W02_Q07", + "objectives": [ + { + "name": "Quest_S21_Weekly_W02_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W02_Q08", + "templateId": "Quest:Quest_S21_Weekly_W02_Q08", + "objectives": [ + { + "name": "Quest_S21_Weekly_W02_Q08_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W02_Q09", + "templateId": "Quest:Quest_S21_Weekly_W02_Q09", + "objectives": [ + { + "name": "Quest_S21_Weekly_W02_Q09_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W03_Q01", + "templateId": "Quest:Quest_S21_Weekly_W03_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_W03_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W03_Q02", + "templateId": "Quest:Quest_S21_Weekly_W03_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_W03_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W03_Q03", + "templateId": "Quest:Quest_S21_Weekly_W03_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_W03_Q03_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W03_Q04", + "templateId": "Quest:Quest_S21_Weekly_W03_Q04", + "objectives": [ + { + "name": "Quest_S21_Weekly_W03_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W03_Q05", + "templateId": "Quest:Quest_S21_Weekly_W03_Q05", + "objectives": [ + { + "name": "Quest_S21_Weekly_W03_Q05_obj1", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W03_Q06", + "templateId": "Quest:Quest_S21_Weekly_W03_Q06", + "objectives": [ + { + "name": "Quest_S21_Weekly_W03_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W03_Q07", + "templateId": "Quest:Quest_S21_Weekly_W03_Q07", + "objectives": [ + { + "name": "Quest_S21_Weekly_W03_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W03_Q08", + "templateId": "Quest:Quest_S21_Weekly_W03_Q08", + "objectives": [ + { + "name": "Quest_S21_Weekly_W03_Q08_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W03_Q09", + "templateId": "Quest:Quest_S21_Weekly_W03_Q09", + "objectives": [ + { + "name": "Quest_S21_Weekly_W03_Q09_obj0", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W03_Q09_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W04_Q01", + "templateId": "Quest:Quest_S21_Weekly_W04_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_W04_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W04_Q02", + "templateId": "Quest:Quest_S21_Weekly_W04_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_W04_Q02_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W04_Q03", + "templateId": "Quest:Quest_S21_Weekly_W04_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_W04_Q03_obj0", + "count": 15 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W04_Q04", + "templateId": "Quest:Quest_S21_Weekly_W04_Q04", + "objectives": [ + { + "name": "Quest_S21_Weekly_W04_Q04_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W04_Q05", + "templateId": "Quest:Quest_S21_Weekly_W04_Q05", + "objectives": [ + { + "name": "Quest_S21_Weekly_W04_Q05_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W04_Q06", + "templateId": "Quest:Quest_S21_Weekly_W04_Q06", + "objectives": [ + { + "name": "Quest_S21_Weekly_W04_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W04_Q07", + "templateId": "Quest:Quest_S21_Weekly_W04_Q07", + "objectives": [ + { + "name": "Quest_S21_Weekly_W04_Q07_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W04_Q08", + "templateId": "Quest:Quest_S21_Weekly_W04_Q08", + "objectives": [ + { + "name": "Quest_S21_Weekly_W04_Q08_obj0", + "count": 350 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W04_Q09", + "templateId": "Quest:Quest_S21_Weekly_W04_Q09", + "objectives": [ + { + "name": "Quest_S21_Weekly_W04_Q09_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_04" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W05_Q01", + "templateId": "Quest:Quest_s21_Weekly_W05_Q01", + "objectives": [ + { + "name": "Quest_s21_Weekly_W05_Q01_obj0", + "count": 8 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_05" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W05_Q02", + "templateId": "Quest:Quest_s21_Weekly_W05_Q02", + "objectives": [ + { + "name": "Quest_s21_Weekly_W05_Q02_obj1", + "count": 500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_05" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W05_Q03", + "templateId": "Quest:Quest_s21_Weekly_W05_Q03", + "objectives": [ + { + "name": "Quest_s21_Weekly_W05_Q03_obj1", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W05_Q03_obj2", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W05_Q03_obj3", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W05_Q03_obj4", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W05_Q03_obj5", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W05_Q03_obj6", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W05_Q03_obj7", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W05_Q03_obj8", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W05_Q03_obj9", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W05_Q03_obj10", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_05" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W05_Q04", + "templateId": "Quest:Quest_s21_Weekly_W05_Q04", + "objectives": [ + { + "name": "Quest_s21_Weekly_W05_Q04_obj1", + "count": 500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_05" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W05_Q05", + "templateId": "Quest:Quest_s21_Weekly_W05_Q05", + "objectives": [ + { + "name": "Quest_s21_Weekly_W05_Q05_obj1", + "count": 50 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_05" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W05_Q06", + "templateId": "Quest:Quest_s21_Weekly_W05_Q06", + "objectives": [ + { + "name": "Quest_s21_Weekly_W05_Q06_obj1", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W05_Q06_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_05" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W05_Q07", + "templateId": "Quest:Quest_s21_Weekly_W05_Q07", + "objectives": [ + { + "name": "Quest_s21_Weekly_W05_Q07_obj1", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W05_Q07_obj2", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W05_Q07_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_05" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W05_Q08", + "templateId": "Quest:Quest_s21_Weekly_W05_Q08", + "objectives": [ + { + "name": "Quest_s21_Weekly_W05_Q08_obj3", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_05" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W05_Q09", + "templateId": "Quest:Quest_s21_Weekly_W05_Q09", + "objectives": [ + { + "name": "Quest_s21_Weekly_W05_Q09_obj1", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_05" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W06_Q01", + "templateId": "Quest:Quest_s21_Weekly_W06_Q01", + "objectives": [ + { + "name": "Quest_s21_Weekly_W06_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_06" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W06_Q02", + "templateId": "Quest:Quest_s21_Weekly_W06_Q02", + "objectives": [ + { + "name": "Quest_s21_Weekly_W06_Q02_obj1", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_06" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W06_Q03", + "templateId": "Quest:Quest_s21_Weekly_W06_Q03", + "objectives": [ + { + "name": "Quest_s21_Weekly_W06_Q03_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_06" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W06_Q04", + "templateId": "Quest:Quest_s21_Weekly_W06_Q04", + "objectives": [ + { + "name": "Quest_s21_Weekly_W06_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W06_Q04_obj2", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W06_Q04_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_06" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W06_Q05", + "templateId": "Quest:Quest_s21_Weekly_W06_Q05", + "objectives": [ + { + "name": "Quest_s21_Weekly_W06_Q05_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_06" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W06_Q06", + "templateId": "Quest:Quest_s21_Weekly_W06_Q06", + "objectives": [ + { + "name": "Quest_s21_Weekly_W06_Q06_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_06" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W06_Q07", + "templateId": "Quest:Quest_s21_Weekly_W06_Q07", + "objectives": [ + { + "name": "Quest_s21_Weekly_W06_Q07_obj1", + "count": 1000 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_06" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W06_Q08", + "templateId": "Quest:Quest_s21_Weekly_W06_Q08", + "objectives": [ + { + "name": "Quest_s21_Weekly_W06_Q08_obj1", + "count": 100 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_06" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W06_Q09", + "templateId": "Quest:Quest_s21_Weekly_W06_Q09", + "objectives": [ + { + "name": "Quest_s21_Weekly_W06_Q09_obj1", + "count": 500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_06" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W07_Q01", + "templateId": "Quest:Quest_S21_Weekly_W07_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_W07_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W07_Q02", + "templateId": "Quest:Quest_S21_Weekly_W07_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_W07_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W07_Q03", + "templateId": "Quest:Quest_S21_Weekly_W07_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_W07_Q03_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W07_Q04", + "templateId": "Quest:Quest_S21_Weekly_W07_Q04", + "objectives": [ + { + "name": "Quest_S21_Weekly_W07_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj2", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj3", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj4", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj5", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj6", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj7", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj8", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj9", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj10", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj11", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj12", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj13", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj14", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj15", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj16", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj17", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj18", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj19", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj20", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj21", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj22", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj23", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj24", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj25", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj26", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj27", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj28", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj29", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj30", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj31", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj32", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj33", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj34", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj35", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj36", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj37", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj38", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj39", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj40", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj41", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj42", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj43", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj44", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj45", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj46", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj47", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj48", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj49", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj50", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj51", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj52", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj53", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj54", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj55", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj56", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj57", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj58", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj59", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj60", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W07_Q04_obj61", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W07_Q05", + "templateId": "Quest:Quest_S21_Weekly_W07_Q05", + "objectives": [ + { + "name": "Quest_S21_Weekly_W07_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W07_Q06", + "templateId": "Quest:Quest_S21_Weekly_W07_Q06", + "objectives": [ + { + "name": "Quest_S21_Weekly_W07_Q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W07_Q07", + "templateId": "Quest:Quest_S21_Weekly_W07_Q07", + "objectives": [ + { + "name": "Quest_S21_Weekly_W07_Q07_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W07_Q08", + "templateId": "Quest:Quest_S21_Weekly_W07_Q08", + "objectives": [ + { + "name": "Quest_S21_Weekly_W07_Q08_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W07_Q09", + "templateId": "Quest:Quest_S21_Weekly_W07_Q09", + "objectives": [ + { + "name": "Quest_S21_Weekly_W07_Q09_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W08_Q01", + "templateId": "Quest:Quest_S21_Weekly_W08_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_W08_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W08_Q02", + "templateId": "Quest:Quest_S21_Weekly_W08_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_W08_Q02_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W08_Q03", + "templateId": "Quest:Quest_S21_Weekly_W08_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_W08_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W08_Q04", + "templateId": "Quest:Quest_S21_Weekly_W08_Q04", + "objectives": [ + { + "name": "Quest_S21_Weekly_W08_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W08_Q05", + "templateId": "Quest:Quest_S21_Weekly_W08_Q05", + "objectives": [ + { + "name": "Quest_S21_Weekly_W08_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W08_Q06", + "templateId": "Quest:Quest_S21_Weekly_W08_Q06", + "objectives": [ + { + "name": "Quest_S21_Weekly_W08_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W08_Q07", + "templateId": "Quest:Quest_S21_Weekly_W08_Q07", + "objectives": [ + { + "name": "Quest_S21_Weekly_W08_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W08_Q08", + "templateId": "Quest:Quest_S21_Weekly_W08_Q08", + "objectives": [ + { + "name": "Quest_S21_Weekly_W08_Q08_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W08_Q09", + "templateId": "Quest:Quest_S21_Weekly_W08_Q09", + "objectives": [ + { + "name": "Quest_S21_Weekly_W08_Q09_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W09_Q01", + "templateId": "Quest:Quest_S21_Weekly_W09_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_W09_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W09_Q02", + "templateId": "Quest:Quest_S21_Weekly_W09_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_W09_Q02_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W09_Q03", + "templateId": "Quest:Quest_S21_Weekly_W09_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_W09_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W09_Q04", + "templateId": "Quest:Quest_S21_Weekly_W09_Q04", + "objectives": [ + { + "name": "Quest_S21_Weekly_W09_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W09_Q05", + "templateId": "Quest:Quest_S21_Weekly_W09_Q05", + "objectives": [ + { + "name": "Quest_S21_Weekly_W09_Q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W09_Q06", + "templateId": "Quest:Quest_S21_Weekly_W09_Q06", + "objectives": [ + { + "name": "Quest_S21_Weekly_W09_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W09_Q07", + "templateId": "Quest:Quest_S21_Weekly_W09_Q07", + "objectives": [ + { + "name": "Quest_S21_Weekly_W09_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W09_Q08", + "templateId": "Quest:Quest_S21_Weekly_W09_Q08", + "objectives": [ + { + "name": "Quest_S21_Weekly_W09_Q08_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W09_Q09", + "templateId": "Quest:Quest_S21_Weekly_W09_Q09", + "objectives": [ + { + "name": "Quest_S21_Weekly_W09_Q09_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W10_Q01", + "templateId": "Quest:Quest_S21_Weekly_W10_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_W10_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_10" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W10_Q02", + "templateId": "Quest:Quest_S21_Weekly_W10_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_W10_Q02_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_10" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W10_Q03", + "templateId": "Quest:Quest_S21_Weekly_W10_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_W10_Q03_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_10" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W10_Q04", + "templateId": "Quest:Quest_S21_Weekly_W10_Q04", + "objectives": [ + { + "name": "Quest_S21_Weekly_W10_Q04_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_10" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W10_Q05", + "templateId": "Quest:Quest_S21_Weekly_W10_Q05", + "objectives": [ + { + "name": "Quest_S21_Weekly_W10_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_10" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W10_Q06", + "templateId": "Quest:Quest_S21_Weekly_W10_Q06", + "objectives": [ + { + "name": "Quest_S21_Weekly_W10_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_10" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W10_Q07", + "templateId": "Quest:Quest_S21_Weekly_W10_Q07", + "objectives": [ + { + "name": "Quest_S21_Weekly_W10_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_10" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W10_Q08", + "templateId": "Quest:Quest_S21_Weekly_W10_Q08", + "objectives": [ + { + "name": "Quest_S21_Weekly_W10_Q08_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_10" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W10_Q09", + "templateId": "Quest:Quest_S21_Weekly_W10_Q09", + "objectives": [ + { + "name": "Quest_S21_Weekly_W10_Q09_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_10" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W11_Q01", + "templateId": "Quest:Quest_s21_Weekly_W11_Q01", + "objectives": [ + { + "name": "Quest_s21_Weekly_W11_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_11" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W11_Q02", + "templateId": "Quest:Quest_s21_Weekly_W11_Q02", + "objectives": [ + { + "name": "Quest_s21_Weekly_W11_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_11" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W11_Q03", + "templateId": "Quest:Quest_s21_Weekly_W11_Q03", + "objectives": [ + { + "name": "Quest_s21_Weekly_W11_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_11" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W11_Q04", + "templateId": "Quest:Quest_s21_Weekly_W11_Q04", + "objectives": [ + { + "name": "Quest_s21_Weekly_W11_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_11" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W11_Q05", + "templateId": "Quest:Quest_s21_Weekly_W11_Q05", + "objectives": [ + { + "name": "Quest_s21_Weekly_W11_Q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_11" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W11_Q06", + "templateId": "Quest:Quest_s21_Weekly_W11_Q06", + "objectives": [ + { + "name": "Quest_s21_Weekly_W11_Q06_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_11" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W11_Q07", + "templateId": "Quest:Quest_s21_Weekly_W11_Q07", + "objectives": [ + { + "name": "Quest_s21_Weekly_W11_Q07_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_11" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W11_Q08", + "templateId": "Quest:Quest_s21_Weekly_W11_Q08", + "objectives": [ + { + "name": "Quest_s21_Weekly_W11_Q08_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_11" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W11_Q09", + "templateId": "Quest:Quest_s21_Weekly_W11_Q09", + "objectives": [ + { + "name": "Quest_s21_Weekly_W11_Q09_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_11" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W12_Q01", + "templateId": "Quest:Quest_s21_Weekly_W12_Q01", + "objectives": [ + { + "name": "Quest_s21_Weekly_W12_Q01_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_12" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W12_Q02", + "templateId": "Quest:Quest_s21_Weekly_W12_Q02", + "objectives": [ + { + "name": "Quest_s21_Weekly_W12_Q02_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_12" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W12_Q03", + "templateId": "Quest:Quest_s21_Weekly_W12_Q03", + "objectives": [ + { + "name": "Quest_s21_Weekly_W12_Q03_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_12" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W12_Q04", + "templateId": "Quest:Quest_s21_Weekly_W12_Q04", + "objectives": [ + { + "name": "Quest_s21_Weekly_W12_Q04_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_12" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W12_Q05", + "templateId": "Quest:Quest_s21_Weekly_W12_Q05", + "objectives": [ + { + "name": "Quest_s21_Weekly_W12_Q05_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_12" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W12_Q06", + "templateId": "Quest:Quest_s21_Weekly_W12_Q06", + "objectives": [ + { + "name": "Quest_s21_Weekly_W12_Q06_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_12" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W12_Q07", + "templateId": "Quest:Quest_s21_Weekly_W12_Q07", + "objectives": [ + { + "name": "Quest_s21_Weekly_W12_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_s21_Weekly_W12_Q07_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_12" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W12_Q08", + "templateId": "Quest:Quest_s21_Weekly_W12_Q08", + "objectives": [ + { + "name": "Quest_s21_Weekly_W12_Q08_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_12" + }, + { + "itemGuid": "S21-Quest:Quest_s21_Weekly_W12_Q09", + "templateId": "Quest:Quest_s21_Weekly_W12_Q09", + "objectives": [ + { + "name": "Quest_s21_Weekly_W12_Q09_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_12" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W13_Q01", + "templateId": "Quest:Quest_S21_Weekly_W13_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_W13_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q01_obj1", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q01_obj2", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q01_obj3", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q01_obj4", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q01_obj5", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q01_obj6", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q01_obj7", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q01_obj8", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q01_obj9", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q01_obj10", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q01_obj11", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q01_obj12", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_13" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W13_Q02", + "templateId": "Quest:Quest_S21_Weekly_W13_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_W13_Q02_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_13" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W13_Q03", + "templateId": "Quest:Quest_S21_Weekly_W13_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_W13_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_13" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W13_Q04", + "templateId": "Quest:Quest_S21_Weekly_W13_Q04", + "objectives": [ + { + "name": "Quest_S21_Weekly_W13_Q04_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_13" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W13_Q05", + "templateId": "Quest:Quest_S21_Weekly_W13_Q05", + "objectives": [ + { + "name": "Quest_S21_Weekly_W13_Q05_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_13" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W13_Q06", + "templateId": "Quest:Quest_S21_Weekly_W13_Q06", + "objectives": [ + { + "name": "Quest_S21_Weekly_W13_Q06_obj1", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q06_obj2", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q06_obj3", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q06_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_13" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W13_Q07", + "templateId": "Quest:Quest_S21_Weekly_W13_Q07", + "objectives": [ + { + "name": "Quest_S21_Weekly_W13_Q07_obj0", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W13_Q07_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_13" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W13_Q08", + "templateId": "Quest:Quest_S21_Weekly_W13_Q08", + "objectives": [ + { + "name": "Quest_S21_Weekly_W13_Q08_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_13" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W13_Q09", + "templateId": "Quest:Quest_S21_Weekly_W13_Q09", + "objectives": [ + { + "name": "Quest_S21_Weekly_W13_Q09_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_13" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W14_Q01", + "templateId": "Quest:Quest_S21_Weekly_W14_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_W14_Q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W14_Q02", + "templateId": "Quest:Quest_S21_Weekly_W14_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_W14_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W14_Q03", + "templateId": "Quest:Quest_S21_Weekly_W14_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_W14_Q03_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W14_Q04", + "templateId": "Quest:Quest_S21_Weekly_W14_Q04", + "objectives": [ + { + "name": "Quest_S21_Weekly_W14_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W14_Q04_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W14_Q05", + "templateId": "Quest:Quest_S21_Weekly_W14_Q05", + "objectives": [ + { + "name": "Quest_S21_Weekly_W14_Q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W14_Q06", + "templateId": "Quest:Quest_S21_Weekly_W14_Q06", + "objectives": [ + { + "name": "Quest_S21_Weekly_W14_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W14_Q07", + "templateId": "Quest:Quest_S21_Weekly_W14_Q07", + "objectives": [ + { + "name": "Quest_S21_Weekly_W14_Q07_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W14_Q08", + "templateId": "Quest:Quest_S21_Weekly_W14_Q08", + "objectives": [ + { + "name": "Quest_S21_Weekly_W14_Q08_obj0", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W14_Q08_obj1", + "count": 1 + }, + { + "name": "Quest_S21_Weekly_W14_Q08_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_W14_Q09", + "templateId": "Quest:Quest_S21_Weekly_W14_Q09", + "objectives": [ + { + "name": "Quest_S21_Weekly_W14_Q09_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_Week_14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Narrative_CompleteSeason_W01_Q01", + "templateId": "Quest:Quest_S21_Narrative_CompleteSeason_W01_Q01", + "objectives": [ + { + "name": "Quest_S21_Narrative_CompleteSeason_W01_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Narrative_CompleteSeason_W02_Q01", + "templateId": "Quest:Quest_S21_Narrative_CompleteSeason_W02_Q01", + "objectives": [ + { + "name": "Quest_S21_Narrative_CompleteSeason_W02_Q01_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Narrative_CompleteSeason_W03_Q01", + "templateId": "Quest:Quest_S21_Narrative_CompleteSeason_W03_Q01", + "objectives": [ + { + "name": "Quest_S21_Narrative_CompleteSeason_W03_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Narrative_CompleteSeason_W04_Q01", + "templateId": "Quest:Quest_S21_Narrative_CompleteSeason_W04_Q01", + "objectives": [ + { + "name": "Quest_S21_Narrative_CompleteSeason_W04_Q01_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Narrative_CompleteSeason_W05_Q01", + "templateId": "Quest:Quest_S21_Narrative_CompleteSeason_W05_Q01", + "objectives": [ + { + "name": "Quest_S21_Narrative_CompleteSeason_W05_Q01_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W05" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Narrative_CompleteSeason_W06_Q01", + "templateId": "Quest:Quest_S21_Narrative_CompleteSeason_W06_Q01", + "objectives": [ + { + "name": "Quest_S21_Narrative_CompleteSeason_W06_Q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W06" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Narrative_CompleteSeason_W07_Q01", + "templateId": "Quest:Quest_S21_Narrative_CompleteSeason_W07_Q01", + "objectives": [ + { + "name": "Quest_S21_Narrative_CompleteSeason_W07_Q01_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Narrative_CompleteSeason_W08_Q01", + "templateId": "Quest:Quest_S21_Narrative_CompleteSeason_W08_Q01", + "objectives": [ + { + "name": "Quest_S21_Narrative_CompleteSeason_W08_Q01_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Narrative_CompleteSeason_W09_Q01", + "templateId": "Quest:Quest_S21_Narrative_CompleteSeason_W09_Q01", + "objectives": [ + { + "name": "Quest_S21_Narrative_CompleteSeason_W09_Q01_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_CompleteSeason_W09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q00", + "templateId": "Quest:Quest_S21_NoSweat_Q00", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q00_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q01", + "templateId": "Quest:Quest_S21_NoSweat_Q01", + "objectives": [ + { + "name": "Quest_S21_No_Sweat_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S21_No_Sweat_Q01_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q02", + "templateId": "Quest:Quest_S21_NoSweat_Q02", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q02_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q03", + "templateId": "Quest:Quest_S21_NoSweat_Q03", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q03_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q15", + "templateId": "Quest:Quest_S21_NoSweat_Q15", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q15_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q16", + "templateId": "Quest:Quest_S21_NoSweat_Q16", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q16_obj0", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj1", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj2", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj3", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj4", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj6", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj7", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj8", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj9", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj10", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj11", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj12", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj13", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj14", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj15", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q16_obj16", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_BonusGoal01", + "templateId": "Quest:Quest_S21_NoSweat_BonusGoal01", + "objectives": [ + { + "name": "Quest_S21_NoSweat_BonusGoal01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_BonusGoals" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_BonusGoal02", + "templateId": "Quest:Quest_S21_NoSweat_BonusGoal02", + "objectives": [ + { + "name": "Quest_S21_NoSweat_BonusGoal02_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_BonusGoals" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_BonusGoal03", + "templateId": "Quest:Quest_S21_NoSweat_BonusGoal03", + "objectives": [ + { + "name": "Quest_S21_NoSweat_BonusGoal03_obj0", + "count": 14 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_BonusGoals" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q04", + "templateId": "Quest:Quest_S21_NoSweat_Q04", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q04_obj0", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q04_obj1", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q04_obj2", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q04_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Marketing" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q05", + "templateId": "Quest:Quest_S21_NoSweat_Q05", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q05_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Marketing" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q06", + "templateId": "Quest:Quest_S21_NoSweat_Q06", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Marketing" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q07", + "templateId": "Quest:Quest_S21_NoSweat_Q07", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q07_obj01", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj02", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj03", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj04", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj05", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj06", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj07", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj08", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj09", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj10", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj11", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj12", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj13", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj14", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj15", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q07_obj16", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Marketing" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q09", + "templateId": "Quest:Quest_S21_NoSweat_Q09", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q09_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Recall" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q10", + "templateId": "Quest:Quest_S21_NoSweat_Q10", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q10_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Recall" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q11", + "templateId": "Quest:Quest_S21_NoSweat_Q11", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q11_obj0", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q11_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Recall" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q12", + "templateId": "Quest:Quest_S21_NoSweat_Q12", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q12_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Recall" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q13", + "templateId": "Quest:Quest_S21_NoSweat_Q13", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q13_obj0", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q13_obj1", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q13_obj2", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q13_obj3", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q13_obj4", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q13_obj5", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Recall" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q14", + "templateId": "Quest:Quest_S21_NoSweat_Q14", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q14_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Recall" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Q08S1", + "templateId": "Quest:Quest_S21_NoSweat_Q08S1", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Q08_obj0", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q08_obj1", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q08_obj2", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q08_obj3", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Q08_obj4", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweatSummer_Recall_Q08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Crew_Q01", + "templateId": "Quest:Quest_S21_NoSweat_Crew_Q01", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Crew_Q01_obj0", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Crew_Q01_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweat_Crew" + }, + { + "itemGuid": "S21-Quest:Quest_S21_NoSweat_Crew_Q02", + "templateId": "Quest:Quest_S21_NoSweat_Crew_Q02", + "objectives": [ + { + "name": "Quest_S21_NoSweat_Crew_Q02_obj0", + "count": 1 + }, + { + "name": "Quest_S21_NoSweat_Crew_Q02_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_NoSweat_Crew" + }, + { + "itemGuid": "S21-Quest:Quest_S21_SummerEvent_VO_02_Granter", + "templateId": "Quest:Quest_S21_SummerEvent_VO_02_Granter", + "objectives": [ + { + "name": "Quest_S21_SummerEvent_VO_02_Granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_SummerEventVO" + }, + { + "itemGuid": "S21-Quest:Quest_S21_SummerEvent_VO_03_Granter", + "templateId": "Quest:Quest_S21_SummerEvent_VO_03_Granter", + "objectives": [ + { + "name": "Quest_S21_SummerEvent_VO_03_Granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_SummerEventVO" + }, + { + "itemGuid": "S21-Quest:Quest_S21_SummerEvent_VO_Dialogue_Q01", + "templateId": "Quest:Quest_S21_SummerEvent_VO_Dialogue_Q01", + "objectives": [ + { + "name": "Quest_S21_SummerEvent_VO_Dialogue_Q01_intro", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_SummerEventVO" + }, + { + "itemGuid": "S21-Quest:Quest_S21_SummerEvent_VO_Dialogue_Q02", + "templateId": "Quest:Quest_S21_SummerEvent_VO_Dialogue_Q02", + "objectives": [ + { + "name": "Quest_S21_SummerEvent_VO_Dialogue_Q02_intro", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_SummerEventVO" + }, + { + "itemGuid": "S21-Quest:Quest_S21_SummerEvent_VO_Dialogue_Q03", + "templateId": "Quest:Quest_S21_SummerEvent_VO_Dialogue_Q03", + "objectives": [ + { + "name": "Quest_S21_SummerEvent_VO_Dialogue_Q03_intro", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_SummerEventVO" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Sweaty_01_Q01", + "templateId": "Quest:Quest_S21_Sweaty_01_Q01", + "objectives": [ + { + "name": "Quest_S21_Sweaty_01_Q01_obj0", + "count": 900 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_SweatyRebuildSummer" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Sweaty_02_Q01", + "templateId": "Quest:Quest_S21_Sweaty_02_Q01", + "objectives": [ + { + "name": "Quest_S21_Sweaty_02_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_SweatyRebuildSummer" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Sweaty_03_Q01", + "templateId": "Quest:Quest_S21_Sweaty_03_Q01", + "objectives": [ + { + "name": "Quest_S21_Sweaty_03_Q01_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_SweatyRebuildSummer" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Sweaty_BonusGoal01", + "templateId": "Quest:Quest_S21_Sweaty_BonusGoal01", + "objectives": [ + { + "name": "Quest_S21_Sweaty_BonusGoal01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_SweatyRebuildSummer_BonusGoals" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Sweaty_BonusGoal02", + "templateId": "Quest:Quest_S21_Sweaty_BonusGoal02", + "objectives": [ + { + "name": "Quest_S21_Sweaty_BonusGoal02_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_SweatyRebuildSummer_BonusGoals" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Sweaty_BonusGoal03", + "templateId": "Quest:Quest_S21_Sweaty_BonusGoal03", + "objectives": [ + { + "name": "Quest_S21_Sweaty_BonusGoal03_obj0", + "count": 12 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_SweatyRebuildSummer_BonusGoals" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q01", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q01", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q01_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q02", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q02", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q02_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q03", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q03", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q03_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q04", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q04", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q04_obj0", + "count": 40 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q05", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q05", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q05_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q06", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q06", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q06_obj0", + "count": 60 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q07", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q07", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q07_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q08", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q08", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q08_obj0", + "count": 80 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q09", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q09", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q09_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier05" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q10", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q10", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q10_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier05" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q11", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q11", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q11_obj0", + "count": 125 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier06" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q12", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q12", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q12_obj0", + "count": 150 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier06" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q13", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q13", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q13_obj0", + "count": 175 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q14", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q14", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q14_obj0", + "count": 200 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q15", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q15", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q15_obj0", + "count": 225 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q16", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q16", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q16_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q17", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q17", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q17_obj0", + "count": 275 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q18", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q18", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q18_obj0", + "count": 300 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q19", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q19", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q19_obj0", + "count": 325 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier10" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Milestone_CompleteQuests_Q20", + "templateId": "Quest:Quest_S21_Milestone_CompleteQuests_Q20", + "objectives": [ + { + "name": "Quest_S21_Milestone_CompleteQuests_Q20_obj0", + "count": 350 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Milestone_Tier10" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W01_Q01", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W01_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W01_Q01_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W01_Q02", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W01_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W01_Q02_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W01_Q03", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W01_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W01_Q03_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W01" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W02_Q01", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W02_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W02_Q01_obj0", + "count": 8 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W02_Q02", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W02_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W02_Q02_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W02_Q03", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W02_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W02_Q03_obj0", + "count": 12 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W02" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W03_Q01", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W03_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W03_Q01_obj0", + "count": 14 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W03_Q02", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W03_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W03_Q02_obj0", + "count": 16 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W03_Q03", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W03_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W03_Q03_obj0", + "count": 18 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W03" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W04_Q01", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W04_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W04_Q01_obj0", + "count": 20 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W04_Q02", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W04_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W04_Q02_obj0", + "count": 22 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W04_Q03", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W04_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W04_Q03_obj0", + "count": 24 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W04" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W05_Q01", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W05_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W05_Q01_obj0", + "count": 27 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W05" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W05_Q02", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W05_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W05_Q02_obj0", + "count": 30 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W05" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W05_Q03", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W05_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W05_Q03_obj0", + "count": 33 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W05" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W06_Q01", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W06_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W06_Q01_obj0", + "count": 36 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W06" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W06_Q02", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W06_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W06_Q02_obj0", + "count": 39 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W06" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W06_Q03", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W06_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W06_Q03_obj0", + "count": 42 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W06" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W07_Q01", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W07_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W07_Q01_obj0", + "count": 46 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W07_Q02", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W07_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W07_Q02_obj0", + "count": 50 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W07_Q03", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W07_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W07_Q03_obj0", + "count": 54 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W07" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W08_Q01", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W08_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W08_Q01_obj0", + "count": 58 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W08_Q02", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W08_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W08_Q02_obj0", + "count": 62 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W08_Q03", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W08_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W08_Q03_obj0", + "count": 66 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W08" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W09_Q01", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W09_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W09_Q01_obj0", + "count": 70 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W09_Q02", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W09_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W09_Q02_obj0", + "count": 74 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W09_Q03", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W09_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W09_Q03_obj0", + "count": 78 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W09" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W10_Q01", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W10_Q01", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W10_Q01_obj0", + "count": 82 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W10" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W10_Q02", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W10_Q02", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W10_Q02_obj0", + "count": 86 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W10" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Weekly_CompleteSeason_W10_Q03", + "templateId": "Quest:Quest_S21_Weekly_CompleteSeason_W10_Q03", + "objectives": [ + { + "name": "Quest_S21_Weekly_CompleteSeason_W10_Q03_obj0", + "count": 90 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Weekly_CompleteSeason_W10" + }, + { + "itemGuid": "S21-Quest:quest_s21_rllive_q01", + "templateId": "Quest:quest_s21_rllive_q01", + "objectives": [ + { + "name": "quest_s21_rllive_q01_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_RLLive" + }, + { + "itemGuid": "S21-Quest:quest_s21_rllive_q02", + "templateId": "Quest:quest_s21_rllive_q02", + "objectives": [ + { + "name": "quest_s21_rllive_q02_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_RLLive" + }, + { + "itemGuid": "S21-Quest:quest_s21_rllive_q03", + "templateId": "Quest:quest_s21_rllive_q03", + "objectives": [ + { + "name": "quest_s21_rllive_q03_obj0", + "count": 250 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_RLLive" + }, + { + "itemGuid": "S21-Quest:quest_s21_rllive_q04", + "templateId": "Quest:quest_s21_rllive_q04", + "objectives": [ + { + "name": "quest_s21_rllive_q04_obj0", + "count": 1500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_RLLive" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Canary_Q02", + "templateId": "Quest:Quest_S21_Canary_Q02", + "objectives": [ + { + "name": "Quest_S21_Canary_Q02_obj0", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Canary" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Canary_Q03", + "templateId": "Quest:Quest_S21_Canary_Q03", + "objectives": [ + { + "name": "Quest_S21_Canary_Q03_obj0", + "count": 500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Canary" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Canary_Q04", + "templateId": "Quest:Quest_S21_Canary_Q04", + "objectives": [ + { + "name": "Quest_S21_Canary_Q04_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Canary" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Canary_Q05", + "templateId": "Quest:Quest_S21_Canary_Q05", + "objectives": [ + { + "name": "Quest_S21_Canary_Q05_obj0", + "count": 1 + }, + { + "name": "Quest_S21_Canary_Q05_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Canary" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Canary_Q06", + "templateId": "Quest:Quest_S21_Canary_Q06", + "objectives": [ + { + "name": "Quest_S21_Canary_Q06_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Canary" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Canary_Q07", + "templateId": "Quest:Quest_S21_Canary_Q07", + "objectives": [ + { + "name": "Quest_S21_Canary_Q07_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Canary" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Canary_Q08", + "templateId": "Quest:Quest_S21_Canary_Q08", + "objectives": [ + { + "name": "Quest_S21_Canary_Q08_obj0", + "count": 100 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Canary" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Canary_Q09", + "templateId": "Quest:Quest_S21_Canary_Q09", + "objectives": [ + { + "name": "Quest_S21_Canary_Q09_obj0", + "count": 750 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Canary" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Canary_Q10", + "templateId": "Quest:Quest_S21_Canary_Q10", + "objectives": [ + { + "name": "Quest_S21_Canary_Q10_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Canary" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Canary_BonusGoal", + "templateId": "Quest:Quest_S21_Canary_BonusGoal", + "objectives": [ + { + "name": "Quest_S21_Canary_BonusGoal_obj0", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Canary_BonusGoal" + }, + { + "itemGuid": "S21-Quest:Quest_S21_Canary_Q01", + "templateId": "Quest:Quest_S21_Canary_Q01", + "objectives": [ + { + "name": "Quest_S21_Canary_Q01_obj0", + "count": 4 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Canary_BonusGoal" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm01", + "templateId": "Quest:quest_s21_customizablecharacter_arm01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm01_obj0", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_arm01_obj1", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_arm01_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm02", + "templateId": "Quest:quest_s21_customizablecharacter_arm02", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm02_obj0", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_arm02_obj1", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_arm02_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm03", + "templateId": "Quest:quest_s21_customizablecharacter_arm03", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm03_obj0", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_arm03_obj1", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_arm03_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm04", + "templateId": "Quest:quest_s21_customizablecharacter_arm04", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm04_obj0", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_arm04_obj1", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_arm04_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm05", + "templateId": "Quest:quest_s21_customizablecharacter_arm05", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm05_obj0", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_arm05_obj1", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_arm05_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm06", + "templateId": "Quest:quest_s21_customizablecharacter_arm06", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm06_obj0", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_arm06_obj1", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_arm06_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head01", + "templateId": "Quest:quest_s21_customizablecharacter_head01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head01_obj0", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_head01_obj1", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_head01_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head02", + "templateId": "Quest:quest_s21_customizablecharacter_head02", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head02_obj0", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_head02_obj1", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_head02_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head03", + "templateId": "Quest:quest_s21_customizablecharacter_head03", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head03_obj0", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_head03_obj1", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_head03_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head04", + "templateId": "Quest:quest_s21_customizablecharacter_head04", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head04_obj0", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_head04_obj1", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_head04_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head05", + "templateId": "Quest:quest_s21_customizablecharacter_head05", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head05_obj0", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_head05_obj1", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_head05_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head06", + "templateId": "Quest:quest_s21_customizablecharacter_head06", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head06_obj0", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_head06_obj1", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_head06_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_leg01", + "templateId": "Quest:quest_s21_customizablecharacter_leg01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_leg01_obj0", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_leg01_obj1", + "count": 1 + }, + { + "name": "quest_s21_customizablecharacter_leg01_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm07", + "templateId": "Quest:quest_s21_customizablecharacter_arm07", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm07_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W02" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_chest01", + "templateId": "Quest:quest_s21_customizablecharacter_chest01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_chest01_obj0", + "count": 35 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W02" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head07", + "templateId": "Quest:quest_s21_customizablecharacter_head07", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head07_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W02" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_leg02", + "templateId": "Quest:quest_s21_customizablecharacter_leg02", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_leg02_obj0", + "count": 25 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W02" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_leg03", + "templateId": "Quest:quest_s21_customizablecharacter_leg03", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_leg03_obj0", + "count": 45 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W02" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W02" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm08", + "templateId": "Quest:quest_s21_customizablecharacter_arm08", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm08_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W03" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head08", + "templateId": "Quest:quest_s21_customizablecharacter_head08", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head08_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W03" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W03" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm09", + "templateId": "Quest:quest_s21_customizablecharacter_arm09", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm09_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W04" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head09", + "templateId": "Quest:quest_s21_customizablecharacter_head09", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head09_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W04" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W04" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm10", + "templateId": "Quest:quest_s21_customizablecharacter_arm10", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm10_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W05" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head10", + "templateId": "Quest:quest_s21_customizablecharacter_head10", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head10_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W05" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W05" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm11", + "templateId": "Quest:quest_s21_customizablecharacter_arm11", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm11_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W06" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head11", + "templateId": "Quest:quest_s21_customizablecharacter_head11", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head11_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W06" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W06" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm12", + "templateId": "Quest:quest_s21_customizablecharacter_arm12", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm12_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W07" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_chest02", + "templateId": "Quest:quest_s21_customizablecharacter_chest02", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_chest02_obj0", + "count": 65 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W07" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head12", + "templateId": "Quest:quest_s21_customizablecharacter_head12", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head12_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W07" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_leg04", + "templateId": "Quest:quest_s21_customizablecharacter_leg04", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_leg04_obj0", + "count": 55 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W07" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_leg05", + "templateId": "Quest:quest_s21_customizablecharacter_leg05", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_leg05_obj0", + "count": 75 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W07" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W07" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm13", + "templateId": "Quest:quest_s21_customizablecharacter_arm13", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm13_obj0", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W08" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head13", + "templateId": "Quest:quest_s21_customizablecharacter_head13", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head13_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W08" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W08" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head14", + "templateId": "Quest:quest_s21_customizablecharacter_head14", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head14_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W09" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W09" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm14", + "templateId": "Quest:quest_s21_customizablecharacter_arm14", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm14_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W10" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head15", + "templateId": "Quest:quest_s21_customizablecharacter_head15", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head15_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W10" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W10" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm15", + "templateId": "Quest:quest_s21_customizablecharacter_arm15", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm15_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W11" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head16", + "templateId": "Quest:quest_s21_customizablecharacter_head16", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head16_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W11" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W11" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm16", + "templateId": "Quest:quest_s21_customizablecharacter_arm16", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm16_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W12" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head17", + "templateId": "Quest:quest_s21_customizablecharacter_head17", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head17_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W12" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W12" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm17", + "templateId": "Quest:quest_s21_customizablecharacter_arm17", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm17_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W13" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head18", + "templateId": "Quest:quest_s21_customizablecharacter_head18", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head18_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W13" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W13" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm18", + "templateId": "Quest:quest_s21_customizablecharacter_arm18", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm18_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W14" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head19", + "templateId": "Quest:quest_s21_customizablecharacter_head19", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head19_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W14" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W14" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm19", + "templateId": "Quest:quest_s21_customizablecharacter_arm19", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm19_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W15" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_head20", + "templateId": "Quest:quest_s21_customizablecharacter_head20", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_head20_obj0", + "count": 6 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W15" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W15" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_arm20", + "templateId": "Quest:quest_s21_customizablecharacter_arm20", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_arm20_obj0", + "count": 7 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W16" + }, + { + "itemGuid": "S21-Quest:quest_s21_customizablecharacter_prereq_w01", + "templateId": "Quest:quest_s21_customizablecharacter_prereq_w01", + "objectives": [ + { + "name": "quest_s21_customizablecharacter_prereq_w01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_CustomizableCharacter_W16" + }, + { + "itemGuid": "S21-Quest:quest_s21_narrative_w01_q01_s01", + "templateId": "Quest:quest_s21_narrative_w01_q01_s01", + "objectives": [ + { + "name": "quest_s21_narrative_w01_q01_s01_obj01", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W01" + }, + { + "itemGuid": "S21-Quest:quest_s21_narrative_w02_granter", + "templateId": "Quest:quest_s21_narrative_w02_granter", + "objectives": [ + { + "name": "quest_s21_narrative_w02_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W02" + }, + { + "itemGuid": "S21-Quest:quest_s21_narrative_w03_granter", + "templateId": "Quest:quest_s21_narrative_w03_granter", + "objectives": [ + { + "name": "quest_s21_narrative_w03_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W03" + }, + { + "itemGuid": "S21-Quest:quest_s21_narrative_w04_granter", + "templateId": "Quest:quest_s21_narrative_w04_granter", + "objectives": [ + { + "name": "quest_s21_narrative_w04_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W04" + }, + { + "itemGuid": "S21-Quest:quest_s21_narrative_w05_granter", + "templateId": "Quest:quest_s21_narrative_w05_granter", + "objectives": [ + { + "name": "quest_s21_narrative_w05_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W05" + }, + { + "itemGuid": "S21-Quest:quest_s21_narrative_w06_granter", + "templateId": "Quest:quest_s21_narrative_w06_granter", + "objectives": [ + { + "name": "quest_s21_narrative_w06_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W06" + }, + { + "itemGuid": "S21-Quest:quest_s21_narrative_w07_granter", + "templateId": "Quest:quest_s21_narrative_w07_granter", + "objectives": [ + { + "name": "quest_s21_narrative_w07_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W07" + }, + { + "itemGuid": "S21-Quest:quest_s21_narrative_w08_granter", + "templateId": "Quest:quest_s21_narrative_w08_granter", + "objectives": [ + { + "name": "quest_s21_narrative_w08_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W08" + }, + { + "itemGuid": "S21-Quest:quest_s21_narrative_w09_granter", + "templateId": "Quest:quest_s21_narrative_w09_granter", + "objectives": [ + { + "name": "quest_s21_narrative_w09_granter_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Narrative_W09" + }, + { + "itemGuid": "S21-Quest:quest_s21_soundwave_q01", + "templateId": "Quest:quest_s21_soundwave_q01", + "objectives": [ + { + "name": "quest_s21_soundwave_q01_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:QuestBundle_S21_Soundwave_Gen" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Bargain_Q06", + "templateId": "Quest:Quest_S21_WW_Bargain_Q06", + "objectives": [ + { + "name": "Quest_S21_WW_Bargain_Q06_obj1", + "count": 100 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Bargain_Q07", + "templateId": "Quest:Quest_S21_WW_Bargain_Q07", + "objectives": [ + { + "name": "Quest_S21_WW_Bargain_Q07_obj1", + "count": 500 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Bargain_Q08", + "templateId": "Quest:Quest_S21_WW_Bargain_Q08", + "objectives": [ + { + "name": "Quest_S21_WW_Bargain_Q08_obj1", + "count": 2 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Bargain_Q09", + "templateId": "Quest:Quest_S21_WW_Bargain_Q09", + "objectives": [ + { + "name": "Quest_S21_WW_Bargain_Q09_obj1", + "count": 3 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Bargain_Q10", + "templateId": "Quest:Quest_S21_WW_Bargain_Q10", + "objectives": [ + { + "name": "Quest_S21_WW_Bargain_Q10_obj1", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Bargain_W15" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Ignition_Q06", + "templateId": "Quest:Quest_S21_WW_Ignition_Q06", + "objectives": [ + { + "name": "Quest_S21_WW_Ignition_Q06_obj0", + "count": 2 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Ignition_W14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Ignition_Q07", + "templateId": "Quest:Quest_S21_WW_Ignition_Q07", + "objectives": [ + { + "name": "Quest_S21_WW_Ignition_Q07_obj1", + "count": 800 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Ignition_W14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Ignition_Q08", + "templateId": "Quest:Quest_S21_WW_Ignition_Q08", + "objectives": [ + { + "name": "Quest_S21_WW_Ignition_Q08_obj1", + "count": 100 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Ignition_W14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Ignition_Q09", + "templateId": "Quest:Quest_S21_WW_Ignition_Q09", + "objectives": [ + { + "name": "Quest_S21_WW_Ignition_Q09_obj1", + "count": 10 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Ignition_W14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Ignition_Q10", + "templateId": "Quest:Quest_S21_WW_Ignition_Q10", + "objectives": [ + { + "name": "Quest_S21_WW_Ignition_Q10_obj1", + "count": 5 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Ignition_W14" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Shadow_Q06", + "templateId": "Quest:Quest_S21_WW_Shadow_Q06", + "objectives": [ + { + "name": "Quest_S21_WW_Shadow_Q06_obj1", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Shadow_W13" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Shadow_Q07", + "templateId": "Quest:Quest_S21_WW_Shadow_Q07", + "objectives": [ + { + "name": "Quest_S21_WW_Shadow_Q07_obj1", + "count": 4 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Shadow_W13" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Shadow_Q08", + "templateId": "Quest:Quest_S21_WW_Shadow_Q08", + "objectives": [ + { + "name": "Quest_S21_WW_Shadow_Q08_obj1", + "count": 1 + }, + { + "name": "Quest_S21_WW_Shadow_Q08_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Shadow_W13" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Shadow_Q09", + "templateId": "Quest:Quest_S21_WW_Shadow_Q09", + "objectives": [ + { + "name": "Quest_S21_WW_Shadow_Q09_obj2", + "count": 1 + }, + { + "name": "Quest_S21_WW_Shadow_Q09_obj3", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Shadow_W13" + }, + { + "itemGuid": "S21-Quest:Quest_S21_WW_Shadow_Q10", + "templateId": "Quest:Quest_S21_WW_Shadow_Q10", + "objectives": [ + { + "name": "Quest_S21_WW_Shadow_Q10_obj2", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:MissionBundle_S21_WildWeek_Shadow_W13" + }, + { + "itemGuid": "S21-Quest:Quest_Tutorial_Clamber", + "templateId": "Quest:Quest_Tutorial_Clamber", + "objectives": [ + { + "name": "Quest_Tutorial_Clambering_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:Tutorial_Bundle" + }, + { + "itemGuid": "S21-Quest:Quest_Tutorial_Slide", + "templateId": "Quest:Quest_Tutorial_Slide", + "objectives": [ + { + "name": "Quest_Tutorial_Sliding_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:Tutorial_Bundle" + }, + { + "itemGuid": "S21-Quest:Quest_Tutorial_Sprint", + "templateId": "Quest:Quest_Tutorial_Sprint", + "objectives": [ + { + "name": "Quest_Tutorial_Sprint_obj0", + "count": 1 + } + ], + "challenge_bundle_id": "S21-ChallengeBundle:Tutorial_Bundle" + } + ] + } + } +} \ No newline at end of file diff --git a/lawin/responses/sdkv1.json b/lawin/responses/sdkv1.json new file mode 100644 index 0000000..3fcc1aa --- /dev/null +++ b/lawin/responses/sdkv1.json @@ -0,0 +1,658 @@ +{ + "client": { + "RateLimiter.InventoryClient": { + "MessageCount": 100, + "TimeIntervalInSeconds": 60.0 + }, + "BaseService": { + "HttpRetryLimit": 4, + "HttpRetryResponseCodes": [ + 429, + 503, + 504 + ] + }, + "RateLimiter.AuthClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.PresenceClient.Operations": { + "MessageCount": 3, + "TimeIntervalInSeconds": 20.0, + "Operation": [ + "SendUpdate", + "SetPresence" + ] + }, + "RateLimiter.ReceiptValidatorClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.LeaderboardsClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.MetricsClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.StatsClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.SDKConfigClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "RequestUpdate" + ] + }, + "RateLimiter.TitleStorageClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.EcomClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.DataStorageClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "GetAccessLinks", + "QueryFile", + "QueryFileList", + "CopyFile", + "DeleteFile", + "ReadFile", + "WriteFile", + "DownloadFileRedirected", + "UploadFileRedirected" + ] + }, + "LeaderboardsClient": { + "MaxUserScoresQueryUserIds": 100, + "MaxUserScoresQueryStats": 25 + }, + "RateLimiter.CustomInvitesClient.Operations": { + "MessageCount": 50, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "SendCustomInvite" + ] + }, + "HTTP": { + "HttpReceiveTimeout": 30, + "bEnableHttp": true, + "HttpTimeout": 30, + "HttpConnectionTimeout": 60, + "HttpSendTimeout": 30, + "MaxFlushTimeSeconds": 2.0 + }, + "RateLimiter.FriendClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "QueryFriends", + "SendFriendInvite", + "DeleteFriend" + ] + }, + "RateLimiter.RTCAdminClient": { + "MessageCount": 50, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.UserInfoClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "/Script/Engine.NetworkSettings": { + "n.VerifyPeer": false + }, + "WebSockets.LibWebSockets": { + "ThreadStackSize": 131072, + "ThreadTargetFrameTimeInSeconds": 0.0333, + "ThreadMinimumSleepTimeInSeconds": 0.0 + }, + "StatsClient": { + "MaxQueryStatsStatNamesStrLength": 1900 + }, + "RateLimiter.MetricsClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "RegisterPlayerBackendSession" + ] + }, + "RateLimiter.DataStorageClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "SanitizerClient": { + "ReplaceChar": "*", + "RequestLimit": 10 + }, + "RateLimiter.ModsClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "InstallMod", + "UninstallMod", + "UpdateMod", + "EnumerateMods" + ] + }, + "RateLimiter.ReportsClient.Operations": { + "MessageCount": 100, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "SendPlayerBehaviorReport" + ] + }, + "RateLimiter.RTCAdminClient.Operations": { + "MessageCount": 50, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "QueryJoinRoomToken", + "Kick", + "SetParticipantHardMute" + ] + }, + "RateLimiter.FriendClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.AchievementsClient": { + "MessageCount": 100, + "TimeIntervalInSeconds": 60.0 + }, + "LogFiles": { + "PurgeLogsDays": 5, + "MaxLogFilesOnDisk": 5, + "LogTimes": "SinceStart" + }, + "RateLimiter": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.AntiCheatClient": { + "MessageCount": 120, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.ProgressionSnapshot": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "SessionsClient": { + "HeartbeatIntervalSecs": 30 + }, + "RateLimiter.UserInfoClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "QueryLocalUserInfo", + "QueryUserInfo", + "QueryUserInfoByDisplayName", + "QueryUserInfoByExternalAccount" + ] + }, + "LobbyClient": { + "InitialResendDelayMs": 100, + "MaxConnectionRetries": 3, + "LobbySocketURL": "wss://api.epicgames.dev/lobby/v1/`deploymentId/lobbies/connect", + "NumConsecutiveFailuresAllowed": 5, + "MaxResendDelayMs": 2000, + "WebSocketConnectTaskMaxNetworkWaitSeconds": 15.0, + "RecoveryWaitTimeSecs": 2, + "InitialRetryDelaySeconds": 5, + "MaxSendRetries": 3, + "SentMessageTimeout": 5, + "HeartbeatIntervalSecs": 30, + "MaxRetryIntervalSeconds": 15 + }, + "RateLimiter.SanctionsClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "QueryActivePlayerSanctions" + ] + }, + "UIClient.SocialURLQueryParamNames": { + "OSName": "os_name", + "ProductId": "product_id", + "SDKCLNumber": "sdk_cl_number", + "DeploymentId": "deployment_id", + "IntegratedPlatformName": "integrated_platform_name", + "SDKVersion": "sdk_version", + "OSVersion": "os_version", + "UserId": "user_id", + "ExchangeCode": "exchange_code" + }, + "RateLimiter.LobbyClient.ThrottledOperations": { + "MessageCount": 30, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "CreateLobby", + "DestroyLobby", + "JoinLobby", + "LeaveLobby", + "HeartbeatLobby", + "UpdateLobby", + "PromoteMember", + "KickLobbyMember", + "SendLobbyInvite", + "RejectLobbyInvite", + "QueryInvites", + "FindLobby", + "RefreshRTCToken", + "HardMuteMember" + ] + }, + "RateLimiter.SessionsClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.KWSClient": { + "MessageCount": 20, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.PresenceClient": { + "MessageCount": 60, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.KWSClient.Operations": { + "MessageCount": 20, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "CreateUser", + "UpdateParentEmail", + "QueryAgeGate", + "QueryPermissions", + "RequestPermissions" + ] + }, + "RateLimiter.InventoryClient.Operations": { + "MessageCount": 100, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "Open", + "Close" + ] + }, + "RateLimiter.LeaderboardsClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "QueryLeaderboardDefinitions", + "QueryLeaderboardRanks", + "QueryLeaderboardUserScores" + ] + }, + "RateLimiter.SanctionsClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "Messaging.EpicConnect": { + "FailedConnectionDelayMultiplier": 2.5, + "ServerHeartbeatIntervalMilliseconds": 0, + "FailedConnectionDelayMaxSeconds": 180, + "ClientHeartbeatIntervalMilliseconds": 30000, + "FailedConnectionDelayIntervalSeconds": 5, + "Url": "wss://connect.epicgames.dev" + }, + "MetricsClient": { + "HttpRetryLimit": 2 + }, + "RateLimiter.TitleStorageClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "QueryFile", + "QueryFileList", + "ReadFile" + ] + }, + "RateLimiter.AchievementsClient.Operations": { + "MessageCount": 100, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "QueryDefinitions", + "QueryPlayerAchievements", + "UnlockAchievements" + ] + }, + "Messaging.Stomp": { + "ClientHeartbeatIntervalMs": 30000, + "RequestedServerHeartbeatIntervalMs": 30000, + "Url": "wss://api.epicgames.dev/notifications/v1/`deploymentid`/connect", + "BlocklistMessageTypeFilters": [ + "lobbyinvite" + ] + }, + "TitleStorageClient": { + "AccessLinkDurationSeconds": 300, + "UnusedCachedFileDaysToLive": 7, + "ClearInvalidFileCacheFrequencyDays": 2, + "MaxSimultaneousReads": 10 + }, + "ConnectClient": { + "MaxProductUserIdMappingsQueryUserIds": 128, + "MinProductUserIdMappingsUpdateTimeInSeconds": 900.0 + }, + "RateLimiter.LobbyClient.Operations": { + "MessageCount": 100, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "GetByLobbyId", + "UpdateLobby" + ] + }, + "RateLimiter.AntiCheatClient.Operations": { + "MessageCount": 120, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "QueryServiceStatus", + "SendClientMessage" + ] + }, + "EcomClient": { + "PurchaseUrl": "https://launcher-website-prod07.ol.epicgames.com/purchase", + "PurchaseCookieName": "EPIC_BEARER_TOKEN", + "PurchaseEpicIdUrl": "https://www.epicgames.com/ecom/payment/v1/purchase" + }, + "RateLimiter.SessionsClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "UpdateSession", + "JoinSession", + "StartSession", + "EndSession", + "RegisterPlayers", + "SendInvite", + "RejectInvite", + "QueryInvites", + "FindSession", + "DestroySession" + ] + }, + "RateLimiter.StatsClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "IngestStat", + "QueryStats" + ] + }, + "RateLimiter.ReceiptValidatorClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "VerifyPurchase" + ] + }, + "DataStorageClient": { + "AccessLinkDurationSeconds": 300, + "MaxSimultaneousReads": 10, + "MaxSimultaneousWrites": 10 + }, + "RateLimiter.AuthClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "VerifyAuth", + "DeletePersistentAuth", + "GenerateClientAuth", + "LinkAccount", + "QueryIdToken", + "VerifyIdToken" + ] + }, + "P2PClient": { + "IceServers": [ + "stun:stun.l.google.com:19302", + "stun:turn.rtcp.on.epicgames.com:3478", + "turn:turn.rtcp.on.epicgames.com:3478" + ], + "P2PMinPort": 7777, + "P2PMaxPort": 7876 + }, + "RateLimiter.LobbyClient": { + "MessageCount": 30, + "TimeIntervalInSeconds": 60.0 + }, + "SDKAnalytics": { + "BaseUrl": "https://api.epicgames.dev/telemetry/data/", + "DevPhase": 2, + "AppEnvironment": "Production", + "UploadType": "sdkevents" + }, + "RateLimiter.ConnectClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "AntiCheat.GameplayData": { + "Url": "wss://api.epicgames.dev/cerberus-edge/v1/" + }, + "AuthClient": { + "AccountPortalURLLocaleSuffix": "lang=`code", + "PollInterval": 5, + "RefreshTokenThreshold": 100.0, + "VPCRegisterURL": "https://epicgames.com/id/register/quick/minor/await?code=`challenge_id&display=embedded", + "AuthorizeContinuationEndpoint": "https://epicgames.com/id/login?continuation=`continuation&prompt=skip_merge%20skip_upgrade", + "AuthorizeCodeEndpoint": "https://epicgames.com/id/authorize?client_id=`client_id&response_type=code&scope=`scope&redirect_uri=`redirect_uri&display=popup&prompt=login", + "AuthorizeContinuationEmbeddedEndpoint": "https://epicgames.com/id/embedded/login?continuation=`continuation&prompt=skip_merge%20skip_upgrade", + "VerifyTokenInterval": 60.0, + "PollExpiresIn": 300, + "IdTokenCacheMinExpirySeconds": 300, + "AuthorizeEndpoint": "https://epicgames.com/id/authorize?exchange_code=`exchange_code&scope=`scope&prompt=skip_merge%20skip_upgrade", + "AccountPortalScheme": "eos.`client_id://epic/auth", + "bOfflineAccountToken": true + }, + "RateLimiter.ProgressionSnapshot.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "SubmitSnapshot", + "DeleteSnapshot" + ] + }, + "XMPP": { + "bEnabled": true, + "bEnableWebsockets": true, + "ThreadStackSize": 131072 + }, + "RateLimiter.AntiCheatServer.Operations": { + "MessageCount": 100000, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "QueryServiceStatus", + "SendClientMessage" + ] + }, + "Core.Log": { + "LogEOS": "verbose", + "LogEOSMessaging": "verbose", + "LogEOSConnect": "verbose", + "LogEOSAuth": "verbose", + "LogHttpSerialization": "verbose", + "LogCore": "verbose", + "LogHttp": "warning", + "LogStomp": "verbose", + "LogXmpp": "verbose", + "LogEOSSessions": "verbose" + }, + "UIClient": { + "FriendsURL": "https://epic-social-game-overlay-prod.ol.epicgames.com/index.html", + "SocialSPAClientId": "cf27c69fe66441e8a8a4e8faf396ee4c", + "VPCURLLocaleSuffix": "&lang=`code", + "FriendsURLExchangeCodeSuffix": "?exchange_code=`exchange_code", + "VPCURL": "https://epicgames.com/id/overlay/quick/minor/verify?code=`challenge_id" + }, + "RateLimiter.AntiCheatServer": { + "MessageCount": 100000, + "TimeIntervalInSeconds": 60.0 + }, + "Messaging.XMPP": { + "ReconnectionDelayJitter": 1.5, + "PingTimeout": 30, + "ReconnectionDelayBase": 4.0, + "ServerPort": 443, + "bPrivateChatFriendsOnly": true, + "ReconnectionDelayMax": 300.0, + "Domain": "prod.ol.epicgames.com", + "ReconnectionDelayBackoffExponent": 2.0, + "ServerAddr": "wss://xmpp-service-prod.ol.epicgames.com", + "PingInterval": 60 + }, + "RateLimiter.SDKConfigClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.EcomClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "QueryOwnership", + "QueryOwnershipToken", + "QueryEntitlement", + "QueryOffer", + "RedeemEntitlements", + "Checkout" + ] + }, + "PresenceClient": { + "EpicConnectNotificationWaitTime": 5.0, + "PresenceQueryTimeoutSeconds": 60.0, + "bSetOfflineOnLogoutEnabled": true, + "PresenceAutoUpdateInSeconds": 600.0, + "bSetOfflineOnShutdownEnabled": true + }, + "RateLimiter.CustomInvitesClient": { + "MessageCount": 50, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.ModsClient": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0 + }, + "RateLimiter.ConnectClient.Operations": { + "MessageCount": 300, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "LoginAccount", + "CreateAccount", + "LinkAccount", + "UnlinkAccount", + "CreateDeviceId", + "DeleteDeviceId", + "TransferDeviceIdAccount", + "QueryExternalAccountMappings", + "QueryProductUserIdMappings", + "VerifyIdToken" + ] + }, + "RateLimiter.AuthClient.SensitiveOperations": { + "MessageCount": 12, + "TimeIntervalInSeconds": 60.0, + "Operation": [ + "GenerateUserAuth" + ] + }, + "RateLimiter.ReportsClient": { + "MessageCount": 100, + "TimeIntervalInSeconds": 60.0 + } + }, + "services": { + "RTCService": { + "BaseUrl": "https://api.epicgames.dev/rtc" + }, + "DataStorageService": { + "BaseUrl": "https://api.epicgames.dev/datastorage" + }, + "AccountsEpicIdService": { + "BaseUrl": "https://api.epicgames.dev" + }, + "MetricsService": { + "BaseUrl": "https://api.epicgames.dev/datarouter" + }, + "EcommerceService": { + "BaseUrl": "https://ecommerceintegration-public-service-ecomprod02.ol.epicgames.com/ecommerceintegration" + }, + "KWSService": { + "BaseUrl": "https://api.epicgames.dev/kws" + }, + "AntiCheatService": { + "BaseUrl": "https://api.epicgames.dev/anticheat" + }, + "LobbyService": { + "BaseUrl": "https://api.epicgames.dev/lobby" + }, + "StatsAchievementsService": { + "BaseUrl": "https://api.epicgames.dev/stats" + }, + "PriceEngineService": { + "BaseUrl": "https://priceengine-public-service-ecomprod01.ol.epicgames.com/priceengine" + }, + "AccountsService": { + "BaseUrl": "https://egp-idsoc-proxy-prod.ol.epicgames.com/account", + "RedirectUrl": "accounts.epicgames.com" + }, + "EcommerceEpicIdService": { + "BaseUrl": "https://api.epicgames.dev/epic/ecom" + }, + "PaymentEpicIdService": { + "BaseUrl": "https://api.epicgames.dev/epic/payment" + }, + "SanctionsService": { + "BaseUrl": "https://api.epicgames.dev/sanctions" + }, + "FriendService": { + "BaseUrl": "https://egp-idsoc-proxy-prod.ol.epicgames.com/friends" + }, + "ReceiptValidatorService": { + "BaseUrl": "https://api.epicgames.dev/receipt-validator" + }, + "FriendEpicIdService": { + "BaseUrl": "https://api.epicgames.dev/epic/friends" + }, + "CatalogService": { + "BaseUrl": "https://catalog-public-service-prod06.ol.epicgames.com/catalog" + }, + "EOSAuthService": { + "BaseUrl": "https://api.epicgames.dev" + }, + "SessionsService": { + "BaseUrl": "https://api.epicgames.dev/matchmaking" + }, + "ModsService": { + "BaseUrl": "https://api.epicgames.dev/mods" + }, + "ReportsService": { + "BaseUrl": "https://api.epicgames.dev/player-reports" + }, + "ProgressionSnapshotService": { + "BaseUrl": "https://api.epicgames.dev/snapshots" + }, + "CustomInvitesService": { + "BaseUrl": "https://api.epicgames.dev/notifications" + }, + "PresenceService": { + "BaseUrl": "https://api.epicgames.dev/epic/presence" + }, + "TitleStorageService": { + "BaseUrl": "https://api.epicgames.dev/titlestorage" + }, + "StatsIngestService": { + "BaseUrl": "https://api.epicgames.dev/ingestion/stats" + }, + "LeaderboardsService": { + "BaseUrl": "https://api.epicgames.dev/leaderboards" + }, + "InventoryService": { + "BaseUrl": "https://api.epicgames.dev/inventory" + } + }, + "watermark": -934553538 +} diff --git a/lawin/start.bat b/lawin/start.bat new file mode 100644 index 0000000..0f299c7 --- /dev/null +++ b/lawin/start.bat @@ -0,0 +1,2 @@ +node index.js +pause diff --git a/lawin/structure/affiliate.js b/lawin/structure/affiliate.js new file mode 100644 index 0000000..7055ee8 --- /dev/null +++ b/lawin/structure/affiliate.js @@ -0,0 +1,27 @@ +const Express = require("express"); +const express = Express.Router(); + +express.get("/affiliate/api/public/affiliates/slug/:slug", async (req, res) => { + const SupportedCodes = require("./../responses/SAC.json"); + var ValidCode = false; + + SupportedCodes.forEach(code => { + if (req.params.slug.toLowerCase() == code.toLowerCase()) { + ValidCode = true; + return res.json({ + "id": code, + "slug": code, + "displayName": code, + "status": "ACTIVE", + "verified": false + }); + } + }) + + if (ValidCode == false) { + res.status(404); + res.json({}); + } +}) + +module.exports = express; \ No newline at end of file diff --git a/lawin/structure/cloudstorage.js b/lawin/structure/cloudstorage.js new file mode 100644 index 0000000..12f88df --- /dev/null +++ b/lawin/structure/cloudstorage.js @@ -0,0 +1,162 @@ +const Express = require("express"); +const express = Express.Router(); +const crypto = require("crypto"); +const fs = require("fs"); +const path = require("path"); +const functions = require("./functions.js"); + +express.use((req, res, next) => { + // Get raw body in encoding latin1 for ClientSettings + if (req.originalUrl.toLowerCase().startsWith("/fortnite/api/cloudstorage/user/") && req.method == "PUT") { + req.rawBody = ""; + req.setEncoding("latin1"); + + req.on("data", (chunk) => req.rawBody += chunk); + req.on("end", () => next()); + } + else return next(); +}) + +express.get("/fortnite/api/cloudstorage/system", async (req, res) => { + const memory = functions.GetVersionInfo(req); + + if (memory.build >= 9.40 && memory.build <= 10.40) { + return res.status(404).end(); + } + + const dir = path.join(__dirname, "..", "CloudStorage") + var CloudFiles = []; + + fs.readdirSync(dir).forEach(name => { + if (name.toLowerCase().endsWith(".ini")) { + const ParsedFile = fs.readFileSync(path.join(dir, name), 'utf-8'); + const ParsedStats = fs.statSync(path.join(dir, name)); + + CloudFiles.push({ + "uniqueFilename": name, + "filename": name, + "hash": crypto.createHash('sha1').update(ParsedFile).digest('hex'), + "hash256": crypto.createHash('sha256').update(ParsedFile).digest('hex'), + "length": ParsedFile.length, + "contentType": "application/octet-stream", + "uploaded": ParsedStats.mtime, + "storageType": "S3", + "storageIds": {}, + "doNotCache": true + }) + } + }); + + res.json(CloudFiles) +}) + +express.get("/fortnite/api/cloudstorage/system/:file", async (req, res) => { + const file = path.join(__dirname, "..", "CloudStorage", req.params.file); + if (fs.existsSync(file)) { + const ParsedFile = fs.readFileSync(file); + + return res.status(200).send(ParsedFile).end(); + } else { + res.status(200); + res.end(); + } +}) + +express.get("/fortnite/api/cloudstorage/user/*/:file", async (req, res) => { + try { + if (!fs.existsSync(path.join(process.env.LOCALAPPDATA, "LawinServer", "ClientSettings"))) { + fs.mkdirSync(path.join(process.env.LOCALAPPDATA, "LawinServer", "ClientSettings")); + } + } catch (err) {} + + res.set("Content-Type", "application/octet-stream") + + if (req.params.file.toLowerCase() != "clientsettings.sav") { + return res.status(404).json({ + "error": "file not found" + }); + } + + const memory = functions.GetVersionInfo(req); + + var currentBuildID = memory.CL; + + let file; + if (process.env.LOCALAPPDATA) file = path.join(process.env.LOCALAPPDATA, "LawinServer", "ClientSettings", `ClientSettings-${currentBuildID}.Sav`); + else file = path.join(__dirname, "..", "ClientSettings", `ClientSettings-${currentBuildID}.Sav`); + + if (fs.existsSync(file)) { + const ParsedFile = fs.readFileSync(file); + + return res.status(200).send(ParsedFile).end(); + } else { + res.status(200); + res.end(); + } +}) + +express.get("/fortnite/api/cloudstorage/user/:accountId", async (req, res) => { + try { + if (!fs.existsSync(path.join(process.env.LOCALAPPDATA, "LawinServer", "ClientSettings"))) { + fs.mkdirSync(path.join(process.env.LOCALAPPDATA, "LawinServer", "ClientSettings")); + } + } catch (err) {} + + res.set("Content-Type", "application/json") + + const memory = functions.GetVersionInfo(req); + + var currentBuildID = memory.CL; + + let file; + if (process.env.LOCALAPPDATA) file = path.join(process.env.LOCALAPPDATA, "LawinServer", "ClientSettings", `ClientSettings-${currentBuildID}.Sav`); + else file = path.join(__dirname, "..", "ClientSettings", `ClientSettings-${currentBuildID}.Sav`); + + if (fs.existsSync(file)) { + const ParsedFile = fs.readFileSync(file, 'latin1'); + const ParsedStats = fs.statSync(file); + + return res.json([{ + "uniqueFilename": "ClientSettings.Sav", + "filename": "ClientSettings.Sav", + "hash": crypto.createHash('sha1').update(ParsedFile).digest('hex'), + "hash256": crypto.createHash('sha256').update(ParsedFile).digest('hex'), + "length": Buffer.byteLength(ParsedFile), + "contentType": "application/octet-stream", + "uploaded": ParsedStats.mtime, + "storageType": "S3", + "storageIds": {}, + "accountId": req.params.accountId, + "doNotCache": true + }]); + } else { + return res.json([]); + } +}) + +express.put("/fortnite/api/cloudstorage/user/*/:file", async (req, res) => { + try { + if (!fs.existsSync(path.join(process.env.LOCALAPPDATA, "LawinServer", "ClientSettings"))) { + fs.mkdirSync(path.join(process.env.LOCALAPPDATA, "LawinServer", "ClientSettings")); + } + } catch (err) {} + + if (req.params.file.toLowerCase() != "clientsettings.sav") { + return res.status(404).json({ + "error": "file not found" + }); + } + + const memory = functions.GetVersionInfo(req); + + var currentBuildID = memory.CL; + + let file; + if (process.env.LOCALAPPDATA) file = path.join(process.env.LOCALAPPDATA, "LawinServer", "ClientSettings", `ClientSettings-${currentBuildID}.Sav`); + else file = path.join(__dirname, "..", "ClientSettings", `ClientSettings-${currentBuildID}.Sav`); + + fs.writeFileSync(file, req.rawBody, 'latin1'); + res.status(204).end(); +}) + +module.exports = express; \ No newline at end of file diff --git a/lawin/structure/contentpages.js b/lawin/structure/contentpages.js new file mode 100644 index 0000000..b8cc2a2 --- /dev/null +++ b/lawin/structure/contentpages.js @@ -0,0 +1,24 @@ +const Express = require("express"); +const express = Express.Router(); +const functions = require("./functions.js"); + +express.get("/content/api/pages/*", async (req, res) => { + const contentpages = functions.getContentPages(req); + + res.json(contentpages) +}) + +express.post("/api/v1/fortnite-br/surfaces/motd/target", async (req, res) => { + const motdTarget = JSON.parse(JSON.stringify(require("./../responses/Athena/motdTarget.json"))); + + try { + motdTarget.contentItems.forEach(item => { + item.contentFields.title = item.contentFields.title[req.body.language]; + item.contentFields.body = item.contentFields.body[req.body.language]; + }) + } catch (err) {} + + res.json(motdTarget) +}) + +module.exports = express; \ No newline at end of file diff --git a/lawin/structure/discovery.js b/lawin/structure/discovery.js new file mode 100644 index 0000000..bb6db31 --- /dev/null +++ b/lawin/structure/discovery.js @@ -0,0 +1,45 @@ +const Express = require("express"); +const express = Express.Router(); +const discovery = require("./../responses/Athena/Discovery/discovery_frontend.json"); + +express.post("*/discovery/surface/*", async (req, res) => { + res.json(discovery); +}) + +express.post("/links/api/fn/mnemonic", async (req, res) => { + var MnemonicArray = []; + + for (var i in discovery.Panels[0].Pages[0].results) { + MnemonicArray.push(discovery.Panels[0].Pages[0].results[i].linkData) + } + + res.json(MnemonicArray); +}) + +express.get("/links/api/fn/mnemonic/:playlist/related", async (req, res) => { + var response = { + "parentLinks": [], + "links": {} + }; + + if (req.params.playlist) { + for (var i in discovery.Panels[0].Pages[0].results) { + var linkData = discovery.Panels[0].Pages[0].results[i].linkData; + if (linkData.mnemonic == req.params.playlist) { + response.links[req.params.playlist] = linkData; + } + } + } + + res.json(response); +}) + +express.get("/links/api/fn/mnemonic/*", async (req, res) => { + for (var i in discovery.Panels[0].Pages[0].results) { + if (discovery.Panels[0].Pages[0].results[i].linkData.mnemonic == req.url.split("/").slice(-1)[0]) { + res.json(discovery.Panels[0].Pages[0].results[i].linkData); + } + } +}) + +module.exports = express; \ No newline at end of file diff --git a/lawin/structure/friends.js b/lawin/structure/friends.js new file mode 100644 index 0000000..e1bc795 --- /dev/null +++ b/lawin/structure/friends.js @@ -0,0 +1,122 @@ +const Express = require("express"); +const express = Express.Router(); +const fs = require("fs"); +const friendslist = require("./../responses/friendslist.json"); +const friendslist2 = require("./../responses/friendslist2.json"); +const functions = require("./functions.js"); + +express.get("/friends/api/v1/*/settings", async (req, res) => { + res.json({}) +}) + +express.get("/friends/api/v1/*/blocklist", async (req, res) => { + res.json([]) +}) + +express.get("/friends/api/public/friends/:accountId", async (req, res) => { + const memory = functions.GetVersionInfo(req); + + if (!friendslist.find(i => i.accountId == req.params.accountId)) { + var FriendObject = { + "accountId": req.params.accountId, + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": new Date().toISOString(), + "favorite": false + }; + + friendslist.push(FriendObject) + friendslist2.friends.push({ + "accountId": FriendObject.accountId, + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": FriendObject.favorite, + "created": FriendObject.created + }) + + functions.sendXmppMessageToAll({ + "payload": FriendObject, + "type": "com.epicgames.friends.core.apiobjects.Friend", + "timestamp": FriendObject.created + }) + + functions.sendXmppMessageToAll({ + "type": "FRIENDSHIP_REQUEST", + "timestamp": FriendObject.created, + "from": FriendObject.accountId, + "status": FriendObject.status + }) + + fs.writeFileSync("./responses/friendslist.json", JSON.stringify(friendslist, null, 2)); + fs.writeFileSync("./responses/friendslist2.json", JSON.stringify(friendslist2, null, 2)); + } + + if (memory.season >= 7) { + var friends = JSON.parse(JSON.stringify(friendslist)) + friends.splice(friendslist.findIndex(i => i.accountId == req.params.accountId), 1) + return res.json(friends); + } + + res.json(friendslist) +}) + +express.get("/friends/api/v1/:accountId/summary", async (req, res) => { + if (!friendslist2.friends.find(i => i.accountId == req.params.accountId)) { + var FriendObject = { + "accountId": req.params.accountId, + "groups": [], + "mutual": 0, + "alias": "", + "note": "", + "favorite": false, + "created": new Date().toISOString() + }; + + friendslist2.friends.push(FriendObject) + friendslist.push({ + "accountId": FriendObject.accountId, + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": FriendObject.created, + "favorite": FriendObject.favorite + }) + + functions.sendXmppMessageToAll({ + "payload": { + "accountId": FriendObject.accountId, + "status": "ACCEPTED", + "direction": "OUTBOUND", + "created": FriendObject.created, + "favorite": FriendObject.favorite + }, + "type": "com.epicgames.friends.core.apiobjects.Friend", + "timestamp": FriendObject.created + }) + + functions.sendXmppMessageToAll({ + "type": "FRIENDSHIP_REQUEST", + "timestamp": FriendObject.created, + "from": FriendObject.accountId, + "status": "ACCEPTED" + }) + + fs.writeFileSync("./responses/friendslist.json", JSON.stringify(friendslist, null, 2)); + fs.writeFileSync("./responses/friendslist2.json", JSON.stringify(friendslist2, null, 2)); + } + + res.json(friendslist2) +}) + +express.get("/friends/api/public/list/fortnite/*/recentPlayers", async (req, res) => { + res.json([]) +}) + +express.get("/friends/api/public/blocklist/*", async (req, res) => { + res.json({ + "blockedUsers": [] + }) +}) + +module.exports = express; \ No newline at end of file diff --git a/lawin/structure/functions.js b/lawin/structure/functions.js new file mode 100644 index 0000000..8157fb0 --- /dev/null +++ b/lawin/structure/functions.js @@ -0,0 +1,374 @@ +const XMLBuilder = require("xmlbuilder"); +const uuid = require("uuid"); + +async function sleep(ms) { + await new Promise((resolve, reject) => { + setTimeout(resolve, ms); + }) +} + +function GetVersionInfo(req) { + var memory = { + season: 0, + build: 0.0, + CL: "", + lobby: "" + } + + if (req.headers["user-agent"]) + { + var CL = ""; + + try { + var BuildID = req.headers["user-agent"].split("-")[3].split(",")[0] + if (!Number.isNaN(Number(BuildID))) { + CL = BuildID; + } + + if (Number.isNaN(Number(BuildID))) { + var BuildID = req.headers["user-agent"].split("-")[3].split(" ")[0] + if (!Number.isNaN(Number(BuildID))) { + CL = BuildID; + } + } + } catch (err) { + try { + var BuildID = req.headers["user-agent"].split("-")[1].split("+")[0] + if (!Number.isNaN(Number(BuildID))) { + CL = BuildID; + } + } catch (err) {} + } + + try { + var Build = req.headers["user-agent"].split("Release-")[1].split("-")[0]; + + if (Build.split(".").length == 3) { + Value = Build.split("."); + Build = Value[0] + "." + Value[1] + Value[2]; + } + + memory.season = Number(Build.split(".")[0]); + memory.build = Number(Build); + memory.CL = CL; + memory.lobby = `LobbySeason${memory.season}`; + + if (Number.isNaN(memory.season)) { + throw new Error(); + } + } catch (err) { + memory.season = 2; + memory.build = 2.0; + memory.CL = CL; + memory.lobby = "LobbyWinterDecor"; + } + } + + return memory; +} + +function getItemShop() { + const catalog = JSON.parse(JSON.stringify(require("./../responses/catalog.json"))); + const CatalogConfig = require("./../Config/catalog_config.json"); + + try { + for (var value in CatalogConfig) { + if (Array.isArray(CatalogConfig[value].itemGrants)) { + if (CatalogConfig[value].itemGrants.length != 0) { + const CatalogEntry = {"devName":"","offerId":"","fulfillmentIds":[],"dailyLimit":-1,"weeklyLimit":-1,"monthlyLimit":-1,"categories":[],"prices":[{"currencyType":"MtxCurrency","currencySubType":"","regularPrice":0,"finalPrice":0,"saleExpiration":"9999-12-02T01:12:00Z","basePrice":0}],"meta":{"SectionId":"Featured","TileSize":"Small"},"matchFilter":"","filterWeight":0,"appStoreId":[],"requirements":[],"offerType":"StaticPrice","giftInfo":{"bIsEnabled":false,"forcedGiftBoxTemplateId":"","purchaseRequirements":[],"giftRecordIds":[]},"refundable":true,"metaInfo":[{"key":"SectionId","value":"Featured"},{"key":"TileSize","value":"Small"}],"displayAssetPath":"","itemGrants":[],"sortPriority":0,"catalogGroupPriority":0}; + + if (value.toLowerCase().startsWith("daily")) { + catalog.storefronts.forEach((storefront, i) => { + if (storefront.name == "BRDailyStorefront") { + CatalogEntry.requirements = []; + CatalogEntry.itemGrants = []; + + for (var x in CatalogConfig[value].itemGrants) { + if (typeof CatalogConfig[value].itemGrants[x] == "string") { + if (CatalogConfig[value].itemGrants[x].length != 0) { + CatalogEntry.devName = CatalogConfig[value].itemGrants[0] + CatalogEntry.offerId = CatalogConfig[value].itemGrants[0] + + CatalogEntry.requirements.push({ "requirementType": "DenyOnItemOwnership", "requiredId": CatalogConfig[value].itemGrants[x], "minQuantity": 1 }) + CatalogEntry.itemGrants.push({ "templateId": CatalogConfig[value].itemGrants[x], "quantity": 1 }); + } + } + } + + CatalogEntry.prices[0].basePrice = CatalogConfig[value].price + CatalogEntry.prices[0].regularPrice = CatalogConfig[value].price + CatalogEntry.prices[0].finalPrice = CatalogConfig[value].price + + // Make featured items appear on the left side of the screen + CatalogEntry.sortPriority = -1 + + if (CatalogEntry.itemGrants.length != 0) { + catalog.storefronts[i].catalogEntries.push(CatalogEntry); + } + } + }) + } + + if (value.toLowerCase().startsWith("featured")) { + catalog.storefronts.forEach((storefront, i) => { + if (storefront.name == "BRWeeklyStorefront") { + CatalogEntry.requirements = []; + CatalogEntry.itemGrants = []; + + for (var x in CatalogConfig[value].itemGrants) { + if (typeof CatalogConfig[value].itemGrants[x] == "string") { + if (CatalogConfig[value].itemGrants[x].length != 0) { + CatalogEntry.devName = CatalogConfig[value].itemGrants[0] + CatalogEntry.offerId = CatalogConfig[value].itemGrants[0] + + CatalogEntry.requirements.push({ "requirementType": "DenyOnItemOwnership", "requiredId": CatalogConfig[value].itemGrants[x], "minQuantity": 1 }) + CatalogEntry.itemGrants.push({ "templateId": CatalogConfig[value].itemGrants[x], "quantity": 1 }); + } + } + } + + CatalogEntry.prices[0].basePrice = CatalogConfig[value].price + CatalogEntry.prices[0].regularPrice = CatalogConfig[value].price + CatalogEntry.prices[0].finalPrice = CatalogConfig[value].price + + CatalogEntry.meta.TileSize = "Normal" + CatalogEntry.metaInfo[1].value = "Normal" + + if (CatalogEntry.itemGrants.length != 0) { + catalog.storefronts[i].catalogEntries.push(CatalogEntry); + } + } + }) + } + } + } + } + } catch (err) {} + + return catalog; +} + +function getTheater(req) { + const memory = GetVersionInfo(req); + + var theater = JSON.stringify(require("./../responses/Campaign/worldstw.json")); + var Season = "Season" + memory.season; + + try { + if (memory.build >= 15.30) { + theater = theater.replace(/\/Game\//ig, "\/SaveTheWorld\/"); + theater = theater.replace(/\"DataTable\'\/SaveTheWorld\//ig, "\"DataTable\'\/Game\/"); + } + + var date = new Date(); + var hour = date.getHours(); + + // Set the 24-hour StW mission refresh date for version season 9 and above + if (memory.season >= 9) { + date.setHours(23, 59, 59, 999); + } else { + // Set the 6-hour StW mission refresh date for versions below season 9 + if (hour < 6) { + date.setHours(5, 59, 59, 999); + } else if (hour < 12) { + date.setHours(11, 59, 59, 999); + } else if (hour < 18) { + date.setHours(17, 59, 59, 999); + } else { + date.setHours(23, 59, 59, 999); + } + } + + date = date.toISOString(); + + theater = theater.replace(/2017-07-25T23:59:59.999Z/ig, date); + } catch (err) {} + + theater = JSON.parse(theater) + + if (theater.hasOwnProperty("Seasonal")) { + if (theater.Seasonal.hasOwnProperty(Season)) { + theater.theaters = theater.theaters.concat(theater.Seasonal[Season].theaters); + theater.missions = theater.missions.concat(theater.Seasonal[Season].missions); + theater.missionAlerts = theater.missionAlerts.concat(theater.Seasonal[Season].missionAlerts); + } + delete theater.Seasonal; + } + + return theater; +} + +function getContentPages(req) { + const memory = GetVersionInfo(req); + + const contentpages = JSON.parse(JSON.stringify(require("./../responses/contentpages.json"))); + + var Language = "en"; + + if (req.headers["accept-language"]) { + if (req.headers["accept-language"].includes("-") && req.headers["accept-language"] != "es-419" && req.headers["accept-language"] != "pt-BR") { + Language = req.headers["accept-language"].split("-")[0]; + } else { + Language = req.headers["accept-language"]; + } + } + + const modes = ["saveTheWorldUnowned", "battleRoyale", "creative", "saveTheWorld"]; + const news = ["savetheworldnews", "battleroyalenews"] + const motdnews = ["battleroyalenews", "battleroyalenewsv2"] + + try { + modes.forEach(mode => { + contentpages.subgameselectdata[mode].message.title = contentpages.subgameselectdata[mode].message.title[Language] + contentpages.subgameselectdata[mode].message.body = contentpages.subgameselectdata[mode].message.body[Language] + }) + } catch (err) {} + + try { + if (memory.build < 5.30) { + news.forEach(mode => { + contentpages[mode].news.messages[0].image = "https://fortnite-public-service-prod11.ol.epicgames.com/images/discord-s.png"; + contentpages[mode].news.messages[1].image = "https://fortnite-public-service-prod11.ol.epicgames.com/images/lawin-s.png"; + }) + } + } catch (err) {} + + try { + motdnews.forEach(news => { + contentpages[news].news.motds.forEach(motd => { + motd.title = motd.title[Language]; + motd.body = motd.body[Language]; + }) + }) + } catch (err) {} + + try { + const backgrounds = contentpages.dynamicbackgrounds.backgrounds.backgrounds; + const season = `season${memory.season}${memory.season >= 21 ? "00" : ""}`; + backgrounds[0].stage = season; + backgrounds[1].stage = season; + + if (memory.season == 10) { + backgrounds[0].stage = "seasonx"; + backgrounds[1].stage = "seasonx"; + } else if (memory.build == 11.31 || memory.build == 11.40) { + backgrounds[0].stage = "Winter19"; + backgrounds[1].stage = "Winter19"; + } else if (memory.build == 19.01) { + backgrounds[0].stage = "winter2021"; + backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/t-bp19-lobby-xmas-2048x1024-f85d2684b4af.png"; + contentpages.subgameinfo.battleroyale.image = "https://cdn2.unrealengine.com/19br-wf-subgame-select-512x1024-16d8bb0f218f.jpg"; + contentpages.specialoffervideo.bSpecialOfferEnabled = "true"; + } else if (memory.season == 20) { + backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/t-bp20-lobby-2048x1024-d89eb522746c.png"; + if (memory.build == 20.40) { + backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/t-bp20-40-armadillo-glowup-lobby-2048x2048-2048x2048-3b83b887cc7f.jpg"; + } + } else if (memory.season == 21) { + backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/s21-lobby-background-2048x1024-2e7112b25dc3.jpg"; + if (memory.build == 21.10) { + backgrounds[0].stage = "season2100"; + } + if (memory.build == 21.30) { + backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/nss-lobbybackground-2048x1024-f74a14565061.jpg"; + backgrounds[0].stage = "season2130"; + } + } else if (memory.season == 22) { + backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/t-bp22-lobby-square-2048x2048-2048x2048-e4e90c6e8018.jpg"; + } else if (memory.season == 23) { + backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/t-bp23-lobby-2048x1024-2048x1024-26f2c1b27f63.png"; + if (memory.build == 23.10) { + backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/t-bp23-winterfest-lobby-square-2048x2048-2048x2048-277a476e5ca6.png"; + contentpages.specialoffervideo.bSpecialOfferEnabled = "true"; + } + } else if (memory.season == 24) { + backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/t-ch4s2-bp-lobby-4096x2048-edde08d15f7e.jpg" + } + + else if (memory.season == 25) { + backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/s25-lobby-4k-4096x2048-4a832928e11f.jpg"; + backgrounds[1].backgroundimage = "https://cdn2.unrealengine.com/fn-shop-ch4s3-04-1920x1080-785ce1d90213.png"; + if (memory.build == 25.11) { + backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/t-s25-14dos-lobby-4096x2048-2be24969eee3.jpg"; + } + } + + } catch (err) {} + + return contentpages; +} + +function MakeSurvivorAttributes(templateId) { + const SurvivorData = require("./../responses/Campaign/survivorData.json"); + var SurvivorAttributes = { + "level": 1, + "item_seen": false, + "squad_slot_idx": -1, + "building_slot_used": -1 + }; + + if (SurvivorData.fixedAttributes.hasOwnProperty(templateId)) { + SurvivorAttributes = {...SurvivorAttributes, ...SurvivorData.fixedAttributes[templateId]}; + } + + if (!SurvivorAttributes.hasOwnProperty("gender")) { + SurvivorAttributes.gender = (Math.floor(Math.random() * (1 - 3) + 3)).toString(); // Set a random survivor gender ("1" = male, "2" = female) + } + + if (!SurvivorAttributes.hasOwnProperty("managerSynergy")) { + var randomNumber = Math.floor(Math.random() * SurvivorData.bonuses.length); + SurvivorAttributes.set_bonus = SurvivorData.bonuses[randomNumber]; + } + + if (!SurvivorAttributes.hasOwnProperty("personality")) { + var randomNumber = Math.floor(Math.random() * SurvivorData.personalities.length); + SurvivorAttributes.personality = SurvivorData.personalities[randomNumber]; + } + + if (!SurvivorAttributes.hasOwnProperty("portrait")) { + portraitFactor = SurvivorAttributes.personality; + if (SurvivorAttributes.hasOwnProperty("managerSynergy")) { + portraitFactor = SurvivorAttributes.managerSynergy; + } + + var gender = SurvivorAttributes.gender + var randomNumber = Math.floor(Math.random() * SurvivorData.portraits[portraitFactor][gender].length); + SurvivorAttributes.portrait = SurvivorData.portraits[portraitFactor][gender][randomNumber]; + } + + return SurvivorAttributes; +} + +function MakeID() { + return uuid.v4(); +} + +function sendXmppMessageToAll(body) { + if (global.Clients) { + if (typeof body == "object") body = JSON.stringify(body); + + global.Clients.forEach(ClientData => { + ClientData.client.send(XMLBuilder.create("message") + .attribute("from", "xmpp-admin@prod.ol.epicgames.com") + .attribute("xmlns", "jabber:client") + .attribute("to", ClientData.jid) + .element("body", `${body}`).up().toString()); + }); + } +} + +function DecodeBase64(str) { + return Buffer.from(str, 'base64').toString() +} + +module.exports = { + sleep, + GetVersionInfo, + getItemShop, + getTheater, + getContentPages, + MakeSurvivorAttributes, + MakeID, + sendXmppMessageToAll, + DecodeBase64 +} \ No newline at end of file diff --git a/lawin/structure/lightswitch.js b/lawin/structure/lightswitch.js new file mode 100644 index 0000000..1ebd3dc --- /dev/null +++ b/lawin/structure/lightswitch.js @@ -0,0 +1,47 @@ +const Express = require("express"); +const express = Express.Router(); + +express.get("/lightswitch/api/service/Fortnite/status", async (req, res) => { + res.json({ + "serviceInstanceId": "fortnite", + "status": "UP", + "message": "Fortnite is online", + "maintenanceUri": null, + "overrideCatalogIds": [ + "a7f138b2e51945ffbfdacc1af0541053" + ], + "allowedActions": [], + "banned": false, + "launcherInfoDTO": { + "appName": "Fortnite", + "catalogItemId": "4fe75bbc5a674f4f9b356b5c90567da5", + "namespace": "fn" + } + }); +}) + +express.get("/lightswitch/api/service/bulk/status", async (req, res) => { + res.json( + [{ + "serviceInstanceId": "fortnite", + "status": "UP", + "message": "fortnite is up.", + "maintenanceUri": null, + "overrideCatalogIds": [ + "a7f138b2e51945ffbfdacc1af0541053" + ], + "allowedActions": [ + "PLAY", + "DOWNLOAD" + ], + "banned": false, + "launcherInfoDTO": { + "appName": "Fortnite", + "catalogItemId": "4fe75bbc5a674f4f9b356b5c90567da5", + "namespace": "fn" + } + }] + ) +}) + +module.exports = express; \ No newline at end of file diff --git a/lawin/structure/main.js b/lawin/structure/main.js new file mode 100644 index 0000000..9b0a4a7 --- /dev/null +++ b/lawin/structure/main.js @@ -0,0 +1,494 @@ +const Express = require("express"); +const express = Express.Router(); +const fs = require("fs"); +const path = require("path"); +const functions = require("./functions.js"); + +express.get("/clearitemsforshop", async (req, res) => { + res.set("Content-Type", "text/plain"); + + const athena = require("./../profiles/athena.json"); + const CatalogConfig = require("./../Config/catalog_config.json"); + var StatChanged = false; + + for (var value in CatalogConfig) { + for (var i in CatalogConfig[value].itemGrants) { + if (Array.isArray(CatalogConfig[value].itemGrants)) { + for (var key in athena.items) { + if (typeof CatalogConfig[value].itemGrants[i] == "string") { + if (CatalogConfig[value].itemGrants[i].length != 0) { + if (CatalogConfig[value].itemGrants[i].toLowerCase() == athena.items[key].templateId.toLowerCase()) { + delete athena.items[key] + + StatChanged = true; + } + } + } + } + } + } + } + + if (StatChanged == true) { + athena.rvn += 1; + athena.commandRevision += 1; + + fs.writeFileSync("./profiles/athena.json", JSON.stringify(athena, null, 2)); + + res.send('Success'); + } else { + res.send('Failed, there are no items to remove') + } +}) + +express.get("/eulatracking/api/shared/agreements/fn*", async (req, res) => { + res.json({}) +}) + +express.get("/fortnite/api/game/v2/friendcodes/*/epic", async (req, res) => { + res.json([{ + "codeId": "L4WINS3RV3R", + "codeType": "CodeToken:FounderFriendInvite", + "dateCreated": "2024-04-02T21:37:00.420Z" + }, + { + "codeId": "playeereq", + "codeType": "CodeToken:FounderFriendInvite_XBOX", + "dateCreated": "2024-04-02T21:37:00.420Z" + }, + { + "codeId": "lawinscodelol", + "codeType": "CodeToken:MobileInvite", + "dateCreated": "2024-04-02T21:37:00.420Z" + }]) +}) + +express.get("/launcher/api/public/distributionpoints/", async (req, res) => { + res.json({ + "distributions": [ + "https://epicgames-download1.akamaized.net/", + "https://download.epicgames.com/", + "https://download2.epicgames.com/", + "https://download3.epicgames.com/", + "https://download4.epicgames.com/", + "https://lawinserver.ol.epicgames.com/" + ] + }); +}) + +express.get("/launcher/api/public/assets/*", async (req, res) => { + res.json({ + "appName": "FortniteContentBuilds", + "labelName": "LawinServer", + "buildVersion": "++Fortnite+Release-20.00-CL-19458861-Windows", + "catalogItemId": "5cb97847cee34581afdbc445400e2f77", + "expires": "9999-12-31T23:59:59.999Z", + "items": { + "MANIFEST": { + "signature": "LawinServer", + "distribution": "https://lawinserver.ol.epicgames.com/", + "path": "Builds/Fortnite/Content/CloudDir/LawinServer.manifest", + "hash": "55bb954f5596cadbe03693e1c06ca73368d427f3", + "additionalDistributions": [] + }, + "CHUNKS": { + "signature": "LawinServer", + "distribution": "https://lawinserver.ol.epicgames.com/", + "path": "Builds/Fortnite/Content/CloudDir/LawinServer.manifest", + "additionalDistributions": [] + } + }, + "assetId": "FortniteContentBuilds" + }); +}) + +express.get("/Builds/Fortnite/Content/CloudDir/*.manifest", async (req, res) => { + res.set("Content-Type", "application/octet-stream") + + const manifest = fs.readFileSync(path.join(__dirname, "..", "responses", "CloudDir", "LawinServer.manifest")); + + res.status(200).send(manifest).end(); +}) + +express.get("/Builds/Fortnite/Content/CloudDir/*.chunk", async (req, res) => { + res.set("Content-Type", "application/octet-stream") + + const chunk = fs.readFileSync(path.join(__dirname, "..", "responses", "CloudDir", "LawinServer.chunk")); + + res.status(200).send(chunk).end(); +}) + +express.get("/Builds/Fortnite/Content/CloudDir/*.ini", async (req, res) => { + const ini = fs.readFileSync(path.join(__dirname, "..", "responses", "CloudDir", "Full.ini")); + + res.status(200).send(ini).end(); +}) + +express.post("/fortnite/api/game/v2/grant_access/*", async (req, res) => { + res.json({}); + res.status(204); +}) + +express.post("/api/v1/user/setting", async (req, res) => { + res.json([]); +}) + +express.get("/waitingroom/api/waitingroom", async (req, res) => { + res.status(204); + res.end(); +}) + +express.get("/socialban/api/public/v1/*", async (req, res) => { + res.json({ + "bans": [], + "warnings": [] + }); +}) + +express.get("/fortnite/api/game/v2/events/tournamentandhistory/*/EU/WindowsClient", async (req, res) => { + res.json({}); +}) + +express.get("/fortnite/api/statsv2/account/:accountId", async (req, res) => { + res.json({ + "startTime": 0, + "endTime": 0, + "stats": {}, + "accountId": req.params.accountId + }); +}) + +express.get("/statsproxy/api/statsv2/account/:accountId", async (req, res) => { + res.json({ + "startTime": 0, + "endTime": 0, + "stats": {}, + "accountId": req.params.accountId + }); +}) + +express.get("/fortnite/api/stats/accountId/:accountId/bulk/window/alltime", async (req, res) => { + res.json({ + "startTime": 0, + "endTime": 0, + "stats": {}, + "accountId": req.params.accountId + }) +}) + +express.post("/fortnite/api/feedback/*", async (req, res) => { + res.status(200); + res.end(); +}) + +express.post("/fortnite/api/statsv2/query", async (req, res) => { + res.json([]); +}) + +express.post("/statsproxy/api/statsv2/query", async (req, res) => { + res.json([]); +}) + +express.post("/fortnite/api/game/v2/events/v2/setSubgroup/*", async (req, res) => { + res.status(204); + res.end(); +}) + +express.get("/fortnite/api/game/v2/enabled_features", async (req, res) => { + res.json([]) +}) + +express.get("/api/v1/events/Fortnite/download/*", async (req, res) => { + res.json({}) +}) + +express.get("/fortnite/api/game/v2/twitch/*", async (req, res) => { + res.status(200); + res.end(); +}) + +express.get("/fortnite/api/game/v2/world/info", async (req, res) => { + const worldstw = functions.getTheater(req); + + res.json(worldstw) +}) + +express.post("/fortnite/api/game/v2/chat/*/*/*/pc", async (req, res) => { + res.json({ "GlobalChatRooms": [{"roomName":"lawinserverglobal"}] }) +}) + +express.post("/fortnite/api/game/v2/chat/*/recommendGeneralChatRooms/pc", async (req, res) => { + res.json({}) +}) + +express.get("/presence/api/v1/_/*/last-online", async (req, res) => { + res.json({}) +}) + +express.get("/fortnite/api/receipts/v1/account/*/receipts", async (req, res) => { + res.json([]) +}) + +express.get("/fortnite/api/game/v2/leaderboards/cohort/:accountId", async (req, res) => { + res.json({ + "accountId": req.params.accountId, + "cohortAccounts": [ + req.params.accountId, + "Lawin", + "TI93", + "PRO100KatYT", + "Playeereq", + "Matteoki" + ], + "expiresAt": "9999-12-31T00:00:00.000Z", + "playlist": req.query.playlist + }) +}) + +express.post("/fortnite/api/leaderboards/type/group/stat/:statName/window/:statWindow", async (req, res) => { + var entries = []; + + for (var i = 0; i < req.body.length; i++) { + entries.push({ + "accountId": req.body[i], + "value": Math.floor(Math.random() * 68) + 1 + }) + } + + res.json({ + "entries": entries, + "statName": req.params.statName, + "statWindow": req.params.statWindow + }) + res.end(); +}); + +express.post("/fortnite/api/leaderboards/type/global/stat/:statName/window/:statWindow", async (req, res) => { + var HeroNames = [ + "Hawk", + "Banshee", + "Wildcat", + "Jonsey", + "Spitfire", + "Ramirez", + "Headhunter", + "Renegade", + "Harper", + "Knox", + "Hype", + "Bull", + "Hazard", + "Penny", + "Izza", + "Kyle", + "Luna", + "Crash", + "Edge", + "Scorpion", + "Scorch", + "Ken", + "Mari", + "Sarah", + "Grizzly", + "Eagle Eye", + "Southie", + "A.C.", + "Buzz", + "Quinn", + "Jess", + "Deadeye" + ] + + var entries = []; + + for (var i = 0; i < HeroNames.length; i++) { + entries.push({ + "accountId": HeroNames[i], + "value": Math.floor(Math.random() * 68) + 1 + }) + } + + res.json({ + "entries": entries, + "statName": req.params.statName, + "statWindow": req.params.statWindow + }) + res.end(); +}); + +express.get("/fortnite/api/game/v2/homebase/allowed-name-chars", async (req, res) => { + res.json({ + "ranges": [ + 48, + 57, + 65, + 90, + 97, + 122, + 192, + 255, + 260, + 265, + 280, + 281, + 286, + 287, + 304, + 305, + 321, + 324, + 346, + 347, + 350, + 351, + 377, + 380, + 1024, + 1279, + 1536, + 1791, + 4352, + 4607, + 11904, + 12031, + 12288, + 12351, + 12352, + 12543, + 12592, + 12687, + 12800, + 13055, + 13056, + 13311, + 13312, + 19903, + 19968, + 40959, + 43360, + 43391, + 44032, + 55215, + 55216, + 55295, + 63744, + 64255, + 65072, + 65103, + 65281, + 65470, + 131072, + 173791, + 194560, + 195103 + ], + "singlePoints": [ + 32, + 39, + 45, + 46, + 95, + 126 + ], + "excludedPoints": [ + 208, + 215, + 222, + 247 + ] + }) +}) + +express.post("/datarouter/api/v1/public/data", async (req, res) => { + res.status(204); + res.end(); +}) + +express.post("/api/v1/assets/Fortnite/*/*", async (req, res) => { + if (req.body.hasOwnProperty("FortCreativeDiscoverySurface") && req.body.FortCreativeDiscoverySurface == 0) { + const discovery_api_assets = require("./../responses/Athena/Discovery/discovery_api_assets.json"); + res.json(discovery_api_assets) + } + else { + res.json({ + "FortCreativeDiscoverySurface": { + "meta": { + "promotion": req.body.FortCreativeDiscoverySurface || 0 + }, + "assets": {} + } + }) + } +}) + +express.get("/region", async (req, res) => { + res.json({ + "continent": { + "code": "EU", + "geoname_id": 6255148, + "names": { + "de": "Europa", + "en": "Europe", + "es": "Europa", + "fr": "Europe", + "ja": "ヨーロッパ", + "pt-BR": "Europa", + "ru": "Европа", + "zh-CN": "欧洲" + } + }, + "country": { + "geoname_id": 2635167, + "is_in_european_union": false, + "iso_code": "GB", + "names": { + "de": "UK", + "en": "United Kingdom", + "es": "RU", + "fr": "Royaume Uni", + "ja": "英国", + "pt-BR": "Reino Unido", + "ru": "Британия", + "zh-CN": "英国" + } + }, + "subdivisions": [ + { + "geoname_id": 6269131, + "iso_code": "ENG", + "names": { + "de": "England", + "en": "England", + "es": "Inglaterra", + "fr": "Angleterre", + "ja": "イングランド", + "pt-BR": "Inglaterra", + "ru": "Англия", + "zh-CN": "英格兰" + } + }, + { + "geoname_id": 3333157, + "iso_code": "KEC", + "names": { + "en": "Royal Kensington and Chelsea" + } + } + ] + }) +}) + +// Parental Controls +express.all("/v1/epic-settings/public/users/*/values", async (req, res) => { + res.json({}) +}) + +express.get("/fortnite/api/game/v2/br-inventory/account/*", async (req, res) => { + res.json({ + "stash": { + "globalcash": 5000 + } + }) +}) + +module.exports = express; diff --git a/lawin/structure/matchmaking.js b/lawin/structure/matchmaking.js new file mode 100644 index 0000000..37615cf --- /dev/null +++ b/lawin/structure/matchmaking.js @@ -0,0 +1,87 @@ +const Express = require("express"); +const express = Express.Router(); +const fs = require("fs"); +const path = require("path"); +const iniparser = require("ini"); +const config = iniparser.parse(fs.readFileSync(path.join(__dirname, "..", "Config", "config.ini")).toString()); +const functions = require("./functions.js"); + +express.get("/fortnite/api/matchmaking/session/findPlayer/*", async (req, res) => { + res.status(200); + res.end(); +}) + +express.get("/fortnite/api/game/v2/matchmakingservice/ticket/player/*", async (req, res) => { + res.cookie("currentbuildUniqueId", req.query.bucketId.split(":")[0]); + + res.json({ + "serviceUrl": "ws://127.0.0.1:8080", + "ticketType": "mms-player", + "payload": "69=", + "signature": "420=" + }) + res.end(); +}) + +express.get("/fortnite/api/game/v2/matchmaking/account/:accountId/session/:sessionId", async (req, res) => { + res.json({ + "accountId": req.params.accountId, + "sessionId": req.params.sessionId, + "key": "AOJEv8uTFmUh7XM2328kq9rlAzeQ5xzWzPIiyKn2s7s=" + }) +}) + +express.get("/fortnite/api/matchmaking/session/:session_id", async (req, res) => { + res.json({ + "id": req.params.session_id, + "ownerId": functions.MakeID().replace(/-/ig, "").toUpperCase(), + "ownerName": "[DS]fortnite-liveeugcec1c2e30ubrcore0a-z8hj-1968", + "serverName": "[DS]fortnite-liveeugcec1c2e30ubrcore0a-z8hj-1968", + "serverAddress": config.GameServer.ip, + "serverPort": Number(config.GameServer.port), + "maxPublicPlayers": 220, + "openPublicPlayers": 175, + "maxPrivatePlayers": 0, + "openPrivatePlayers": 0, + "attributes": { + "REGION_s": "EU", + "GAMEMODE_s": "FORTATHENA", + "ALLOWBROADCASTING_b": true, + "SUBREGION_s": "GB", + "DCID_s": "FORTNITE-LIVEEUGCEC1C2E30UBRCORE0A-14840880", + "tenant_s": "Fortnite", + "MATCHMAKINGPOOL_s": "Any", + "STORMSHIELDDEFENSETYPE_i": 0, + "HOTFIXVERSION_i": 0, + "PLAYLISTNAME_s": "Playlist_DefaultSolo", + "SESSIONKEY_s": functions.MakeID().replace(/-/ig, "").toUpperCase(), + "TENANT_s": "Fortnite", + "BEACONPORT_i": 15009 + }, + "publicPlayers": [], + "privatePlayers": [], + "totalPlayers": 45, + "allowJoinInProgress": false, + "shouldAdvertise": false, + "isDedicated": false, + "usesStats": false, + "allowInvites": false, + "usesPresence": false, + "allowJoinViaPresence": true, + "allowJoinViaPresenceFriendsOnly": false, + "buildUniqueId": req.cookies.currentbuildUniqueId || "0", // buildUniqueId is different for every build, this uses the netver of the version you're currently using + "lastUpdated": new Date().toISOString(), + "started": false + }) +}) + +express.post("/fortnite/api/matchmaking/session/*/join", async (req, res) => { + res.status(204); + res.end(); +}) + +express.post("/fortnite/api/matchmaking/session/matchMakingRequest", async (req, res) => { + res.json([]) +}) + +module.exports = express; \ No newline at end of file diff --git a/lawin/structure/mcp.js b/lawin/structure/mcp.js new file mode 100644 index 0000000..36a52fa --- /dev/null +++ b/lawin/structure/mcp.js @@ -0,0 +1,7964 @@ +const Express = require("express"); +const express = Express.Router(); +const fs = require("fs"); +const path = require("path"); +const iniparser = require("ini"); +const config = iniparser.parse(fs.readFileSync(path.join(__dirname, "..", "Config", "config.ini")).toString()); +const functions = require("./functions.js"); +const catalog = functions.getItemShop(); + +express.use((req, res, next) => { + if (!req.query.profileId && req.originalUrl.toLowerCase().startsWith("/fortnite/api/game/v2/profile/")) { + return res.status(404).json({ + error: "Profile not defined." + }); + } + + fs.readdirSync("./profiles").forEach((file) => { + if (file.endsWith(".json")) { + const memory = functions.GetVersionInfo(req); + + const profile = require(`./../profiles/${file}`); + if (!profile.rvn) profile.rvn = 0; + if (!profile.items) profile.items = {} + if (!profile.stats) profile.stats = {} + if (!profile.stats.attributes) profile.stats.attributes = {} + if (!profile.commandRevision) profile.commandRevision = 0; + + if (file == "athena.json") { + var SeasonData = JSON.parse(JSON.stringify(require("./../responses/Athena/SeasonData.json"))); + profile.stats.attributes.season_num = memory.season; + + if (SeasonData[`Season${memory.season}`]) { + SeasonData = SeasonData[`Season${memory.season}`]; + + profile.stats.attributes.book_purchased = SeasonData.battlePassPurchased; + profile.stats.attributes.book_level = SeasonData.battlePassTier; + profile.stats.attributes.season_match_boost = SeasonData.battlePassXPBoost; + profile.stats.attributes.season_friend_match_boost = SeasonData.battlePassXPFriendBoost; + } + + fs.writeFileSync("./profiles/athena.json", JSON.stringify(profile, null, 2)); + } + } + }) + + return next(); +}); + +// Set support a creator code +express.post("/fortnite/api/game/v2/profile/*/client/SetAffiliateName", async (req, res) => { + const profile = require("./../profiles/common_core.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + const SupportedCodes = require("./../responses/SAC.json"); + SupportedCodes.forEach(code => { + if (req.body.affiliateName.toLowerCase() == code.toLowerCase() || req.body.affiliateName == "") { + profile.stats.attributes.mtx_affiliate_set_time = new Date().toISOString(); + profile.stats.attributes.mtx_affiliate = req.body.affiliateName; + + StatChanged = true; + } + }) + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "mtx_affiliate_set_time", + "value": profile.stats.attributes.mtx_affiliate_set_time + }) + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "mtx_affiliate", + "value": profile.stats.attributes.mtx_affiliate + }) + + fs.writeFileSync("./profiles/common_core.json", JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": "common_core", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Set STW banner +express.post("/fortnite/api/game/v2/profile/*/client/SetHomebaseBanner", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "profile0"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.homebaseBannerIconId && req.body.homebaseBannerColorId) { + switch (req.query.profileId) { + + case "profile0": + profile.stats.attributes.homebase.bannerIconId = req.body.homebaseBannerIconId; + profile.stats.attributes.homebase.bannerColorId = req.body.homebaseBannerColorId; + StatChanged = true; + break; + + case "common_public": + profile.stats.attributes.banner_icon = req.body.homebaseBannerIconId; + profile.stats.attributes.banner_color = req.body.homebaseBannerColorId; + StatChanged = true; + break; + + } + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + if (req.query.profileId == "profile0") { + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "homebase", + "value": profile.stats.attributes.homebase + }) + } + + if (req.query.profileId == "common_public") { + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "banner_icon", + "value": profile.stats.attributes.banner_icon + }) + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "banner_color", + "value": profile.stats.attributes.banner_color + }) + } + + fs.writeFileSync(`./profiles/${req.query.profileId || "profile0"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "profile0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Set Homebase Name STW +express.post("/fortnite/api/game/v2/profile/*/client/SetHomebaseName", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "profile0"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.homebaseName) { + switch (req.query.profileId) { + + case "profile0": + profile.stats.attributes.homebase.townName = req.body.homebaseName; + StatChanged = true; + break; + + case "common_public": + profile.stats.attributes.homebase_name = req.body.homebaseName; + StatChanged = true; + break; + + } + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + if (req.query.profileId == "profile0") { + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "homebase", + "value": profile.stats.attributes.homebase + }) + } + + if (req.query.profileId == "common_public") { + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "homebase_name", + "value": profile.stats.attributes.homebase_name + }) + } + + fs.writeFileSync(`./profiles/${req.query.profileId || "profile0"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "profile0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Buy skill tree perk STW +express.post("/fortnite/api/game/v2/profile/*/client/PurchaseHomebaseNode", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "profile0"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + const ID = functions.MakeID(); + + if (req.body.nodeId) { + profile.items[ID] = { + "templateId": `HomebaseNode:${req.body.nodeId}`, + "attributes": { + "item_seen": true + }, + "quantity": 1 + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": profile.items[ID] + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "profile0"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "profile0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Open Winterfest presents (11.31, 19.01 & 23.10) +express.post("/fortnite/api/game/v2/profile/*/client/UnlockRewardNode", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "athena"}.json`); + const common_core = require("./../profiles/common_core.json"); + const WinterFestIDS = require("./../responses/Athena/winterfestRewards.json"); + const memory = functions.GetVersionInfo(req); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var MultiUpdate = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + var CommonCoreChanged = false; + var ItemExists = false; + var Season = "Season" + memory.season; + + const GiftID = functions.MakeID(); + profile.items[GiftID] = {"templateId":"GiftBox:gb_winterfestreward","attributes":{"max_level_bonus":0,"fromAccountId":"","lootList":[],"level":1,"item_seen":false,"xp":0,"giftedOn":new Date().toISOString(),"params":{"SubGame":"Athena","winterfestGift":"true"},"favorite":false},"quantity":1}; + + if (req.body.nodeId && req.body.rewardGraphId) { + for (var i = 0; i < WinterFestIDS[Season][req.body.nodeId].length; i++) { + var ID = functions.MakeID(); + Reward = WinterFestIDS[Season][req.body.nodeId][i] + + if (Reward.toLowerCase().startsWith("homebasebannericon:")) { + if (CommonCoreChanged == false) { + MultiUpdate.push({ + "profileRevision": common_core.rvn || 0, + "profileId": "common_core", + "profileChangesBaseRevision": common_core.rvn || 0, + "profileChanges": [], + "profileCommandRevision": common_core.commandRevision || 0, + }) + + CommonCoreChanged = true; + } + + for (var key in common_core.items) { + if (common_core.items[key].templateId.toLowerCase() == Reward.toLowerCase()) { + common_core.items[key].attributes.item_seen = false; + ID = key; + ItemExists = true; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": common_core.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + common_core.items[ID] = { + "templateId": Reward, + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": common_core.items[ID] + }) + } + + ItemExists = false; + + common_core.rvn += 1; + common_core.commandRevision += 1; + + MultiUpdate[0].profileRevision = common_core.rvn || 0; + MultiUpdate[0].profileCommandRevision = common_core.commandRevision || 0; + + profile.items[GiftID].attributes.lootList.push({"itemType":Reward,"itemGuid":ID,"itemProfile":"common_core","attributes":{"creation_time":new Date().toISOString()},"quantity":1}) + } + + if (!Reward.toLowerCase().startsWith("homebasebannericon:")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase() == Reward.toLowerCase()) { + profile.items[key].attributes.item_seen = false; + ID = key; + ItemExists = true; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": profile.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + profile.items[ID] = { + "templateId": Reward, + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": profile.items[ID] + }) + } + + ItemExists = false; + + profile.items[GiftID].attributes.lootList.push({"itemType":Reward,"itemGuid":ID,"itemProfile":"athena","attributes":{"creation_time":new Date().toISOString()},"quantity":1}) + } + } + profile.items[req.body.rewardGraphId].attributes.reward_keys[0].unlock_keys_used += 1; + profile.items[req.body.rewardGraphId].attributes.reward_nodes_claimed.push(req.body.nodeId); + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": GiftID, + "item": profile.items[GiftID] + }) + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.rewardGraphId, + "attributeName": "reward_keys", + "attributeValue": profile.items[req.body.rewardGraphId].attributes.reward_keys + }) + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.rewardGraphId, + "attributeName": "reward_nodes_claimed", + "attributeValue": profile.items[req.body.rewardGraphId].attributes.reward_nodes_claimed + }) + + if (memory.season == 11) { + profile.items.S11_GIFT_KEY.quantity -= 1; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": "S11_GIFT_KEY", + "quantity": profile.items.S11_GIFT_KEY.quantity + }) + } + + fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); + if (CommonCoreChanged == true) { + fs.writeFileSync("./profiles/common_core.json", JSON.stringify(common_core, null, 2)); + } + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "multiUpdate": MultiUpdate, + "responseVersion": 1 + }) + res.end(); +}); + +// Remove gift box +express.post("/fortnite/api/game/v2/profile/*/client/RemoveGiftBox", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "athena"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + // Gift box ID on 11.31 + if (req.body.giftBoxItemId) { + var id = req.body.giftBoxItemId; + + delete profile.items[id]; + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }) + + StatChanged = true; + } + + // Gift box ID on 19.01 + if (req.body.giftBoxItemIds) { + for (var i in req.body.giftBoxItemIds) { + var id = req.body.giftBoxItemIds[i]; + + delete profile.items[id]; + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }) + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Set party assist quest +express.post("/fortnite/api/game/v2/profile/*/client/SetPartyAssistQuest", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "athena"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (profile.stats.attributes.hasOwnProperty("party_assist_quest")) { + profile.stats.attributes.party_assist_quest = req.body.questToPinAsPartyAssist || ""; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "party_assist_quest", + "value": profile.stats.attributes.party_assist_quest + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Set pinned BR quest +express.post("/fortnite/api/game/v2/profile/*/client/AthenaPinQuest", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "athena"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (profile.stats.attributes.hasOwnProperty("pinned_quest")) { + profile.stats.attributes.pinned_quest = req.body.pinnedQuest || ""; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "pinned_quest", + "value": profile.stats.attributes.pinned_quest + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Set pinned STW quests +express.post("/fortnite/api/game/v2/profile/*/client/SetPinnedQuests", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.pinnedQuestIds) { + profile.stats.attributes.client_settings.pinnedQuestInstances = req.body.pinnedQuestIds; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "client_settings", + "value": profile.stats.attributes.client_settings + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// 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 DailyQuestIDS = JSON.parse(JSON.stringify(require("./../responses/quests.json"))); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var Notifications = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.query.profileId == "profile0" || req.query.profileId == "campaign") { + DailyQuestIDS = DailyQuestIDS.SaveTheWorld.Daily + } + + if (req.query.profileId == "athena") { + DailyQuestIDS = DailyQuestIDS.BattleRoyale.Daily + } + + const NewQuestID = functions.MakeID(); + var randomNumber = Math.floor(Math.random() * DailyQuestIDS.length); + + for (var key in profile.items) { + while (DailyQuestIDS[randomNumber].templateId.toLowerCase() == profile.items[key].templateId.toLowerCase()) { + randomNumber = Math.floor(Math.random() * DailyQuestIDS.length); + } + } + + if (req.body.questId && profile.stats.attributes.quest_manager.dailyQuestRerolls >= 1) { + profile.stats.attributes.quest_manager.dailyQuestRerolls -= 1; + + delete profile.items[req.body.questId]; + + profile.items[NewQuestID] = { + "templateId": DailyQuestIDS[randomNumber].templateId, + "attributes": { + "creation_time": new Date().toISOString(), + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": false, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": new Date().toISOString(), + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }; + + for (var i in DailyQuestIDS[randomNumber].objectives) { + profile.items[NewQuestID].attributes[`completion_${DailyQuestIDS[randomNumber].objectives[i].toLowerCase()}`] = 0 + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "quest_manager", + "value": profile.stats.attributes.quest_manager + }) + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": NewQuestID, + "item": profile.items[NewQuestID] + }) + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": req.body.questId + }) + + Notifications.push({ + "type": "dailyQuestReroll", + "primary": true, + "newQuestId": DailyQuestIDS[randomNumber].templateId + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Mark New Quest Notification Sent +express.post("/fortnite/api/game/v2/profile/*/client/MarkNewQuestNotificationSent", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "athena"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.itemIds) { + for (var i in req.body.itemIds) { + var id = req.body.itemIds[i]; + + profile.items[id].attributes.sent_new_notification = true + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": id, + "attributeName": "sent_new_notification", + "attributeValue": true + }) + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Check for new quests +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 memory = functions.GetVersionInfo(req); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + 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") { + DailyQuestIDS = QuestIDS.SaveTheWorld.Daily + + if (QuestIDS.SaveTheWorld.hasOwnProperty(`Season${memory.season}`)) { + SeasonQuestIDS = QuestIDS.SaveTheWorld[`Season${memory.season}`] + } + + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("quest:daily")) { + QuestCount += 1; + } + } + + // Grant completed founder's pack quests. + if (config.Profile.bGrantFoundersPacks == true) { + var QuestsToGrant = [ + "Quest:foundersquest_getrewards_0_1", + "Quest:foundersquest_getrewards_1_2", + "Quest:foundersquest_getrewards_2_3", + "Quest:foundersquest_getrewards_3_4", + "Quest:foundersquest_chooseherobundle", + "Quest:foundersquest_getrewards_4_5", + "Quest:foundersquest_herobundle_nochoice" + ] + + for (var i in QuestsToGrant) { + var bSkipThisQuest = false; + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase() == QuestsToGrant[i].toLowerCase()) { + bSkipThisQuest = true; + } + } + if (bSkipThisQuest == true) { + continue; + } + + var ItemID = functions.MakeID(); + var Item = { + "templateId": QuestsToGrant[i], + "attributes": { + "creation_time": "min", + "quest_state": "Completed", + "last_state_change_time": new Date().toISOString(), + "level": -1, + "sent_new_notification": true, + "quest_rarity": "uncommon", + "xp_reward_scalar": 1 + }, + "quantity": 1 + } + profile.items[ItemID] = Item + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + StatChanged = true; + } + } + } + + if (req.query.profileId == "athena") { + DailyQuestIDS = QuestIDS.BattleRoyale.Daily + + if (QuestIDS.BattleRoyale.hasOwnProperty(`Season${memory.season}`)) { + SeasonQuestIDS = QuestIDS.BattleRoyale[`Season${memory.season}`] + } + + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("quest:athenadaily")) { + QuestCount += 1; + } + } + } + + if (profile.stats.attributes.hasOwnProperty("quest_manager")) { + if (profile.stats.attributes.quest_manager.hasOwnProperty("dailyLoginInterval")) { + if (profile.stats.attributes.quest_manager.dailyLoginInterval.includes("T")) { + var DailyLoginDate = (profile.stats.attributes.quest_manager.dailyLoginInterval).split("T")[0]; + + if (DailyLoginDate == DateFormat) { + ShouldGiveQuest = false; + } else { + ShouldGiveQuest = true; + if (profile.stats.attributes.quest_manager.dailyQuestRerolls <= 0) { + profile.stats.attributes.quest_manager.dailyQuestRerolls += 1; + } + } + } + } + } + + if (QuestCount < 3 && ShouldGiveQuest == true) { + const NewQuestID = functions.MakeID(); + var randomNumber = Math.floor(Math.random() * DailyQuestIDS.length); + + for (var key in profile.items) { + while (DailyQuestIDS[randomNumber].templateId.toLowerCase() == profile.items[key].templateId.toLowerCase()) { + randomNumber = Math.floor(Math.random() * DailyQuestIDS.length); + } + } + + profile.items[NewQuestID] = { + "templateId": DailyQuestIDS[randomNumber].templateId, + "attributes": { + "creation_time": new Date().toISOString(), + "level": -1, + "item_seen": false, + "playlists": [], + "sent_new_notification": false, + "challenge_bundle_id": "", + "xp_reward_scalar": 1, + "challenge_linked_quest_given": "", + "quest_pool": "", + "quest_state": "Active", + "bucket": "", + "last_state_change_time": new Date().toISOString(), + "challenge_linked_quest_parent": "", + "max_level_bonus": 0, + "xp": 0, + "quest_rarity": "uncommon", + "favorite": false + }, + "quantity": 1 + }; + + for (var i in DailyQuestIDS[randomNumber].objectives) { + profile.items[NewQuestID].attributes[`completion_${DailyQuestIDS[randomNumber].objectives[i].toLowerCase()}`] = 0 + } + + profile.stats.attributes.quest_manager.dailyLoginInterval = new Date().toISOString(); + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": NewQuestID, + "item": profile.items[NewQuestID] + }) + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "quest_manager", + "value": profile.stats.attributes.quest_manager + }) + + StatChanged = true; + } + } catch (err) {} + + for (var key in profile.items) { + 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${memory.season}-`)) { + delete profile.items[key]; + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": key + }) + + StatChanged = true; + } + } + } + + if (SeasonQuestIDS) { + if (req.query.profileId == "athena") { + 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": new Date().toISOString(), + "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": new Date().toISOString(), + "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": new Date().toISOString(), + "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.toLowerCase()}`] = Quest.objectives[i].count; + } else { + profile.items[Quest.itemGuid].attributes[`completion_${Quest.objectives[i].name.toLowerCase()}`] = 0; + } + } + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": Quest.itemGuid, + "item": profile.items[Quest.itemGuid] + }) + + StatChanged = true; + } + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Reset item STW +express.post("/fortnite/api/game/v2/profile/*/client/RefundItem", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.targetItemId) { + profile.items[req.body.targetItemId].templateId = `${profile.items[req.body.targetItemId].templateId.replace(/\d$/, '')}1` + profile.items[req.body.targetItemId].attributes.level = 1; + profile.items[req.body.targetItemId].attributes.refundable = false; + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + const ID = functions.MakeID(); + + profile.items[ID] = profile.items[req.body.targetItemId]; + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": profile.items[ID] + }) + + delete profile.items[req.body.targetItemId] + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": req.body.targetItemId + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Refund V-Bucks purchase +express.post("/fortnite/api/game/v2/profile/*/client/RefundMtxPurchase", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "common_core"}.json`); + const ItemProfile = require("./../profiles/athena.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var MultiUpdate = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + var ItemGuids = []; + + if (req.body.purchaseId) { + MultiUpdate.push({ + "profileRevision": ItemProfile.rvn || 0, + "profileId": "athena", + "profileChangesBaseRevision": ItemProfile.rvn || 0, + "profileChanges": [], + "profileCommandRevision": ItemProfile.commandRevision || 0, + }) + + profile.stats.attributes.mtx_purchase_history.refundsUsed += 1; + profile.stats.attributes.mtx_purchase_history.refundCredits -= 1; + + for (var i in profile.stats.attributes.mtx_purchase_history.purchases) { + if (profile.stats.attributes.mtx_purchase_history.purchases[i].purchaseId == req.body.purchaseId) { + for (var x in profile.stats.attributes.mtx_purchase_history.purchases[i].lootResult) { + ItemGuids.push(profile.stats.attributes.mtx_purchase_history.purchases[i].lootResult[x].itemGuid) + } + + profile.stats.attributes.mtx_purchase_history.purchases[i].refundDate = new Date().toISOString(); + + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) { + if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") { + profile.items[key].quantity += profile.stats.attributes.mtx_purchase_history.purchases[i].totalMtxPaid; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": key, + "quantity": profile.items[key].quantity + }) + + break; + } + } + } + } + } + + for (var i in ItemGuids) { + try { + delete ItemProfile.items[ItemGuids[i]] + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemRemoved", + "itemId": ItemGuids[i] + }) + } catch (err) {} + } + + ItemProfile.rvn += 1; + ItemProfile.commandRevision += 1; + profile.rvn += 1; + profile.commandRevision += 1; + + StatChanged = true; + } + + if (StatChanged == true) { + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "mtx_purchase_history", + "value": profile.stats.attributes.mtx_purchase_history + }) + + MultiUpdate[0].profileRevision = ItemProfile.rvn || 0; + MultiUpdate[0].profileCommandRevision = ItemProfile.commandRevision || 0; + + fs.writeFileSync(`./profiles/${req.query.profileId || "common_core"}.json`, JSON.stringify(profile, null, 2)); + fs.writeFileSync(`./profiles/athena.json`, JSON.stringify(ItemProfile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "common_core", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "multiUpdate": MultiUpdate, + "responseVersion": 1 + }) + res.end(); +}); + +// Increase a named counter value (e.g. when selecting a game mode) +express.post("/fortnite/api/game/v2/profile/*/client/IncrementNamedCounterStat", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "profile0"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.counterName && profile.stats.attributes.hasOwnProperty("named_counters")) { + if (profile.stats.attributes.named_counters.hasOwnProperty(req.body.counterName)) { + profile.stats.attributes.named_counters[req.body.counterName].current_count += 1; + profile.stats.attributes.named_counters[req.body.counterName].last_incremented_time = new Date().toISOString(); + + StatChanged = true; + } + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "named_counters", + "value": profile.stats.attributes.named_counters + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "profile0"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "profile0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Claim STW daily reward +express.post("/fortnite/api/game/v2/profile/*/client/ClaimLoginReward", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + const DailyRewards = require("./../responses/Campaign/dailyRewards.json"); + const memory = functions.GetVersionInfo(req); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var Notifications = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + var DateFormat = (new Date().toISOString()).split("T")[0] + "T00:00:00.000Z"; + + if (profile.stats.attributes.daily_rewards.lastClaimDate != DateFormat) { + profile.stats.attributes.daily_rewards.nextDefaultReward += 1; + profile.stats.attributes.daily_rewards.totalDaysLoggedIn += 1; + profile.stats.attributes.daily_rewards.lastClaimDate = DateFormat; + profile.stats.attributes.daily_rewards.additionalSchedules.founderspackdailyrewardtoken.rewardsClaimed += 1; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "daily_rewards", + "value": profile.stats.attributes.daily_rewards + }) + + if (memory.season < 7) { + var Day = profile.stats.attributes.daily_rewards.totalDaysLoggedIn % 336; + Notifications.push({ + "type": "daily_rewards", + "primary": true, + "daysLoggedIn": profile.stats.attributes.daily_rewards.totalDaysLoggedIn, + "items": [DailyRewards[Day]] + }) + } + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Update quest client objectives +express.post("/fortnite/api/game/v2/profile/*/client/UpdateQuestClientObjectives", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.advance) { + for (var i in req.body.advance) { + var QuestsToUpdate = []; + + for (var x in profile.items) { + if (profile.items[x].templateId.toLowerCase().startsWith("quest:")) { + for (var y in profile.items[x].attributes) { + if (y.toLowerCase() == `completion_${req.body.advance[i].statName}`) { + QuestsToUpdate.push(x) + } + } + } + } + + for (var i = 0; i < QuestsToUpdate.length; i++) { + var bIncomplete = false; + + profile.items[QuestsToUpdate[i]].attributes[`completion_${req.body.advance[i].statName}`] = req.body.advance[i].count; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": QuestsToUpdate[i], + "attributeName": `completion_${req.body.advance[i].statName}`, + "attributeValue": req.body.advance[i].count + }) + + if (profile.items[QuestsToUpdate[i]].attributes.quest_state.toLowerCase() != "claimed") { + for (var x in profile.items[QuestsToUpdate[i]].attributes) { + if (x.toLowerCase().startsWith("completion_")) { + if (profile.items[QuestsToUpdate[i]].attributes[x] == 0) { + bIncomplete = true; + } + } + } + + if (bIncomplete == false) { + profile.items[QuestsToUpdate[i]].attributes.quest_state = "Claimed"; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": QuestsToUpdate[i], + "attributeName": "quest_state", + "attributeValue": profile.items[QuestsToUpdate[i]].attributes.quest_state + }) + } + } + + StatChanged = true; + } + } + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Equip team perk STW +express.post("/fortnite/api/game/v2/profile/*/client/AssignTeamPerkToLoadout", async (req, res) => { + const profile = require("./../profiles/campaign.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.loadoutId) { + profile.items[req.body.loadoutId].attributes.team_perk = req.body.teamPerkId || ""; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.loadoutId, + "attributeName": "team_perk", + "attributeValue": profile.items[req.body.loadoutId].attributes.team_perk + }) + + fs.writeFileSync("./profiles/campaign.json", JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Equip gadget STW +express.post("/fortnite/api/game/v2/profile/*/client/AssignGadgetToLoadout", async (req, res) => { + const profile = require("./../profiles/campaign.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.loadoutId) { + switch (req.body.slotIndex) { + + case 0: + if (req.body.gadgetId.toLowerCase() == profile.items[req.body.loadoutId].attributes.gadgets[1].gadget.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.gadgets[1].gadget = ""; + } + profile.items[req.body.loadoutId].attributes.gadgets[req.body.slotIndex].gadget = req.body.gadgetId || ""; + StatChanged = true; + break; + + case 1: + if (req.body.gadgetId.toLowerCase() == profile.items[req.body.loadoutId].attributes.gadgets[0].gadget.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.gadgets[0].gadget = ""; + } + profile.items[req.body.loadoutId].attributes.gadgets[req.body.slotIndex].gadget = req.body.gadgetId || ""; + StatChanged = true; + break; + + } + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.loadoutId, + "attributeName": "gadgets", + "attributeValue": profile.items[req.body.loadoutId].attributes.gadgets + }) + + fs.writeFileSync("./profiles/campaign.json", JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Assign worker to squad STW +express.post("/fortnite/api/game/v2/profile/*/client/AssignWorkerToSquad", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "profile0"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.characterId) { + for (var key in profile.items) { + if (profile.items[key].hasOwnProperty('attributes')) { + if (profile.items[key].attributes.hasOwnProperty('squad_id') && profile.items[key].attributes.hasOwnProperty('squad_slot_idx')) { + if (profile.items[key].attributes.squad_id != "" && profile.items[key].attributes.squad_slot_idx != -1) { + if (profile.items[key].attributes.squad_id.toLowerCase() == req.body.squadId.toLowerCase() && profile.items[key].attributes.squad_slot_idx == req.body.slotIndex) { + profile.items[key].attributes.squad_id = ""; + profile.items[key].attributes.squad_slot_idx = 0; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "squad_id", + "attributeValue": profile.items[key].attributes.squad_id + }) + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "squad_slot_idx", + "attributeValue": profile.items[key].attributes.squad_slot_idx + }) + } + } + } + } + } + } + + if (req.body.characterId) { + profile.items[req.body.characterId].attributes.squad_id = req.body.squadId || ""; + profile.items[req.body.characterId].attributes.squad_slot_idx = req.body.slotIndex || 0; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.characterId, + "attributeName": "squad_id", + "attributeValue": profile.items[req.body.characterId].attributes.squad_id + }) + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.characterId, + "attributeName": "squad_slot_idx", + "attributeValue": profile.items[req.body.characterId].attributes.squad_slot_idx + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "profile0"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "profile0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Assign multiple workers to squad STW +express.post("/fortnite/api/game/v2/profile/*/client/AssignWorkerToSquadBatch", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "profile0"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.characterIds && req.body.squadIds && req.body.slotIndices) { + for (var i in req.body.characterIds) { + for (var key in profile.items) { + if (profile.items[key].hasOwnProperty('attributes')) { + if (profile.items[key].attributes.hasOwnProperty('squad_id') && profile.items[key].attributes.hasOwnProperty('squad_slot_idx')) { + if (profile.items[key].attributes.squad_id != "" && profile.items[key].attributes.squad_slot_idx != -1) { + if (profile.items[key].attributes.squad_id.toLowerCase() == req.body.squadIds[i].toLowerCase() && profile.items[key].attributes.squad_slot_idx == req.body.slotIndices[i]) { + profile.items[key].attributes.squad_id = ""; + profile.items[key].attributes.squad_slot_idx = 0; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "squad_id", + "attributeValue": profile.items[key].attributes.squad_id + }) + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "squad_slot_idx", + "attributeValue": profile.items[key].attributes.squad_slot_idx + }) + } + } + } + } + } + + profile.items[req.body.characterIds[i]].attributes.squad_id = req.body.squadIds[i] || ""; + profile.items[req.body.characterIds[i]].attributes.squad_slot_idx = req.body.slotIndices[i] || 0; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.characterIds[i], + "attributeName": "squad_id", + "attributeValue": profile.items[req.body.characterIds[i]].attributes.squad_id + }) + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.characterIds[i], + "attributeName": "squad_slot_idx", + "attributeValue": profile.items[req.body.characterIds[i]].attributes.squad_slot_idx + }) + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "profile0"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "profile0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Claim STW quest reward +express.post("/fortnite/api/game/v2/profile/*/client/ClaimQuestReward", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + const common_core = require("./../profiles/common_core.json"); + const theater0 = require("./../profiles/theater0.json"); + var Rewards = require("./../responses/Campaign/rewards.json").quest; + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var MultiUpdate = []; + var Notifications = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + var TheaterStatChanged = false; + var CommonCoreStatChanged = false; + + if (req.body.questId) { + var questTemplateId = []; + for (var key in profile.items) { + if (req.body.questId.toLowerCase() == key.toLowerCase()) { + questTemplateId = profile.items[key].templateId.toLowerCase(); + } + } + + if (questTemplateId && Rewards.hasOwnProperty(questTemplateId)) { + if (req.body.selectedRewardIndex != -1 && Rewards[questTemplateId].selectableRewards) { + Rewards = Rewards[questTemplateId].selectableRewards[req.body.selectedRewardIndex].rewards; + } + else { + Rewards = Rewards[questTemplateId].rewards; + } + + MultiUpdate.push({ + "profileRevision": theater0.rvn || 0, + "profileId": "theater0", + "profileChangesBaseRevision": theater0.rvn || 0, + "profileChanges": [], + "profileCommandRevision": theater0.commandRevision || 0, + }) + + if (req.query.profileId == "campaign") { + MultiUpdate.push({ + "profileRevision": common_core.rvn || 0, + "profileId": "common_core", + "profileChangesBaseRevision": common_core.rvn || 0, + "profileChanges": [], + "profileCommandRevision": common_core.commandRevision || 0, + }) + } + + Notifications.push({ + "type": "questClaim", + "primary": true, + "questId": questTemplateId, + "loot": { + "items": [] + } + }) + + for (var i in Rewards) { + const ID = functions.MakeID(); + const templateId = Rewards[i].templateId.toLowerCase(); + + if (templateId.startsWith("weapon:") || templateId.startsWith("trap:") || templateId.startsWith("ammo:")) { + var Item = {"templateId":Rewards[i].templateId,"attributes":{"clipSizeScale": 0,"loadedAmmo": 999,"level": 1,"alterationDefinitions": [],"baseClipSize": 999,"durability": 375,"itemSource": "", "item_seen": false},"quantity":Rewards[i].quantity}; + + theater0.items[ID] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": theater0.items[ID] + }) + + Notifications[0].loot.items.push({ + "itemType": Rewards[i].templateId, + "itemGuid": ID, + "itemProfile": "theater0", + "quantity": Rewards[i].quantity + }) + + TheaterStatChanged = true; + } + else if (req.query.profileId == "campaign" && (templateId.startsWith("homebasebannericon:") || templateId == "token:founderchatunlock")) { + var Item = {"templateId":Rewards[i].templateId,"attributes":{"max_level_bonus":0,"level":1,"item_seen":false,"xp":0,"favorite":false},"quantity":Rewards[i].quantity}; + + common_core.items[ID] = Item; + + MultiUpdate[1].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": common_core.items[ID] + }) + + Notifications[0].loot.items.push({ + "itemType": Rewards[i].templateId, + "itemGuid": ID, + "itemProfile": "common_core", + "quantity": Rewards[i].quantity + }) + + CommonCoreStatChanged = true; + } + else { + var Item = {"templateId":Rewards[i].templateId,"attributes":{"legacy_alterations":[],"max_level_bonus":0,"level":1,"refund_legacy_item":false,"item_seen":false,"alterations":["","","","","",""],"xp":0,"refundable":false,"alteration_base_rarities":[],"favorite":false},"quantity":Rewards[i].quantity}; + + if (templateId.startsWith("quest:")) { + Item.attributes.quest_state = "Active"; + } + + profile.items[ID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": profile.items[ID] + }) + + Notifications[0].loot.items.push({ + "itemType": Rewards[i].templateId, + "itemGuid": ID, + "itemProfile": req.query.profileId, + "quantity": Rewards[i].quantity + }) + } + } + } + + profile.items[req.body.questId].attributes.quest_state = "Claimed"; + profile.items[req.body.questId].attributes.last_state_change_time = new Date().toISOString(); + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + if (TheaterStatChanged == true) { + theater0.rvn += 1; + theater0.commandRevision += 1; + MultiUpdate[0].profileRevision = theater0.rvn || 0; + MultiUpdate[0].profileCommandRevision = theater0.commandRevision || 0; + + fs.writeFileSync("./profiles/theater0.json", JSON.stringify(theater0, null, 2)); + } + + if (CommonCoreStatChanged == true) { + common_core.rvn += 1; + common_core.commandRevision += 1; + MultiUpdate[1].profileRevision = common_core.rvn || 0; + MultiUpdate[1].profileCommandRevision = common_core.commandRevision || 0; + + fs.writeFileSync("./profiles/common_core.json", JSON.stringify(common_core, null, 2)); + } + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.questId, + "attributeName": "quest_state", + "attributeValue": profile.items[req.body.questId].attributes.quest_state + }) + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.questId, + "attributeName": "last_state_change_time", + "attributeValue": profile.items[req.body.questId].attributes.last_state_change_time + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "multiUpdate": MultiUpdate, + "responseVersion": 1 + }) + res.end(); +}); + +// Level item up STW 1 +express.post("/fortnite/api/game/v2/profile/*/client/UpgradeItem", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.targetItemId) { + profile.items[req.body.targetItemId].attributes.level += 1; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.targetItemId, + "attributeName": "level", + "attributeValue": profile.items[req.body.targetItemId].attributes.level + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Level slotted item up STW +express.post("/fortnite/api/game/v2/profile/*/client/UpgradeSlottedItem", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "collection_book_people0"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.targetItemId) { + if (req.body.desiredLevel) { + var new_level = Number(req.body.desiredLevel); + + profile.items[req.body.targetItemId].attributes.level = new_level; + } else { + profile.items[req.body.targetItemId].attributes.level += 1; + } + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.targetItemId, + "attributeName": "level", + "attributeValue": profile.items[req.body.targetItemId].attributes.level + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "collection_book_people0"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "collection_book_people0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Level item up STW 2 +express.post("/fortnite/api/game/v2/profile/*/client/UpgradeItemBulk", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.targetItemId) { + var new_level = Number(req.body.desiredLevel); + + profile.items[req.body.targetItemId].attributes.level = new_level; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.targetItemId, + "attributeName": "level", + "attributeValue": profile.items[req.body.targetItemId].attributes.level + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Evolve item STW +express.post("/fortnite/api/game/v2/profile/*/client/ConvertItem", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var Notifications = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.targetItemId) { + if (profile.items[req.body.targetItemId].templateId.toLowerCase().includes("t04")) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/t04/ig, "T05"); + } + + if (profile.items[req.body.targetItemId].templateId.toLowerCase().includes("t03")) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/t03/ig, "T04"); + } + + if (profile.items[req.body.targetItemId].templateId.toLowerCase().includes("t02")) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/t02/ig, "T03"); + } + + if (profile.items[req.body.targetItemId].templateId.toLowerCase().includes("t01")) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/t01/ig, "T02"); + } + + // Conversion Index: 0 = Ore, 1 = Crystal + if (req.body.conversionIndex == 1) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/ore/ig, "Crystal"); + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + const ID = functions.MakeID(); + + profile.items[ID] = profile.items[req.body.targetItemId]; + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": profile.items[ID] + }) + + delete profile.items[req.body.targetItemId] + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": req.body.targetItemId + }) + + Notifications.push({ + "type": "conversionResult", + "primary": true, + "itemsGranted": [ + { + "itemType": profile.items[ID].templateId, + "itemGuid": ID, + "itemProfile": req.query.profileId || "campaign", + "attributes": { + "level": profile.items[ID].attributes.level, + "alterations": profile.items[ID].attributes.alterations || [] + }, + "quantity": 1 + } + ] + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Evolve slotted item STW +express.post("/fortnite/api/game/v2/profile/*/client/ConvertSlottedItem", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "collection_book_people0"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var Notifications = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.targetItemId) { + if (profile.items[req.body.targetItemId].templateId.toLowerCase().includes("t04")) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/t04/ig, "T05"); + } + + if (profile.items[req.body.targetItemId].templateId.toLowerCase().includes("t03")) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/t03/ig, "T04"); + } + + if (profile.items[req.body.targetItemId].templateId.toLowerCase().includes("t02")) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/t02/ig, "T03"); + } + + if (profile.items[req.body.targetItemId].templateId.toLowerCase().includes("t01")) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/t01/ig, "T02"); + } + + // Conversion Index: 0 = Ore, 1 = Crystal + if (req.body.conversionIndex == 1) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/ore/ig, "Crystal"); + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + const ID = functions.MakeID(); + + profile.items[ID] = profile.items[req.body.targetItemId]; + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": profile.items[ID] + }) + + delete profile.items[req.body.targetItemId] + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": req.body.targetItemId + }) + + Notifications.push({ + "type": "conversionResult", + "primary": true, + "itemsGranted": [ + { + "itemType": profile.items[ID].templateId, + "itemGuid": ID, + "itemProfile": req.query.profileId || "collection_book_people0", + "attributes": { + "level": profile.items[ID].attributes.level, + "alterations": profile.items[ID].attributes.alterations || [] + }, + "quantity": 1 + } + ] + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "collection_book_people0"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "collection_book_people0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Upgrade item rarity STW +express.post("/fortnite/api/game/v2/profile/*/client/UpgradeItemRarity", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var Notifications = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.targetItemId) { + if (profile.items[req.body.targetItemId].templateId.toLowerCase().includes("_vr_")) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/_vr_/ig, "_SR_"); + } + + if (profile.items[req.body.targetItemId].templateId.toLowerCase().includes("_r_")) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/_r_/ig, "_VR_"); + } + + if (profile.items[req.body.targetItemId].templateId.toLowerCase().includes("_uc_")) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/_uc_/ig, "_R_"); + } + + if (profile.items[req.body.targetItemId].templateId.toLowerCase().includes("_c_")) { + profile.items[req.body.targetItemId].templateId = profile.items[req.body.targetItemId].templateId.replace(/_c_/ig, "_UC_"); + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + const ID = functions.MakeID(); + + profile.items[ID] = profile.items[req.body.targetItemId]; + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": profile.items[ID] + }) + + delete profile.items[req.body.targetItemId] + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": req.body.targetItemId + }) + + Notifications.push([{ + "type": "upgradeItemRarityNotification", + "primary": true, + "itemsGranted": [ + { + "itemType": profile.items[ID].templateId, + "itemGuid": ID, + "itemProfile": req.query.profileId || "campaign", + "attributes": { + "level": profile.items[ID].attributes.level, + "alterations": profile.items[ID].attributes.alterations || [] + }, + "quantity": 1 + } + ] + }]) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Super charge item STW +express.post("/fortnite/api/game/v2/profile/*/client/PromoteItem", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.targetItemId) { + profile.items[req.body.targetItemId].attributes.level += 2; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.targetItemId, + "attributeName": "level", + "attributeValue": profile.items[req.body.targetItemId].attributes.level + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Transform items STW +express.post("/fortnite/api/game/v2/profile/*/client/TransmogItem", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + var transformItemIDS = require("./../responses/Campaign/transformItemIDS.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var Notifications = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.sacrificeItemIds && req.body.transmogKeyTemplateId) { + for (var i in req.body.sacrificeItemIds) { + var id = req.body.sacrificeItemIds[i]; + + delete profile.items[id]; + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }) + } + + if (transformItemIDS.hasOwnProperty(req.body.transmogKeyTemplateId)) { + transformItemIDS = transformItemIDS[req.body.transmogKeyTemplateId] + } + else { + transformItemIDS = require("./../responses/Campaign/cardPackData.json").default; + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + const randomNumber = Math.floor(Math.random() * transformItemIDS.length); + const ID = functions.MakeID(); + var Item = {"templateId":transformItemIDS[randomNumber],"attributes":{"legacy_alterations":[],"max_level_bonus":0,"level":1,"refund_legacy_item":false,"item_seen":false,"alterations":["","","","","",""],"xp":0,"refundable":false,"alteration_base_rarities":[],"favorite":false},"quantity":1}; + if (transformItemIDS[randomNumber].toLowerCase().startsWith("worker:")) { + Item.attributes = functions.MakeSurvivorAttributes(transformItemIDS[randomNumber]); + } + + profile.items[ID] = Item; + + Notifications.push({ + "type": "transmogResult", + "primary": true, + "transmoggedItems": [ + { + "itemType": profile.items[ID].templateId, + "itemGuid": ID, + "itemProfile": req.query.profileId || "campaign", + "attributes": profile.items[ID].attributes, + "quantity": 1 + } + ] + }) + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": Item + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Craft item STW (Guns, melees and traps only) +express.post("/fortnite/api/game/v2/profile/*/client/CraftWorldItem", async (req, res) => { + const memory = functions.GetVersionInfo(req); + + const profile = require(`./../profiles/${req.query.profileId || "theater0"}.json`); + var schematic_profile; + // do not change this + var chosen_profile = false; + + if (4 <= memory.season || memory.build == 3.5 || memory.build == 3.6 && chosen_profile == false) { + schematic_profile = require("./../profiles/campaign.json"); + chosen_profile = true; + } + + if (3 >= memory.season && chosen_profile == false) { + schematic_profile = require("./../profiles/profile0.json"); + chosen_profile = true; + } + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var Notifications = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + var Item; + const ID = functions.MakeID(); + + if (req.body.targetSchematicItemId) { + var Body = ''; + Body += JSON.stringify(schematic_profile.items[req.body.targetSchematicItemId]); + Item = JSON.parse(Body); + + var ItemType = 'Weapon:'; + var ItemIDType = 'WID_'; + if (Item.templateId.split("_")[1].split("_")[0].toLowerCase() == "wall") { + ItemType = "Trap:"; + ItemIDType = "TID_"; + } + if (Item.templateId.split("_")[1].split("_")[0].toLowerCase() == "floor") { + ItemType = "Trap:"; + ItemIDType = "TID_"; + } + if (Item.templateId.split("_")[1].split("_")[0].toLowerCase() == "ceiling") { + ItemType = "Trap:"; + ItemIDType = "TID_"; + } + + // Fixes for items that have a slightly different WID from the SID + // Lightning Pistol + if (Item.templateId.toLowerCase().startsWith("schematic:sid_pistol_vacuumtube_auto_")) { + Item.templateId = `Schematic:SID_Pistol_Auto_VacuumTube_${Item.templateId.substring(37)}` + } + // Snowball Launcher + if (Item.templateId.toLowerCase().startsWith("schematic:sid_launcher_grenade_winter_")) { + Item.templateId = `Schematic:SID_Launcher_WinterGrenade_${Item.templateId.substring(38)}` + } + + Item.templateId = Item.templateId.replace(/schematic:/ig, ItemType); + Item.templateId = Item.templateId.replace(/sid_/ig, ItemIDType); + Item.quantity = req.body.numTimesToCraft || 1; + if (req.body.targetSchematicTier) { + switch (req.body.targetSchematicTier.toLowerCase()) { + + case "i": + if (!Item.templateId.toLowerCase().includes("t01")) { + Item.attributes.level = 10; + } + Item.templateId = Item.templateId.substring(0, Item.templateId.length-3) + "T01" + Item.templateId = Item.templateId.replace(/_crystal_/ig, "_Ore_") + break; + + case "ii": + if (!Item.templateId.toLowerCase().includes("t02")) { + Item.attributes.level = 20; + } + Item.templateId = Item.templateId.substring(0, Item.templateId.length-3) + "T02" + Item.templateId = Item.templateId.replace(/_crystal_/ig, "_Ore_") + break; + + case "iii": + if (!Item.templateId.toLowerCase().includes("t03")) { + Item.attributes.level = 30; + } + Item.templateId = Item.templateId.substring(0, Item.templateId.length-3) + "T03" + Item.templateId = Item.templateId.replace(/_crystal_/ig, "_Ore_") + break; + + case "iv": + if (!Item.templateId.toLowerCase().includes("t04")) { + Item.attributes.level = 40; + } + Item.templateId = Item.templateId.substring(0, Item.templateId.length-3) + "T04" + break; + + case "v": + Item.templateId = Item.templateId.substring(0, Item.templateId.length-3) + "T05" + break; + } + } + + Item.attributes = { + "clipSizeScale": 0, + "loadedAmmo": 999, + "level": Item.attributes.level || 1, + "alterationDefinitions": Item.attributes.alterations || [], + "baseClipSize": 999, + "durability": 375, + "itemSource": "" + }; + + profile.items[ID] = Item; + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": profile.items[ID] + }); + + Notifications.push({ + "type": "craftingResult", + "primary": true, + "itemsCrafted": [ + { + "itemType": profile.items[ID].templateId, + "itemGuid": ID, + "itemProfile": req.query.profileId || "theater0", + "attributes": { + "loadedAmmo": profile.items[ID].attributes.loadedAmmo, + "level": profile.items[ID].attributes.level, + "alterationDefinitions": profile.items[ID].attributes.alterationDefinitions, + "durability": profile.items[ID].attributes.durability + }, + "quantity": profile.items[ID].quantity + } + ] + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "theater0"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "theater0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Destroy item STW +express.post("/fortnite/api/game/v2/profile/*/client/DestroyWorldItems", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "theater0"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.itemIds) { + for (var i in req.body.itemIds) { + var id = req.body.itemIds[i]; + delete profile.items[id] + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }) + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "theater0"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "theater0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Disassemble items STW +express.post("/fortnite/api/game/v2/profile/*/client/DisassembleWorldItems", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "theater0"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.targetItemIdAndQuantityPairs) { + for (var i in req.body.targetItemIdAndQuantityPairs) { + var id = req.body.targetItemIdAndQuantityPairs[i].itemId; + var quantity = Number(req.body.targetItemIdAndQuantityPairs[i].quantity); + var orig_quantity = Number(profile.items[id].quantity); + + if (quantity >= orig_quantity) { + delete profile.items[id] + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }) + } + + if (quantity < orig_quantity) { + profile.items[id].quantity -= quantity; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": profile.items[id].quantity + }) + } + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "theater0"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "theater0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Storage transfer STW +express.post("/fortnite/api/game/v2/profile/*/client/StorageTransfer", async (req, res) => { + const theater0 = require("./../profiles/theater0.json"); + const outpost0 = require("./../profiles/outpost0.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var MultiUpdate = []; + var BaseRevision = theater0.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.transferOperations) { + MultiUpdate.push({ + "profileRevision": outpost0.rvn || 0, + "profileId": "outpost0", + "profileChangesBaseRevision": outpost0.rvn || 0, + "profileChanges": [], + "profileCommandRevision": outpost0.commandRevision || 0, + }) + + for (var i in req.body.transferOperations) { + if (req.body.transferOperations[i].toStorage == false) { + let id = req.body.transferOperations[i].itemId; + let body_quantity = Number(req.body.transferOperations[i].quantity); + if (outpost0.items[id]) { + var outpost0_quantity = Number(outpost0.items[id].quantity); + } else { + var outpost0_quantity = "Unknown"; + } + if (theater0.items[id]) { + var theater0_quantity = Number(theater0.items[id].quantity); + } else { + var theater0_quantity = "Unknown"; + } + + if (theater0.items[id] && outpost0.items[id]) { + if (outpost0_quantity > body_quantity) { + theater0.items[id].quantity += body_quantity; + outpost0.items[id].quantity -= body_quantity; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": theater0.items[id].quantity + }); + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": outpost0.items[id].quantity + }) + } + + if (outpost0_quantity <= body_quantity) { + theater0.items[id].quantity += body_quantity; + + delete outpost0.items[id] + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": theater0.items[id].quantity + }); + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }); + } + } + + if (!theater0.items[id] && outpost0.items[id]) { + const Item = JSON.parse(JSON.stringify(outpost0.items[id])); + + if (outpost0_quantity > body_quantity) { + outpost0.items[id].quantity -= body_quantity; + + Item.quantity = body_quantity; + + theater0.items[id] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": id, + "item": Item + }) + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": outpost0.items[id].quantity + }); + } + + if (outpost0_quantity <= body_quantity) { + theater0.items[id] = Item; + + delete outpost0.items[id] + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": id, + "item": Item + }) + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }) + } + } + } + + if (req.body.transferOperations[i].toStorage == true) { + let id = req.body.transferOperations[i].itemId; + let body_quantity = Number(req.body.transferOperations[i].quantity); + if (outpost0.items[id]) { + var outpost0_quantity = Number(outpost0.items[id].quantity); + } else { + var outpost0_quantity = "Unknown"; + } + if (theater0.items[id]) { + var theater0_quantity = Number(theater0.items[id].quantity); + } else { + var theater0_quantity = "Unknown"; + } + + if (outpost0.items[id] && theater0.items[id]) { + if (theater0_quantity > body_quantity) { + outpost0.items[id].quantity += body_quantity; + theater0.items[id].quantity -= body_quantity; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": theater0.items[id].quantity + }); + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": outpost0.items[id].quantity + }) + } + + if (theater0_quantity <= body_quantity) { + outpost0.items[id].quantity += body_quantity; + + delete theater0.items[id] + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": outpost0.items[id].quantity + }); + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }); + } + } + + if (!outpost0.items[id] && theater0.items[id]) { + const Item = JSON.parse(JSON.stringify(theater0.items[id])); + + if (theater0_quantity > body_quantity) { + theater0.items[id].quantity -= body_quantity; + + Item.quantity = body_quantity; + + outpost0.items[id] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": id, + "item": Item + }) + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": theater0.items[id].quantity + }); + } + + if (theater0_quantity <= body_quantity) { + outpost0.items[id] = Item; + + delete theater0.items[id] + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": id, + "item": Item + }) + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": id, + }) + } + } + } + } + + StatChanged = true; + } + + if (req.body.theaterToOutpostItems && req.body.outpostToTheaterItems) { + MultiUpdate.push({ + "profileRevision": outpost0.rvn || 0, + "profileId": "outpost0", + "profileChangesBaseRevision": outpost0.rvn || 0, + "profileChanges": [], + "profileCommandRevision": outpost0.commandRevision || 0, + }) + + for (var i in req.body.theaterToOutpostItems) { + let id = req.body.theaterToOutpostItems[i].itemId; + let body_quantity = Number(req.body.theaterToOutpostItems[i].quantity); + if (outpost0.items[id]) { + var outpost0_quantity = Number(outpost0.items[id].quantity); + } else { + var outpost0_quantity = "Unknown"; + } + if (theater0.items[id]) { + var theater0_quantity = Number(theater0.items[id].quantity); + } else { + var theater0_quantity = "Unknown"; + } + + if (outpost0.items[id] && theater0.items[id]) { + if (theater0_quantity > body_quantity) { + outpost0.items[id].quantity += body_quantity; + theater0.items[id].quantity -= body_quantity; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": theater0.items[id].quantity + }); + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": outpost0.items[id].quantity + }) + } + + if (theater0_quantity <= body_quantity) { + outpost0.items[id].quantity += body_quantity; + + delete theater0.items[id] + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": outpost0.items[id].quantity + }); + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }); + } + } + + if (!outpost0.items[id] && theater0.items[id]) { + const Item = JSON.parse(JSON.stringify(theater0.items[id])); + + if (theater0_quantity > body_quantity) { + theater0.items[id].quantity -= body_quantity; + + Item.quantity = body_quantity; + + outpost0.items[id] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": id, + "item": Item + }) + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": theater0.items[id].quantity + }); + } + + if (theater0_quantity <= body_quantity) { + outpost0.items[id] = Item; + + delete theater0.items[id] + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": id, + "item": Item + }) + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": id, + }) + } + } + } + + for (var i in req.body.outpostToTheaterItems) { + let id = req.body.outpostToTheaterItems[i].itemId; + let body_quantity = Number(req.body.outpostToTheaterItems[i].quantity); + if (outpost0.items[id]) { + var outpost0_quantity = Number(outpost0.items[id].quantity); + } else { + var outpost0_quantity = "Unknown"; + } + if (theater0.items[id]) { + var theater0_quantity = Number(theater0.items[id].quantity); + } else { + var theater0_quantity = "Unknown"; + } + + if (theater0.items[id] && outpost0.items[id]) { + if (outpost0_quantity > body_quantity) { + theater0.items[id].quantity += body_quantity; + outpost0.items[id].quantity -= body_quantity; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": theater0.items[id].quantity + }); + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": outpost0.items[id].quantity + }) + } + + if (outpost0_quantity <= body_quantity) { + theater0.items[id].quantity += body_quantity; + + delete outpost0.items[id] + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": theater0.items[id].quantity + }); + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }); + } + } + + if (!theater0.items[id] && outpost0.items[id]) { + const Item = JSON.parse(JSON.stringify(outpost0.items[id])); + + if (outpost0_quantity > body_quantity) { + outpost0.items[id].quantity -= body_quantity; + + Item.quantity = body_quantity; + + theater0.items[id] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": id, + "item": Item + }) + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": id, + "quantity": outpost0.items[id].quantity + }); + } + + if (outpost0_quantity <= body_quantity) { + theater0.items[id] = Item; + + delete outpost0.items[id] + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": id, + "item": Item + }) + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }) + } + } + } + + StatChanged = true; + } + + if (StatChanged == true) { + theater0.rvn += 1; + theater0.commandRevision += 1; + outpost0.rvn += 1; + outpost0.commandRevision += 1; + + MultiUpdate[0].profileRevision = outpost0.rvn || 0; + MultiUpdate[0].profileCommandRevision = outpost0.commandRevision || 0; + + fs.writeFileSync("./profiles/theater0.json", JSON.stringify(theater0, null, 2)); + fs.writeFileSync("./profiles/outpost0.json", JSON.stringify(outpost0, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": theater0 + }]; + } + + res.json({ + "profileRevision": theater0.rvn || 0, + "profileId": "theater0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": theater0.commandRevision || 0, + "serverTime": new Date().toISOString(), + "multiUpdate": MultiUpdate, + "responseVersion": 1 + }) + res.end(); +}); + +// Modify quickbar STW +express.post("/fortnite/api/game/v2/profile/*/client/ModifyQuickbar", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "theater0"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.primaryQuickbarChoices) { + for (var i in req.body.primaryQuickbarChoices) { + let a = Number(i) + 1; + var value = [req.body.primaryQuickbarChoices[i].replace(/-/ig, "").toUpperCase()]; + if (req.body.primaryQuickbarChoices[i] == "") { + value = []; + } + + profile.stats.attributes.player_loadout.primaryQuickBarRecord.slots[a].items = value; + } + + StatChanged = true; + } + + if (typeof req.body.secondaryQuickbarChoice == "string") { + var value = [req.body.secondaryQuickbarChoice.replace(/-/ig, "").toUpperCase()]; + if (req.body.secondaryQuickbarChoice == "") { + value = []; + } + + profile.stats.attributes.player_loadout.secondaryQuickBarRecord.slots[5].items = value; + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "player_loadout", + "value": profile.stats.attributes.player_loadout + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "theater0"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "theater0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Hero equipping STW +express.post("/fortnite/api/game/v2/profile/*/client/AssignHeroToLoadout", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.loadoutId && req.body.slotName) { + switch (req.body.slotName) { + case "CommanderSlot": + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot1.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot1 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot2.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot2 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot3.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot3 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot4.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot4 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot5.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot5 = ""; + } + + profile.items[req.body.loadoutId].attributes.crew_members.commanderslot = req.body.heroId || ""; + + StatChanged = true; + break; + + case "FollowerSlot1": + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.commanderslot.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.commanderslot = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot2.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot2 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot3.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot3 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot4.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot4 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot5.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot5 = ""; + } + + profile.items[req.body.loadoutId].attributes.crew_members.followerslot1 = req.body.heroId || ""; + + StatChanged = true; + break; + + case "FollowerSlot2": + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot1.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot1 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.commanderslot.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.commanderslot = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot3.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot3 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot4.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot4 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot5.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot5 = ""; + } + + profile.items[req.body.loadoutId].attributes.crew_members.followerslot2 = req.body.heroId || ""; + + StatChanged = true; + break; + + case "FollowerSlot3": + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot1.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot1 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot2.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot2 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.commanderslot.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.commanderslot = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot4.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot4 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot5.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot5 = ""; + } + + profile.items[req.body.loadoutId].attributes.crew_members.followerslot3 = req.body.heroId || ""; + + StatChanged = true; + break; + + case "FollowerSlot4": + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot1.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot1 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot2.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot2 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot3.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot3 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.commanderslot.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.commanderslot = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot5.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot5 = ""; + } + + profile.items[req.body.loadoutId].attributes.crew_members.followerslot4 = req.body.heroId || ""; + + StatChanged = true; + break; + + case "FollowerSlot5": + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot1.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot1 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot2.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot2 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot3.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot3 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.followerslot4.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.followerslot4 = ""; + } + if (req.body.heroId.toLowerCase() == profile.items[req.body.loadoutId].attributes.crew_members.commanderslot.toLowerCase()) { + profile.items[req.body.loadoutId].attributes.crew_members.commanderslot = ""; + } + + profile.items[req.body.loadoutId].attributes.crew_members.followerslot5 = req.body.heroId || ""; + + StatChanged = true; + break; + } + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.loadoutId, + "attributeName": "crew_members", + "attributeValue": profile.items[req.body.loadoutId].attributes.crew_members + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Clear hero loadout STW +express.post("/fortnite/api/game/v2/profile/*/client/ClearHeroLoadout", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.loadoutId) { + profile.items[req.body.loadoutId].attributes = { + "team_perk": "", + "loadout_name": profile.items[req.body.loadoutId].attributes.loadout_name, + "crew_members": { + "followerslot5": "", + "followerslot4": "", + "followerslot3": "", + "followerslot2": "", + "followerslot1": "", + "commanderslot": profile.items[req.body.loadoutId].attributes.crew_members.commanderslot + }, + "loadout_index": profile.items[req.body.loadoutId].attributes.loadout_index, + "gadgets": [ + { + "gadget": "", + "slot_index": 0 + }, + { + "gadget": "", + "slot_index": 1 + } + ] + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.loadoutId, + "attributeName": "team_perk", + "attributeValue": profile.items[req.body.loadoutId].attributes.team_perk + }) + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.loadoutId, + "attributeName": "crew_members", + "attributeValue": profile.items[req.body.loadoutId].attributes.crew_members + }) + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.loadoutId, + "attributeName": "gadgets", + "attributeValue": profile.items[req.body.loadoutId].attributes.gadgets + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Recycle items STW +express.post("/fortnite/api/game/v2/profile/*/client/RecycleItemBatch", async (req, res) => { + const memory = functions.GetVersionInfo(req); + + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var MultiUpdate = []; + var Notifications = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + var ItemExists = false; + + if (req.body.targetItemIds) { + for (var i in req.body.targetItemIds) { + let id = req.body.targetItemIds[i]; + + if (memory.season > 11 || memory.build == 11.30 || memory.build == 11.31 || memory.build == 11.40 || memory.build == 11.50) { + var collection_book_profile = require("./../profiles/collection_book_people0.json"); + + if (profile.items[id].templateId.toLowerCase().startsWith("schematic:")) { + collection_book_profile = require("./../profiles/collection_book_schematics0.json"); + } + + if (MultiUpdate.length == 0) { + MultiUpdate.push({ + "profileRevision": collection_book_profile.rvn || 0, + "profileId": collection_book_profile.profileId || "collection_book_people0", + "profileChangesBaseRevision": collection_book_profile.rvn || 0, + "profileChanges": [], + "profileCommandRevision": collection_book_profile.commandRevision || 0, + }) + } + + for (var key in collection_book_profile.items) { + const Template1 = profile.items[id].templateId; + const Template2 = collection_book_profile.items[key].templateId; + if (Template1.substring(0, Template1.length - 4).toLowerCase() == Template2.substring(0, Template2.length - 4).toLowerCase()) { + if (Template1.toLowerCase().startsWith("worker:") && Template2.toLowerCase().startsWith("worker:")) { + if (profile.items[id].attributes.hasOwnProperty("personality") && collection_book_profile.items[key].attributes.hasOwnProperty("personality")) { + const Personality1 = profile.items[id].attributes.personality; + const Personality2 = collection_book_profile.items[key].attributes.personality; + + if (Personality1.toLowerCase() == Personality2.toLowerCase()) { + if (profile.items[id].attributes.level > collection_book_profile.items[key].attributes.level) { + delete collection_book_profile.items[key]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemRemoved", + "itemId": key + }) + + ItemExists = false; + } else { + ItemExists = true; + } + } + } + } else { + if (profile.items[id].attributes.level > collection_book_profile.items[key].attributes.level) { + delete collection_book_profile.items[key]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemRemoved", + "itemId": key + }) + + ItemExists = false; + } else { + ItemExists = true; + } + } + } + } + + if (ItemExists == false) { + collection_book_profile.items[id] = profile.items[id]; + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": id, + "item": collection_book_profile.items[id] + }) + + Notifications.push({ + "type": "slotItemResult", + "primary": true, + "slottedItemId": id + }) + } + + delete profile.items[id]; + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }) + + collection_book_profile.rvn += 1; + collection_book_profile.commandRevision += 1; + + MultiUpdate[0].profileRevision = collection_book_profile.rvn; + MultiUpdate[0].profileCommandRevision = collection_book_profile.commandRevision; + + fs.writeFileSync(`./profiles/${collection_book_profile.profileId || "collection_book_people0"}.json`, JSON.stringify(collection_book_profile, null, 2)); + } else { + delete profile.items[id]; + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }) + } + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "multiUpdate": MultiUpdate, + "responseVersion": 1 + }) + res.end(); +}); + +// Add item from collection book STW +express.post("/fortnite/api/game/v2/profile/*/client/ResearchItemFromCollectionBook", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + const ID = functions.MakeID(); + + if (req.body.templateId) { + profile.items[ID] = { + "templateId": req.body.templateId, + "attributes": { + "last_state_change_time": "2017-08-29T21:05:57.087Z", + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "sent_new_notification": true, + "favorite": false + }, + "quantity": 1 + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": profile.items[ID] + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Slot item in collection book STW +express.post("/fortnite/api/game/v2/profile/*/client/SlotItemInCollectionBook", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var MultiUpdate = []; + var Notifications = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + var collection_book_profile = require("./../profiles/collection_book_people0.json"); + + if (profile.items[req.body.itemId].templateId.toLowerCase().startsWith("schematic:")) { + collection_book_profile = require("./../profiles/collection_book_schematics0.json"); + } + + if (req.body.itemId) { + MultiUpdate.push({ + "profileRevision": collection_book_profile.rvn || 0, + "profileId": collection_book_profile.profileId || "collection_book_people0", + "profileChangesBaseRevision": collection_book_profile.rvn || 0, + "profileChanges": [], + "profileCommandRevision": collection_book_profile.commandRevision || 0, + }) + + for (var key in collection_book_profile.items) { + const Template1 = profile.items[req.body.itemId].templateId; + const Template2 = collection_book_profile.items[key].templateId; + if (Template1.substring(0, Template1.length-4).toLowerCase() == Template2.substring(0, Template2.length-4).toLowerCase()) { + if (Template1.toLowerCase().startsWith("worker:") && Template2.toLowerCase().startsWith("worker:")) { + if (profile.items[req.body.itemId].attributes.hasOwnProperty("personality") && collection_book_profile.items[key].attributes.hasOwnProperty("personality")) { + const Personality1 = profile.items[req.body.itemId].attributes.personality; + const Personality2 = collection_book_profile.items[key].attributes.personality; + + if (Personality1.toLowerCase() == Personality2.toLowerCase()) { + delete collection_book_profile.items[key]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemRemoved", + "itemId": key + }) + } + } + } else { + delete collection_book_profile.items[key]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemRemoved", + "itemId": key + }) + } + } + } + + collection_book_profile.items[req.body.itemId] = profile.items[req.body.itemId]; + + delete profile.items[req.body.itemId]; + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + collection_book_profile.rvn += 1; + collection_book_profile.commandRevision += 1; + + MultiUpdate[0].profileRevision = collection_book_profile.rvn || 0; + MultiUpdate[0].profileCommandRevision = collection_book_profile.commandRevision || 0; + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": req.body.itemId + }) + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": req.body.itemId, + "item": collection_book_profile.items[req.body.itemId] + }) + + Notifications.push({ + "type": "slotItemResult", + "primary": true, + "slottedItemId": req.body.itemId + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + fs.writeFileSync(`./profiles/${collection_book_profile.profileId || "collection_book_people0"}.json`, JSON.stringify(collection_book_profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "multiUpdate": MultiUpdate, + "responseVersion": 1 + }) + res.end(); +}); + +// Unslot item from collection book STW +express.post("/fortnite/api/game/v2/profile/*/client/UnslotItemFromCollectionBook", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var MultiUpdate = []; + var Notifications = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + var collection_book_profile = require("./../profiles/collection_book_people0.json"); + + if (req.body.templateId.toLowerCase().startsWith("schematic:")) { + collection_book_profile = require("./../profiles/collection_book_schematics0.json"); + } + + const ID = functions.MakeID(); + + MultiUpdate.push({ + "profileRevision": collection_book_profile.rvn || 0, + "profileId": collection_book_profile.profileId || "collection_book_people0", + "profileChangesBaseRevision": collection_book_profile.rvn || 0, + "profileChanges": [], + "profileCommandRevision": collection_book_profile.commandRevision || 0, + }) + + if (profile.items[req.body.itemId]) { + profile.items[ID] = collection_book_profile.items[req.body.itemId]; + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": profile.items[ID] + }) + + delete collection_book_profile.items[req.body.itemId]; + MultiUpdate[0].profileChanges.push({ + "changeType": "itemRemoved", + "itemId": req.body.itemId + }) + + StatChanged = true; + } + + if (!profile.items[req.body.itemId]) { + profile.items[req.body.itemId] = collection_book_profile.items[req.body.itemId]; + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": req.body.itemId, + "item": profile.items[req.body.itemId] + }) + + delete collection_book_profile.items[req.body.itemId]; + MultiUpdate[0].profileChanges.push({ + "changeType": "itemRemoved", + "itemId": req.body.itemId + }) + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + collection_book_profile.rvn += 1; + collection_book_profile.commandRevision += 1; + + MultiUpdate[0].profileRevision = collection_book_profile.rvn || 0; + MultiUpdate[0].profileCommandRevision = collection_book_profile.commandRevision || 0; + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + fs.writeFileSync(`./profiles/${collection_book_profile.profileId || "collection_book_people0"}.json`, JSON.stringify(collection_book_profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "multiUpdate": MultiUpdate, + "responseVersion": 1 + }) + res.end(); +}); + +// Claim collection book rewards STW +express.post("/fortnite/api/game/v2/profile/*/client/ClaimCollectionBookRewards", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.requiredXp) { + profile.stats.attributes.collection_book.maxBookXpLevelAchieved += 1; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "collection_book", + "value": profile.stats.attributes.collection_book + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Modify schematic perk STW +express.post("/fortnite/api/game/v2/profile/*/client/RespecAlteration", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.targetItemId && req.body.alterationId) { + if (!profile.items[req.body.targetItemId].attributes.alterations) { + profile.items[req.body.targetItemId].attributes.alterations = ["","","","","",""]; + } + + profile.items[req.body.targetItemId].attributes.alterations[req.body.alterationSlot] = req.body.alterationId; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.targetItemId, + "attributeName": "alterations", + "attributeValue": profile.items[req.body.targetItemId].attributes.alterations + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Upgrade schematic perk STW +express.post("/fortnite/api/game/v2/profile/*/client/UpgradeAlteration", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.targetItemId) { + if (profile.items[req.body.targetItemId].attributes.alterations[req.body.alterationSlot].toLowerCase().includes("t04")) { + profile.items[req.body.targetItemId].attributes.alterations[req.body.alterationSlot] = profile.items[req.body.targetItemId].attributes.alterations[req.body.alterationSlot].replace(/t04/ig, "T05"); + } + + if (profile.items[req.body.targetItemId].attributes.alterations[req.body.alterationSlot].toLowerCase().includes("t03")) { + profile.items[req.body.targetItemId].attributes.alterations[req.body.alterationSlot] = profile.items[req.body.targetItemId].attributes.alterations[req.body.alterationSlot].replace(/t03/ig, "T04"); + } + + if (profile.items[req.body.targetItemId].attributes.alterations[req.body.alterationSlot].toLowerCase().includes("t02")) { + profile.items[req.body.targetItemId].attributes.alterations[req.body.alterationSlot] = profile.items[req.body.targetItemId].attributes.alterations[req.body.alterationSlot].replace(/t02/ig, "T03"); + } + + if (profile.items[req.body.targetItemId].attributes.alterations[req.body.alterationSlot].toLowerCase().includes("t01")) { + profile.items[req.body.targetItemId].attributes.alterations[req.body.alterationSlot] = profile.items[req.body.targetItemId].attributes.alterations[req.body.alterationSlot].replace(/t01/ig, "T02"); + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.targetItemId, + "attributeName": "alterations", + "attributeValue": profile.items[req.body.targetItemId].attributes.alterations + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Reset research levels STW +express.post("/fortnite/api/game/v2/profile/*/client/RespecResearch", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (profile.stats.attributes.research_levels) { + profile.stats.attributes.research_levels.technology = 0; + profile.stats.attributes.research_levels.fortitude = 0; + profile.stats.attributes.research_levels.offense = 0; + profile.stats.attributes.research_levels.resistance = 0; + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "research_levels", + "value": profile.stats.attributes.research_levels + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Reset upgrade levels STW +express.post("/fortnite/api/game/v2/profile/*/client/RespecUpgrades", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("homebasenode:skilltree_")) { + profile.items[key].quantity = 0; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": key, + "quantity": profile.items[key].quantity + }) + } + } + + StatChanged = true; + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Upgrade research levels STW +express.post("/fortnite/api/game/v2/profile/*/client/PurchaseResearchStatUpgrade", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (profile.stats.attributes.research_levels && req.body.statId) { + profile.stats.attributes.research_levels[req.body.statId] += 1; + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "research_levels", + "value": profile.stats.attributes.research_levels + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Upgrade levels STW +express.post("/fortnite/api/game/v2/profile/*/client/PurchaseOrUpgradeHomebaseNode", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + var CreateHomebaseNode = true; + + if (req.body.nodeId) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase() == req.body.nodeId.toLowerCase()) { + profile.items[key].quantity += 1; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": key, + "quantity": profile.items[key].quantity + }) + + CreateHomebaseNode = false; + } + } + + if (CreateHomebaseNode == true) { + const ID = functions.MakeID(); + + profile.items[ID] = { + "templateId": req.body.nodeId, + "attributes": { + "item_seen": false + }, + "quantity": 1 + } + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": profile.items[ID] + }) + } + } + + StatChanged = true; + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Refresh expeditions STW +express.post("/fortnite/api/game/v2/profile/*/client/RefreshExpeditions", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + var expeditionData = require("./../responses/Campaign/expeditionData.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + var ExpeditionSlots = []; + var date = new Date().toISOString(); + + // Check which quests that grant expedition slots are completed and add these slots to the list of available ones. + for (var key in profile.items) { + var templateId = profile.items[key].templateId.toLowerCase(); + if (expeditionData.questsUnlockingSlots.includes(templateId)) { + if (profile.items[key].attributes.quest_state == "Claimed") { + ExpeditionSlots = ExpeditionSlots.concat(expeditionData.slotsFromQuests[templateId]); + } + } + } + + // Remove the expired expeditions. + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("expedition:")) { + var expiration_end_time = new Date(profile.items[key].attributes.expedition_expiration_end_time).toISOString(); + if (date > expiration_end_time && !profile.items[key].attributes.hasOwnProperty("expedition_start_time")) { + delete profile.items[key]; + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": key + }) + + StatChanged = true; + } else { // If the expedition is still active, remove its slot from ExpeditionSlots list so the server doesn't make a new one for it. + var index = ExpeditionSlots.indexOf(profile.items[key].attributes.expedition_slot_id); + if (index !== -1) { + ExpeditionSlots.splice(index, 1) + } + } + } + } + + // Make new expeditions + for (var i = 0; i < ExpeditionSlots.length; i++) { + var slot = ExpeditionSlots[i]; + + // 5% (could be different) chance of making a rare expedition + var ExpeditionsToChoose = expeditionData.slots[slot]; + if (ExpeditionsToChoose.hasOwnProperty("rare") && Math.random() < 0.05) { + ExpeditionsToChoose = ExpeditionsToChoose.rare; + } else { + ExpeditionsToChoose = ExpeditionsToChoose.normal; + } + + var randomNumber = Math.floor(Math.random() * ExpeditionsToChoose.length); + var ID = functions.MakeID(); + var templateId = ExpeditionsToChoose[randomNumber]; + + var endDate = new Date(date); + endDate.setMinutes(endDate.getMinutes() + expeditionData.attributes[templateId].expiration_duration_minutes); + endDate = endDate.toISOString(); + + var Item = { + "templateId": templateId, + "attributes": { + "expedition_expiration_end_time": endDate, + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": expeditionData.attributes[templateId].expedition_max_target_power, + "expedition_min_target_power": expeditionData.attributes[templateId].expedition_min_target_power, + "expedition_slot_id": slot, + "expedition_expiration_start_time": date + }, + "quantity": 1 + } + + for (var x = 0; x < 3; x++) { + if (Math.random() < 0.2) { // 20% (could be different) chance of the expedition having a bonus criteria up to 3 + randomNumber = Math.floor(Math.random() * expeditionData.criteria.length); + Item.attributes.expedition_criteria.push(expeditionData.criteria[randomNumber]) + } + } + + profile.items[ID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": Item + }) + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Start an expedition STW +express.post("/fortnite/api/game/v2/profile/*/client/StartExpedition", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + const memory = functions.GetVersionInfo(req); + var expeditionData = require("./../responses/Campaign/expeditionData.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + var date = new Date().toISOString(); + + if (req.body.expeditionId && req.body.squadId && req.body.itemIds && req.body.slotIndices) { + var ExpeditionLevel = profile.items[req.body.expeditionId].attributes.expedition_max_target_power; + var HeroLevels = expeditionData.heroLevels; + if (memory.build < 13.20) { // The levels got changed a bit in v13.20+ + HeroLevels = HeroLevels.old; + } else { + HeroLevels = HeroLevels.new; + } + + // Make a list with expedition heroes sorted by their power level + var SortedHeroes = [] + for (var i = 0; i < req.body.itemIds.length; i++) { + var hero = req.body.itemIds[i]; + for (var item in profile.items) { + if (hero == item) { + var splitTemplateId = profile.items[item].templateId.split("_") + var rarity = splitTemplateId.slice(-2, -1)[0].toLowerCase(); + var tier = splitTemplateId.slice(-1)[0].toLowerCase(); + var level = profile.items[item].attributes.level; + var Hero = { + "itemGuid": hero, + "templateId": profile.items[item].templateId, + "class": splitTemplateId[1].toLowerCase(), + "rarity": rarity, + "tier": tier, + "level": level, + "powerLevel": HeroLevels[rarity][tier][level], + "bBoostedByCriteria": false + } + SortedHeroes.push(Hero) + } + } + } + SortedHeroes.sort((a, b) => b.powerLevel - a.powerLevel); + + // Check if any of the heroes meet any of the available criterias. If so, then boost their power level. + if (profile.items[req.body.expeditionId].attributes.hasOwnProperty("expedition_criteria")) { + var criteria = profile.items[req.body.expeditionId].attributes.expedition_criteria; + for (var i = 0; i < criteria.length; i++) { + criterion = criteria[i]; + + for (var x = 0; x < SortedHeroes.length; x++) { + var bIsMatchingHero = true; + var requirements = expeditionData.criteriaRequirements[criterion].requirements; + if (requirements.class != SortedHeroes[x].class) { + bIsMatchingHero = false; + } + if (requirements.hasOwnProperty("rarity")) { + if (!requirements.rarity.includes(SortedHeroes[x].rarity)) { + bIsMatchingHero = false; + } + } + + if (bIsMatchingHero == true && SortedHeroes[x].bBoostedByCriteria == false) { + SortedHeroes[x].powerLevel = SortedHeroes[x].powerLevel * expeditionData.criteriaRequirements[criterion].ModValue; + SortedHeroes[x].bBoostedByCriteria = true; + break; + } + } + } + } + + // Calculate the expedition success chance + var TotalPowerLevel = 0; + for (var i = 0; i < SortedHeroes.length; i++) { + TotalPowerLevel += SortedHeroes[i].powerLevel; + } + var ExpeditionSuccessChance = TotalPowerLevel / ExpeditionLevel; + if (ExpeditionSuccessChance > 1) { + ExpeditionSuccessChance = 1; + } + + // Assign Squad ids and slots to selected heroes + for (var i = 0; i < req.body.itemIds.length; i++) { + var hero = req.body.itemIds[i]; + profile.items[hero].attributes.squad_id = req.body.squadId.toLowerCase(); + profile.items[hero].attributes.squad_slot_idx = req.body.slotIndices[i]; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": hero, + "attributeName": "squad_id", + "attributeValue": profile.items[hero].attributes.squad_id + }) + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": hero, + "attributeName": "squad_slot_idx", + "attributeValue": profile.items[hero].attributes.squad_slot_idx + }) + } + + // Calculate the expedition end date + var endDate = new Date(date); + endDate.setMinutes(endDate.getMinutes() + expeditionData.attributes[profile.items[req.body.expeditionId].templateId].expedition_duration_minutes); + endDate = endDate.toISOString(); + + profile.items[req.body.expeditionId].attributes.expedition_squad_id = req.body.squadId.toLowerCase(); + profile.items[req.body.expeditionId].attributes.expedition_success_chance = ExpeditionSuccessChance; + profile.items[req.body.expeditionId].attributes.expedition_start_time = date; + profile.items[req.body.expeditionId].attributes.expedition_end_time = endDate; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.expeditionId, + "attributeName": "expedition_squad_id", + "attributeValue": profile.items[req.body.expeditionId].attributes.expedition_squad_id + }) + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.expeditionId, + "attributeName": "expedition_success_chance", + "attributeValue": profile.items[req.body.expeditionId].attributes.expedition_success_chance + }) + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.expeditionId, + "attributeName": "expedition_start_time", + "attributeValue": profile.items[req.body.expeditionId].attributes.expedition_start_time + }) + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.expeditionId, + "attributeName": "expedition_end_time", + "attributeValue": profile.items[req.body.expeditionId].attributes.expedition_end_time + }) + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Abandon an expedition STW +express.post("/fortnite/api/game/v2/profile/*/client/AbandonExpedition", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + var expeditionData = require("./../responses/Campaign/expeditionData.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + var date = new Date().toISOString(); + + if (req.body.expeditionId) { + var squad_id = profile.items[req.body.expeditionId].attributes.expedition_squad_id; + for (var item2 in profile.items) { // Remove the squad ids and slots from heroes + if (profile.items[item2].attributes.hasOwnProperty("squad_id")) { + if (profile.items[item2].attributes.squad_id == squad_id) { + profile.items[item2].attributes.squad_id = ""; + profile.items[item2].attributes.squad_slot_idx = -1; + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": item2, + "attributeName": "squad_id", + "attributeValue": profile.items[item2].attributes.squad_id + }) + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": item2, + "attributeName": "squad_slot_idx", + "attributeValue": profile.items[item2].attributes.squad_slot_idx + }) + } + } + } + + // Set the expedition back as availale + delete profile.items[req.body.expeditionId].attributes.expedition_squad_id + delete profile.items[req.body.expeditionId].attributes.expedition_start_time + delete profile.items[req.body.expeditionId].attributes.expedition_end_time + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.expeditionId, + "attributeName": "expedition_squad_id", + "attributeValue": "" + }) + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.expeditionId, + "attributeName": "expedition_start_time", + "attributeValue": null + }) + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.expeditionId, + "attributeName": "expedition_end_time", + "attributeValue": null + }) + + var expiration_end_time = new Date(profile.items[req.body.expeditionId].attributes.expedition_expiration_end_time).toISOString(); + if (date > expiration_end_time) { + // Remove the abandoned expedition and make a new one to replace it + var slot = profile.items[req.body.expeditionId].attributes.expedition_slot_id; + delete profile.items[req.body.expeditionId] + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": req.body.expeditionId + }) + + // 5% (could be different) chance of making a rare expedition + var ExpeditionsToChoose = expeditionData.slots[slot]; + if (ExpeditionsToChoose.hasOwnProperty("rare") && Math.random() < 0.05) { + ExpeditionsToChoose = ExpeditionsToChoose.rare; + } else { + ExpeditionsToChoose = ExpeditionsToChoose.normal; + } + + var randomNumber = Math.floor(Math.random() * ExpeditionsToChoose.length); + var ID = functions.MakeID(); + var templateId = ExpeditionsToChoose[randomNumber]; + + var endDate = new Date(date); + endDate.setMinutes(endDate.getMinutes() + expeditionData.attributes[templateId].expiration_duration_minutes); + endDate = endDate.toISOString(); + + var Item = { + "templateId": templateId, + "attributes": { + "expedition_expiration_end_time": endDate, + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": expeditionData.attributes[templateId].expedition_max_target_power, + "expedition_min_target_power": expeditionData.attributes[templateId].expedition_min_target_power, + "expedition_slot_id": slot, + "expedition_expiration_start_time": date + }, + "quantity": 1 + } + + for (var x = 0; x < 3; x++) { + if (Math.random() < 0.2) { // 20% (could be different) chance of the expedition having a bonus criteria up to 3 + randomNumber = Math.floor(Math.random() * expeditionData.criteria.length); + Item.attributes.expedition_criteria.push(expeditionData.criteria[randomNumber]) + } + } + + profile.items[ID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": Item + }) + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Collect a finished expedition STW +express.post("/fortnite/api/game/v2/profile/*/client/CollectExpedition", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + var expeditionData = require("./../responses/Campaign/expeditionData.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var MultiUpdate = []; + var Notifications = []; + var OtherProfiles = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + var date = new Date().toISOString(); + + if (req.body.expeditionId) { + Notifications.push({ + "type": "expeditionResult", + "primary": true, + "client_request_id": "", + "bExpeditionSucceeded" : false + }) + + // Determine if the expedition was successful + if (Math.random() < profile.items[req.body.expeditionId].attributes.expedition_success_chance) { + Notifications[0].bExpeditionSucceeded = true; + Notifications[0].expeditionRewards = []; + + // If so, then grant the rewards + for (var i = 0; i < expeditionData.rewards.length; i++) { + var randomNumber = Math.floor(Math.random() * expeditionData.rewards[i].length); + var ID = functions.MakeID(); + var templateId = expeditionData.rewards[i][randomNumber].templateId; + var itemProfile = expeditionData.rewards[i][randomNumber].itemProfile; + + var minQ = expeditionData.rewards[i][randomNumber].minQuantity; + var maxQ = expeditionData.rewards[i][randomNumber].maxQuantity; + var quantity = Math.floor(Math.random() * (maxQ - minQ + 1)) + minQ; + + var Item = { + "templateId": templateId, + "attributes": { + "loadedAmmo": 0, + "inventory_overflow_date": false, + "level": 0, + "alterationDefinitions": [], + "durability": 1, + "itemSource": "" + }, + "quantity": quantity + } + + Notifications[0].expeditionRewards.push({ + "itemType": templateId, + "itemGuid": ID, + "itemProfile": itemProfile, + "quantity": quantity + }) + + if (itemProfile == req.query.profileId) { + profile.items[ID] = Item; + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": Item + }) + } else { + var k = -1; // index of item profile in MultiUpdate + for (var x = 0; x < MultiUpdate.length; x++) { + if (MultiUpdate[x].profileId == itemProfile) { + k = x; + } + } + if (k == -1) { + OtherProfiles.push(require(`./../profiles/${itemProfile}.json`)) + k = MultiUpdate.length; + MultiUpdate.push({ + "profileRevision": OtherProfiles[k].rvn || 0, + "profileId": OtherProfiles[k].profileId, + "profileChangesBaseRevision": OtherProfiles[k].rvn || 0, + "profileChanges": [], + "profileCommandRevision": OtherProfiles[k].commandRevision || 0, + }) + } + + OtherProfiles[k].items[ID] = Item; + MultiUpdate[k].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": Item + }) + } + } + } + + var squad_id = profile.items[req.body.expeditionId].attributes.expedition_squad_id; + for (var item2 in profile.items) { // Remove the squad ids and slots from heroes + if (profile.items[item2].attributes.hasOwnProperty("squad_id")) { + if (profile.items[item2].attributes.squad_id == squad_id) { + profile.items[item2].attributes.squad_id = ""; + profile.items[item2].attributes.squad_slot_idx = -1; + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": item2, + "attributeName": "squad_id", + "attributeValue": profile.items[item2].attributes.squad_id + }) + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": item2, + "attributeName": "squad_slot_idx", + "attributeValue": profile.items[item2].attributes.squad_slot_idx + }) + } + } + } + + // Make a new expedition to replace the finished one + var slot = profile.items[req.body.expeditionId].attributes.expedition_slot_id; + delete profile.items[req.body.expeditionId] + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": req.body.expeditionId + }) + + // 5% (could be different) chance of making a rare expedition + var ExpeditionsToChoose = expeditionData.slots[slot]; + if (ExpeditionsToChoose.hasOwnProperty("rare") && Math.random() < 0.05) { + ExpeditionsToChoose = ExpeditionsToChoose.rare; + } else { + ExpeditionsToChoose = ExpeditionsToChoose.normal; + } + + var randomNumber = Math.floor(Math.random() * ExpeditionsToChoose.length); + var ID = functions.MakeID(); + var templateId = ExpeditionsToChoose[randomNumber]; + + var endDate = new Date(date); + endDate.setMinutes(endDate.getMinutes() + expeditionData.attributes[templateId].expiration_duration_minutes); + endDate = endDate.toISOString(); + + var Item = { + "templateId": templateId, + "attributes": { + "expedition_expiration_end_time": endDate, + "expedition_criteria": [], + "level": 1, + "expedition_max_target_power": expeditionData.attributes[templateId].expedition_max_target_power, + "expedition_min_target_power": expeditionData.attributes[templateId].expedition_min_target_power, + "expedition_slot_id": slot, + "expedition_expiration_start_time": date + }, + "quantity": 1 + } + + for (var x = 0; x < 3; x++) { + if (Math.random() < 0.2) { // 20% (could be different) chance of the expedition having a bonus criteria up to 3 + randomNumber = Math.floor(Math.random() * expeditionData.criteria.length); + Item.attributes.expedition_criteria.push(expeditionData.criteria[randomNumber]) + } + } + + profile.items[ID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": Item + }) + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + + for (var i = 0; i < OtherProfiles.length; i++) { + OtherProfiles[i].rvn += 1; + OtherProfiles[i].commandRevision += 1; + + MultiUpdate[i].profileRevision += 1; + MultiUpdate[i].profileCommandRevision += 1; + + fs.writeFileSync(`./profiles/${OtherProfiles[i].profileId || "campaign"}.json`, JSON.stringify(OtherProfiles[i], null, 2)); + } + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "multiUpdate": MultiUpdate, + "responseVersion": 1 + }) + res.end(); +}); + +// Set active hero loadout STW +express.post("/fortnite/api/game/v2/profile/*/client/SetActiveHeroLoadout", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.selectedLoadout) { + profile.stats.attributes.selected_hero_loadout = req.body.selectedLoadout; + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "selected_hero_loadout", + "value": profile.stats.attributes.selected_hero_loadout + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Activate consumable STW +express.post("/fortnite/api/game/v2/profile/*/client/ActivateConsumable", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + var XPBoost; + + if (req.body.targetItemId) { + profile.items[req.body.targetItemId].quantity -= 1; + + for (var key in profile.items) { + if (profile.items[key].templateId == "Token:xpboost") { + var randomNumber = Math.floor(Math.random() * 1250000); + if (randomNumber < 1000000) { + randomNumber += 1000000 + } + + profile.items[key].quantity += randomNumber; + + XPBoost = key; + } + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": req.body.targetItemId, + "quantity": profile.items[req.body.targetItemId].quantity + }) + + if (XPBoost) { + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": XPBoost, + "quantity": profile.items[XPBoost].quantity + }) + } + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Unassign all squads STW +express.post("/fortnite/api/game/v2/profile/*/client/UnassignAllSquads", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.squadIds) { + for (var i in req.body.squadIds) { + let id = req.body.squadIds[i]; + + for (var key in profile.items) { + if (profile.items[key].attributes.hasOwnProperty('squad_id')) { + if (profile.items[key].attributes.squad_id.toLowerCase() == id.toLowerCase()) { + profile.items[key].attributes.squad_id = ""; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "squad_id", + "attributeValue": profile.items[key].attributes.squad_id + }) + } + } + } + } + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Open llama STW +express.post("/fortnite/api/game/v2/profile/*/client/OpenCardPack", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + const cardpackData = require("./../responses/Campaign/cardPackData.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var Notifications = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.cardPackItemId) { + Notifications.push({ + "type": "cardPackResult", + "primary": true, + "lootGranted": { + "tierGroupName": profile.items[req.body.cardPackItemId].templateId.split(":")[1], + "items": [] + }, + "displayLevel": 0 + }) + + if (cardpackData.choiceCardPacks.includes(profile.items[req.body.cardPackItemId].templateId)) { + var ChosenItem = profile.items[req.body.cardPackItemId].attributes.options[req.body.selectionIdx]; + var Item = {"templateId":ChosenItem.itemType,"attributes":ChosenItem.attributes,"quantity":ChosenItem.quantity}; + const ID = functions.MakeID(); + + profile.items[ID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": Item + }) + + Notifications[0].lootGranted.items.push({ + "itemType": Item.templateId, + "itemGuid": ID, + "itemProfile": req.query.profileId, + "attributes": Item.attributes, + "quantity": Item.quantity + }) + } else { + for (var i = 0; i < 10; i++) { + const ID = functions.MakeID(); + var ItemIDS = cardpackData.default; + var randomNumber = Math.floor(Math.random() * ItemIDS.length); + var Item = {"templateId":ItemIDS[randomNumber],"attributes":{"legacy_alterations":[],"max_level_bonus":0,"level":1,"refund_legacy_item":false,"item_seen":false,"alterations":["","","","","",""],"xp":0,"refundable":false,"alteration_base_rarities":[],"favorite":false},"quantity":1}; + if (ItemIDS[randomNumber].toLowerCase().startsWith("worker:")) { + Item.attributes = functions.MakeSurvivorAttributes(ItemIDS[randomNumber]); + } + + if (Math.random() < 0.1) { // 10% (could be dfferent) chance of getting a choice CardPack. + var CPTemplateId = cardpackData.choiceCardPacks[Math.floor(Math.random() * cardpackData.choiceCardPacks.length)]; + var CPItem = {"templateId":CPTemplateId,"attributes":{"level":1,"pack_source":"Store","options":[]},"quantity":1} + ItemIDS = cardpackData[CPTemplateId.toLowerCase()] || cardpackData.default; + + for (var x = 0; x < 2; x++) { + randomNumber = Math.floor(Math.random() * ItemIDS.length); + Item = {"itemType":ItemIDS[randomNumber],"attributes":{"legacy_alterations":[],"max_level_bonus":0,"level":1,"refund_legacy_item":false,"item_seen":false,"alterations":["","","","","",""],"xp":0,"refundable":false,"alteration_base_rarities":[],"favorite":false},"quantity":1}; + if (ItemIDS[randomNumber].toLowerCase().startsWith("worker:")) { + Item.attributes = functions.MakeSurvivorAttributes(ItemIDS[randomNumber]); + } + ItemIDS.splice(ItemIDS.indexOf(ItemIDS[randomNumber]), 1); + CPItem.attributes.options.push(Item); + } + Item = CPItem; + } + + profile.items[ID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": Item + }) + + Notifications[0].lootGranted.items.push({ + "itemType": ItemIDS[randomNumber], + "itemGuid": ID, + "itemProfile": req.query.profileId, + "attributes": Item.attributes, + "quantity": 1 + }) + } + } + + if (profile.items[req.body.cardPackItemId].quantity <= 1) { + delete profile.items[req.body.cardPackItemId] + + ApplyProfileChanges.push({ + "changeType": "itemRemoved", + "itemId": req.body.cardPackItemId + }) + } + + try { + profile.items[req.body.cardPackItemId].quantity -= 1; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": req.body.cardPackItemId, + "quantity": profile.items[req.body.cardPackItemId].quantity + }) + } catch (err) {} + + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + // if (QueryRevision != BaseRevision) { + // ApplyProfileChanges = [{ + // "changeType": "fullProfileUpdate", + // "profile": profile + // }]; + // } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Add items to StW X-Ray Llamas +express.post("/fortnite/api/game/v2/profile/*/client/PopulatePrerolledOffers", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + const cardpackData = require("./../responses/Campaign/cardPackData.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + var date = new Date().toISOString(); + + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase() == "prerolldata:preroll_basic") { + if (date > profile.items[key].attributes.expiration) { + profile.items[key].attributes.items = []; + + for (var i = 0; i < 10; i++) { + var ItemIDS = cardpackData.default; + var randomNumber = Math.floor(Math.random() * ItemIDS.length); + var Item = {"itemType":ItemIDS[randomNumber],"attributes":{"legacy_alterations":[],"max_level_bonus":0,"level":1,"refund_legacy_item":false,"item_seen":false,"alterations":["","","","","",""],"xp":0,"refundable":false,"alteration_base_rarities":[],"favorite":false},"quantity":1}; + if (ItemIDS[randomNumber].toLowerCase().startsWith("worker:")) { + Item.attributes = functions.MakeSurvivorAttributes(ItemIDS[randomNumber]); + } + + if (Math.random() < 0.1) { // 10% (could be dfferent) chance of getting a choice Cardpack. + var CPTemplateId = cardpackData.choiceCardPacks[Math.floor(Math.random() * cardpackData.choiceCardPacks.length)]; + var CPItem = {"itemType":CPTemplateId,"attributes":{"level":1,"pack_source":"Store","options":[]},"quantity":1} + ItemIDS = cardpackData[CPTemplateId.toLowerCase()] || cardpackData.default; + + for (var x = 0; x < 2; x++) { + randomNumber = Math.floor(Math.random() * ItemIDS.length); + Item = {"itemType":ItemIDS[randomNumber],"attributes":{"legacy_alterations":[],"max_level_bonus":0,"level":1,"refund_legacy_item":false,"item_seen":false,"alterations":["","","","","",""],"xp":0,"refundable":false,"alteration_base_rarities":[],"favorite":false},"quantity":1}; + if (ItemIDS[randomNumber].toLowerCase().startsWith("worker:")) { + Item.attributes = functions.MakeSurvivorAttributes(ItemIDS[randomNumber]); + } + ItemIDS.splice(ItemIDS.indexOf(ItemIDS[randomNumber]), 1); + CPItem.attributes.options.push(Item); + } + Item = CPItem; + } + + profile.items[key].attributes.items.push(Item) + } + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "items", + "attributeValue": profile.items[key].attributes.items + }) + + profile.items[key].attributes.expiration = new Date().toISOString().split("T")[0] + "T23:59:59.999Z"; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "expiration", + "attributeValue": profile.items[key].attributes.expiration + }) + + StatChanged = true; + } + } + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Purchase item +express.post("/fortnite/api/game/v2/profile/*/client/PurchaseCatalogEntry", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "profile0"}.json`); + const campaign = require("./../profiles/campaign.json"); + const athena = require("./../profiles/athena.json"); + const cardpackData = require("./../responses/Campaign/cardPackData.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var MultiUpdate = []; + var Notifications = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var PurchasedLlama = false; + var AthenaModified = false; + var ItemExists = false; + + if (req.body.offerId && profile.profileId == "profile0" && PurchasedLlama == false) { + catalog.storefronts.forEach(function(value, a) { + if (value.name.toLowerCase().startsWith("cardpack")) { + catalog.storefronts[a].catalogEntries.forEach(function(value, b) { + if (value.offerId == req.body.offerId) { + var Quantity = 0; + catalog.storefronts[a].catalogEntries[b].itemGrants.forEach(function(value, c) { + Quantity = req.body.purchaseQuantity || 1; + + const Item = { + "templateId": value.templateId, + "attributes": { + "is_loot_tier_overridden": false, + "max_level_bonus": 0, + "level": 1391, + "pack_source": "Schedule", + "item_seen": false, + "xp": 0, + "favorite": false, + "override_loot_tier": 0 + }, + "quantity": 1 + }; + + for (var i = 0; i < Quantity; i++) { + var ID = functions.MakeID(); + + profile.items[ID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": profile.items[ID] + }) + } + }) + // Vbucks spending + if (catalog.storefronts[a].catalogEntries[b].prices[0].currencyType.toLowerCase() == "mtxcurrency") { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) { + if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") { + profile.items[key].quantity -= (catalog.storefronts[a].catalogEntries[b].prices[0].finalPrice) * Quantity; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": key, + "quantity": profile.items[key].quantity + }) + + profile.rvn += 1; + profile.commandRevision += 1; + + break; + } + } + } + } + } + }) + } + + // Battle pass + if (value.name.startsWith("BRSeason")) { + if (!Number.isNaN(Number(value.name.split("BRSeason")[1]))) { + var offer = value.catalogEntries.find(i => i.offerId == req.body.offerId); + + if (offer) { + if (MultiUpdate.length == 0) { + MultiUpdate.push({ + "profileRevision": athena.rvn || 0, + "profileId": "athena", + "profileChangesBaseRevision": athena.rvn || 0, + "profileChanges": [], + "profileCommandRevision": athena.commandRevision || 0, + }) + } + + var Season = value.name.split("BR")[1]; + var BattlePass = require(`./../responses/Athena/BattlePass/${Season}.json`); + + if (BattlePass) { + var SeasonData = require("./../responses/Athena/SeasonData.json"); + + if (BattlePass.battlePassOfferId == offer.offerId || BattlePass.battleBundleOfferId == offer.offerId) { + var lootList = []; + var EndingTier = SeasonData[Season].battlePassTier; + SeasonData[Season].battlePassPurchased = true; + + if (BattlePass.battleBundleOfferId == offer.offerId) { + SeasonData[Season].battlePassTier += 25; + if (SeasonData[Season].battlePassTier > 100) SeasonData[Season].battlePassTier = 100; + EndingTier = SeasonData[Season].battlePassTier; + } + + for (var i = 0; i < EndingTier; i++) { + var FreeTier = BattlePass.freeRewards[i] || {}; + var PaidTier = BattlePass.paidRewards[i] || {}; + + for (var item in FreeTier) { + if (item.toLowerCase() == "token:athenaseasonxpboost") { + SeasonData[Season].battlePassXPBoost += FreeTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_match_boost", + "value": SeasonData[Season].battlePassXPBoost + }) + } + + if (item.toLowerCase() == "token:athenaseasonfriendxpboost") { + SeasonData[Season].battlePassXPFriendBoost += FreeTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_friend_match_boost", + "value": SeasonData[Season].battlePassXPFriendBoost + }) + } + + if (item.toLowerCase().startsWith("currency:mtx")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) { + if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") { + profile.items[key].quantity += FreeTier[item]; + break; + } + } + } + } + + if (item.toLowerCase().startsWith("homebasebanner")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase() == item.toLowerCase()) { + profile.items[key].attributes.item_seen = false; + ItemExists = true; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": profile.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"item_seen":false},"quantity":1}; + + profile.items[ItemID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + if (item.toLowerCase().startsWith("athena")) { + for (var key in athena.items) { + if (athena.items[key].templateId.toLowerCase() == item.toLowerCase()) { + athena.items[key].attributes.item_seen = false; + ItemExists = true; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": athena.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"max_level_bonus":0,"level":1,"item_seen":false,"xp":0,"variants":[],"favorite":false},"quantity":FreeTier[item]} + + athena.items[ItemID] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + lootList.push({ + "itemType": item, + "itemGuid": item, + "quantity": FreeTier[item] + }) + } + + for (var item in PaidTier) { + if (item.toLowerCase() == "token:athenaseasonxpboost") { + SeasonData[Season].battlePassXPBoost += PaidTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_match_boost", + "value": SeasonData[Season].battlePassXPBoost + }) + } + + if (item.toLowerCase() == "token:athenaseasonfriendxpboost") { + SeasonData[Season].battlePassXPFriendBoost += PaidTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_friend_match_boost", + "value": SeasonData[Season].battlePassXPFriendBoost + }) + } + + if (item.toLowerCase().startsWith("currency:mtx")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) { + if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") { + profile.items[key].quantity += PaidTier[item]; + break; + } + } + } + } + + if (item.toLowerCase().startsWith("homebasebanner")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase() == item.toLowerCase()) { + profile.items[key].attributes.item_seen = false; + ItemExists = true; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": profile.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"item_seen":false},"quantity":1}; + + profile.items[ItemID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + if (item.toLowerCase().startsWith("athena")) { + for (var key in athena.items) { + if (athena.items[key].templateId.toLowerCase() == item.toLowerCase()) { + athena.items[key].attributes.item_seen = false; + ItemExists = true; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": athena.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"max_level_bonus":0,"level":1,"item_seen":false,"xp":0,"variants":[],"favorite":false},"quantity":PaidTier[item]} + + athena.items[ItemID] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + lootList.push({ + "itemType": item, + "itemGuid": item, + "quantity": PaidTier[item] + }) + } + } + + var GiftBoxID = functions.MakeID(); + var GiftBox = {"templateId":Number(Season.split("Season")[1]) <= 4 ? "GiftBox:gb_battlepass" : "GiftBox:gb_battlepasspurchased","attributes":{"max_level_bonus":0,"fromAccountId":"","lootList":lootList}} + + if (Number(Season.split("Season")[1]) > 2) { + profile.items[GiftBoxID] = GiftBox; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": GiftBoxID, + "item": GiftBox + }) + } + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "book_purchased", + "value": SeasonData[Season].battlePassPurchased + }) + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "book_level", + "value": SeasonData[Season].battlePassTier + }) + + AthenaModified = true; + } + + if (BattlePass.tierOfferId == offer.offerId) { + var lootList = []; + var StartingTier = SeasonData[Season].battlePassTier; + var EndingTier; + SeasonData[Season].battlePassTier += req.body.purchaseQuantity || 1; + EndingTier = SeasonData[Season].battlePassTier; + + for (var i = StartingTier; i < EndingTier; i++) { + var FreeTier = BattlePass.freeRewards[i] || {}; + var PaidTier = BattlePass.paidRewards[i] || {}; + + for (var item in FreeTier) { + if (item.toLowerCase() == "token:athenaseasonxpboost") { + SeasonData[Season].battlePassXPBoost += FreeTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_match_boost", + "value": SeasonData[Season].battlePassXPBoost + }) + } + + if (item.toLowerCase() == "token:athenaseasonfriendxpboost") { + SeasonData[Season].battlePassXPFriendBoost += FreeTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_friend_match_boost", + "value": SeasonData[Season].battlePassXPFriendBoost + }) + } + + if (item.toLowerCase().startsWith("currency:mtx")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) { + if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") { + profile.items[key].quantity += FreeTier[item]; + break; + } + } + } + } + + if (item.toLowerCase().startsWith("homebasebanner")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase() == item.toLowerCase()) { + profile.items[key].attributes.item_seen = false; + ItemExists = true; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": profile.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"item_seen":false},"quantity":1}; + + profile.items[ItemID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + if (item.toLowerCase().startsWith("athena")) { + for (var key in athena.items) { + if (athena.items[key].templateId.toLowerCase() == item.toLowerCase()) { + athena.items[key].attributes.item_seen = false; + ItemExists = true; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": athena.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"max_level_bonus":0,"level":1,"item_seen":false,"xp":0,"variants":[],"favorite":false},"quantity":FreeTier[item]} + + athena.items[ItemID] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + lootList.push({ + "itemType": item, + "itemGuid": item, + "quantity": FreeTier[item] + }) + } + + for (var item in PaidTier) { + if (item.toLowerCase() == "token:athenaseasonxpboost") { + SeasonData[Season].battlePassXPBoost += PaidTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_match_boost", + "value": SeasonData[Season].battlePassXPBoost + }) + } + + if (item.toLowerCase() == "token:athenaseasonfriendxpboost") { + SeasonData[Season].battlePassXPFriendBoost += PaidTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_friend_match_boost", + "value": SeasonData[Season].battlePassXPFriendBoost + }) + } + + if (item.toLowerCase().startsWith("currency:mtx")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) { + if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") { + profile.items[key].quantity += PaidTier[item]; + break; + } + } + } + } + + if (item.toLowerCase().startsWith("homebasebanner")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase() == item.toLowerCase()) { + profile.items[key].attributes.item_seen = false; + ItemExists = true; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": profile.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"item_seen":false},"quantity":1}; + + profile.items[ItemID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + if (item.toLowerCase().startsWith("athena")) { + for (var key in athena.items) { + if (athena.items[key].templateId.toLowerCase() == item.toLowerCase()) { + athena.items[key].attributes.item_seen = false; + ItemExists = true; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": athena.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"max_level_bonus":0,"level":1,"item_seen":false,"xp":0,"variants":[],"favorite":false},"quantity":PaidTier[item]} + + athena.items[ItemID] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + lootList.push({ + "itemType": item, + "itemGuid": item, + "quantity": PaidTier[item] + }) + } + } + + var GiftBoxID = functions.MakeID(); + var GiftBox = {"templateId":"GiftBox:gb_battlepass","attributes":{"max_level_bonus":0,"fromAccountId":"","lootList":lootList}} + + if (Number(Season.split("Season")[1]) > 2) { + profile.items[GiftBoxID] = GiftBox; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": GiftBoxID, + "item": GiftBox + }) + } + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "book_level", + "value": SeasonData[Season].battlePassTier + }) + + AthenaModified = true; + } + + fs.writeFileSync("./responses/Athena/SeasonData.json", JSON.stringify(SeasonData, null, 2)); + } + } + } + } + + if (value.name.startsWith("BR")) { + catalog.storefronts[a].catalogEntries.forEach(function(value, b) { + if (value.offerId == req.body.offerId) { + catalog.storefronts[a].catalogEntries[b].itemGrants.forEach(function(value, c) { + const ID = value.templateId; + + for (var key in athena.items) { + if (value.templateId.toLowerCase() == athena.items[key].templateId.toLowerCase()) { + ItemExists = true; + } + } + + if (ItemExists == false) { + if (MultiUpdate.length == 0) { + MultiUpdate.push({ + "profileRevision": athena.rvn || 0, + "profileId": "athena", + "profileChangesBaseRevision": athena.rvn || 0, + "profileChanges": [], + "profileCommandRevision": athena.commandRevision || 0, + }) + } + + if (Notifications.length == 0) { + Notifications.push({ + "type": "CatalogPurchase", + "primary": true, + "lootResult": { + "items": [] + } + }) + } + + const Item = { + "templateId": value.templateId, + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }; + + athena.items[ID] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": athena.items[ID] + }) + + Notifications[0].lootResult.items.push({ + "itemType": value.templateId, + "itemGuid": ID, + "itemProfile": "athena", + "quantity": value.quantity + }) + + AthenaModified = true; + } + + ItemExists = false; + }) + // Vbucks spending + if (catalog.storefronts[a].catalogEntries[b].prices[0].currencyType.toLowerCase() == "mtxcurrency") { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) { + if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") { + profile.items[key].quantity -= (catalog.storefronts[a].catalogEntries[b].prices[0].finalPrice) * req.body.purchaseQuantity || 1; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": key, + "quantity": profile.items[key].quantity + }) + + profile.rvn += 1; + profile.commandRevision += 1; + + break; + } + } + } + } + } + }) + } + }) + + PurchasedLlama = true; + + if (AthenaModified == true) { + athena.rvn += 1; + athena.commandRevision += 1; + + if (MultiUpdate[0]) { + MultiUpdate[0].profileRevision = athena.rvn || 0; + MultiUpdate[0].profileCommandRevision = athena.commandRevision || 0; + } + + fs.writeFileSync("./profiles/athena.json", JSON.stringify(athena, null, 2)); + fs.writeFileSync(`./profiles/${req.query.profileId || "profile0"}.json`, JSON.stringify(profile, null, 2)); + } + + if (AthenaModified == false) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "profile0"}.json`, JSON.stringify(profile, null, 2)); + } + } + + if (req.body.offerId && profile.profileId == "common_core") { + catalog.storefronts.forEach(function(value, a) { + if (value.name.toLowerCase().startsWith("cardpack")) { + catalog.storefronts[a].catalogEntries.forEach(function(value, b) { + if (value.offerId == req.body.offerId) { + var Quantity = 0; + catalog.storefronts[a].catalogEntries[b].itemGrants.forEach(function(value, c) { + const memory = functions.GetVersionInfo(req); + + if (4 >= memory.season && PurchasedLlama == false) { + if (MultiUpdate.length == 0) { + MultiUpdate.push({ + "profileRevision": campaign.rvn || 0, + "profileId": "campaign", + "profileChangesBaseRevision": campaign.rvn || 0, + "profileChanges": [], + "profileCommandRevision": campaign.commandRevision || 0, + }) + } + + Quantity = req.body.purchaseQuantity || 1; + + const Item = { + "templateId": value.templateId, + "attributes": { + "is_loot_tier_overridden": false, + "max_level_bonus": 0, + "level": 1391, + "pack_source": "Schedule", + "item_seen": false, + "xp": 0, + "favorite": false, + "override_loot_tier": 0 + }, + "quantity": 1 + }; + + for (var i = 0; i < Quantity; i++) { + var ID = functions.MakeID(); + + campaign.items[ID] = Item + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": campaign.items[ID] + }) + } + + PurchasedLlama = true; + } + + if (memory.build >= 5 && memory.build <= 7.20 && PurchasedLlama == false) { + if (MultiUpdate.length == 0) { + MultiUpdate.push({ + "profileRevision": campaign.rvn || 0, + "profileId": "campaign", + "profileChangesBaseRevision": campaign.rvn || 0, + "profileChanges": [], + "profileCommandRevision": campaign.commandRevision || 0, + }) + } + + Quantity = req.body.purchaseQuantity || 1; + + const Item = { + "templateId": value.templateId, + "attributes": { + "is_loot_tier_overridden": false, + "max_level_bonus": 0, + "level": 1391, + "pack_source": "Schedule", + "item_seen": false, + "xp": 0, + "favorite": false, + "override_loot_tier": 0 + }, + "quantity": 1 + }; + + for (var i = 0; i < Quantity; i++) { + var ID = functions.MakeID(); + + campaign.items[ID] = Item + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": campaign.items[ID] + }) + } + + Notifications.push({ + "type": "cardPackResult", + "primary": true, + "lootGranted": { + "tierGroupName": "", + "items": [] + }, + "displayLevel": 0 + }) + + PurchasedLlama = true; + } + + if (6 < memory.season && PurchasedLlama == false) { + if (MultiUpdate.length == 0) { + MultiUpdate.push({ + "profileRevision": campaign.rvn || 0, + "profileId": "campaign", + "profileChangesBaseRevision": campaign.rvn || 0, + "profileChanges": [], + "profileCommandRevision": campaign.commandRevision || 0, + }) + } + + Quantity = req.body.purchaseQuantity || 1; + var LlamaItemIDS = []; + + var Item = { + "templateId": value.templateId, + "attributes": { + "is_loot_tier_overridden": false, + "max_level_bonus": 0, + "level": 1391, + "pack_source": "Schedule", + "item_seen": false, + "xp": 0, + "favorite": false, + "override_loot_tier": 0 + }, + "quantity": 1 + }; + + for (var i = 0; i < Quantity; i++) { + var ID = functions.MakeID(); + + campaign.items[ID] = Item + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": campaign.items[ID] + }) + + LlamaItemIDS.push(ID); + } + + Notifications.push({ + "type": "CatalogPurchase", + "primary": true, + "lootResult": { + "items": [] + } + }) + + if (req.body.currencySubType.toLowerCase() != "accountresource:voucher_basicpack") { + for (var x = 0; x < Quantity; x++) { + for (var key in campaign.items) { + if (campaign.items[key].templateId.toLowerCase() == "prerolldata:preroll_basic") { + if (campaign.items[key].attributes.offerId == req.body.offerId) { + for (var item in campaign.items[key].attributes.items) { + const id = functions.MakeID(); + var Item = {"templateId":campaign.items[key].attributes.items[item].itemType,"attributes":campaign.items[key].attributes.items[item].attributes,"quantity":campaign.items[key].attributes.items[item].quantity}; + + campaign.items[id] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": id, + "item": Item + }) + + Notifications[0].lootResult.items.push({ + "itemType": campaign.items[key].attributes.items[item].itemType, + "itemGuid": id, + "itemProfile": "campaign", + "attributes": Item.attributes, + "quantity": 1 + }) + } + + campaign.items[key].attributes.items = []; + + for (var i = 0; i < 10; i++) { + var ItemIDS = cardpackData.default; + var randomNumber = Math.floor(Math.random() * ItemIDS.length); + var Item = {"itemType":ItemIDS[randomNumber],"attributes":{"legacy_alterations":[],"max_level_bonus":0,"level":1,"refund_legacy_item":false,"item_seen":false,"alterations":["","","","","",""],"xp":0,"refundable":false,"alteration_base_rarities":[],"favorite":false},"quantity":1}; + if (ItemIDS[randomNumber].toLowerCase().startsWith("worker:")) { + Item.attributes = functions.MakeSurvivorAttributes(ItemIDS[randomNumber]); + } + + if (Math.random() < 0.1) { // 10% (could be dfferent) chance of getting a choice Cardpack. + var CPTemplateId = cardpackData.choiceCardPacks[Math.floor(Math.random() * cardpackData.choiceCardPacks.length)]; + var CPItem = {"itemType":CPTemplateId,"attributes":{"level":1,"pack_source":"Store","options":[]},"quantity":1} + ItemIDS = cardpackData[CPTemplateId.toLowerCase()] || cardpackData.default; + + for (var x = 0; x < 2; x++) { + randomNumber = Math.floor(Math.random() * ItemIDS.length); + Item = {"itemType":ItemIDS[randomNumber],"attributes":{"legacy_alterations":[],"max_level_bonus":0,"level":1,"refund_legacy_item":false,"item_seen":false,"alterations":["","","","","",""],"xp":0,"refundable":false,"alteration_base_rarities":[],"favorite":false},"quantity":1}; + if (ItemIDS[randomNumber].toLowerCase().startsWith("worker:")) { + Item.attributes = functions.MakeSurvivorAttributes(ItemIDS[randomNumber]); + } + ItemIDS.splice(ItemIDS.indexOf(ItemIDS[randomNumber]), 1); + CPItem.attributes.options.push(Item); + } + Item = CPItem; + } + + campaign.items[key].attributes.items.push(Item) + } + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "items", + "attributeValue": campaign.items[key].attributes.items + }) + } + } + } + } + } + + try { + if (req.body.currencySubType.toLowerCase() != "accountresource:voucher_basicpack") { + for (var i in LlamaItemIDS) { + var id = LlamaItemIDS[i]; + + delete campaign.items[id]; + MultiUpdate[0].profileChanges.push({ + "changeType": "itemRemoved", + "itemId": id + }) + } + } + } catch (err) {} + + PurchasedLlama = true; + } + }) + // Vbucks spending + if (catalog.storefronts[a].catalogEntries[b].prices[0].currencyType.toLowerCase() == "mtxcurrency") { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) { + if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") { + profile.items[key].quantity -= (catalog.storefronts[a].catalogEntries[b].prices[0].finalPrice) * Quantity; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": key, + "quantity": profile.items[key].quantity + }) + + profile.rvn += 1; + profile.commandRevision += 1; + + break; + } + } + } + } + } + }) + } + + // Battle pass + if (value.name.startsWith("BRSeason")) { + if (!Number.isNaN(Number(value.name.split("BRSeason")[1]))) { + var offer = value.catalogEntries.find(i => i.offerId == req.body.offerId); + + if (offer) { + if (MultiUpdate.length == 0) { + MultiUpdate.push({ + "profileRevision": athena.rvn || 0, + "profileId": "athena", + "profileChangesBaseRevision": athena.rvn || 0, + "profileChanges": [], + "profileCommandRevision": athena.commandRevision || 0, + }) + } + + var Season = value.name.split("BR")[1]; + var BattlePass = require(`./../responses/Athena/BattlePass/${Season}.json`); + + if (BattlePass) { + var SeasonData = require("./../responses/Athena/SeasonData.json"); + + if (BattlePass.battlePassOfferId == offer.offerId || BattlePass.battleBundleOfferId == offer.offerId) { + var lootList = []; + var EndingTier = SeasonData[Season].battlePassTier; + SeasonData[Season].battlePassPurchased = true; + + if (BattlePass.battleBundleOfferId == offer.offerId) { + SeasonData[Season].battlePassTier += 25; + if (SeasonData[Season].battlePassTier > 100) SeasonData[Season].battlePassTier = 100; + EndingTier = SeasonData[Season].battlePassTier; + } + + for (var i = 0; i < EndingTier; i++) { + var FreeTier = BattlePass.freeRewards[i] || {}; + var PaidTier = BattlePass.paidRewards[i] || {}; + + for (var item in FreeTier) { + if (item.toLowerCase() == "token:athenaseasonxpboost") { + SeasonData[Season].battlePassXPBoost += FreeTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_match_boost", + "value": SeasonData[Season].battlePassXPBoost + }) + } + + if (item.toLowerCase() == "token:athenaseasonfriendxpboost") { + SeasonData[Season].battlePassXPFriendBoost += FreeTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_friend_match_boost", + "value": SeasonData[Season].battlePassXPFriendBoost + }) + } + + if (item.toLowerCase().startsWith("currency:mtx")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) { + if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") { + profile.items[key].quantity += FreeTier[item]; + break; + } + } + } + } + + if (item.toLowerCase().startsWith("homebasebanner")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase() == item.toLowerCase()) { + profile.items[key].attributes.item_seen = false; + ItemExists = true; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": profile.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"item_seen":false},"quantity":1}; + + profile.items[ItemID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + if (item.toLowerCase().startsWith("athena")) { + for (var key in athena.items) { + if (athena.items[key].templateId.toLowerCase() == item.toLowerCase()) { + athena.items[key].attributes.item_seen = false; + ItemExists = true; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": athena.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"max_level_bonus":0,"level":1,"item_seen":false,"xp":0,"variants":[],"favorite":false},"quantity":FreeTier[item]} + + athena.items[ItemID] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + lootList.push({ + "itemType": item, + "itemGuid": item, + "quantity": FreeTier[item] + }) + } + + for (var item in PaidTier) { + if (item.toLowerCase() == "token:athenaseasonxpboost") { + SeasonData[Season].battlePassXPBoost += PaidTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_match_boost", + "value": SeasonData[Season].battlePassXPBoost + }) + } + + if (item.toLowerCase() == "token:athenaseasonfriendxpboost") { + SeasonData[Season].battlePassXPFriendBoost += PaidTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_friend_match_boost", + "value": SeasonData[Season].battlePassXPFriendBoost + }) + } + + if (item.toLowerCase().startsWith("currency:mtx")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) { + if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") { + profile.items[key].quantity += PaidTier[item]; + break; + } + } + } + } + + if (item.toLowerCase().startsWith("homebasebanner")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase() == item.toLowerCase()) { + profile.items[key].attributes.item_seen = false; + ItemExists = true; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": profile.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"item_seen":false},"quantity":1}; + + profile.items[ItemID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + if (item.toLowerCase().startsWith("athena")) { + for (var key in athena.items) { + if (athena.items[key].templateId.toLowerCase() == item.toLowerCase()) { + athena.items[key].attributes.item_seen = false; + ItemExists = true; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": athena.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"max_level_bonus":0,"level":1,"item_seen":false,"xp":0,"variants":[],"favorite":false},"quantity":PaidTier[item]} + + athena.items[ItemID] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + lootList.push({ + "itemType": item, + "itemGuid": item, + "quantity": PaidTier[item] + }) + } + } + + var GiftBoxID = functions.MakeID(); + var GiftBox = {"templateId":Number(Season.split("Season")[1]) <= 4 ? "GiftBox:gb_battlepass" : "GiftBox:gb_battlepasspurchased","attributes":{"max_level_bonus":0,"fromAccountId":"","lootList":lootList}} + + if (Number(Season.split("Season")[1]) > 2) { + profile.items[GiftBoxID] = GiftBox; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": GiftBoxID, + "item": GiftBox + }) + } + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "book_purchased", + "value": SeasonData[Season].battlePassPurchased + }) + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "book_level", + "value": SeasonData[Season].battlePassTier + }) + + AthenaModified = true; + } + + if (BattlePass.tierOfferId == offer.offerId) { + var lootList = []; + var StartingTier = SeasonData[Season].battlePassTier; + var EndingTier; + SeasonData[Season].battlePassTier += req.body.purchaseQuantity || 1; + EndingTier = SeasonData[Season].battlePassTier; + + for (var i = StartingTier; i < EndingTier; i++) { + var FreeTier = BattlePass.freeRewards[i] || {}; + var PaidTier = BattlePass.paidRewards[i] || {}; + + for (var item in FreeTier) { + if (item.toLowerCase() == "token:athenaseasonxpboost") { + SeasonData[Season].battlePassXPBoost += FreeTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_match_boost", + "value": SeasonData[Season].battlePassXPBoost + }) + } + + if (item.toLowerCase() == "token:athenaseasonfriendxpboost") { + SeasonData[Season].battlePassXPFriendBoost += FreeTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_friend_match_boost", + "value": SeasonData[Season].battlePassXPFriendBoost + }) + } + + if (item.toLowerCase().startsWith("currency:mtx")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) { + if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") { + profile.items[key].quantity += FreeTier[item]; + break; + } + } + } + } + + if (item.toLowerCase().startsWith("homebasebanner")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase() == item.toLowerCase()) { + profile.items[key].attributes.item_seen = false; + ItemExists = true; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": profile.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"item_seen":false},"quantity":1}; + + profile.items[ItemID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + if (item.toLowerCase().startsWith("athena")) { + for (var key in athena.items) { + if (athena.items[key].templateId.toLowerCase() == item.toLowerCase()) { + athena.items[key].attributes.item_seen = false; + ItemExists = true; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": athena.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"max_level_bonus":0,"level":1,"item_seen":false,"xp":0,"variants":[],"favorite":false},"quantity":FreeTier[item]} + + athena.items[ItemID] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + lootList.push({ + "itemType": item, + "itemGuid": item, + "quantity": FreeTier[item] + }) + } + + for (var item in PaidTier) { + if (item.toLowerCase() == "token:athenaseasonxpboost") { + SeasonData[Season].battlePassXPBoost += PaidTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_match_boost", + "value": SeasonData[Season].battlePassXPBoost + }) + } + + if (item.toLowerCase() == "token:athenaseasonfriendxpboost") { + SeasonData[Season].battlePassXPFriendBoost += PaidTier[item]; + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "season_friend_match_boost", + "value": SeasonData[Season].battlePassXPFriendBoost + }) + } + + if (item.toLowerCase().startsWith("currency:mtx")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) { + if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") { + profile.items[key].quantity += PaidTier[item]; + break; + } + } + } + } + + if (item.toLowerCase().startsWith("homebasebanner")) { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase() == item.toLowerCase()) { + profile.items[key].attributes.item_seen = false; + ItemExists = true; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": profile.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"item_seen":false},"quantity":1}; + + profile.items[ItemID] = Item; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + if (item.toLowerCase().startsWith("athena")) { + for (var key in athena.items) { + if (athena.items[key].templateId.toLowerCase() == item.toLowerCase()) { + athena.items[key].attributes.item_seen = false; + ItemExists = true; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": key, + "attributeName": "item_seen", + "attributeValue": athena.items[key].attributes.item_seen + }) + } + } + + if (ItemExists == false) { + var ItemID = functions.MakeID(); + var Item = {"templateId":item,"attributes":{"max_level_bonus":0,"level":1,"item_seen":false,"xp":0,"variants":[],"favorite":false},"quantity":PaidTier[item]} + + athena.items[ItemID] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ItemID, + "item": Item + }) + } + + ItemExists = false; + } + + lootList.push({ + "itemType": item, + "itemGuid": item, + "quantity": PaidTier[item] + }) + } + } + + var GiftBoxID = functions.MakeID(); + var GiftBox = {"templateId":"GiftBox:gb_battlepass","attributes":{"max_level_bonus":0,"fromAccountId":"","lootList":lootList}} + + if (Number(Season.split("Season")[1]) > 2) { + profile.items[GiftBoxID] = GiftBox; + + ApplyProfileChanges.push({ + "changeType": "itemAdded", + "itemId": GiftBoxID, + "item": GiftBox + }) + } + + MultiUpdate[0].profileChanges.push({ + "changeType": "statModified", + "name": "book_level", + "value": SeasonData[Season].battlePassTier + }) + + AthenaModified = true; + } + + fs.writeFileSync("./responses/Athena/SeasonData.json", JSON.stringify(SeasonData, null, 2)); + } + } + } + } + + if (value.name.startsWith("BR")) { + catalog.storefronts[a].catalogEntries.forEach(function(value, b) { + if (value.offerId == req.body.offerId) { + catalog.storefronts[a].catalogEntries[b].itemGrants.forEach(function(value, c) { + const ID = value.templateId; + + for (var key in athena.items) { + if (value.templateId.toLowerCase() == athena.items[key].templateId.toLowerCase()) { + ItemExists = true; + } + } + + if (ItemExists == false) { + if (MultiUpdate.length == 0) { + MultiUpdate.push({ + "profileRevision": athena.rvn || 0, + "profileId": "athena", + "profileChangesBaseRevision": athena.rvn || 0, + "profileChanges": [], + "profileCommandRevision": athena.commandRevision || 0, + }) + } + + if (Notifications.length == 0) { + Notifications.push({ + "type": "CatalogPurchase", + "primary": true, + "lootResult": { + "items": [] + } + }) + } + + const Item = { + "templateId": value.templateId, + "attributes": { + "max_level_bonus": 0, + "level": 1, + "item_seen": false, + "xp": 0, + "variants": [], + "favorite": false + }, + "quantity": 1 + }; + + athena.items[ID] = Item; + + MultiUpdate[0].profileChanges.push({ + "changeType": "itemAdded", + "itemId": ID, + "item": Item + }) + + Notifications[0].lootResult.items.push({ + "itemType": value.templateId, + "itemGuid": ID, + "itemProfile": "athena", + "quantity": value.quantity + }) + + AthenaModified = true; + } + + ItemExists = false; + }) + // Vbucks spending + if (catalog.storefronts[a].catalogEntries[b].prices[0].currencyType.toLowerCase() == "mtxcurrency") { + for (var key in profile.items) { + if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) { + if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") { + profile.items[key].quantity -= (catalog.storefronts[a].catalogEntries[b].prices[0].finalPrice) * req.body.purchaseQuantity || 1; + + ApplyProfileChanges.push({ + "changeType": "itemQuantityChanged", + "itemId": key, + "quantity": profile.items[key].quantity + }) + + break; + } + } + } + } + + if (catalog.storefronts[a].catalogEntries[b].itemGrants.length != 0) { + // Add to refunding tab + var purchaseId = functions.MakeID(); + profile.stats.attributes.mtx_purchase_history.purchases.push({"purchaseId":purchaseId,"offerId":`v2:/${purchaseId}`,"purchaseDate":new Date().toISOString(),"freeRefundEligible":false,"fulfillments":[],"lootResult":Notifications[0].lootResult.items,"totalMtxPaid":catalog.storefronts[a].catalogEntries[b].prices[0].finalPrice,"metadata":{},"gameContext":""}) + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "mtx_purchase_history", + "value": profile.stats.attributes.mtx_purchase_history + }) + } + + profile.rvn += 1; + profile.commandRevision += 1; + } + }) + } + }) + + if (AthenaModified == true) { + athena.rvn += 1; + athena.commandRevision += 1; + + if (MultiUpdate[0]) { + MultiUpdate[0].profileRevision = athena.rvn || 0; + MultiUpdate[0].profileCommandRevision = athena.commandRevision || 0; + } + + fs.writeFileSync("./profiles/athena.json", JSON.stringify(athena, null, 2)); + fs.writeFileSync(`./profiles/${req.query.profileId || "common_core"}.json`, JSON.stringify(profile, null, 2)); + } + + if (AthenaModified == false) { + campaign.rvn += 1; + campaign.commandRevision += 1; + + if (MultiUpdate[0]) { + MultiUpdate[0].profileRevision = campaign.rvn || 0; + MultiUpdate[0].profileCommandRevision = campaign.commandRevision || 0; + } + + fs.writeFileSync("./profiles/campaign.json", JSON.stringify(campaign, null, 2)); + fs.writeFileSync(`./profiles/${req.query.profileId || "common_core"}.json`, JSON.stringify(profile, null, 2)); + } + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "profile0", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "notifications": Notifications, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "multiUpdate": MultiUpdate, + "responseVersion": 1 + }) + res.end(); +}); + +// Archive locker items +express.post("/fortnite/api/game/v2/profile/*/client/SetItemArchivedStatusBatch", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "athena"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.itemIds) { + for (var i in req.body.itemIds) { + profile.items[req.body.itemIds[i]].attributes.archived = req.body.archived || false; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.itemIds[i], + "attributeName": "archived", + "attributeValue": profile.items[req.body.itemIds[i]].attributes.archived + }) + } + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Set multiple items favorite +express.post("/fortnite/api/game/v2/profile/*/client/SetItemFavoriteStatusBatch", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "athena"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.itemIds) { + for (var i in req.body.itemIds) { + profile.items[req.body.itemIds[i]].attributes.favorite = req.body.itemFavStatus[i] || false; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.itemIds[i], + "attributeName": "favorite", + "attributeValue": profile.items[req.body.itemIds[i]].attributes.favorite + }) + } + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Set favorite on item +express.post("/fortnite/api/game/v2/profile/*/client/SetItemFavoriteStatus", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "athena"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.targetItemId) { + profile.items[req.body.targetItemId].attributes.favorite = req.body.bFavorite || false; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.targetItemId, + "attributeName": "favorite", + "attributeValue": profile.items[req.body.targetItemId].attributes.favorite + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Mark item as seen +express.post("/fortnite/api/game/v2/profile/*/client/MarkItemSeen", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "athena"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.itemIds) { + for (var i in req.body.itemIds) { + profile.items[req.body.itemIds[i]].attributes.item_seen = true; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.itemIds[i], + "attributeName": "item_seen", + "attributeValue": profile.items[req.body.itemIds[i]].attributes.item_seen + }) + } + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Equip BR Locker 1 +express.post("/fortnite/api/game/v2/profile/*/client/EquipBattleRoyaleCustomization", async (req, res) => { + const profile = require("./../profiles/athena.json"); + + try { + if (!profile.stats.attributes.favorite_dance) { + profile.stats.attributes.favorite_dance = ["","","","","",""]; + } + if (!profile.stats.attributes.favorite_itemwraps) { + profile.stats.attributes.favorite_itemwraps = ["","","","","","",""]; + } + } catch (err) {} + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + var VariantChanged = false; + + try { + const ReturnVariantsAsString = JSON.stringify(req.body.variantUpdates || []) + + if (ReturnVariantsAsString.includes("active")) { + if (profile.items[req.body.itemToSlot].attributes.variants.length == 0) { + profile.items[req.body.itemToSlot].attributes.variants = req.body.variantUpdates || []; + } + + for (var i in profile.items[req.body.itemToSlot].attributes.variants) { + try { + if (profile.items[req.body.itemToSlot].attributes.variants[i].channel.toLowerCase() == req.body.variantUpdates[i].channel.toLowerCase()) { + profile.items[req.body.itemToSlot].attributes.variants[i].active = req.body.variantUpdates[i].active || ""; + } + } catch (err) {} + } + + VariantChanged = true; + } + } catch (err) {} + + if (req.body.slotName) { + + switch (req.body.slotName) { + + case "Character": + profile.stats.attributes.favorite_character = req.body.itemToSlot || ""; + StatChanged = true; + break; + + case "Backpack": + profile.stats.attributes.favorite_backpack = req.body.itemToSlot || ""; + StatChanged = true; + break; + + case "Pickaxe": + profile.stats.attributes.favorite_pickaxe = req.body.itemToSlot || ""; + StatChanged = true; + break; + + case "Glider": + profile.stats.attributes.favorite_glider = req.body.itemToSlot || ""; + StatChanged = true; + break; + + case "SkyDiveContrail": + profile.stats.attributes.favorite_skydivecontrail = req.body.itemToSlot || ""; + StatChanged = true; + break; + + case "MusicPack": + profile.stats.attributes.favorite_musicpack = req.body.itemToSlot || ""; + StatChanged = true; + break; + + case "LoadingScreen": + profile.stats.attributes.favorite_loadingscreen = req.body.itemToSlot || ""; + StatChanged = true; + break; + + case "Dance": + var indexwithinslot = req.body.indexWithinSlot || 0; + + if (Math.sign(indexwithinslot) == 1 || Math.sign(indexwithinslot) == 0) { + profile.stats.attributes.favorite_dance[indexwithinslot] = req.body.itemToSlot || ""; + } + + StatChanged = true; + break; + + case "ItemWrap": + var indexwithinslot = req.body.indexWithinSlot || 0; + + switch (Math.sign(indexwithinslot)) { + + case 0: + profile.stats.attributes.favorite_itemwraps[indexwithinslot] = req.body.itemToSlot || ""; + break; + + case 1: + profile.stats.attributes.favorite_itemwraps[indexwithinslot] = req.body.itemToSlot || ""; + break; + + case -1: + for (var i = 0; i < 7; i++) { + profile.stats.attributes.favorite_itemwraps[i] = req.body.itemToSlot || ""; + } + break; + + } + + StatChanged = true; + break; + + } + + } + + if (StatChanged == true) { + var Category = (`favorite_${req.body.slotName || "character"}`).toLowerCase() + + if (Category == "favorite_itemwrap") { + Category += "s" + } + + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": Category, + "value": profile.stats.attributes[Category] + }) + + if (VariantChanged == true) { + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.itemToSlot, + "attributeName": "variants", + "attributeValue": profile.items[req.body.itemToSlot].attributes.variants + }) + } + fs.writeFileSync("./profiles/athena.json", JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Set BR Banner 1 +express.post("/fortnite/api/game/v2/profile/*/client/SetBattleRoyaleBanner", async (req, res) => { + const profile = require("./../profiles/athena.json"); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.homebaseBannerIconId && req.body.homebaseBannerColorId) { + profile.stats.attributes.banner_icon = req.body.homebaseBannerIconId; + profile.stats.attributes.banner_color = req.body.homebaseBannerColorId; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "banner_icon", + "value": profile.stats.attributes.banner_icon + }) + + ApplyProfileChanges.push({ + "changeType": "statModified", + "name": "banner_color", + "value": profile.stats.attributes.banner_color + }) + + fs.writeFileSync("./profiles/athena.json", JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Set BR Banner 2 +express.post("/fortnite/api/game/v2/profile/*/client/SetCosmeticLockerBanner", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "athena"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.bannerIconTemplateName && req.body.bannerColorTemplateName && req.body.lockerItem) { + profile.items[req.body.lockerItem].attributes.banner_icon_template = req.body.bannerIconTemplateName; + profile.items[req.body.lockerItem].attributes.banner_color_template = req.body.bannerColorTemplateName; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.lockerItem, + "attributeName": "banner_icon_template", + "attributeValue": profile.items[req.body.lockerItem].attributes.banner_icon_template + }) + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.lockerItem, + "attributeName": "banner_color_template", + "attributeValue": profile.items[req.body.lockerItem].attributes.banner_color_template + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Set BR Locker 2 +express.post("/fortnite/api/game/v2/profile/*/client/SetCosmeticLockerSlot", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "athena"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + try { + const ReturnVariantsAsString = JSON.stringify(req.body.variantUpdates || []) + + if (ReturnVariantsAsString.includes("active")) { + var new_variants = [ + { + "variants": [] + } + ]; + + if (profile.profileId == "athena") { + if (profile.items[req.body.itemToSlot].attributes.variants.length == 0) { + profile.items[req.body.itemToSlot].attributes.variants = req.body.variantUpdates || []; + } + + for (var i in profile.items[req.body.itemToSlot].attributes.variants) { + try { + if (profile.items[req.body.itemToSlot].attributes.variants[i].channel.toLowerCase() == req.body.variantUpdates[i].channel.toLowerCase()) { + profile.items[req.body.itemToSlot].attributes.variants[i].active = req.body.variantUpdates[i].active || ""; + } + } catch (err) {} + } + } + + for (var i in req.body.variantUpdates) { + new_variants[0].variants.push({ + "channel": req.body.variantUpdates[i].channel, + "active": req.body.variantUpdates[i].active + }) + + profile.items[req.body.lockerItem].attributes.locker_slots_data.slots[req.body.category].activeVariants = new_variants; + } + } + } catch (err) {} + + if (req.body.category && req.body.lockerItem) { + + switch (req.body.category) { + + case "Character": + profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.Character.items = [req.body.itemToSlot || ""]; + StatChanged = true; + break; + + case "Backpack": + profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.Backpack.items = [req.body.itemToSlot || ""]; + StatChanged = true; + break; + + case "Pickaxe": + profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.Pickaxe.items = [req.body.itemToSlot || ""]; + StatChanged = true; + break; + + case "Glider": + profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.Glider.items = [req.body.itemToSlot || ""]; + StatChanged = true; + break; + + case "SkyDiveContrail": + profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.SkyDiveContrail.items = [req.body.itemToSlot || ""]; + StatChanged = true; + break; + + case "MusicPack": + profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.MusicPack.items = [req.body.itemToSlot || ""]; + StatChanged = true; + break; + + case "LoadingScreen": + profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.LoadingScreen.items = [req.body.itemToSlot || ""]; + StatChanged = true; + break; + + case "Dance": + var indexwithinslot = req.body.slotIndex || 0; + + if (Math.sign(indexwithinslot) == 1 || Math.sign(indexwithinslot) == 0) { + profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.Dance.items[indexwithinslot] = req.body.itemToSlot || ""; + } + + StatChanged = true; + break; + + case "ItemWrap": + var indexwithinslot = req.body.slotIndex || 0; + + switch (Math.sign(indexwithinslot)) { + + case 0: + profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.ItemWrap.items[indexwithinslot] = req.body.itemToSlot || ""; + break; + + case 1: + profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.ItemWrap.items[indexwithinslot] = req.body.itemToSlot || ""; + break; + + case -1: + for (var i = 0; i < 7; i++) { + profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.ItemWrap.items[i] = req.body.itemToSlot || ""; + } + break; + + } + + StatChanged = true; + break; + + } + + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.lockerItem, + "attributeName": "locker_slots_data", + "attributeValue": profile.items[req.body.lockerItem].attributes.locker_slots_data + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "athena"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// Set hero variants STW +express.post("/fortnite/api/game/v2/profile/*/client/SetHeroCosmeticVariants", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "campaign"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + var StatChanged = false; + + if (req.body.outfitVariants && req.body.backblingVariants && req.body.heroItem) { + profile.items[req.body.heroItem].attributes.outfitvariants = req.body.outfitVariants; + profile.items[req.body.heroItem].attributes.backblingvariants = req.body.backblingVariants; + StatChanged = true; + } + + if (StatChanged == true) { + profile.rvn += 1; + profile.commandRevision += 1; + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.heroItem, + "attributeName": "outfitvariants", + "attributeValue": profile.items[req.body.heroItem].attributes.outfitvariants + }) + + ApplyProfileChanges.push({ + "changeType": "itemAttrChanged", + "itemId": req.body.heroItem, + "attributeName": "backblingvariants", + "attributeValue": profile.items[req.body.heroItem].attributes.backblingvariants + }) + + fs.writeFileSync(`./profiles/${req.query.profileId || "campaign"}.json`, JSON.stringify(profile, null, 2)); + } + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "campaign", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +// any mcp request that doesn't have something assigned to it +express.post("/fortnite/api/game/v2/profile/*/client/*", async (req, res) => { + const profile = require(`./../profiles/${req.query.profileId || "athena"}.json`); + + // do not change any of these or you will end up breaking it + var ApplyProfileChanges = []; + var BaseRevision = profile.rvn || 0; + var QueryRevision = req.query.rvn || -1; + + // this doesn't work properly on version v12.20 and above but whatever + if (QueryRevision != BaseRevision) { + ApplyProfileChanges = [{ + "changeType": "fullProfileUpdate", + "profile": profile + }]; + } + + res.json({ + "profileRevision": profile.rvn || 0, + "profileId": req.query.profileId || "athena", + "profileChangesBaseRevision": BaseRevision, + "profileChanges": ApplyProfileChanges, + "profileCommandRevision": profile.commandRevision || 0, + "serverTime": new Date().toISOString(), + "responseVersion": 1 + }) + res.end(); +}); + +module.exports = express; diff --git a/lawin/structure/party.js b/lawin/structure/party.js new file mode 100644 index 0000000..7fe827c --- /dev/null +++ b/lawin/structure/party.js @@ -0,0 +1,60 @@ +const Express = require("express"); +const express = Express.Router(); +const functions = require("./functions.js"); + +express.get("/party/api/v1/Fortnite/user/*", async (req, res) => { + res.json({ + "current": [], + "pending": [], + "invites": [], + "pings": [] + }); +}) + +express.post("/party/api/v1/Fortnite/parties", async (req, res) => { + if (!req.body.join_info) return res.json({}); + if (!req.body.join_info.connection) return res.json({}); + + res.json({ + "id": functions.MakeID().replace(/-/ig, ""), + "created_at": new Date().toISOString(), + "updated_at": new Date().toISOString(), + "config": { + "type": "DEFAULT", + ...req.body.config, + "discoverability": "ALL", + "sub_type": "default", + "invite_ttl": 14400, + "intention_ttl": 60 + }, + "members": [{ + "account_id": (req.body.join_info.connection.id || "").split("@prod")[0], + "meta": req.body.join_info.meta || {}, + "connections": [ + { + "id": req.body.join_info.connection.id || "", + "connected_at": new Date().toISOString(), + "updated_at": new Date().toISOString(), + "yield_leadership": false, + "meta": req.body.join_info.connection.meta || {} + } + ], + "revision": 0, + "updated_at": new Date().toISOString(), + "joined_at": new Date().toISOString(), + "role": "CAPTAIN" + }], + "applicants": [], + "meta": req.body.meta || {}, + "invites": [], + "revision": 0, + "intentions": [] + }) +}) + +express.all("/party/api/v1/Fortnite/parties/*", async (req, res) => { + res.status(204) + res.end() +}) + +module.exports = express; \ No newline at end of file diff --git a/lawin/structure/privacy.js b/lawin/structure/privacy.js new file mode 100644 index 0000000..a3f53e4 --- /dev/null +++ b/lawin/structure/privacy.js @@ -0,0 +1,22 @@ +const Express = require("express"); +const express = Express.Router(); +const fs = require("fs"); +const privacy = require("./../responses/privacy.json"); + +express.get("/fortnite/api/game/v2/privacy/account/:accountId", async (req, res) => { + privacy.accountId = req.params.accountId; + + res.json(privacy); +}) + +express.post("/fortnite/api/game/v2/privacy/account/:accountId", async (req, res) => { + privacy.accountId = req.params.accountId; + privacy.optOutOfPublicLeaderboards = req.body.optOutOfPublicLeaderboards; + + fs.writeFileSync("./responses/privacy.json", JSON.stringify(privacy, null, 2)); + + res.json(privacy); + res.end(); +}) + +module.exports = express; \ No newline at end of file diff --git a/lawin/structure/storefront.js b/lawin/structure/storefront.js new file mode 100644 index 0000000..572c306 --- /dev/null +++ b/lawin/structure/storefront.js @@ -0,0 +1,23 @@ +const Express = require("express"); +const express = Express.Router(); +const functions = require("./functions.js"); +const catalog = functions.getItemShop(); +const keychain = require("./../responses/keychain.json"); + +express.get("/fortnite/api/storefront/v2/catalog", async (req, res) => { + if (req.headers["user-agent"].includes("2870186")) { + return res.status(404).end(); + } + + res.json(catalog); +}) + +express.get("/fortnite/api/storefront/v2/keychain", async (req, res) => { + res.json(keychain) +}) + +express.get("/catalog/api/shared/bulk/offers", async (req, res) => { + res.json({}); +}) + +module.exports = express; \ No newline at end of file diff --git a/lawin/structure/timeline.js b/lawin/structure/timeline.js new file mode 100644 index 0000000..0d0dd9b --- /dev/null +++ b/lawin/structure/timeline.js @@ -0,0 +1,1427 @@ +const Express = require("express"); +const express = Express.Router(); +const functions = require("./functions.js"); +const fs = require("fs"); +const path = require("path"); +const iniparser = require("ini"); +const config = iniparser.parse(fs.readFileSync(path.join(__dirname, "..", "Config", "config.ini")).toString()); + +express.get("/fortnite/api/calendar/v1/timeline", async (req, res) => { + const memory = functions.GetVersionInfo(req); + + var activeEvents = [ + { + "eventType": `EventFlag.Season${memory.season}`, + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": `EventFlag.${memory.lobby}`, + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }]; + + if (memory.season == 3) { + activeEvents.push( + { + "eventType": "EventFlag.Spring2018Phase1", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + if (memory.build >= 3.1) { + activeEvents.push( + { + "eventType": "EventFlag.Spring2018Phase2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + if (memory.build >= 3.3) { + activeEvents.push( + { + "eventType": "EventFlag.Spring2018Phase3", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + if (memory.build >= 3.4) { + activeEvents.push( + { + "eventType": "EventFlag.Spring2018Phase4", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + } + + if (memory.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" + }) + if (memory.build >= 4.3) { + activeEvents.push( + { + "eventType": "EventFlag.Blockbuster2018Phase2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + if (memory.build >= 4.4) { + activeEvents.push( + { + "eventType": "EventFlag.Blockbuster2018Phase3", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + if (memory.build >= 4.5) { + activeEvents.push( + { + "eventType": "EventFlag.Blockbuster2018Phase4", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + } + + if (memory.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.Anniversary2018_BR", + "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 (memory.build == 5.10) { + activeEvents.push( + { + "eventType": "EventFlag.BirthdayBattleBus", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (memory.season == 6) { + activeEvents.push( + { + "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 (memory.build >= 6.20) { + 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": "POI0", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + if (memory.build >= 6.22) { + activeEvents.push( + { + "eventType": "EventFlag.FortnitemaresPhase2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + } + + if (memory.build == 6.20 || memory.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 (memory.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 (memory.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.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 (memory.build >= 8.2) { + activeEvents.push( + { + "eventType": "EventFlag.Spring2019.Phase2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + } + + + if (memory.season == 9) { + activeEvents.push( + { + "eventType": "EventFlag.Season9.Phase1", + "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 (memory.build >= 9.2) { + activeEvents.push( + { + "eventType": "EventFlag.Season9.Phase2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + } + + if (memory.season == 10) { + activeEvents.push( + { + "eventType": "EventFlag.Mayday", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "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": "EventFlag.S10_Mystery", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (memory.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 (memory.build >= 11.2) { + activeEvents.push( + { + "eventType": "EventFlag.Starlight", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (memory.build < 11.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 + if (memory.build == 11.31 || memory.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 (memory.season == 12) { + activeEvents.push( + { + "eventType": "EventFlag.LTE_SpyGames", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_JerkyChallenges", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_Oro", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_StormTheAgency", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (memory.season == 14) { + activeEvents.push( + { + "eventType": "EventFlag.LTE_Fortnitemares_2020", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (memory.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" + }) + } + + if (memory.season == 16) { + activeEvents.push( + { + "eventType": "EventFlag.LTQ_S16_Legendary_Week_01", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S16_Legendary_Week_02", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S16_Legendary_Week_03", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S16_Legendary_Week_04", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S16_Legendary_Week_05", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S16_Legendary_Week_06", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S16_Legendary_Week_07", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S16_Legendary_Week_08", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S16_Legendary_Week_09", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S16_Legendary_Week_10", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S16_Legendary_Week_11", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S16_Legendary_Week_12", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_NBA_Challenges", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_Spire_Challenges", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (memory.season == 17) { + activeEvents.push( + { + "eventType": "EventFlag.Event_TheMarch", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_O2_Challenges", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_Buffet_PreQuests", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_Buffet_Attend", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_Buffet_PostQuests", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_Buffet_Cosmetics", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_CosmicSummer", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_IslandGames", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_01", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_02", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_03", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_04", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_05", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_06", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_07", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_08", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_09", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_10", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_11", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_12", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_13", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Legendary_Week_14", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_CB_Radio", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Sneak_Week", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Yeet_Week", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Zap_Week", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S17_Bargain_Bin_Week", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (memory.season == 18) { + activeEvents.push( + { + "eventType": "EventFlag.LTE_Season18_BirthdayQuests", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_Fornitemares_2021", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_HordeRush", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S18_Repeatable_Weekly", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S18_Repeatable_Weekly_06", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S18_Repeatable_Weekly_07", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S18_Repeatable_Weekly_08", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S18_Repeatable_Weekly_09", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S18_Repeatable_Weekly_10", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S18_Repeatable_Weekly_11", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTQ_S18_Repeatable_Weekly_12", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_SoundWave", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_Season18_TextileQuests", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.S18_WildWeek_Shadows", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.S18_WildWeek_Bargain", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (memory.season == 19) { + activeEvents.push( + { + "eventType": "EventFlag.LTM_Hyena", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTM_Vigilante", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTM_ZebraWallet", + "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.Event_S19_Trey", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_S19_DeviceQuestsPart1", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_S19_DeviceQuestsPart2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_S19_DeviceQuestsPart3", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_S19_Gow_Quests", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_MonarchLevelUpPack", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.S19_WinterfestCrewGrant", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.S19_WildWeeks_Chicken", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.S19_WildWeeks_BargainBin", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.S19_WildWeeks_Spider", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.S19_WildWeeks_Primal", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (memory.season == 20) { + activeEvents.push( + { + "eventType": "Event_S20_AliQuest", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.CovertOps_Phase1", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.CovertOps_Phase2", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.CovertOps_Phase3", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.CovertOps_Phase4", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_S20_LevelUpPack", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "Event_S20_May4thQuest", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.NoBuildQuests", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_S20_NoBuildQuests_TokenGrant", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "Event_S20_EmicidaQuest", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.S20_WildWeeks_Bargain", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.S20_WildWeeks_Chocolate", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.S20_WildWeeks_Purple", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (memory.season == 21) { + activeEvents.push( + { + "eventType": "Event_S21_Stamina", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "Event_S21_FallFest", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "Event_S21_IslandHopper", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_S21_LevelUpPack", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.Event_NoSweatSummer", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "Event_S21_CRRocketQuest", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "Event_S21_GenQuest", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "Event_S21_WildWeeks_BargainBin", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "Event_S21_WildWeeks_Fire", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "Event_S21_WildWeeks_Kondor", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (memory.build == 19.01) { + activeEvents.push( + { + "eventType": "EventFlag.LTE_WinterFest", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "WF_IG_AVAIL", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (memory.build == 23.10) { + activeEvents.push( + { + "eventType": "EventFlag.LTE_WinterFest", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.LTE_WinterFestTab", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "WF_GUFF_AVAIL", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (24.3 <= memory.build && memory.build <= 25) { + activeEvents.push( + { + "eventType": "EventFlag.HordeV3", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.HordeV3.Week02", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.HordeV3.Week03", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.HordeV3.Week04", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.HordeV3.Week05", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.HordeV3.Week06", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.HordeV3.Week07", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }, + { + "eventType": "EventFlag.HordeV3.Week08", + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }) + } + + if (config.Profile.bAllSTWEventsActivated == true) { + var Events = [ + "EventFlag.Blockbuster2018", + "EventFlag.Blockbuster2018Phase1", + "EventFlag.Blockbuster2018Phase2", + "EventFlag.Blockbuster2018Phase3", + "EventFlag.Blockbuster2018Phase4", + "EventFlag.Fortnitemares", + "EventFlag.FortnitemaresPhase1", + "EventFlag.FortnitemaresPhase2", + "EventFlag.Frostnite", + "EventFlag.HolidayDeco", + "EventFlag.Horde", + "EventFlag.HordeV3", + "EventFlag.Mayday", + "EventFlag.Outpost", + "EventFlag.Phoenix.Adventure", + "EventFlag.Phoenix.Fortnitemares", + "EventFlag.Phoenix.Fortnitemares.Clip", + "EventFlag.Phoenix.NewBeginnings", + "EventFlag.Phoenix.NewBeginnings.SpringTraining", + "EventFlag.Phoenix.RoadTrip", + "EventFlag.Phoenix.Winterfest", + "EventFlag.Phoenix.Winterfest.GhostOfChristmas", + "EventFlag.RoadTrip2018", + "EventFlag.STWBrainstorm", + "EventFlag.STWFennix", + "EventFlag.STWIrwin", + "EventFlag.Season10.Phase2", + "EventFlag.Season10.Phase3", + "EventFlag.Season11.Fortnitemares.Quests.Phase1", + "EventFlag.Season11.Fortnitemares.Quests.Phase2", + "EventFlag.Season11.Fortnitemares.Quests.Phase3", + "EventFlag.Season11.Fortnitemares.Quests.Phase4", + "EventFlag.Season11.Frostnite", + "EventFlag.Season11.WinterFest.Quests.Phase1", + "EventFlag.Season11.WinterFest.Quests.Phase2", + "EventFlag.Season11.WinterFest.Quests.Phase3", + "EventFlag.Season12.NoDancing.Quests", + "EventFlag.Season12.Spies.Quests", + "EventFlag.Season9.Phase1", + "EventFlag.Season9.Phase2", + "EventFlag.Spring2018Phase1", + "EventFlag.Spring2018Phase2", + "EventFlag.Spring2018Phase3", + "EventFlag.Spring2018Phase4", + "EventFlag.Spring2019", + "EventFlag.Spring2019.Phase1", + "EventFlag.Spring2019.Phase2", + "EventFlag.Starlight", + "EventFlag.StormKing.Landmark", + "EventFlag.YarrrTwo" + ] + + var activeEventsSet = new Set(activeEvents.map(e => e.eventType)); + for (var i = 0; i < Events.length; i++) { + var Event = Events[i]; + if (!activeEventsSet.has(Event)) { + activeEvents.push({ + "eventType": Event, + "activeUntil": "9999-01-01T00:00:00.000Z", + "activeSince": "2020-01-01T00:00:00.000Z" + }); + } + } + } + + const stateTemplate = { + "activeStorefronts": [], + "eventNamedWeights": {}, + "seasonNumber": memory.season, + "seasonTemplateId": `AthenaSeason:athenaseason${memory.season}`, + "matchXpBonusPoints": 0, + "seasonBegin": "2020-01-01T13:00:00Z", + "seasonEnd": "9999-01-01T14:00:00Z", + "seasonDisplayedEnd": "9999-01-01T07:30:00Z", + "weeklyStoreEnd": "9999-01-01T00:00:00Z", + "stwEventStoreEnd": "9999-01-01T00:00:00.000Z", + "stwWeeklyStoreEnd": "9999-01-01T00:00:00.000Z", + "sectionStoreEnds": { + "Featured": "9999-01-01T00:00:00.000Z" + }, + "dailyStoreEnd": "9999-01-01T00:00:00Z" + }; + + var states = [{ + validFrom: "2020-01-01T00:00:00.000Z", + activeEvents: activeEvents.slice(), + state: stateTemplate + }] + + if (memory.build == 4.5) { + if (config.Events.bEnableGeodeEvent == true) { + states[0].activeEvents.push({ + "eventType": "EventFlag.BR_S4_Geode_Countdown", + "activeUntil": config.Events.geodeEventStartDate + }) + + states.push({ + validFrom: config.Events.geodeEventStartDate, + activeEvents: activeEvents.slice(), + state: stateTemplate + }) + + var EventEndDate = new Date(new Date(config.Events.geodeEventStartDate).getTime() + 3 * 60000).toISOString(); + + states[1].activeEvents.push({ + "eventType": "EventFlag.BR_S4_Geode_Begin", + "activeUntil": EventEndDate + }) + + activeEvents.push({ + "eventType": "EventFlag.BR_S4_Geode_Over", + "activeUntil": "9999-01-01T00:00:00.000Z" + }) + + if (config.Events.bEnableCrackInTheSky == true) { + activeEvents.push({ + "eventType": "EventFlag.BR_S4_Rift_Growth", + "activeUntil": new Date(new Date(EventEndDate).getTime() + 13.6 * 24 * 60 * 60 * 1000).toISOString() // It takes 13.6 days for the crack to fully expand. + }) + } + + states.push({ + validFrom: EventEndDate, + activeEvents: activeEvents.slice(), + state: stateTemplate + }) + } + + if (config.Events.bEnableS4OddityPrecursor == true) { + for (var i = 1; i <= 8; i++) { + var StartDate = new Date(new Date(config.Events.S4OddityEventStartDate).getTime() + config.Events.S4OddityEventsInterval * (i-1) * 60000).toISOString(); + activeEvents.push({ + "eventType": `EventFlag.BR_S4_Oddity_0${i}_Tell`, + "activeUntil": StartDate + }) + } + states[states.length - 1].activeEvents = activeEvents.slice(); + } + if (config.Events.bEnableS4OddityExecution == true) { + for (var i = 1; i <= 8; i++) { + var StartDate = new Date(new Date(config.Events.S4OddityEventStartDate).getTime() + config.Events.S4OddityEventsInterval * (i-1) * 60000).toISOString(); + + activeEvents.push({ + "eventType": `EventFlag.BR_S4_Oddity_0${i}_Event`, + "activeUntil": "9999-01-01T00:00:00.000Z" + }) + + var index = activeEvents.findIndex(item => item.eventType === `EventFlag.BR_S4_Oddity_0${i}_Tell`); + if (index !== -1) { + activeEvents.splice(index, 1); + } + + states.push({ + validFrom: StartDate, + activeEvents: activeEvents.slice(), + state: stateTemplate + }) + } + } + } + + if (memory.build == 5.21) { + if (config.Events.bEnableS5OddityPrecursor == true) { + states.push({ + validFrom: config.Events.S5OddityPrecursorDate, + activeEvents: activeEvents.slice(), + state: stateTemplate + }) + + states[1].activeEvents.push( + { + "eventType": "EventFlag.BR_S5_Oddity_Tomato_Tell", + "activeUntil": "9999-01-01T00:00:00.000Z" + }) + } + if (config.Events.bEnableS5OddityExecution == true) { + states.push({ + validFrom: config.Events.S5OddityExecutionDate, + activeEvents: activeEvents.slice(), + state: stateTemplate + }) + + states[states.length - 1].activeEvents.push( + { + "eventType": "EventFlag.BR_S5_Oddity_Tomato_Event", + "activeUntil": "9999-01-01T00:00:00.000Z" + }) + } + } + + if (memory.build == 5.30) { + if (config.Events.bEnableBlockbusterRiskyEvent == true) { + activeEvents.push({ + "eventType": "EventFlag.BR_S5_RiskyReels_Event", + "activeUntil": "9999-01-01T00:00:00.000Z" + }) + states[0].activeEvents = activeEvents.slice(); + } + + if (config.Events.bEnableCubeLightning == true) { + states[0].activeEvents.push( + { + "eventType": "EventFlag.BR_S5_Rift_Corrupt", + "activeUntil": config.Events.cubeSpawnDate + }, + { + "eventType": "EventFlag.BR_S5_Cube_Lightning", + "activeUntil": config.Events.cubeSpawnDate + }) + + activeEvents.push({ + "eventType": "EventFlag.BR_S5_Cube_TurnOn", + "activeUntil": "9999-01-01T00:00:00.000Z" + }) + + states.push({ + validFrom: config.Events.cubeSpawnDate, + activeEvents: activeEvents.slice(), + state: stateTemplate + }) + } + } + + if (memory.build == 5.41) { + if (config.Events.bEnableCubeLake == true) { + states[0].activeEvents.push( + { + "eventType": "EventFlag.BR_S5_Cube_StartMove", + "activeUntil": config.Events.cubeLakeDate + }, + { + "eventType": "EventFlag.BR_S5_Cube_TurnOn", + "activeUntil": config.Events.cubeLakeDate + }) + + states.push({ + validFrom: config.Events.cubeLakeDate, + activeEvents: activeEvents.slice(), + state: stateTemplate + }) + + states[1].activeEvents.push( + { + "eventType": "EventFlag.BR_S5_Cube_StartMove", + "activeUntil": config.Events.cubeLakeDate + }, + { + "eventType": "EventFlag.BR_S5_Cube_TurnOn", + "activeUntil": config.Events.cubeLakeDate + }, + { + "eventType": "EventFlag.BR_S5_Cube_MoveTo8", + "activeUntil": config.Events.cubeLakeDate + }) + + var EventEndDate = new Date(new Date(config.Events.cubeLakeDate).getTime() + 1.5 * 60000).toISOString(); + + states.push({ + validFrom: EventEndDate, + activeEvents: activeEvents.slice(), + state: stateTemplate + }) + + states[2].activeEvents.push({ + "eventType": "EventFlag.BR_S5_Cube_Destination", + "activeUntil": "9999-01-01T00:00:00.000Z" + }) + } + } + + res.json({ + "channels": { + "client-matchmaking": { + "states": [], + "cacheExpire": "9999-01-01T22:28:47.830Z" + }, + "client-events": { + "states": states, + "cacheExpire": "9999-01-01T22:28:47.830Z" + } + }, + "eventsTimeOffsetHrs": 0, + "cacheIntervalMins": 10, + "currentTime": new Date().toISOString() + }); + res.end(); +}) + +module.exports = express; diff --git a/lawin/structure/user.js b/lawin/structure/user.js new file mode 100644 index 0000000..7cad967 --- /dev/null +++ b/lawin/structure/user.js @@ -0,0 +1,193 @@ +const Express = require("express"); +const express = Express.Router(); +const fs = require("fs"); +const path = require("path"); +const iniparser = require("ini"); +const config = iniparser.parse(fs.readFileSync(path.join(__dirname, "..", "Config", "config.ini")).toString()); +var Memory_CurrentAccountID = config.Config.displayName; + +express.get("/account/api/public/account", async (req, res) => { + var response = []; + + if (typeof req.query.accountId == "string") { + var accountId = req.query.accountId; + if (accountId.includes("@")) accountId = accountId.split("@")[0]; + + response.push({ + "id": accountId, + "displayName": accountId, + "externalAuths": {} + }) + } + + if (Array.isArray(req.query.accountId)) { + for (var x in req.query.accountId) { + var accountId = req.query.accountId[x]; + if (accountId.includes("@")) accountId = accountId.split("@")[0]; + + response.push({ + "id": accountId, + "displayName": accountId, + "externalAuths": {} + }) + } + } + + res.json(response) +}) + +express.get("/account/api/public/account/:accountId", async (req, res) => { + if (config.Config.bUseConfigDisplayName == false) { + Memory_CurrentAccountID = req.params.accountId; + } + + if (Memory_CurrentAccountID.includes("@")) Memory_CurrentAccountID = Memory_CurrentAccountID.split("@")[0]; + + res.json({ + "id": req.params.accountId, + "displayName": Memory_CurrentAccountID, + "name": "Lawin", + "email": Memory_CurrentAccountID + "@lawin.com", + "failedLoginAttempts": 0, + "lastLogin": new Date().toISOString(), + "numberOfDisplayNameChanges": 0, + "ageGroup": "UNKNOWN", + "headless": false, + "country": "US", + "lastName": "Server", + "preferredLanguage": "en", + "canUpdateDisplayName": false, + "tfaEnabled": false, + "emailVerified": true, + "minorVerified": false, + "minorExpected": false, + "minorStatus": "NOT_MINOR", + "cabinedMode": false, + "hasHashedEmail": false + }) +}) + +express.get("/sdk/v1/*", async (req, res) => { + const sdk = require("./../responses/sdkv1.json"); + res.json(sdk) +}) + +express.post("/auth/v1/oauth/token", async (req, res) => { + res.json({ + "access_token": "lawinstokenlol", + "token_type": "bearer", + "expires_in": 28800, + "expires_at": "9999-12-31T23:59:59.999Z", + "deployment_id": "lawinsdeploymentidlol", + "organization_id": "lawinsorganizationidlol", + "product_id": "prod-fn", + "sandbox_id": "fn" + }) +}) + +express.get("/epic/id/v2/sdk/accounts", async (req, res) => { + res.json([{ + "accountId": Memory_CurrentAccountID, + "displayName": Memory_CurrentAccountID, + "preferredLanguage": "en", + "cabinedMode": false, + "empty": false + }]) +}) + +express.post("/epic/oauth/v2/token", async (req, res) => { + res.json({ + "scope": "basic_profile friends_list openid presence", + "token_type": "bearer", + "access_token": "lawinstokenlol", + "expires_in": 28800, + "expires_at": "9999-12-31T23:59:59.999Z", + "refresh_token": "lawinstokenlol", + "refresh_expires_in": 86400, + "refresh_expires_at": "9999-12-31T23:59:59.999Z", + "account_id": Memory_CurrentAccountID, + "client_id": "lawinsclientidlol", + "application_id": "lawinsapplicationidlol", + "selected_account_id": Memory_CurrentAccountID, + "id_token": "lawinstokenlol" + }) +}) + +express.get("/account/api/public/account/*/externalAuths", async (req, res) => { + res.json([]) +}) + +express.delete("/account/api/oauth/sessions/kill", async (req, res) => { + res.status(204); + res.end(); +}) + +express.delete("/account/api/oauth/sessions/kill/*", async (req, res) => { + res.status(204); + res.end(); +}) + +express.get("/account/api/oauth/verify", async (req, res) => { + res.json({ + "token": "lawinstokenlol", + "session_id": "3c3662bcb661d6de679c636744c66b62", + "token_type": "bearer", + "client_id": "lawinsclientidlol", + "internal_client": true, + "client_service": "fortnite", + "account_id": Memory_CurrentAccountID, + "expires_in": 28800, + "expires_at": "9999-12-02T01:12:01.100Z", + "auth_method": "exchange_code", + "display_name": Memory_CurrentAccountID, + "app": "fortnite", + "in_app_id": Memory_CurrentAccountID, + "device_id": "lawinsdeviceidlol" + }) +}) + +express.post("/account/api/oauth/token", async (req, res) => { + if (config.Config.bUseConfigDisplayName == false) { + Memory_CurrentAccountID = req.body.username || "LawinServer" + } + + if (Memory_CurrentAccountID.includes("@")) Memory_CurrentAccountID = Memory_CurrentAccountID.split("@")[0]; + + res.json({ + "access_token": "lawinstokenlol", + "expires_in": 28800, + "expires_at": "9999-12-02T01:12:01.100Z", + "token_type": "bearer", + "refresh_token": "lawinstokenlol", + "refresh_expires": 86400, + "refresh_expires_at": "9999-12-02T01:12:01.100Z", + "account_id": Memory_CurrentAccountID, + "client_id": "lawinsclientidlol", + "internal_client": true, + "client_service": "fortnite", + "displayName": Memory_CurrentAccountID, + "app": "fortnite", + "in_app_id": Memory_CurrentAccountID, + "device_id": "lawinsdeviceidlol" + }) +}) + +express.post("/account/api/oauth/exchange", async (req, res) => { + res.json({}) +}) + +express.get("/account/api/epicdomains/ssodomains", async (req, res) => { + res.json([ + "unrealengine.com", + "unrealtournament.com", + "fortnite.com", + "epicgames.com" + ]) +}) + +express.post("/fortnite/api/game/v2/tryPlayOnPlatform/account/*", async (req, res) => { + res.setHeader("Content-Type", "text/plain"); + res.send(true); +}) + +module.exports = express; \ No newline at end of file diff --git a/lawin/structure/version.js b/lawin/structure/version.js new file mode 100644 index 0000000..35e5126 --- /dev/null +++ b/lawin/structure/version.js @@ -0,0 +1,59 @@ +const Express = require("express"); +const express = Express.Router(); + +express.get("/fortnite/api/version", async (req, res) => { + res.json({ + "app": "fortnite", + "serverDate": new Date().toISOString(), + "overridePropertiesVersion": "unknown", + "cln": "17951730", + "build": "444", + "moduleName": "Fortnite-Core", + "buildDate": "2021-10-27T21:00:51.697Z", + "version": "18.30", + "branch": "Release-18.30", + "modules": { + "Epic-LightSwitch-AccessControlCore": { + "cln": "17237679", + "build": "b2130", + "buildDate": "2021-08-19T18:56:08.144Z", + "version": "1.0.0", + "branch": "trunk" + }, + "epic-xmpp-api-v1-base": { + "cln": "5131a23c1470acbd9c94fae695ef7d899c1a41d6", + "build": "b3595", + "buildDate": "2019-07-30T09:11:06.587Z", + "version": "0.0.1", + "branch": "master" + }, + "epic-common-core": { + "cln": "17909521", + "build": "3217", + "buildDate": "2021-10-25T18:41:12.486Z", + "version": "3.0", + "branch": "TRUNK" + } + } + }); +}) + +express.get("/fortnite/api/v2/versioncheck/*", async (req, res) => { + res.json({ + "type": "NO_UPDATE" + }) +}) + +express.get("/fortnite/api/v2/versioncheck*", async (req, res) => { + res.json({ + "type": "NO_UPDATE" + }) +}) + +express.get("/fortnite/api/versioncheck*", async (req, res) => { + res.json({ + "type": "NO_UPDATE" + }) +}) + +module.exports = express; \ No newline at end of file diff --git a/lawin/structure/xmpp.js b/lawin/structure/xmpp.js new file mode 100644 index 0000000..a662d61 --- /dev/null +++ b/lawin/structure/xmpp.js @@ -0,0 +1,276 @@ +const WebSocket = require("ws").Server; +const XMLBuilder = require("xmlbuilder"); +const XMLParser = require("xml-parser"); + +const functions = require("./../structure/functions.js"); + +const port = 80; + +const wss = new WebSocket({ port: port }, () => console.log("XMPP listening on port", port)); +wss.on("error", (err) => { + console.log("XMPP and Matchmaker \x1b[31mFAILED\x1b[0m to start hosting."); +}) + + +global.Clients = []; + +wss.on('connection', async (ws) => { + ws.on('error', () => {}); + + if (ws.protocol.toLowerCase() != "xmpp") { + return; + } + + var accountId = ""; + var jid = ""; + var id = ""; + var ID = functions.MakeID(); + var Authenticated = false; + + ws.on('message', async (message) => { + if (Buffer.isBuffer(message)) message = message.toString(); + const msg = XMLParser(message); + if (!msg.root) return Error(ws); + + switch (msg.root.name) { + case "open": + ws.send(XMLBuilder.create("open") + .attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-framing") + .attribute("from", "prod.ol.epicgames.com") + .attribute("id", ID) + .attribute("version", "1.0") + .attribute("xml:lang", "en").toString()) + + if (Authenticated == true) { + ws.send(XMLBuilder.create("stream:features").attribute("xmlns:stream", "http://etherx.jabber.org/streams") + .element("ver").attribute("xmlns", "urn:xmpp:features:rosterver").up() + .element("starttls").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-tls").up() + .element("bind").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-bind").up() + .element("compression").attribute("xmlns", "http://jabber.org/features/compress") + .element("method", "zlib").up().up() + .element("session").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-session").up().toString()) + } else { + ws.send(XMLBuilder.create("stream:features").attribute("xmlns:stream", "http://etherx.jabber.org/streams") + .element("mechanisms").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-sasl") + .element("mechanism", "PLAIN").up().up() + .element("ver").attribute("xmlns", "urn:xmpp:features:rosterver").up() + .element("starttls").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-tls").up() + .element("compression").attribute("xmlns", "http://jabber.org/features/compress") + .element("method", "zlib").up().up() + .element("auth").attribute("xmlns", "http://jabber.org/features/iq-auth").up().toString()) + } + break; + + case "auth": + if (!msg.root.content) return Error(ws); + if (!functions.DecodeBase64(msg.root.content)) return Error(ws); + if (!functions.DecodeBase64(msg.root.content).includes("\u0000")) return Error(ws); + var decodedBase64 = functions.DecodeBase64(msg.root.content).split("\u0000"); + + if (global.Clients.find(i => i.accountId == decodedBase64[1])) return Error(ws); + + accountId = decodedBase64[1]; + + if (decodedBase64 && accountId && decodedBase64.length == 3) { + Authenticated = true; + + console.log(`An xmpp client with the account id ${accountId} has logged in.`); + + ws.send(XMLBuilder.create("success").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-sasl").toString()); + } else { + return Error(ws); + } + break; + + case "iq": + switch (msg.root.attributes.id) { + case "_xmpp_bind1": + if (!msg.root.children.find(i => i.name == "bind")) return; + if (!msg.root.children.find(i => i.name == "bind").children.find(i => i.name == "resource")) return; + var resource = msg.root.children.find(i => i.name == "bind").children.find(i => i.name == "resource").content; + jid = `${accountId}@prod.ol.epicgames.com/${resource}`; + id = `${accountId}@prod.ol.epicgames.com`; + + ws.send(XMLBuilder.create("iq") + .attribute("to", jid) + .attribute("id", "_xmpp_bind1") + .attribute("xmlns", "jabber:client") + .attribute("type", "result") + .element("bind") + .attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-bind") + .element("jid", jid).up().up().toString()) + break; + + case "_xmpp_session1": + if (!global.Clients.find(i => i.client == ws)) return Error(ws); + var xml = XMLBuilder.create("iq") + .attribute("to", jid) + .attribute("from", "prod.ol.epicgames.com") + .attribute("id", "_xmpp_session1") + .attribute("xmlns", "jabber:client") + .attribute("type", "result"); + + ws.send(xml.toString()); + getPresenceFromAll(ws); + break; + + default: + if (!global.Clients.find(i => i.client == ws)) return Error(ws); + var xml = XMLBuilder.create("iq") + .attribute("to", jid) + .attribute("from", "prod.ol.epicgames.com") + .attribute("id", msg.root.attributes.id) + .attribute("xmlns", "jabber:client") + .attribute("type", "result"); + + ws.send(xml.toString()); + } + break; + + case "message": + if (!global.Clients.find(i => i.client == ws)) return Error(ws); + if (!msg.root.children.find(i => i.name == "body")) return; + var body = msg.root.children.find(i => i.name == "body").content; + + if (msg.root.attributes.type) { + if (msg.root.attributes.type == "chat") { + if (!msg.root.attributes.to) return; + var receiver = global.Clients.find(i => i.id == msg.root.attributes.to); + var sender = global.Clients.find(i => i.client == ws); + if (!receiver || !sender) return; + if (receiver == sender) return; + + receiver.client.send(XMLBuilder.create("message") + .attribute("to", receiver.jid) + .attribute("from", sender.jid) + .attribute("xmlns", "jabber:client") + .attribute("type", "chat") + .element("body", body).up().toString()) + return; + } + } + + if (ifJSON(body)) { + var object = JSON.parse(body); + + if (object.hasOwnProperty("type")) { + if (typeof object.type == "string") { + switch (object.type.toLowerCase()) { + case "com.epicgames.party.invitation": + if (!msg.root.attributes.to) return; + var sender = global.Clients.find(i => i.client == ws); + var receiver = global.Clients.find(i => i.id == msg.root.attributes.to); + if (!receiver) return; + + receiver.client.send(XMLBuilder.create("message") + .attribute("from", sender.jid) + .attribute("id", msg.root.attributes.id) + .attribute("to", receiver.jid) + .attribute("xmlns", "jabber:client") + .element("body", body).up().toString()) + break; + + default: + ws.send(XMLBuilder.create("message") + .attribute("from", jid) + .attribute("id", msg.root.attributes.id) + .attribute("to", jid) + .attribute("xmlns", "jabber:client") + .element("body", body).up().toString()); + } + } + } + } + break; + + case "presence": + if (!global.Clients.find(i => i.client == ws)) return Error(ws); + if (!msg.root.children.find(i => i.name == "status")) return; + if (!ifJSON(msg.root.children.find(i => i.name == "status").content)) return; + var body = msg.root.children.find(i => i.name == "status").content; + var away = false; + if (msg.root.children.find(i => i.name == "show")) away = true; + + updatePresenceForAll(ws, body, away, false) + break; + } + + if (!global.Clients.find(i => i.client == ws)) { + if (accountId && jid && ID && id && Authenticated == true) { + global.Clients.push({ "client": ws, "accountId": accountId, "jid": jid, "id": id, "lastPresenceUpdate": { "away": false, "status": "{}" } }); + } + } + }) + + ws.on('close', () => RemoveClient(ws)) +}) + +function RemoveClient(ws) { + if (global.Clients.find(i => i.client == ws)) { + updatePresenceForAll(ws, "{}", false, true); + + console.log(`An xmpp client with the account id ${global.Clients.find(i => i.client == ws).accountId} has logged out.`); + + global.Clients.splice(global.Clients.findIndex(i => i.client == ws), 1); + } +} + +function Error(ws) { + ws.send(XMLBuilder.create("close").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-framing").toString()); + ws.close(); +} + +function updatePresenceForAll(ws, body, away, offline) { + if (global.Clients.find(i => i.client == ws)) { + var SenderData = global.Clients.find(i => i.client == ws); + var SenderIndex = global.Clients.findIndex(i => i.client == ws); + global.Clients[SenderIndex].lastPresenceUpdate.away = away; + global.Clients[SenderIndex].lastPresenceUpdate.status = body; + + global.Clients.forEach(ClientData => { + var xml = XMLBuilder.create("presence") + .attribute("to", ClientData.jid) + .attribute("xmlns", "jabber:client") + .attribute("from", SenderData.jid) + + if (offline == true) xml = xml.attribute("type", "unavailable"); + else xml = xml.attribute("type", "available") + + if (away == true) xml = xml.element("show", "away").up().element("status", body).up(); + else xml = xml.element("status", body).up(); + + ClientData.client.send(xml.toString()) + }) + } else { + return Error(ws); + } +} + +function getPresenceFromAll(ws) { + if (global.Clients.find(i => i.client == ws)) { + var SenderData = global.Clients.find(i => i.client == ws); + + global.Clients.forEach(ClientData => { + var xml = XMLBuilder.create("presence") + .attribute("to", SenderData.jid) + .attribute("xmlns", "jabber:client") + .attribute("from", ClientData.jid) + + if (ClientData.lastPresenceUpdate.away == true) xml = xml.attribute("type", "available").element("show", "away").up().element("status", ClientData.lastPresenceUpdate.status).up(); + else xml = xml.attribute("type", "available").element("status", ClientData.lastPresenceUpdate.status).up(); + + SenderData.client.send(xml.toString()) + }) + } else { + return Error(ws); + } +} + +function ifJSON(str) { + try { + JSON.parse(str) + } catch (err) { + return false; + } + return true; +}